diff --git a/tree_sitter_v/grammar.cjs b/tree_sitter_v/grammar.cjs index 42a923bd..43d5a9a8 100644 --- a/tree_sitter_v/grammar.cjs +++ b/tree_sitter_v/grammar.cjs @@ -1100,8 +1100,13 @@ module.exports = grammar({ string_interpolation: ($) => seq( alias($.__dolcbr, $.interpolation_opening), - alias($._expression, $.interpolation_expression), - optional($.format_specifier), + choice( + repeat(alias($._expression, $.interpolation_expression)), + seq( + alias($._expression, $.interpolation_expression), + $.format_specifier, + ), + ), alias($.__rcbr, $.interpolation_closing), ), diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index 1ca3dc1c..ec2409d9 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -6338,24 +6338,38 @@ "named": true, "value": "interpolation_opening" }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_expression" - }, - "named": true, - "value": "interpolation_expression" - }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "format_specifier" + "type": "REPEAT", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expression" + }, + "named": true, + "value": "interpolation_expression" + } }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expression" + }, + "named": true, + "value": "interpolation_expression" + }, + { + "type": "SYMBOL", + "name": "format_specifier" + } + ] } ] }, diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index 2cd5ff64..a5b7090c 100644 --- a/tree_sitter_v/src/parser.c +++ b/tree_sitter_v/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4739 -#define LARGE_STATE_COUNT 1602 -#define SYMBOL_COUNT 353 +#define STATE_COUNT 4773 +#define LARGE_STATE_COUNT 1636 +#define SYMBOL_COUNT 354 #define ALIAS_COUNT 1 #define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 148 +#define PRODUCTION_ID_COUNT 149 enum ts_symbol_identifiers { sym_identifier = 1, @@ -370,13 +370,14 @@ enum ts_symbol_identifiers { aux_sym_c_string_literal_repeat2 = 344, aux_sym_raw_string_literal_repeat1 = 345, aux_sym_raw_string_literal_repeat2 = 346, - aux_sym_identifier_list_repeat1 = 347, - aux_sym_expression_without_blocks_list_repeat1 = 348, - aux_sym__statement_list_repeat1 = 349, - aux_sym_var_definition_list_repeat1 = 350, - aux_sym_attributes_repeat1 = 351, - aux_sym_attribute_repeat1 = 352, - alias_sym_interpolation_expression = 353, + aux_sym_string_interpolation_repeat1 = 347, + aux_sym_identifier_list_repeat1 = 348, + aux_sym_expression_without_blocks_list_repeat1 = 349, + aux_sym__statement_list_repeat1 = 350, + aux_sym_var_definition_list_repeat1 = 351, + aux_sym_attributes_repeat1 = 352, + aux_sym_attribute_repeat1 = 353, + alias_sym_interpolation_expression = 354, }; static const char * const ts_symbol_names[] = { @@ -727,6 +728,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_c_string_literal_repeat2] = "c_string_literal_repeat2", [aux_sym_raw_string_literal_repeat1] = "raw_string_literal_repeat1", [aux_sym_raw_string_literal_repeat2] = "raw_string_literal_repeat2", + [aux_sym_string_interpolation_repeat1] = "string_interpolation_repeat1", [aux_sym_identifier_list_repeat1] = "identifier_list_repeat1", [aux_sym_expression_without_blocks_list_repeat1] = "expression_without_blocks_list_repeat1", [aux_sym__statement_list_repeat1] = "_statement_list_repeat1", @@ -1084,6 +1086,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_c_string_literal_repeat2] = aux_sym_c_string_literal_repeat2, [aux_sym_raw_string_literal_repeat1] = aux_sym_raw_string_literal_repeat1, [aux_sym_raw_string_literal_repeat2] = aux_sym_raw_string_literal_repeat2, + [aux_sym_string_interpolation_repeat1] = aux_sym_string_interpolation_repeat1, [aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1, [aux_sym_expression_without_blocks_list_repeat1] = aux_sym_expression_without_blocks_list_repeat1, [aux_sym__statement_list_repeat1] = aux_sym__statement_list_repeat1, @@ -2485,6 +2488,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_string_interpolation_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_identifier_list_repeat1] = { .visible = false, .named = false, @@ -2639,41 +2646,41 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [22] = {.index = 33, .length = 2}, [23] = {.index = 35, .length = 2}, [24] = {.index = 37, .length = 1}, - [25] = {.index = 38, .length = 2}, - [26] = {.index = 40, .length = 3}, - [27] = {.index = 43, .length = 1}, - [28] = {.index = 44, .length = 2}, - [29] = {.index = 46, .length = 2}, - [30] = {.index = 48, .length = 1}, - [31] = {.index = 49, .length = 3}, - [32] = {.index = 52, .length = 2}, - [33] = {.index = 54, .length = 2}, - [34] = {.index = 56, .length = 1}, - [35] = {.index = 57, .length = 2}, - [36] = {.index = 59, .length = 2}, - [37] = {.index = 61, .length = 1}, - [38] = {.index = 62, .length = 2}, - [39] = {.index = 64, .length = 2}, - [40] = {.index = 66, .length = 2}, - [41] = {.index = 68, .length = 1}, - [42] = {.index = 69, .length = 3}, - [43] = {.index = 72, .length = 3}, - [44] = {.index = 75, .length = 3}, - [45] = {.index = 78, .length = 3}, - [46] = {.index = 81, .length = 3}, - [47] = {.index = 84, .length = 1}, - [48] = {.index = 85, .length = 1}, - [49] = {.index = 86, .length = 2}, - [51] = {.index = 88, .length = 2}, - [52] = {.index = 90, .length = 1}, - [53] = {.index = 91, .length = 3}, - [54] = {.index = 94, .length = 1}, - [55] = {.index = 95, .length = 3}, - [56] = {.index = 98, .length = 1}, - [57] = {.index = 99, .length = 2}, - [58] = {.index = 101, .length = 5}, - [59] = {.index = 106, .length = 1}, - [60] = {.index = 107, .length = 1}, + [26] = {.index = 38, .length = 2}, + [27] = {.index = 40, .length = 3}, + [28] = {.index = 43, .length = 1}, + [29] = {.index = 44, .length = 2}, + [30] = {.index = 46, .length = 2}, + [31] = {.index = 48, .length = 1}, + [32] = {.index = 49, .length = 3}, + [33] = {.index = 52, .length = 2}, + [34] = {.index = 54, .length = 2}, + [35] = {.index = 56, .length = 1}, + [36] = {.index = 57, .length = 2}, + [37] = {.index = 59, .length = 2}, + [38] = {.index = 61, .length = 1}, + [39] = {.index = 62, .length = 2}, + [40] = {.index = 64, .length = 2}, + [41] = {.index = 66, .length = 2}, + [42] = {.index = 68, .length = 1}, + [43] = {.index = 69, .length = 3}, + [44] = {.index = 72, .length = 3}, + [45] = {.index = 75, .length = 3}, + [46] = {.index = 78, .length = 3}, + [47] = {.index = 81, .length = 3}, + [48] = {.index = 84, .length = 1}, + [49] = {.index = 85, .length = 1}, + [50] = {.index = 86, .length = 2}, + [52] = {.index = 88, .length = 2}, + [53] = {.index = 90, .length = 1}, + [54] = {.index = 91, .length = 3}, + [55] = {.index = 94, .length = 1}, + [56] = {.index = 95, .length = 3}, + [57] = {.index = 98, .length = 1}, + [58] = {.index = 99, .length = 2}, + [59] = {.index = 101, .length = 5}, + [60] = {.index = 106, .length = 1}, + [61] = {.index = 107, .length = 1}, [62] = {.index = 108, .length = 2}, [63] = {.index = 110, .length = 2}, [64] = {.index = 112, .length = 2}, @@ -2704,62 +2711,62 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [89] = {.index = 173, .length = 2}, [90] = {.index = 175, .length = 2}, [91] = {.index = 177, .length = 2}, - [92] = {.index = 179, .length = 3}, - [93] = {.index = 182, .length = 2}, - [94] = {.index = 184, .length = 3}, - [95] = {.index = 187, .length = 3}, - [96] = {.index = 190, .length = 3}, - [97] = {.index = 193, .length = 2}, - [98] = {.index = 195, .length = 4}, - [99] = {.index = 199, .length = 4}, - [100] = {.index = 203, .length = 4}, - [101] = {.index = 207, .length = 3}, - [102] = {.index = 210, .length = 3}, - [103] = {.index = 213, .length = 2}, - [104] = {.index = 215, .length = 4}, - [105] = {.index = 219, .length = 3}, - [106] = {.index = 222, .length = 4}, - [107] = {.index = 226, .length = 4}, - [108] = {.index = 230, .length = 5}, - [109] = {.index = 235, .length = 3}, - [110] = {.index = 238, .length = 3}, - [111] = {.index = 241, .length = 3}, - [112] = {.index = 244, .length = 4}, - [113] = {.index = 248, .length = 3}, - [114] = {.index = 251, .length = 3}, - [115] = {.index = 254, .length = 3}, - [116] = {.index = 257, .length = 3}, - [117] = {.index = 260, .length = 4}, - [118] = {.index = 264, .length = 4}, - [119] = {.index = 268, .length = 4}, - [120] = {.index = 272, .length = 4}, - [121] = {.index = 276, .length = 5}, - [122] = {.index = 281, .length = 5}, - [123] = {.index = 286, .length = 5}, - [124] = {.index = 291, .length = 4}, - [125] = {.index = 295, .length = 4}, - [126] = {.index = 299, .length = 4}, - [127] = {.index = 303, .length = 3}, - [128] = {.index = 306, .length = 5}, - [129] = {.index = 311, .length = 4}, - [130] = {.index = 315, .length = 3}, - [131] = {.index = 318, .length = 4}, - [132] = {.index = 322, .length = 4}, - [133] = {.index = 326, .length = 4}, - [134] = {.index = 330, .length = 5}, - [135] = {.index = 335, .length = 5}, - [136] = {.index = 340, .length = 5}, - [137] = {.index = 345, .length = 6}, - [138] = {.index = 351, .length = 4}, - [139] = {.index = 355, .length = 5}, - [140] = {.index = 360, .length = 5}, - [141] = {.index = 365, .length = 5}, - [142] = {.index = 370, .length = 5}, - [143] = {.index = 375, .length = 6}, - [144] = {.index = 381, .length = 5}, - [145] = {.index = 386, .length = 5}, - [146] = {.index = 391, .length = 6}, - [147] = {.index = 397, .length = 6}, + [93] = {.index = 179, .length = 3}, + [94] = {.index = 182, .length = 2}, + [95] = {.index = 184, .length = 3}, + [96] = {.index = 187, .length = 3}, + [97] = {.index = 190, .length = 3}, + [98] = {.index = 193, .length = 2}, + [99] = {.index = 195, .length = 4}, + [100] = {.index = 199, .length = 4}, + [101] = {.index = 203, .length = 4}, + [102] = {.index = 207, .length = 3}, + [103] = {.index = 210, .length = 3}, + [104] = {.index = 213, .length = 2}, + [105] = {.index = 215, .length = 4}, + [106] = {.index = 219, .length = 3}, + [107] = {.index = 222, .length = 4}, + [108] = {.index = 226, .length = 4}, + [109] = {.index = 230, .length = 5}, + [110] = {.index = 235, .length = 3}, + [111] = {.index = 238, .length = 3}, + [112] = {.index = 241, .length = 3}, + [113] = {.index = 244, .length = 4}, + [114] = {.index = 248, .length = 3}, + [115] = {.index = 251, .length = 3}, + [116] = {.index = 254, .length = 3}, + [117] = {.index = 257, .length = 3}, + [118] = {.index = 260, .length = 4}, + [119] = {.index = 264, .length = 4}, + [120] = {.index = 268, .length = 4}, + [121] = {.index = 272, .length = 4}, + [122] = {.index = 276, .length = 5}, + [123] = {.index = 281, .length = 5}, + [124] = {.index = 286, .length = 5}, + [125] = {.index = 291, .length = 4}, + [126] = {.index = 295, .length = 4}, + [127] = {.index = 299, .length = 4}, + [128] = {.index = 303, .length = 3}, + [129] = {.index = 306, .length = 5}, + [130] = {.index = 311, .length = 4}, + [131] = {.index = 315, .length = 3}, + [132] = {.index = 318, .length = 4}, + [133] = {.index = 322, .length = 4}, + [134] = {.index = 326, .length = 4}, + [135] = {.index = 330, .length = 5}, + [136] = {.index = 335, .length = 5}, + [137] = {.index = 340, .length = 5}, + [138] = {.index = 345, .length = 6}, + [139] = {.index = 351, .length = 4}, + [140] = {.index = 355, .length = 5}, + [141] = {.index = 360, .length = 5}, + [142] = {.index = 365, .length = 5}, + [143] = {.index = 370, .length = 5}, + [144] = {.index = 375, .length = 6}, + [145] = {.index = 381, .length = 5}, + [146] = {.index = 386, .length = 5}, + [147] = {.index = 391, .length = 6}, + [148] = {.index = 397, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3317,16 +3324,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [0] = sym_reference_expression, }, - [50] = { - [1] = sym_plain_type, + [25] = { + [0] = alias_sym_interpolation_expression, }, - [61] = { - [1] = alias_sym_interpolation_expression, + [51] = { + [1] = sym_plain_type, }, [75] = { [2] = sym_plain_type, }, - [105] = { + [92] = { + [1] = alias_sym_interpolation_expression, + }, + [106] = { [3] = sym_plain_type, }, }; @@ -3381,839 +3391,839 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [36] = 13, [37] = 13, [38] = 13, - [39] = 39, - [40] = 39, - [41] = 39, - [42] = 39, - [43] = 39, - [44] = 39, - [45] = 39, - [46] = 39, - [47] = 39, - [48] = 39, - [49] = 39, - [50] = 39, - [51] = 39, - [52] = 39, - [53] = 39, - [54] = 39, - [55] = 39, - [56] = 39, - [57] = 39, - [58] = 39, - [59] = 59, + [39] = 13, + [40] = 40, + [41] = 40, + [42] = 40, + [43] = 40, + [44] = 40, + [45] = 40, + [46] = 40, + [47] = 40, + [48] = 40, + [49] = 40, + [50] = 40, + [51] = 40, + [52] = 40, + [53] = 40, + [54] = 40, + [55] = 40, + [56] = 40, + [57] = 40, + [58] = 40, + [59] = 40, [60] = 60, [61] = 61, [62] = 62, - [63] = 62, + [63] = 63, [64] = 64, - [65] = 65, + [65] = 63, [66] = 66, [67] = 67, [68] = 68, [69] = 69, [70] = 70, [71] = 71, - [72] = 71, - [73] = 71, - [74] = 71, - [75] = 71, - [76] = 71, - [77] = 71, - [78] = 71, - [79] = 71, - [80] = 71, - [81] = 71, - [82] = 71, - [83] = 71, - [84] = 84, - [85] = 84, - [86] = 84, - [87] = 84, - [88] = 84, - [89] = 84, - [90] = 84, - [91] = 84, - [92] = 84, - [93] = 84, - [94] = 84, - [95] = 84, - [96] = 84, - [97] = 84, - [98] = 84, - [99] = 84, - [100] = 84, - [101] = 84, - [102] = 84, - [103] = 84, - [104] = 84, - [105] = 84, - [106] = 106, - [107] = 106, + [72] = 72, + [73] = 72, + [74] = 72, + [75] = 72, + [76] = 72, + [77] = 72, + [78] = 72, + [79] = 72, + [80] = 72, + [81] = 72, + [82] = 72, + [83] = 72, + [84] = 72, + [85] = 85, + [86] = 85, + [87] = 85, + [88] = 85, + [89] = 85, + [90] = 85, + [91] = 85, + [92] = 85, + [93] = 85, + [94] = 85, + [95] = 85, + [96] = 85, + [97] = 85, + [98] = 85, + [99] = 85, + [100] = 85, + [101] = 85, + [102] = 85, + [103] = 85, + [104] = 85, + [105] = 85, + [106] = 85, + [107] = 85, [108] = 108, - [109] = 109, + [109] = 108, [110] = 110, - [111] = 109, - [112] = 110, - [113] = 108, - [114] = 108, - [115] = 109, - [116] = 109, - [117] = 108, - [118] = 110, - [119] = 110, - [120] = 110, - [121] = 108, - [122] = 109, - [123] = 108, - [124] = 110, - [125] = 109, - [126] = 109, - [127] = 110, - [128] = 108, - [129] = 110, - [130] = 108, - [131] = 108, - [132] = 110, + [111] = 110, + [112] = 112, + [113] = 110, + [114] = 110, + [115] = 115, + [116] = 112, + [117] = 110, + [118] = 112, + [119] = 115, + [120] = 115, + [121] = 112, + [122] = 115, + [123] = 112, + [124] = 115, + [125] = 115, + [126] = 110, + [127] = 112, + [128] = 115, + [129] = 112, + [130] = 110, + [131] = 115, + [132] = 112, [133] = 110, [134] = 110, - [135] = 109, - [136] = 108, - [137] = 109, - [138] = 109, - [139] = 108, + [135] = 112, + [136] = 115, + [137] = 110, + [138] = 115, + [139] = 112, [140] = 110, - [141] = 108, - [142] = 110, - [143] = 109, - [144] = 109, - [145] = 108, - [146] = 109, - [147] = 147, - [148] = 147, - [149] = 147, - [150] = 147, - [151] = 147, - [152] = 147, - [153] = 147, - [154] = 147, - [155] = 147, - [156] = 147, - [157] = 147, - [158] = 158, - [159] = 147, - [160] = 147, - [161] = 161, - [162] = 161, - [163] = 161, - [164] = 161, - [165] = 161, - [166] = 161, - [167] = 161, - [168] = 161, - [169] = 161, - [170] = 161, - [171] = 161, - [172] = 161, - [173] = 161, - [174] = 174, - [175] = 175, + [141] = 112, + [142] = 115, + [143] = 115, + [144] = 112, + [145] = 110, + [146] = 112, + [147] = 115, + [148] = 110, + [149] = 149, + [150] = 149, + [151] = 149, + [152] = 149, + [153] = 153, + [154] = 149, + [155] = 149, + [156] = 149, + [157] = 149, + [158] = 149, + [159] = 149, + [160] = 149, + [161] = 149, + [162] = 149, + [163] = 163, + [164] = 163, + [165] = 163, + [166] = 163, + [167] = 163, + [168] = 163, + [169] = 163, + [170] = 163, + [171] = 163, + [172] = 163, + [173] = 163, + [174] = 163, + [175] = 163, [176] = 176, [177] = 177, [178] = 178, - [179] = 178, + [179] = 179, [180] = 180, [181] = 181, - [182] = 181, - [183] = 178, - [184] = 181, + [182] = 182, + [183] = 180, + [184] = 180, [185] = 181, - [186] = 181, - [187] = 178, - [188] = 180, - [189] = 180, + [186] = 182, + [187] = 182, + [188] = 182, + [189] = 181, [190] = 180, [191] = 181, - [192] = 178, - [193] = 181, + [192] = 181, + [193] = 180, [194] = 180, [195] = 180, - [196] = 181, + [196] = 182, [197] = 180, [198] = 180, - [199] = 181, + [199] = 182, [200] = 181, - [201] = 178, - [202] = 178, - [203] = 178, - [204] = 181, - [205] = 180, + [201] = 181, + [202] = 180, + [203] = 181, + [204] = 182, + [205] = 182, [206] = 180, - [207] = 180, - [208] = 178, - [209] = 178, - [210] = 178, + [207] = 182, + [208] = 181, + [209] = 182, + [210] = 180, [211] = 181, - [212] = 180, - [213] = 178, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 65, + [212] = 182, + [213] = 182, + [214] = 181, + [215] = 181, + [216] = 66, + [217] = 217, [218] = 218, [219] = 219, - [220] = 67, - [221] = 68, - [222] = 69, - [223] = 66, - [224] = 70, - [225] = 225, - [226] = 225, - [227] = 225, + [220] = 220, + [221] = 221, + [222] = 67, + [223] = 70, + [224] = 71, + [225] = 69, + [226] = 68, + [227] = 227, [228] = 228, - [229] = 229, - [230] = 230, + [229] = 227, + [230] = 227, [231] = 228, - [232] = 228, - [233] = 230, - [234] = 225, - [235] = 228, - [236] = 229, - [237] = 229, - [238] = 228, - [239] = 230, - [240] = 228, - [241] = 228, - [242] = 228, - [243] = 230, - [244] = 228, - [245] = 228, - [246] = 229, + [232] = 232, + [233] = 228, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 236, + [238] = 227, + [239] = 227, + [240] = 234, + [241] = 236, + [242] = 234, + [243] = 227, + [244] = 234, + [245] = 227, + [246] = 236, [247] = 228, - [248] = 230, - [249] = 225, - [250] = 228, - [251] = 229, - [252] = 252, - [253] = 225, - [254] = 230, - [255] = 229, - [256] = 228, - [257] = 225, - [258] = 228, - [259] = 229, - [260] = 228, - [261] = 261, - [262] = 230, - [263] = 230, - [264] = 264, - [265] = 230, - [266] = 261, - [267] = 230, - [268] = 225, - [269] = 229, - [270] = 225, - [271] = 271, - [272] = 228, - [273] = 228, - [274] = 230, - [275] = 225, - [276] = 225, - [277] = 277, - [278] = 230, - [279] = 229, - [280] = 228, - [281] = 229, - [282] = 229, - [283] = 225, - [284] = 228, - [285] = 228, - [286] = 225, - [287] = 229, - [288] = 228, - [289] = 228, - [290] = 230, - [291] = 229, - [292] = 292, - [293] = 293, + [248] = 227, + [249] = 228, + [250] = 250, + [251] = 227, + [252] = 227, + [253] = 227, + [254] = 234, + [255] = 228, + [256] = 227, + [257] = 236, + [258] = 227, + [259] = 228, + [260] = 260, + [261] = 234, + [262] = 236, + [263] = 236, + [264] = 227, + [265] = 228, + [266] = 227, + [267] = 234, + [268] = 227, + [269] = 236, + [270] = 228, + [271] = 236, + [272] = 234, + [273] = 273, + [274] = 227, + [275] = 227, + [276] = 250, + [277] = 228, + [278] = 227, + [279] = 228, + [280] = 234, + [281] = 234, + [282] = 228, + [283] = 234, + [284] = 236, + [285] = 285, + [286] = 234, + [287] = 236, + [288] = 227, + [289] = 236, + [290] = 290, + [291] = 227, + [292] = 228, + [293] = 227, [294] = 294, - [295] = 295, - [296] = 293, - [297] = 297, - [298] = 298, - [299] = 298, - [300] = 297, + [295] = 294, + [296] = 236, + [297] = 234, + [298] = 227, + [299] = 285, + [300] = 300, [301] = 301, - [302] = 297, + [302] = 300, [303] = 303, [304] = 304, [305] = 305, - [306] = 303, - [307] = 301, - [308] = 293, - [309] = 297, - [310] = 304, - [311] = 297, - [312] = 297, + [306] = 305, + [307] = 304, + [308] = 301, + [309] = 301, + [310] = 310, + [311] = 305, + [312] = 312, [313] = 303, - [314] = 304, - [315] = 298, + [314] = 303, + [315] = 300, [316] = 303, - [317] = 297, - [318] = 318, - [319] = 295, - [320] = 297, - [321] = 297, - [322] = 297, - [323] = 295, - [324] = 324, - [325] = 297, - [326] = 326, - [327] = 297, - [328] = 304, - [329] = 297, - [330] = 295, - [331] = 303, - [332] = 332, - [333] = 333, - [334] = 295, - [335] = 304, - [336] = 297, - [337] = 303, - [338] = 338, - [339] = 298, - [340] = 340, - [341] = 297, - [342] = 342, + [317] = 301, + [318] = 304, + [319] = 300, + [320] = 304, + [321] = 301, + [322] = 322, + [323] = 305, + [324] = 300, + [325] = 325, + [326] = 305, + [327] = 300, + [328] = 328, + [329] = 304, + [330] = 301, + [331] = 301, + [332] = 305, + [333] = 304, + [334] = 334, + [335] = 303, + [336] = 328, + [337] = 328, + [338] = 325, + [339] = 325, + [340] = 305, + [341] = 304, + [342] = 301, [343] = 343, - [344] = 305, - [345] = 297, - [346] = 298, - [347] = 298, - [348] = 304, - [349] = 303, - [350] = 295, - [351] = 297, - [352] = 352, - [353] = 297, - [354] = 295, - [355] = 304, - [356] = 297, + [344] = 301, + [345] = 305, + [346] = 300, + [347] = 304, + [348] = 303, + [349] = 305, + [350] = 301, + [351] = 304, + [352] = 300, + [353] = 300, + [354] = 303, + [355] = 303, + [356] = 304, [357] = 303, - [358] = 303, - [359] = 295, - [360] = 304, - [361] = 361, - [362] = 298, - [363] = 297, - [364] = 297, - [365] = 365, - [366] = 304, - [367] = 298, - [368] = 303, - [369] = 303, - [370] = 304, - [371] = 298, - [372] = 304, - [373] = 295, - [374] = 303, - [375] = 301, - [376] = 293, - [377] = 295, - [378] = 378, - [379] = 304, - [380] = 301, - [381] = 295, - [382] = 297, - [383] = 298, - [384] = 295, - [385] = 295, - [386] = 298, - [387] = 295, + [358] = 304, + [359] = 301, + [360] = 303, + [361] = 305, + [362] = 301, + [363] = 303, + [364] = 364, + [365] = 303, + [366] = 366, + [367] = 305, + [368] = 305, + [369] = 305, + [370] = 300, + [371] = 303, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 304, + [376] = 376, + [377] = 377, + [378] = 305, + [379] = 300, + [380] = 305, + [381] = 373, + [382] = 305, + [383] = 303, + [384] = 384, + [385] = 305, + [386] = 303, + [387] = 387, [388] = 388, - [389] = 298, - [390] = 295, - [391] = 391, - [392] = 391, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 391, - [398] = 396, - [399] = 391, - [400] = 396, - [401] = 305, - [402] = 396, - [403] = 391, - [404] = 396, - [405] = 396, - [406] = 406, - [407] = 396, - [408] = 393, - [409] = 391, - [410] = 396, + [389] = 305, + [390] = 390, + [391] = 325, + [392] = 392, + [393] = 328, + [394] = 300, + [395] = 305, + [396] = 305, + [397] = 305, + [398] = 305, + [399] = 305, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 373, + [404] = 404, + [405] = 400, + [406] = 400, + [407] = 401, + [408] = 408, + [409] = 401, + [410] = 408, [411] = 411, - [412] = 391, - [413] = 391, - [414] = 393, - [415] = 396, - [416] = 396, - [417] = 417, - [418] = 418, - [419] = 396, - [420] = 393, - [421] = 391, + [412] = 401, + [413] = 401, + [414] = 414, + [415] = 401, + [416] = 400, + [417] = 408, + [418] = 401, + [419] = 401, + [420] = 420, + [421] = 408, [422] = 422, - [423] = 391, - [424] = 424, - [425] = 391, - [426] = 417, + [423] = 423, + [424] = 401, + [425] = 408, + [426] = 401, [427] = 427, - [428] = 428, - [429] = 391, - [430] = 391, - [431] = 393, - [432] = 391, - [433] = 417, - [434] = 417, - [435] = 396, - [436] = 396, - [437] = 391, - [438] = 391, - [439] = 393, - [440] = 440, - [441] = 441, - [442] = 442, + [428] = 401, + [429] = 408, + [430] = 401, + [431] = 408, + [432] = 401, + [433] = 422, + [434] = 408, + [435] = 408, + [436] = 408, + [437] = 408, + [438] = 408, + [439] = 400, + [440] = 408, + [441] = 400, + [442] = 408, [443] = 443, - [444] = 444, + [444] = 408, [445] = 445, - [446] = 445, - [447] = 447, - [448] = 448, + [446] = 422, + [447] = 408, + [448] = 422, [449] = 449, [450] = 450, [451] = 451, [452] = 452, - [453] = 451, + [453] = 453, [454] = 454, [455] = 455, - [456] = 440, + [456] = 456, [457] = 457, [458] = 458, [459] = 459, - [460] = 447, - [461] = 444, - [462] = 462, + [460] = 453, + [461] = 461, + [462] = 455, [463] = 463, - [464] = 464, - [465] = 465, - [466] = 305, - [467] = 455, + [464] = 373, + [465] = 451, + [466] = 449, + [467] = 452, [468] = 468, - [469] = 443, - [470] = 441, - [471] = 463, + [469] = 469, + [470] = 470, + [471] = 471, [472] = 472, - [473] = 447, - [474] = 454, - [475] = 440, - [476] = 450, - [477] = 477, - [478] = 449, - [479] = 479, - [480] = 444, - [481] = 305, - [482] = 465, - [483] = 445, - [484] = 452, - [485] = 457, - [486] = 451, - [487] = 441, - [488] = 454, - [489] = 462, - [490] = 468, - [491] = 443, - [492] = 455, - [493] = 442, - [494] = 464, - [495] = 305, - [496] = 468, - [497] = 444, - [498] = 447, - [499] = 465, + [473] = 453, + [474] = 455, + [475] = 472, + [476] = 470, + [477] = 463, + [478] = 468, + [479] = 453, + [480] = 472, + [481] = 470, + [482] = 468, + [483] = 449, + [484] = 463, + [485] = 449, + [486] = 468, + [487] = 470, + [488] = 463, + [489] = 463, + [490] = 455, + [491] = 453, + [492] = 492, + [493] = 493, + [494] = 455, + [495] = 495, + [496] = 496, + [497] = 449, + [498] = 453, + [499] = 472, [500] = 500, - [501] = 454, - [502] = 445, - [503] = 452, - [504] = 451, - [505] = 454, - [506] = 468, - [507] = 452, - [508] = 447, - [509] = 447, - [510] = 444, - [511] = 451, - [512] = 465, - [513] = 445, - [514] = 452, - [515] = 452, - [516] = 305, - [517] = 465, - [518] = 455, - [519] = 443, - [520] = 444, - [521] = 521, - [522] = 468, - [523] = 445, - [524] = 445, - [525] = 464, - [526] = 526, - [527] = 443, - [528] = 454, - [529] = 445, - [530] = 455, - [531] = 451, - [532] = 454, - [533] = 468, - [534] = 441, - [535] = 443, - [536] = 463, - [537] = 472, - [538] = 538, - [539] = 440, - [540] = 455, - [541] = 305, - [542] = 465, - [543] = 305, - [544] = 452, - [545] = 545, - [546] = 449, - [547] = 445, - [548] = 450, - [549] = 451, - [550] = 465, - [551] = 457, - [552] = 449, - [553] = 454, - [554] = 444, + [501] = 468, + [502] = 452, + [503] = 458, + [504] = 457, + [505] = 373, + [506] = 451, + [507] = 507, + [508] = 461, + [509] = 459, + [510] = 458, + [511] = 458, + [512] = 451, + [513] = 451, + [514] = 469, + [515] = 457, + [516] = 471, + [517] = 461, + [518] = 470, + [519] = 458, + [520] = 500, + [521] = 373, + [522] = 451, + [523] = 523, + [524] = 459, + [525] = 452, + [526] = 458, + [527] = 461, + [528] = 457, + [529] = 472, + [530] = 470, + [531] = 457, + [532] = 458, + [533] = 459, + [534] = 461, + [535] = 373, + [536] = 451, + [537] = 452, + [538] = 459, + [539] = 493, + [540] = 468, + [541] = 451, + [542] = 373, + [543] = 457, + [544] = 458, + [545] = 459, + [546] = 461, + [547] = 458, + [548] = 451, + [549] = 452, + [550] = 496, + [551] = 495, + [552] = 471, + [553] = 449, + [554] = 463, [555] = 455, - [556] = 468, - [557] = 443, + [556] = 453, + [557] = 471, [558] = 558, - [559] = 447, - [560] = 464, - [561] = 457, - [562] = 459, - [563] = 452, - [564] = 447, - [565] = 565, - [566] = 566, - [567] = 462, - [568] = 444, + [559] = 493, + [560] = 457, + [561] = 373, + [562] = 458, + [563] = 459, + [564] = 461, + [565] = 451, + [566] = 457, + [567] = 500, + [568] = 373, [569] = 569, - [570] = 442, - [571] = 462, - [572] = 442, - [573] = 457, - [574] = 465, - [575] = 445, - [576] = 465, - [577] = 450, - [578] = 451, - [579] = 440, - [580] = 463, - [581] = 441, - [582] = 464, - [583] = 454, - [584] = 462, - [585] = 442, - [586] = 468, - [587] = 464, - [588] = 468, - [589] = 305, - [590] = 441, - [591] = 463, - [592] = 463, - [593] = 455, - [594] = 443, - [595] = 464, - [596] = 443, - [597] = 442, - [598] = 443, - [599] = 464, - [600] = 600, - [601] = 455, - [602] = 464, - [603] = 462, - [604] = 457, - [605] = 305, - [606] = 449, - [607] = 450, - [608] = 465, - [609] = 464, - [610] = 445, - [611] = 450, - [612] = 441, - [613] = 451, - [614] = 463, - [615] = 615, - [616] = 449, - [617] = 452, - [618] = 618, - [619] = 447, - [620] = 442, - [621] = 440, - [622] = 450, - [623] = 444, - [624] = 477, - [625] = 558, - [626] = 464, - [627] = 454, - [628] = 452, - [629] = 449, - [630] = 449, - [631] = 449, - [632] = 443, - [633] = 468, - [634] = 447, - [635] = 457, - [636] = 441, - [637] = 462, - [638] = 442, - [639] = 441, - [640] = 444, - [641] = 440, - [642] = 455, - [643] = 447, - [644] = 444, - [645] = 454, - [646] = 463, - [647] = 447, - [648] = 444, - [649] = 440, - [650] = 452, - [651] = 464, - [652] = 442, - [653] = 465, - [654] = 305, - [655] = 455, - [656] = 449, - [657] = 443, - [658] = 658, - [659] = 462, - [660] = 457, - [661] = 445, - [662] = 440, - [663] = 450, - [664] = 450, + [570] = 451, + [571] = 452, + [572] = 492, + [573] = 459, + [574] = 496, + [575] = 575, + [576] = 472, + [577] = 577, + [578] = 495, + [579] = 500, + [580] = 580, + [581] = 569, + [582] = 493, + [583] = 456, + [584] = 461, + [585] = 455, + [586] = 463, + [587] = 492, + [588] = 500, + [589] = 493, + [590] = 590, + [591] = 471, + [592] = 496, + [593] = 495, + [594] = 457, + [595] = 458, + [596] = 459, + [597] = 500, + [598] = 461, + [599] = 373, + [600] = 451, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 452, + [605] = 605, + [606] = 500, + [607] = 495, + [608] = 601, + [609] = 575, + [610] = 493, + [611] = 492, + [612] = 457, + [613] = 496, + [614] = 458, + [615] = 495, + [616] = 493, + [617] = 492, + [618] = 580, + [619] = 496, + [620] = 449, + [621] = 459, + [622] = 495, + [623] = 493, + [624] = 492, + [625] = 496, + [626] = 461, + [627] = 373, + [628] = 602, + [629] = 500, + [630] = 495, + [631] = 452, + [632] = 457, + [633] = 457, + [634] = 458, + [635] = 458, + [636] = 459, + [637] = 461, + [638] = 373, + [639] = 459, + [640] = 451, + [641] = 468, + [642] = 500, + [643] = 452, + [644] = 492, + [645] = 605, + [646] = 500, + [647] = 496, + [648] = 471, + [649] = 492, + [650] = 451, + [651] = 495, + [652] = 577, + [653] = 452, + [654] = 457, + [655] = 458, + [656] = 470, + [657] = 657, + [658] = 459, + [659] = 493, + [660] = 461, + [661] = 492, + [662] = 496, + [663] = 373, + [664] = 495, [665] = 451, - [666] = 447, - [667] = 457, - [668] = 305, - [669] = 462, - [670] = 455, - [671] = 442, - [672] = 463, - [673] = 444, - [674] = 447, - [675] = 442, - [676] = 462, - [677] = 444, - [678] = 440, - [679] = 452, - [680] = 457, - [681] = 681, - [682] = 465, - [683] = 443, - [684] = 463, - [685] = 450, - [686] = 441, - [687] = 457, - [688] = 444, - [689] = 558, - [690] = 447, + [666] = 493, + [667] = 452, + [668] = 492, + [669] = 496, + [670] = 495, + [671] = 461, + [672] = 457, + [673] = 500, + [674] = 458, + [675] = 373, + [676] = 451, + [677] = 472, + [678] = 470, + [679] = 468, + [680] = 449, + [681] = 459, + [682] = 463, + [683] = 461, + [684] = 373, + [685] = 455, + [686] = 451, + [687] = 452, + [688] = 453, + [689] = 454, + [690] = 452, [691] = 452, - [692] = 465, - [693] = 452, - [694] = 305, - [695] = 455, - [696] = 443, - [697] = 462, - [698] = 465, - [699] = 444, - [700] = 450, - [701] = 447, - [702] = 305, - [703] = 440, - [704] = 452, - [705] = 463, - [706] = 447, - [707] = 441, - [708] = 465, - [709] = 305, - [710] = 444, + [692] = 451, + [693] = 373, + [694] = 493, + [695] = 492, + [696] = 496, + [697] = 495, + [698] = 461, + [699] = 459, + [700] = 472, + [701] = 470, + [702] = 493, + [703] = 468, + [704] = 449, + [705] = 705, + [706] = 575, + [707] = 458, + [708] = 453, + [709] = 457, + [710] = 457, [711] = 455, - [712] = 443, - [713] = 305, - [714] = 455, - [715] = 443, - [716] = 500, - [717] = 441, - [718] = 449, - [719] = 463, - [720] = 441, - [721] = 468, - [722] = 463, - [723] = 440, - [724] = 450, - [725] = 457, - [726] = 462, - [727] = 442, - [728] = 463, - [729] = 440, - [730] = 441, - [731] = 450, - [732] = 463, - [733] = 457, - [734] = 462, - [735] = 442, - [736] = 465, - [737] = 440, - [738] = 738, - [739] = 450, - [740] = 441, - [741] = 741, - [742] = 457, - [743] = 462, - [744] = 442, - [745] = 442, - [746] = 463, - [747] = 440, - [748] = 450, - [749] = 457, - [750] = 462, - [751] = 462, - [752] = 442, - [753] = 455, - [754] = 305, - [755] = 454, - [756] = 447, - [757] = 457, - [758] = 569, - [759] = 441, - [760] = 442, - [761] = 455, - [762] = 462, - [763] = 468, - [764] = 457, - [765] = 450, - [766] = 450, - [767] = 440, - [768] = 444, - [769] = 442, + [712] = 458, + [713] = 459, + [714] = 461, + [715] = 373, + [716] = 451, + [717] = 452, + [718] = 463, + [719] = 457, + [720] = 463, + [721] = 455, + [722] = 453, + [723] = 492, + [724] = 449, + [725] = 495, + [726] = 468, + [727] = 470, + [728] = 471, + [729] = 458, + [730] = 459, + [731] = 472, + [732] = 472, + [733] = 470, + [734] = 471, + [735] = 458, + [736] = 457, + [737] = 472, + [738] = 453, + [739] = 455, + [740] = 463, + [741] = 458, + [742] = 742, + [743] = 459, + [744] = 468, + [745] = 745, + [746] = 461, + [747] = 373, + [748] = 449, + [749] = 451, + [750] = 452, + [751] = 500, + [752] = 752, + [753] = 453, + [754] = 373, + [755] = 468, + [756] = 451, + [757] = 470, + [758] = 472, + [759] = 472, + [760] = 470, + [761] = 449, + [762] = 752, + [763] = 463, + [764] = 468, + [765] = 449, + [766] = 455, + [767] = 453, + [768] = 705, + [769] = 455, [770] = 463, - [771] = 451, - [772] = 440, - [773] = 444, - [774] = 658, - [775] = 447, - [776] = 462, - [777] = 457, + [771] = 449, + [772] = 453, + [773] = 468, + [774] = 470, + [775] = 463, + [776] = 455, + [777] = 453, [778] = 452, - [779] = 615, - [780] = 447, - [781] = 566, - [782] = 450, - [783] = 440, - [784] = 463, - [785] = 450, - [786] = 441, - [787] = 441, - [788] = 445, - [789] = 465, - [790] = 305, - [791] = 440, - [792] = 463, - [793] = 479, - [794] = 457, - [795] = 442, + [779] = 471, + [780] = 472, + [781] = 472, + [782] = 457, + [783] = 458, + [784] = 459, + [785] = 461, + [786] = 373, + [787] = 451, + [788] = 452, + [789] = 470, + [790] = 468, + [791] = 449, + [792] = 500, + [793] = 463, + [794] = 455, + [795] = 452, [796] = 451, - [797] = 441, - [798] = 462, - [799] = 442, + [797] = 373, + [798] = 461, + [799] = 453, [800] = 455, - [801] = 441, - [802] = 462, - [803] = 457, - [804] = 452, - [805] = 443, - [806] = 450, - [807] = 447, - [808] = 465, - [809] = 464, - [810] = 440, - [811] = 443, - [812] = 444, - [813] = 455, - [814] = 463, - [815] = 452, - [816] = 305, - [817] = 449, - [818] = 444, - [819] = 447, - [820] = 455, - [821] = 452, - [822] = 465, - [823] = 442, - [824] = 462, - [825] = 443, - [826] = 449, - [827] = 443, - [828] = 455, + [801] = 455, + [802] = 459, + [803] = 458, + [804] = 463, + [805] = 457, + [806] = 453, + [807] = 455, + [808] = 463, + [809] = 449, + [810] = 449, + [811] = 453, + [812] = 468, + [813] = 470, + [814] = 468, + [815] = 471, + [816] = 463, + [817] = 471, + [818] = 470, + [819] = 472, + [820] = 449, + [821] = 468, + [822] = 472, + [823] = 373, + [824] = 470, + [825] = 471, + [826] = 468, + [827] = 449, + [828] = 463, [829] = 457, - [830] = 450, - [831] = 521, - [832] = 443, + [830] = 458, + [831] = 459, + [832] = 461, [833] = 455, - [834] = 305, - [835] = 465, - [836] = 452, - [837] = 305, - [838] = 440, - [839] = 463, - [840] = 441, - [841] = 465, - [842] = 538, - [843] = 452, - [844] = 455, - [845] = 447, - [846] = 305, - [847] = 455, - [848] = 545, - [849] = 305, - [850] = 447, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, + [834] = 453, + [835] = 373, + [836] = 451, + [837] = 452, + [838] = 496, + [839] = 470, + [840] = 472, + [841] = 453, + [842] = 455, + [843] = 472, + [844] = 463, + [845] = 472, + [846] = 449, + [847] = 468, + [848] = 470, + [849] = 461, + [850] = 449, + [851] = 470, + [852] = 452, + [853] = 453, + [854] = 455, + [855] = 463, + [856] = 449, + [857] = 468, + [858] = 451, + [859] = 470, + [860] = 472, + [861] = 453, + [862] = 471, + [863] = 455, + [864] = 468, + [865] = 472, + [866] = 463, + [867] = 373, + [868] = 457, + [869] = 461, + [870] = 458, + [871] = 459, [872] = 872, [873] = 873, [874] = 874, @@ -4256,37 +4266,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [911] = 911, [912] = 912, [913] = 913, - [914] = 901, + [914] = 914, [915] = 915, [916] = 916, [917] = 917, - [918] = 900, + [918] = 918, [919] = 919, [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 681, + [925] = 925, [926] = 926, [927] = 927, [928] = 928, - [929] = 929, + [929] = 450, [930] = 930, [931] = 931, [932] = 932, [933] = 933, [934] = 934, [935] = 935, - [936] = 936, + [936] = 915, [937] = 937, - [938] = 900, - [939] = 865, + [938] = 938, + [939] = 939, [940] = 940, [941] = 941, [942] = 942, - [943] = 943, - [944] = 901, + [943] = 906, + [944] = 944, [945] = 945, [946] = 946, [947] = 947, @@ -4305,576 +4315,576 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [960] = 960, [961] = 961, [962] = 962, - [963] = 318, - [964] = 70, - [965] = 68, - [966] = 332, - [967] = 66, - [968] = 343, - [969] = 342, - [970] = 378, - [971] = 67, - [972] = 340, - [973] = 333, - [974] = 294, - [975] = 326, - [976] = 365, - [977] = 69, - [978] = 361, - [979] = 324, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 915, + [967] = 967, + [968] = 928, + [969] = 969, + [970] = 970, + [971] = 928, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, [980] = 980, [981] = 981, - [982] = 326, - [983] = 318, - [984] = 984, - [985] = 395, - [986] = 986, - [987] = 324, - [988] = 988, - [989] = 333, - [990] = 340, - [991] = 343, - [992] = 394, - [993] = 294, - [994] = 365, - [995] = 995, - [996] = 472, - [997] = 600, - [998] = 458, - [999] = 500, - [1000] = 472, - [1001] = 500, - [1002] = 618, - [1003] = 937, - [1004] = 919, - [1005] = 936, - [1006] = 908, - [1007] = 681, - [1008] = 865, - [1009] = 902, - [1010] = 864, - [1011] = 901, - [1012] = 900, - [1013] = 952, - [1014] = 852, - [1015] = 906, - [1016] = 866, - [1017] = 876, - [1018] = 878, - [1019] = 879, - [1020] = 886, - [1021] = 920, - [1022] = 922, - [1023] = 924, - [1024] = 899, - [1025] = 851, - [1026] = 929, - [1027] = 931, - [1028] = 934, - [1029] = 943, - [1030] = 946, - [1031] = 950, - [1032] = 958, - [1033] = 955, - [1034] = 953, - [1035] = 945, - [1036] = 895, - [1037] = 905, - [1038] = 896, - [1039] = 903, - [1040] = 904, - [1041] = 917, - [1042] = 930, - [1043] = 884, - [1044] = 858, - [1045] = 869, - [1046] = 871, - [1047] = 887, - [1048] = 894, - [1049] = 907, - [1050] = 956, - [1051] = 957, - [1052] = 959, - [1053] = 960, - [1054] = 954, - [1055] = 901, - [1056] = 900, - [1057] = 951, - [1058] = 949, - [1059] = 948, - [1060] = 947, - [1061] = 942, - [1062] = 935, - [1063] = 932, - [1064] = 923, - [1065] = 921, - [1066] = 910, - [1067] = 912, - [1068] = 909, - [1069] = 892, - [1070] = 891, - [1071] = 890, - [1072] = 889, + [982] = 982, + [983] = 983, + [984] = 384, + [985] = 67, + [986] = 334, + [987] = 71, + [988] = 70, + [989] = 69, + [990] = 387, + [991] = 376, + [992] = 343, + [993] = 993, + [994] = 366, + [995] = 312, + [996] = 322, + [997] = 390, + [998] = 364, + [999] = 388, + [1000] = 372, + [1001] = 1001, + [1002] = 68, + [1003] = 372, + [1004] = 402, + [1005] = 387, + [1006] = 1006, + [1007] = 390, + [1008] = 1008, + [1009] = 322, + [1010] = 1010, + [1011] = 1011, + [1012] = 364, + [1013] = 366, + [1014] = 312, + [1015] = 376, + [1016] = 404, + [1017] = 469, + [1018] = 69, + [1019] = 558, + [1020] = 603, + [1021] = 469, + [1022] = 70, + [1023] = 67, + [1024] = 454, + [1025] = 523, + [1026] = 71, + [1027] = 454, + [1028] = 68, + [1029] = 978, + [1030] = 945, + [1031] = 923, + [1032] = 930, + [1033] = 931, + [1034] = 933, + [1035] = 935, + [1036] = 956, + [1037] = 959, + [1038] = 958, + [1039] = 977, + [1040] = 916, + [1041] = 970, + [1042] = 967, + [1043] = 946, + [1044] = 875, + [1045] = 873, + [1046] = 894, + [1047] = 893, + [1048] = 891, + [1049] = 878, + [1050] = 879, + [1051] = 876, + [1052] = 896, + [1053] = 874, + [1054] = 890, + [1055] = 944, + [1056] = 917, + [1057] = 948, + [1058] = 450, + [1059] = 880, + [1060] = 881, + [1061] = 889, + [1062] = 887, + [1063] = 925, + [1064] = 922, + [1065] = 926, + [1066] = 952, + [1067] = 924, + [1068] = 899, + [1069] = 920, + [1070] = 951, + [1071] = 906, + [1072] = 919, [1073] = 888, - [1074] = 883, - [1075] = 880, - [1076] = 856, - [1077] = 857, - [1078] = 873, - [1079] = 853, - [1080] = 926, - [1081] = 854, - [1082] = 860, - [1083] = 861, - [1084] = 941, - [1085] = 940, - [1086] = 865, - [1087] = 933, - [1088] = 928, - [1089] = 862, - [1090] = 916, - [1091] = 915, - [1092] = 681, - [1093] = 913, - [1094] = 911, - [1095] = 859, - [1096] = 893, - [1097] = 885, - [1098] = 882, - [1099] = 881, - [1100] = 877, - [1101] = 863, - [1102] = 875, - [1103] = 867, - [1104] = 868, - [1105] = 874, - [1106] = 872, - [1107] = 927, - [1108] = 870, - [1109] = 897, - [1110] = 863, - [1111] = 898, - [1112] = 855, - [1113] = 67, - [1114] = 66, - [1115] = 69, - [1116] = 70, - [1117] = 68, - [1118] = 66, - [1119] = 68, - [1120] = 70, - [1121] = 69, - [1122] = 1122, - [1123] = 67, - [1124] = 70, - [1125] = 66, - [1126] = 68, - [1127] = 69, - [1128] = 67, - [1129] = 66, - [1130] = 68, - [1131] = 70, - [1132] = 326, - [1133] = 378, - [1134] = 343, - [1135] = 340, - [1136] = 333, - [1137] = 342, - [1138] = 1138, - [1139] = 1139, - [1140] = 324, - [1141] = 361, - [1142] = 318, - [1143] = 365, - [1144] = 294, - [1145] = 70, - [1146] = 394, - [1147] = 66, - [1148] = 66, - [1149] = 1149, - [1150] = 67, - [1151] = 68, + [1074] = 953, + [1075] = 939, + [1076] = 938, + [1077] = 964, + [1078] = 981, + [1079] = 927, + [1080] = 883, + [1081] = 898, + [1082] = 885, + [1083] = 906, + [1084] = 450, + [1085] = 886, + [1086] = 950, + [1087] = 877, + [1088] = 915, + [1089] = 928, + [1090] = 892, + [1091] = 900, + [1092] = 962, + [1093] = 961, + [1094] = 921, + [1095] = 960, + [1096] = 980, + [1097] = 979, + [1098] = 915, + [1099] = 969, + [1100] = 957, + [1101] = 932, + [1102] = 955, + [1103] = 928, + [1104] = 914, + [1105] = 954, + [1106] = 882, + [1107] = 937, + [1108] = 884, + [1109] = 916, + [1110] = 975, + [1111] = 974, + [1112] = 973, + [1113] = 947, + [1114] = 895, + [1115] = 901, + [1116] = 872, + [1117] = 902, + [1118] = 903, + [1119] = 965, + [1120] = 972, + [1121] = 976, + [1122] = 897, + [1123] = 904, + [1124] = 905, + [1125] = 907, + [1126] = 963, + [1127] = 908, + [1128] = 913, + [1129] = 912, + [1130] = 949, + [1131] = 911, + [1132] = 942, + [1133] = 941, + [1134] = 918, + [1135] = 909, + [1136] = 934, + [1137] = 940, + [1138] = 910, + [1139] = 69, + [1140] = 71, + [1141] = 68, + [1142] = 70, + [1143] = 67, + [1144] = 69, + [1145] = 68, + [1146] = 71, + [1147] = 1147, + [1148] = 70, + [1149] = 71, + [1150] = 68, + [1151] = 69, [1152] = 67, - [1153] = 69, - [1154] = 69, - [1155] = 70, - [1156] = 68, - [1157] = 395, - [1158] = 69, - [1159] = 1149, - [1160] = 865, - [1161] = 600, - [1162] = 472, - [1163] = 472, - [1164] = 500, - [1165] = 458, - [1166] = 500, - [1167] = 618, - [1168] = 67, - [1169] = 905, - [1170] = 908, - [1171] = 889, - [1172] = 890, - [1173] = 681, - [1174] = 891, - [1175] = 892, - [1176] = 864, - [1177] = 909, - [1178] = 924, - [1179] = 912, - [1180] = 919, - [1181] = 901, - [1182] = 900, - [1183] = 851, - [1184] = 921, - [1185] = 923, - [1186] = 862, - [1187] = 935, - [1188] = 942, - [1189] = 947, - [1190] = 948, - [1191] = 910, - [1192] = 949, - [1193] = 951, - [1194] = 859, - [1195] = 954, - [1196] = 927, - [1197] = 960, - [1198] = 959, - [1199] = 957, - [1200] = 956, - [1201] = 855, - [1202] = 907, - [1203] = 898, - [1204] = 897, - [1205] = 894, - [1206] = 887, - [1207] = 871, - [1208] = 869, - [1209] = 858, - [1210] = 930, - [1211] = 917, - [1212] = 904, - [1213] = 903, - [1214] = 896, - [1215] = 922, - [1216] = 899, - [1217] = 895, - [1218] = 920, - [1219] = 883, - [1220] = 880, - [1221] = 945, - [1222] = 870, - [1223] = 873, - [1224] = 911, - [1225] = 902, - [1226] = 872, - [1227] = 874, - [1228] = 875, - [1229] = 877, - [1230] = 881, - [1231] = 882, - [1232] = 953, - [1233] = 885, - [1234] = 955, - [1235] = 853, - [1236] = 926, - [1237] = 854, - [1238] = 888, - [1239] = 958, - [1240] = 913, - [1241] = 915, - [1242] = 936, - [1243] = 952, - [1244] = 950, - [1245] = 893, - [1246] = 946, - [1247] = 868, - [1248] = 867, - [1249] = 852, - [1250] = 916, + [1153] = 376, + [1154] = 1154, + [1155] = 322, + [1156] = 312, + [1157] = 343, + [1158] = 364, + [1159] = 388, + [1160] = 1160, + [1161] = 384, + [1162] = 390, + [1163] = 366, + [1164] = 372, + [1165] = 387, + [1166] = 68, + [1167] = 70, + [1168] = 404, + [1169] = 70, + [1170] = 906, + [1171] = 1171, + [1172] = 70, + [1173] = 71, + [1174] = 1171, + [1175] = 67, + [1176] = 67, + [1177] = 69, + [1178] = 69, + [1179] = 68, + [1180] = 402, + [1181] = 71, + [1182] = 558, + [1183] = 388, + [1184] = 67, + [1185] = 343, + [1186] = 469, + [1187] = 523, + [1188] = 454, + [1189] = 454, + [1190] = 384, + [1191] = 469, + [1192] = 603, + [1193] = 891, + [1194] = 884, + [1195] = 898, + [1196] = 1196, + [1197] = 917, + [1198] = 887, + [1199] = 919, + [1200] = 938, + [1201] = 918, + [1202] = 921, + [1203] = 946, + [1204] = 914, + [1205] = 876, + [1206] = 973, + [1207] = 875, + [1208] = 897, + [1209] = 978, + [1210] = 955, + [1211] = 974, + [1212] = 947, + [1213] = 945, + [1214] = 928, + [1215] = 900, + [1216] = 944, + [1217] = 925, + [1218] = 901, + [1219] = 902, + [1220] = 951, + [1221] = 904, + [1222] = 905, + [1223] = 1196, + [1224] = 915, + [1225] = 907, + [1226] = 975, + [1227] = 450, + [1228] = 950, + [1229] = 908, + [1230] = 963, + [1231] = 976, + [1232] = 877, + [1233] = 909, + [1234] = 972, + [1235] = 926, + [1236] = 948, + [1237] = 883, + [1238] = 934, + [1239] = 940, + [1240] = 941, + [1241] = 882, + [1242] = 942, + [1243] = 965, + [1244] = 962, + [1245] = 949, + [1246] = 916, + [1247] = 958, + [1248] = 979, + [1249] = 872, + [1250] = 895, [1251] = 937, - [1252] = 943, - [1253] = 884, - [1254] = 941, - [1255] = 940, - [1256] = 906, - [1257] = 860, - [1258] = 933, - [1259] = 857, - [1260] = 856, - [1261] = 928, - [1262] = 861, - [1263] = 932, - [1264] = 866, - [1265] = 934, - [1266] = 931, - [1267] = 865, - [1268] = 876, - [1269] = 929, - [1270] = 878, - [1271] = 886, - [1272] = 879, - [1273] = 863, - [1274] = 1274, - [1275] = 342, - [1276] = 378, - [1277] = 361, - [1278] = 318, - [1279] = 324, - [1280] = 340, - [1281] = 333, - [1282] = 326, - [1283] = 294, - [1284] = 365, - [1285] = 343, - [1286] = 394, - [1287] = 395, - [1288] = 865, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 500, - [1293] = 472, - [1294] = 952, - [1295] = 472, - [1296] = 922, - [1297] = 896, - [1298] = 903, - [1299] = 904, - [1300] = 69, - [1301] = 500, - [1302] = 924, - [1303] = 618, - [1304] = 458, - [1305] = 920, - [1306] = 600, - [1307] = 68, - [1308] = 867, - [1309] = 864, - [1310] = 872, - [1311] = 874, - [1312] = 875, - [1313] = 877, - [1314] = 881, - [1315] = 882, - [1316] = 885, - [1317] = 893, - [1318] = 902, - [1319] = 865, - [1320] = 1320, - [1321] = 859, - [1322] = 852, - [1323] = 937, - [1324] = 681, - [1325] = 927, - [1326] = 884, - [1327] = 906, - [1328] = 936, - [1329] = 862, - [1330] = 899, - [1331] = 898, - [1332] = 897, - [1333] = 900, - [1334] = 866, - [1335] = 911, - [1336] = 913, - [1337] = 876, - [1338] = 878, - [1339] = 879, - [1340] = 886, - [1341] = 910, - [1342] = 901, - [1343] = 66, - [1344] = 67, - [1345] = 868, - [1346] = 70, - [1347] = 941, - [1348] = 851, - [1349] = 929, - [1350] = 931, - [1351] = 934, - [1352] = 855, - [1353] = 861, - [1354] = 860, - [1355] = 943, + [1252] = 954, + [1253] = 960, + [1254] = 961, + [1255] = 888, + [1256] = 932, + [1257] = 889, + [1258] = 981, + [1259] = 890, + [1260] = 953, + [1261] = 969, + [1262] = 952, + [1263] = 920, + [1264] = 939, + [1265] = 899, + [1266] = 980, + [1267] = 922, + [1268] = 970, + [1269] = 893, + [1270] = 923, + [1271] = 967, + [1272] = 906, + [1273] = 913, + [1274] = 404, + [1275] = 873, + [1276] = 903, + [1277] = 878, + [1278] = 879, + [1279] = 927, + [1280] = 894, + [1281] = 912, + [1282] = 911, + [1283] = 910, + [1284] = 924, + [1285] = 930, + [1286] = 931, + [1287] = 896, + [1288] = 874, + [1289] = 880, + [1290] = 881, + [1291] = 933, + [1292] = 935, + [1293] = 956, + [1294] = 885, + [1295] = 959, + [1296] = 957, + [1297] = 964, + [1298] = 977, + [1299] = 886, + [1300] = 892, + [1301] = 402, + [1302] = 523, + [1303] = 957, + [1304] = 469, + [1305] = 887, + [1306] = 888, + [1307] = 898, + [1308] = 390, + [1309] = 387, + [1310] = 906, + [1311] = 376, + [1312] = 372, + [1313] = 366, + [1314] = 364, + [1315] = 603, + [1316] = 454, + [1317] = 312, + [1318] = 469, + [1319] = 322, + [1320] = 312, + [1321] = 454, + [1322] = 1322, + [1323] = 364, + [1324] = 366, + [1325] = 372, + [1326] = 376, + [1327] = 892, + [1328] = 886, + [1329] = 885, + [1330] = 387, + [1331] = 390, + [1332] = 558, + [1333] = 322, + [1334] = 953, + [1335] = 904, + [1336] = 980, + [1337] = 976, + [1338] = 963, + [1339] = 923, + [1340] = 881, + [1341] = 880, + [1342] = 874, + [1343] = 896, + [1344] = 883, + [1345] = 903, + [1346] = 944, + [1347] = 1347, + [1348] = 879, + [1349] = 878, + [1350] = 948, + [1351] = 910, + [1352] = 873, + [1353] = 969, + [1354] = 911, + [1355] = 967, [1356] = 946, - [1357] = 854, - [1358] = 915, - [1359] = 950, - [1360] = 916, - [1361] = 926, - [1362] = 958, - [1363] = 955, - [1364] = 853, - [1365] = 1365, - [1366] = 953, - [1367] = 908, - [1368] = 873, - [1369] = 928, - [1370] = 880, - [1371] = 883, - [1372] = 888, - [1373] = 889, - [1374] = 856, - [1375] = 857, - [1376] = 933, - [1377] = 945, - [1378] = 863, - [1379] = 895, - [1380] = 890, - [1381] = 905, - [1382] = 891, - [1383] = 917, - [1384] = 930, - [1385] = 858, - [1386] = 869, - [1387] = 871, - [1388] = 887, - [1389] = 892, - [1390] = 909, - [1391] = 894, - [1392] = 912, - [1393] = 919, + [1357] = 970, + [1358] = 955, + [1359] = 912, + [1360] = 958, + [1361] = 979, + [1362] = 974, + [1363] = 972, + [1364] = 975, + [1365] = 889, + [1366] = 917, + [1367] = 965, + [1368] = 927, + [1369] = 890, + [1370] = 897, + [1371] = 891, + [1372] = 919, + [1373] = 913, + [1374] = 918, + [1375] = 947, + [1376] = 893, + [1377] = 875, + [1378] = 945, + [1379] = 876, + [1380] = 914, + [1381] = 906, + [1382] = 928, + [1383] = 915, + [1384] = 900, + [1385] = 901, + [1386] = 902, + [1387] = 884, + [1388] = 894, + [1389] = 921, + [1390] = 932, + [1391] = 977, + [1392] = 959, + [1393] = 905, [1394] = 907, - [1395] = 921, - [1396] = 923, - [1397] = 932, - [1398] = 956, - [1399] = 957, - [1400] = 959, - [1401] = 960, - [1402] = 935, - [1403] = 954, - [1404] = 870, - [1405] = 951, - [1406] = 940, - [1407] = 949, - [1408] = 948, - [1409] = 942, - [1410] = 947, - [1411] = 66, - [1412] = 70, - [1413] = 68, - [1414] = 69, - [1415] = 618, - [1416] = 69, - [1417] = 67, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 66, - [1423] = 1423, - [1424] = 68, - [1425] = 898, - [1426] = 897, - [1427] = 1427, - [1428] = 70, - [1429] = 865, - [1430] = 1430, - [1431] = 885, - [1432] = 881, - [1433] = 1433, - [1434] = 1434, - [1435] = 862, - [1436] = 899, - [1437] = 933, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 864, - [1442] = 867, + [1395] = 882, + [1396] = 877, + [1397] = 908, + [1398] = 950, + [1399] = 951, + [1400] = 909, + [1401] = 964, + [1402] = 938, + [1403] = 939, + [1404] = 934, + [1405] = 940, + [1406] = 941, + [1407] = 942, + [1408] = 922, + [1409] = 949, + [1410] = 926, + [1411] = 872, + [1412] = 956, + [1413] = 895, + [1414] = 937, + [1415] = 925, + [1416] = 954, + [1417] = 960, + [1418] = 961, + [1419] = 962, + [1420] = 935, + [1421] = 981, + [1422] = 933, + [1423] = 973, + [1424] = 952, + [1425] = 931, + [1426] = 978, + [1427] = 920, + [1428] = 899, + [1429] = 1429, + [1430] = 930, + [1431] = 924, + [1432] = 916, + [1433] = 70, + [1434] = 450, + [1435] = 1435, + [1436] = 1436, + [1437] = 1437, + [1438] = 450, + [1439] = 69, + [1440] = 916, + [1441] = 71, + [1442] = 67, [1443] = 1443, - [1444] = 868, - [1445] = 911, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 915, - [1450] = 67, - [1451] = 884, - [1452] = 1452, + [1444] = 68, + [1445] = 68, + [1446] = 69, + [1447] = 558, + [1448] = 70, + [1449] = 71, + [1450] = 1450, + [1451] = 67, + [1452] = 69, [1453] = 1453, - [1454] = 916, - [1455] = 859, - [1456] = 927, + [1454] = 68, + [1455] = 70, + [1456] = 1456, [1457] = 1457, - [1458] = 882, - [1459] = 1459, - [1460] = 1460, - [1461] = 877, - [1462] = 857, - [1463] = 1463, + [1458] = 1458, + [1459] = 976, + [1460] = 71, + [1461] = 963, + [1462] = 1462, + [1463] = 906, [1464] = 1464, [1465] = 1465, [1466] = 1466, - [1467] = 1467, - [1468] = 875, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 893, - [1473] = 1473, - [1474] = 874, - [1475] = 872, - [1476] = 870, + [1467] = 946, + [1468] = 913, + [1469] = 938, + [1470] = 912, + [1471] = 939, + [1472] = 911, + [1473] = 955, + [1474] = 910, + [1475] = 965, + [1476] = 1476, [1477] = 1477, - [1478] = 1478, - [1479] = 941, - [1480] = 856, - [1481] = 940, - [1482] = 928, + [1478] = 978, + [1479] = 1479, + [1480] = 969, + [1481] = 1481, + [1482] = 1482, [1483] = 1483, - [1484] = 913, - [1485] = 902, + [1484] = 1484, + [1485] = 927, [1486] = 1486, - [1487] = 1487, - [1488] = 855, + [1487] = 932, + [1488] = 973, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1493, - [1494] = 1494, + [1493] = 903, + [1494] = 972, [1495] = 1495, [1496] = 1496, - [1497] = 1497, + [1497] = 921, [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1501, + [1501] = 926, [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, + [1503] = 922, + [1504] = 884, + [1505] = 883, + [1506] = 882, [1507] = 1507, [1508] = 1508, [1509] = 1509, - [1510] = 1510, - [1511] = 1511, + [1510] = 914, + [1511] = 877, [1512] = 1512, - [1513] = 69, - [1514] = 1514, - [1515] = 472, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, + [1513] = 1513, + [1514] = 950, + [1515] = 1515, + [1516] = 951, + [1517] = 964, + [1518] = 925, [1519] = 1519, - [1520] = 1520, + [1520] = 944, [1521] = 1521, [1522] = 1522, [1523] = 1523, - [1524] = 932, + [1524] = 1524, [1525] = 1525, [1526] = 1526, [1527] = 1527, [1528] = 1528, - [1529] = 1529, + [1529] = 70, [1530] = 1530, [1531] = 1531, - [1532] = 1532, + [1532] = 67, [1533] = 1533, [1534] = 1534, [1535] = 1535, @@ -4892,7 +4902,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1547] = 1547, [1548] = 1548, [1549] = 1549, - [1550] = 500, + [1550] = 1550, [1551] = 1551, [1552] = 1552, [1553] = 1553, @@ -4927,3160 +4937,3194 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1582] = 1582, [1583] = 1583, [1584] = 1584, - [1585] = 66, - [1586] = 69, - [1587] = 67, - [1588] = 70, - [1589] = 68, + [1585] = 454, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, [1590] = 1590, [1591] = 1591, - [1592] = 67, - [1593] = 67, + [1592] = 1592, + [1593] = 1593, [1594] = 1594, [1595] = 1595, [1596] = 1596, - [1597] = 884, - [1598] = 868, - [1599] = 867, - [1600] = 856, - [1601] = 857, - [1602] = 857, - [1603] = 868, - [1604] = 867, - [1605] = 856, - [1606] = 884, - [1607] = 868, - [1608] = 867, - [1609] = 856, - [1610] = 1610, - [1611] = 857, - [1612] = 868, - [1613] = 884, - [1614] = 884, - [1615] = 867, - [1616] = 857, - [1617] = 856, - [1618] = 318, - [1619] = 271, - [1620] = 324, - [1621] = 361, - [1622] = 365, - [1623] = 342, - [1624] = 294, - [1625] = 338, - [1626] = 333, - [1627] = 343, - [1628] = 340, - [1629] = 326, - [1630] = 378, - [1631] = 395, - [1632] = 472, - [1633] = 252, - [1634] = 394, - [1635] = 500, - [1636] = 941, - [1637] = 324, - [1638] = 333, - [1639] = 933, - [1640] = 526, - [1641] = 526, - [1642] = 1642, - [1643] = 1642, - [1644] = 332, - [1645] = 343, - [1646] = 870, - [1647] = 326, - [1648] = 318, - [1649] = 340, - [1650] = 872, - [1651] = 940, - [1652] = 928, - [1653] = 916, - [1654] = 863, - [1655] = 915, - [1656] = 913, - [1657] = 681, - [1658] = 378, - [1659] = 911, - [1660] = 874, - [1661] = 855, - [1662] = 881, - [1663] = 294, - [1664] = 365, - [1665] = 927, - [1666] = 600, - [1667] = 361, - [1668] = 859, - [1669] = 618, - [1670] = 875, - [1671] = 342, - [1672] = 862, - [1673] = 864, - [1674] = 885, - [1675] = 458, - [1676] = 877, - [1677] = 865, - [1678] = 882, - [1679] = 1679, - [1680] = 904, - [1681] = 951, - [1682] = 876, - [1683] = 917, - [1684] = 866, - [1685] = 923, - [1686] = 921, - [1687] = 919, - [1688] = 900, - [1689] = 901, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, + [1604] = 1604, + [1605] = 962, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 469, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 69, + [1620] = 67, + [1621] = 71, + [1622] = 68, + [1623] = 70, + [1624] = 1624, + [1625] = 67, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 67, + [1630] = 1630, + [1631] = 978, + [1632] = 973, + [1633] = 883, + [1634] = 922, + [1635] = 926, + [1636] = 973, + [1637] = 978, + [1638] = 883, + [1639] = 922, + [1640] = 926, + [1641] = 1641, + [1642] = 922, + [1643] = 926, + [1644] = 883, + [1645] = 883, + [1646] = 973, + [1647] = 922, + [1648] = 926, + [1649] = 978, + [1650] = 973, + [1651] = 978, + [1652] = 260, + [1653] = 364, + [1654] = 384, + [1655] = 322, + [1656] = 312, + [1657] = 343, + [1658] = 390, + [1659] = 388, + [1660] = 387, + [1661] = 377, + [1662] = 376, + [1663] = 372, + [1664] = 366, + [1665] = 454, + [1666] = 469, + [1667] = 404, + [1668] = 402, + [1669] = 273, + [1670] = 932, + [1671] = 944, + [1672] = 334, + [1673] = 603, + [1674] = 950, + [1675] = 951, + [1676] = 925, + [1677] = 1677, + [1678] = 946, + [1679] = 972, + [1680] = 965, + [1681] = 590, + [1682] = 955, + [1683] = 1683, + [1684] = 927, + [1685] = 877, + [1686] = 882, + [1687] = 884, + [1688] = 910, + [1689] = 911, [1690] = 912, - [1691] = 869, - [1692] = 903, - [1693] = 909, - [1694] = 935, - [1695] = 896, - [1696] = 922, - [1697] = 930, - [1698] = 942, - [1699] = 865, - [1700] = 892, - [1701] = 947, - [1702] = 948, - [1703] = 898, - [1704] = 949, - [1705] = 952, - [1706] = 929, - [1707] = 891, - [1708] = 899, - [1709] = 472, - [1710] = 890, - [1711] = 920, - [1712] = 852, - [1713] = 937, - [1714] = 889, - [1715] = 936, - [1716] = 888, - [1717] = 858, - [1718] = 500, - [1719] = 883, - [1720] = 953, - [1721] = 878, - [1722] = 880, - [1723] = 932, - [1724] = 681, - [1725] = 897, - [1726] = 931, - [1727] = 908, - [1728] = 924, - [1729] = 851, - [1730] = 954, - [1731] = 902, - [1732] = 955, - [1733] = 943, - [1734] = 394, - [1735] = 905, - [1736] = 958, - [1737] = 895, - [1738] = 960, - [1739] = 934, - [1740] = 906, - [1741] = 681, - [1742] = 910, - [1743] = 926, - [1744] = 395, - [1745] = 959, - [1746] = 873, - [1747] = 879, - [1748] = 946, - [1749] = 957, - [1750] = 853, - [1751] = 956, - [1752] = 886, - [1753] = 907, - [1754] = 900, - [1755] = 950, - [1756] = 901, - [1757] = 861, - [1758] = 894, - [1759] = 887, - [1760] = 860, - [1761] = 854, - [1762] = 871, - [1763] = 945, - [1764] = 893, - [1765] = 361, - [1766] = 324, - [1767] = 252, - [1768] = 868, - [1769] = 1769, - [1770] = 867, - [1771] = 600, - [1772] = 252, - [1773] = 618, - [1774] = 342, - [1775] = 857, - [1776] = 856, - [1777] = 318, - [1778] = 681, - [1779] = 324, - [1780] = 378, - [1781] = 326, - [1782] = 333, - [1783] = 294, - [1784] = 365, - [1785] = 340, - [1786] = 343, - [1787] = 458, - [1788] = 863, - [1789] = 884, - [1790] = 326, - [1791] = 333, - [1792] = 361, - [1793] = 340, - [1794] = 365, - [1795] = 294, - [1796] = 342, - [1797] = 865, - [1798] = 378, - [1799] = 343, - [1800] = 318, - [1801] = 895, - [1802] = 881, - [1803] = 911, - [1804] = 913, - [1805] = 915, - [1806] = 916, - [1807] = 901, - [1808] = 928, - [1809] = 933, - [1810] = 940, - [1811] = 941, - [1812] = 859, - [1813] = 936, - [1814] = 937, - [1815] = 899, - [1816] = 865, - [1817] = 864, - [1818] = 902, - [1819] = 952, - [1820] = 852, - [1821] = 954, - [1822] = 906, - [1823] = 294, - [1824] = 866, - [1825] = 876, - [1826] = 878, - [1827] = 879, - [1828] = 886, - [1829] = 920, - [1830] = 922, - [1831] = 924, - [1832] = 851, - [1833] = 929, - [1834] = 931, - [1835] = 934, - [1836] = 365, - [1837] = 395, - [1838] = 394, - [1839] = 943, - [1840] = 946, - [1841] = 950, - [1842] = 958, - [1843] = 908, - [1844] = 955, - [1845] = 953, - [1846] = 945, - [1847] = 1847, - [1848] = 343, - [1849] = 862, - [1850] = 905, - [1851] = 896, - [1852] = 903, - [1853] = 904, - [1854] = 917, - [1855] = 930, - [1856] = 858, - [1857] = 900, - [1858] = 893, - [1859] = 900, - [1860] = 885, - [1861] = 472, - [1862] = 882, - [1863] = 472, - [1864] = 869, - [1865] = 871, - [1866] = 340, - [1867] = 887, - [1868] = 500, - [1869] = 877, - [1870] = 875, - [1871] = 894, - [1872] = 907, - [1873] = 874, - [1874] = 872, - [1875] = 956, - [1876] = 957, - [1877] = 959, - [1878] = 960, - [1879] = 873, - [1880] = 951, - [1881] = 949, - [1882] = 870, - [1883] = 333, - [1884] = 326, - [1885] = 500, - [1886] = 901, - [1887] = 395, - [1888] = 948, - [1889] = 897, - [1890] = 324, - [1891] = 947, - [1892] = 942, - [1893] = 332, - [1894] = 935, - [1895] = 923, - [1896] = 921, - [1897] = 910, - [1898] = 919, - [1899] = 332, - [1900] = 318, - [1901] = 912, - [1902] = 909, - [1903] = 898, - [1904] = 855, - [1905] = 861, - [1906] = 932, - [1907] = 394, - [1908] = 927, - [1909] = 892, - [1910] = 891, - [1911] = 890, - [1912] = 889, - [1913] = 888, - [1914] = 883, - [1915] = 880, - [1916] = 860, - [1917] = 853, - [1918] = 926, - [1919] = 854, - [1920] = 332, - [1921] = 980, - [1922] = 332, - [1923] = 618, - [1924] = 458, - [1925] = 600, - [1926] = 332, - [1927] = 1927, - [1928] = 458, - [1929] = 600, - [1930] = 618, - [1931] = 949, - [1932] = 870, - [1933] = 1933, - [1934] = 681, - [1935] = 910, - [1936] = 936, - [1937] = 908, - [1938] = 884, - [1939] = 936, - [1940] = 852, - [1941] = 857, - [1942] = 867, - [1943] = 868, - [1944] = 937, - [1945] = 952, - [1946] = 941, - [1947] = 940, - [1948] = 852, - [1949] = 937, - [1950] = 681, - [1951] = 865, + [1691] = 906, + [1692] = 916, + [1693] = 523, + [1694] = 913, + [1695] = 914, + [1696] = 364, + [1697] = 366, + [1698] = 921, + [1699] = 372, + [1700] = 376, + [1701] = 387, + [1702] = 390, + [1703] = 450, + [1704] = 938, + [1705] = 939, + [1706] = 558, + [1707] = 312, + [1708] = 322, + [1709] = 384, + [1710] = 388, + [1711] = 1677, + [1712] = 343, + [1713] = 590, + [1714] = 934, + [1715] = 957, + [1716] = 889, + [1717] = 958, + [1718] = 923, + [1719] = 970, + [1720] = 967, + [1721] = 873, + [1722] = 890, + [1723] = 878, + [1724] = 879, + [1725] = 896, + [1726] = 891, + [1727] = 893, + [1728] = 894, + [1729] = 977, + [1730] = 875, + [1731] = 876, + [1732] = 450, + [1733] = 887, + [1734] = 903, + [1735] = 888, + [1736] = 959, + [1737] = 956, + [1738] = 935, + [1739] = 933, + [1740] = 931, + [1741] = 898, + [1742] = 930, + [1743] = 874, + [1744] = 900, + [1745] = 402, + [1746] = 404, + [1747] = 924, + [1748] = 906, + [1749] = 899, + [1750] = 920, + [1751] = 901, + [1752] = 915, + [1753] = 928, + [1754] = 952, + [1755] = 953, + [1756] = 981, + [1757] = 962, + [1758] = 961, + [1759] = 960, + [1760] = 880, + [1761] = 954, + [1762] = 881, + [1763] = 937, + [1764] = 469, + [1765] = 885, + [1766] = 895, + [1767] = 872, + [1768] = 964, + [1769] = 949, + [1770] = 942, + [1771] = 941, + [1772] = 940, + [1773] = 917, + [1774] = 909, + [1775] = 919, + [1776] = 908, + [1777] = 886, + [1778] = 945, + [1779] = 947, + [1780] = 948, + [1781] = 918, + [1782] = 450, + [1783] = 907, + [1784] = 905, + [1785] = 969, + [1786] = 904, + [1787] = 892, + [1788] = 915, + [1789] = 897, + [1790] = 928, + [1791] = 902, + [1792] = 454, + [1793] = 974, + [1794] = 976, + [1795] = 963, + [1796] = 975, + [1797] = 980, + [1798] = 979, + [1799] = 376, + [1800] = 387, + [1801] = 372, + [1802] = 388, + [1803] = 390, + [1804] = 926, + [1805] = 922, + [1806] = 906, + [1807] = 916, + [1808] = 388, + [1809] = 558, + [1810] = 883, + [1811] = 1811, + [1812] = 523, + [1813] = 450, + [1814] = 390, + [1815] = 387, + [1816] = 384, + [1817] = 384, + [1818] = 376, + [1819] = 372, + [1820] = 322, + [1821] = 312, + [1822] = 366, + [1823] = 366, + [1824] = 364, + [1825] = 603, + [1826] = 364, + [1827] = 343, + [1828] = 273, + [1829] = 273, + [1830] = 312, + [1831] = 973, + [1832] = 978, + [1833] = 343, + [1834] = 322, + [1835] = 913, + [1836] = 956, + [1837] = 910, + [1838] = 911, + [1839] = 912, + [1840] = 322, + [1841] = 961, + [1842] = 940, + [1843] = 981, + [1844] = 903, + [1845] = 884, + [1846] = 882, + [1847] = 877, + [1848] = 914, + [1849] = 953, + [1850] = 950, + [1851] = 951, + [1852] = 404, + [1853] = 921, + [1854] = 402, + [1855] = 925, + [1856] = 934, + [1857] = 938, + [1858] = 939, + [1859] = 364, + [1860] = 948, + [1861] = 937, + [1862] = 952, + [1863] = 944, + [1864] = 946, + [1865] = 895, + [1866] = 872, + [1867] = 963, + [1868] = 976, + [1869] = 972, + [1870] = 454, + [1871] = 965, + [1872] = 955, + [1873] = 949, + [1874] = 932, + [1875] = 969, + [1876] = 920, + [1877] = 899, + [1878] = 962, + [1879] = 927, + [1880] = 942, + [1881] = 941, + [1882] = 960, + [1883] = 924, + [1884] = 930, + [1885] = 964, + [1886] = 957, + [1887] = 945, + [1888] = 947, + [1889] = 918, + [1890] = 897, + [1891] = 974, + [1892] = 975, + [1893] = 931, + [1894] = 979, + [1895] = 980, + [1896] = 933, + [1897] = 935, + [1898] = 892, + [1899] = 886, + [1900] = 954, + [1901] = 909, + [1902] = 402, + [1903] = 917, + [1904] = 885, + [1905] = 404, + [1906] = 959, + [1907] = 977, + [1908] = 894, + [1909] = 893, + [1910] = 881, + [1911] = 880, + [1912] = 874, + [1913] = 896, + [1914] = 879, + [1915] = 878, + [1916] = 891, + [1917] = 890, + [1918] = 889, + [1919] = 873, + [1920] = 967, + [1921] = 334, + [1922] = 928, + [1923] = 915, + [1924] = 312, + [1925] = 923, + [1926] = 334, + [1927] = 366, + [1928] = 1928, + [1929] = 908, + [1930] = 469, + [1931] = 970, + [1932] = 958, + [1933] = 372, + [1934] = 454, + [1935] = 919, + [1936] = 875, + [1937] = 876, + [1938] = 887, + [1939] = 888, + [1940] = 898, + [1941] = 900, + [1942] = 928, + [1943] = 915, + [1944] = 901, + [1945] = 902, + [1946] = 904, + [1947] = 905, + [1948] = 907, + [1949] = 469, + [1950] = 390, + [1951] = 387, [1952] = 906, - [1953] = 933, - [1954] = 928, - [1955] = 876, - [1956] = 878, - [1957] = 866, - [1958] = 879, - [1959] = 916, - [1960] = 876, - [1961] = 878, - [1962] = 879, - [1963] = 886, - [1964] = 863, - [1965] = 1965, - [1966] = 920, - [1967] = 922, - [1968] = 924, - [1969] = 915, - [1970] = 851, - [1971] = 865, - [1972] = 929, - [1973] = 865, - [1974] = 856, - [1975] = 865, - [1976] = 913, - [1977] = 681, - [1978] = 934, - [1979] = 943, - [1980] = 946, - [1981] = 950, - [1982] = 911, - [1983] = 958, - [1984] = 901, - [1985] = 900, - [1986] = 863, - [1987] = 955, - [1988] = 953, - [1989] = 893, - [1990] = 945, - [1991] = 931, - [1992] = 895, - [1993] = 905, - [1994] = 896, - [1995] = 903, - [1996] = 904, - [1997] = 917, - [1998] = 930, - [1999] = 858, - [2000] = 869, - [2001] = 871, - [2002] = 887, - [2003] = 894, - [2004] = 907, - [2005] = 950, - [2006] = 958, - [2007] = 901, - [2008] = 900, - [2009] = 956, - [2010] = 957, - [2011] = 959, - [2012] = 900, - [2013] = 901, - [2014] = 908, - [2015] = 885, - [2016] = 960, - [2017] = 954, - [2018] = 951, - [2019] = 882, - [2020] = 881, - [2021] = 877, - [2022] = 948, - [2023] = 875, - [2024] = 947, - [2025] = 942, - [2026] = 874, - [2027] = 902, - [2028] = 935, - [2029] = 932, - [2030] = 864, - [2031] = 923, - [2032] = 872, - [2033] = 899, - [2034] = 952, - [2035] = 862, - [2036] = 932, - [2037] = 859, - [2038] = 927, - [2039] = 921, - [2040] = 919, - [2041] = 855, - [2042] = 898, - [2043] = 897, - [2044] = 912, - [2045] = 906, - [2046] = 909, - [2047] = 861, - [2048] = 870, - [2049] = 860, - [2050] = 872, - [2051] = 874, - [2052] = 875, - [2053] = 877, - [2054] = 881, - [2055] = 882, - [2056] = 885, - [2057] = 895, - [2058] = 866, - [2059] = 893, - [2060] = 905, - [2061] = 853, - [2062] = 873, - [2063] = 897, - [2064] = 892, - [2065] = 911, - [2066] = 886, - [2067] = 913, - [2068] = 915, - [2069] = 916, - [2070] = 928, - [2071] = 920, - [2072] = 922, - [2073] = 924, - [2074] = 892, + [1953] = 376, + [1954] = 334, + [1955] = 1001, + [1956] = 334, + [1957] = 1957, + [1958] = 334, + [1959] = 523, + [1960] = 603, + [1961] = 603, + [1962] = 558, + [1963] = 558, + [1964] = 523, + [1965] = 923, + [1966] = 959, + [1967] = 906, + [1968] = 970, + [1969] = 974, + [1970] = 881, + [1971] = 958, + [1972] = 880, + [1973] = 874, + [1974] = 450, + [1975] = 917, + [1976] = 916, + [1977] = 896, + [1978] = 1978, + [1979] = 975, + [1980] = 979, + [1981] = 892, + [1982] = 886, + [1983] = 879, + [1984] = 878, + [1985] = 885, + [1986] = 919, + [1987] = 873, + [1988] = 906, + [1989] = 875, + [1990] = 450, + [1991] = 980, + [1992] = 876, + [1993] = 910, + [1994] = 916, + [1995] = 887, + [1996] = 888, + [1997] = 915, + [1998] = 928, + [1999] = 898, + [2000] = 900, + [2001] = 901, + [2002] = 902, + [2003] = 904, + [2004] = 905, + [2005] = 907, + [2006] = 908, + [2007] = 877, + [2008] = 903, + [2009] = 909, + [2010] = 875, + [2011] = 897, + [2012] = 911, + [2013] = 948, + [2014] = 912, + [2015] = 934, + [2016] = 940, + [2017] = 941, + [2018] = 928, + [2019] = 915, + [2020] = 942, + [2021] = 949, + [2022] = 872, + [2023] = 895, + [2024] = 937, + [2025] = 954, + [2026] = 960, + [2027] = 961, + [2028] = 962, + [2029] = 981, + [2030] = 953, + [2031] = 884, + [2032] = 945, + [2033] = 947, + [2034] = 948, + [2035] = 939, + [2036] = 938, + [2037] = 450, + [2038] = 906, + [2039] = 952, + [2040] = 957, + [2041] = 921, + [2042] = 882, + [2043] = 920, + [2044] = 899, + [2045] = 913, + [2046] = 914, + [2047] = 974, + [2048] = 975, + [2049] = 979, + [2050] = 914, + [2051] = 918, + [2052] = 913, + [2053] = 924, + [2054] = 912, + [2055] = 911, + [2056] = 910, + [2057] = 930, + [2058] = 915, + [2059] = 928, + [2060] = 931, + [2061] = 933, + [2062] = 935, + [2063] = 956, + [2064] = 897, + [2065] = 906, + [2066] = 977, + [2067] = 903, + [2068] = 950, + [2069] = 894, + [2070] = 893, + [2071] = 873, + [2072] = 980, + [2073] = 923, + [2074] = 967, [2075] = 891, [2076] = 890, - [2077] = 851, - [2078] = 929, - [2079] = 931, - [2080] = 934, - [2081] = 933, - [2082] = 898, - [2083] = 907, - [2084] = 910, - [2085] = 943, - [2086] = 946, - [2087] = 940, - [2088] = 941, - [2089] = 901, - [2090] = 900, - [2091] = 854, - [2092] = 926, - [2093] = 955, - [2094] = 919, - [2095] = 902, - [2096] = 953, - [2097] = 880, - [2098] = 889, - [2099] = 921, - [2100] = 883, - [2101] = 923, - [2102] = 888, - [2103] = 865, - [2104] = 889, - [2105] = 890, - [2106] = 891, - [2107] = 945, - [2108] = 888, - [2109] = 883, - [2110] = 864, - [2111] = 863, - [2112] = 909, - [2113] = 855, - [2114] = 912, - [2115] = 899, - [2116] = 896, - [2117] = 903, - [2118] = 904, - [2119] = 917, - [2120] = 930, - [2121] = 858, - [2122] = 862, - [2123] = 959, - [2124] = 935, - [2125] = 2125, - [2126] = 942, - [2127] = 869, - [2128] = 871, - [2129] = 887, - [2130] = 947, - [2131] = 960, - [2132] = 894, - [2133] = 861, - [2134] = 860, - [2135] = 948, - [2136] = 854, - [2137] = 926, - [2138] = 853, - [2139] = 956, - [2140] = 957, - [2141] = 949, - [2142] = 859, - [2143] = 873, - [2144] = 954, - [2145] = 880, - [2146] = 951, - [2147] = 927, - [2148] = 361, - [2149] = 378, - [2150] = 2150, - [2151] = 342, - [2152] = 394, - [2153] = 395, - [2154] = 2154, - [2155] = 500, - [2156] = 500, - [2157] = 865, - [2158] = 2158, - [2159] = 2159, - [2160] = 472, - [2161] = 600, - [2162] = 2162, - [2163] = 2163, - [2164] = 618, - [2165] = 472, - [2166] = 458, - [2167] = 472, - [2168] = 2168, - [2169] = 500, - [2170] = 2170, - [2171] = 878, - [2172] = 903, - [2173] = 895, - [2174] = 945, - [2175] = 957, - [2176] = 959, - [2177] = 960, - [2178] = 953, - [2179] = 955, - [2180] = 908, - [2181] = 958, - [2182] = 950, - [2183] = 946, - [2184] = 943, - [2185] = 956, - [2186] = 342, - [2187] = 910, - [2188] = 954, - [2189] = 340, - [2190] = 333, - [2191] = 941, - [2192] = 940, - [2193] = 326, - [2194] = 934, - [2195] = 931, - [2196] = 929, - [2197] = 933, - [2198] = 851, - [2199] = 324, - [2200] = 318, - [2201] = 924, - [2202] = 928, - [2203] = 922, - [2204] = 920, - [2205] = 951, - [2206] = 884, - [2207] = 949, - [2208] = 886, - [2209] = 879, - [2210] = 856, - [2211] = 857, - [2212] = 867, - [2213] = 868, - [2214] = 916, - [2215] = 915, - [2216] = 913, - [2217] = 911, - [2218] = 343, - [2219] = 361, - [2220] = 876, - [2221] = 932, - [2222] = 948, - [2223] = 2223, - [2224] = 896, - [2225] = 378, - [2226] = 866, - [2227] = 947, - [2228] = 942, - [2229] = 935, - [2230] = 905, - [2231] = 904, - [2232] = 906, - [2233] = 900, - [2234] = 893, - [2235] = 901, - [2236] = 923, - [2237] = 936, - [2238] = 2238, - [2239] = 937, - [2240] = 852, - [2241] = 885, - [2242] = 921, - [2243] = 917, - [2244] = 882, - [2245] = 881, - [2246] = 877, - [2247] = 875, - [2248] = 874, - [2249] = 919, - [2250] = 872, - [2251] = 952, - [2252] = 870, - [2253] = 930, - [2254] = 912, - [2255] = 858, - [2256] = 909, - [2257] = 902, - [2258] = 892, - [2259] = 891, - [2260] = 890, - [2261] = 865, - [2262] = 889, - [2263] = 888, - [2264] = 869, - [2265] = 883, - [2266] = 880, - [2267] = 873, - [2268] = 365, - [2269] = 864, - [2270] = 853, - [2271] = 926, - [2272] = 2272, - [2273] = 854, - [2274] = 899, - [2275] = 860, - [2276] = 862, - [2277] = 861, - [2278] = 871, - [2279] = 897, - [2280] = 898, - [2281] = 855, - [2282] = 887, - [2283] = 894, - [2284] = 907, - [2285] = 927, - [2286] = 859, - [2287] = 2287, - [2288] = 2288, - [2289] = 294, - [2290] = 2290, - [2291] = 500, - [2292] = 2292, - [2293] = 2293, - [2294] = 294, - [2295] = 681, - [2296] = 472, - [2297] = 395, - [2298] = 394, - [2299] = 318, - [2300] = 863, - [2301] = 324, - [2302] = 2302, - [2303] = 326, - [2304] = 333, - [2305] = 340, - [2306] = 343, - [2307] = 365, - [2308] = 600, - [2309] = 332, - [2310] = 343, - [2311] = 340, - [2312] = 333, - [2313] = 318, - [2314] = 378, - [2315] = 618, - [2316] = 326, - [2317] = 342, - [2318] = 2318, - [2319] = 324, - [2320] = 458, - [2321] = 361, - [2322] = 365, - [2323] = 294, - [2324] = 962, - [2325] = 946, - [2326] = 2293, - [2327] = 2290, - [2328] = 881, - [2329] = 952, - [2330] = 882, - [2331] = 959, - [2332] = 960, - [2333] = 954, - [2334] = 681, - [2335] = 852, - [2336] = 859, - [2337] = 951, - [2338] = 887, - [2339] = 937, - [2340] = 936, - [2341] = 871, - [2342] = 949, - [2343] = 860, - [2344] = 899, - [2345] = 869, - [2346] = 862, - [2347] = 948, - [2348] = 916, - [2349] = 906, - [2350] = 915, - [2351] = 913, - [2352] = 863, - [2353] = 933, - [2354] = 865, - [2355] = 911, - [2356] = 866, - [2357] = 902, - [2358] = 875, - [2359] = 874, - [2360] = 904, - [2361] = 872, - [2362] = 876, - [2363] = 957, - [2364] = 878, - [2365] = 500, - [2366] = 395, - [2367] = 394, - [2368] = 864, - [2369] = 879, - [2370] = 886, - [2371] = 920, - [2372] = 922, - [2373] = 924, - [2374] = 851, - [2375] = 929, - [2376] = 931, - [2377] = 934, - [2378] = 943, - [2379] = 877, - [2380] = 893, - [2381] = 861, - [2382] = 858, - [2383] = 947, - [2384] = 865, - [2385] = 950, - [2386] = 958, - [2387] = 955, - [2388] = 873, - [2389] = 854, - [2390] = 953, - [2391] = 926, - [2392] = 853, - [2393] = 870, - [2394] = 885, - [2395] = 880, - [2396] = 910, - [2397] = 883, - [2398] = 888, - [2399] = 889, - [2400] = 928, - [2401] = 2401, - [2402] = 917, - [2403] = 894, - [2404] = 945, - [2405] = 890, - [2406] = 956, - [2407] = 891, - [2408] = 908, - [2409] = 855, - [2410] = 907, - [2411] = 895, - [2412] = 905, - [2413] = 897, - [2414] = 927, - [2415] = 941, - [2416] = 892, - [2417] = 940, + [2077] = 892, + [2078] = 886, + [2079] = 885, + [2080] = 889, + [2081] = 918, + [2082] = 951, + [2083] = 881, + [2084] = 880, + [2085] = 874, + [2086] = 896, + [2087] = 884, + [2088] = 921, + [2089] = 882, + [2090] = 877, + [2091] = 879, + [2092] = 878, + [2093] = 950, + [2094] = 925, + [2095] = 947, + [2096] = 951, + [2097] = 917, + [2098] = 925, + [2099] = 970, + [2100] = 938, + [2101] = 944, + [2102] = 958, + [2103] = 964, + [2104] = 927, + [2105] = 945, + [2106] = 967, + [2107] = 946, + [2108] = 969, + [2109] = 961, + [2110] = 2110, + [2111] = 876, + [2112] = 939, + [2113] = 919, + [2114] = 946, + [2115] = 891, + [2116] = 957, + [2117] = 916, + [2118] = 906, + [2119] = 893, + [2120] = 964, + [2121] = 959, + [2122] = 887, + [2123] = 888, + [2124] = 898, + [2125] = 900, + [2126] = 901, + [2127] = 902, + [2128] = 956, + [2129] = 935, + [2130] = 933, + [2131] = 2131, + [2132] = 931, + [2133] = 904, + [2134] = 905, + [2135] = 907, + [2136] = 932, + [2137] = 963, + [2138] = 908, + [2139] = 976, + [2140] = 909, + [2141] = 930, + [2142] = 972, + [2143] = 962, + [2144] = 955, + [2145] = 934, + [2146] = 940, + [2147] = 963, + [2148] = 927, + [2149] = 965, + [2150] = 949, + [2151] = 941, + [2152] = 872, + [2153] = 942, + [2154] = 899, + [2155] = 965, + [2156] = 889, + [2157] = 890, + [2158] = 894, + [2159] = 920, + [2160] = 977, + [2161] = 981, + [2162] = 953, + [2163] = 955, + [2164] = 952, + [2165] = 928, + [2166] = 915, + [2167] = 969, + [2168] = 895, + [2169] = 937, + [2170] = 972, + [2171] = 976, + [2172] = 924, + [2173] = 954, + [2174] = 960, + [2175] = 944, + [2176] = 932, + [2177] = 926, + [2178] = 883, + [2179] = 978, + [2180] = 973, + [2181] = 922, + [2182] = 388, + [2183] = 2183, + [2184] = 384, + [2185] = 343, + [2186] = 404, + [2187] = 402, + [2188] = 2188, + [2189] = 454, + [2190] = 469, + [2191] = 906, + [2192] = 469, + [2193] = 2193, + [2194] = 454, + [2195] = 2195, + [2196] = 2196, + [2197] = 603, + [2198] = 2198, + [2199] = 523, + [2200] = 2200, + [2201] = 558, + [2202] = 2202, + [2203] = 454, + [2204] = 469, + [2205] = 926, + [2206] = 963, + [2207] = 923, + [2208] = 939, + [2209] = 938, + [2210] = 376, + [2211] = 888, + [2212] = 387, + [2213] = 967, + [2214] = 390, + [2215] = 885, + [2216] = 921, + [2217] = 2217, + [2218] = 873, + [2219] = 886, + [2220] = 914, + [2221] = 892, + [2222] = 906, + [2223] = 878, + [2224] = 879, + [2225] = 364, + [2226] = 980, + [2227] = 979, + [2228] = 898, + [2229] = 900, + [2230] = 913, + [2231] = 912, + [2232] = 911, + [2233] = 910, + [2234] = 975, + [2235] = 974, + [2236] = 901, + [2237] = 902, + [2238] = 958, + [2239] = 897, + [2240] = 2240, + [2241] = 875, + [2242] = 2242, + [2243] = 918, + [2244] = 903, + [2245] = 904, + [2246] = 905, + [2247] = 907, + [2248] = 884, + [2249] = 961, + [2250] = 960, + [2251] = 882, + [2252] = 877, + [2253] = 950, + [2254] = 951, + [2255] = 925, + [2256] = 2256, + [2257] = 944, + [2258] = 2258, + [2259] = 946, + [2260] = 948, + [2261] = 947, + [2262] = 945, + [2263] = 908, + [2264] = 881, + [2265] = 896, + [2266] = 922, + [2267] = 957, + [2268] = 874, + [2269] = 883, + [2270] = 973, + [2271] = 978, + [2272] = 909, + [2273] = 962, + [2274] = 954, + [2275] = 917, + [2276] = 934, + [2277] = 940, + [2278] = 941, + [2279] = 942, + [2280] = 876, + [2281] = 889, + [2282] = 890, + [2283] = 891, + [2284] = 893, + [2285] = 894, + [2286] = 372, + [2287] = 976, + [2288] = 977, + [2289] = 972, + [2290] = 959, + [2291] = 956, + [2292] = 935, + [2293] = 933, + [2294] = 931, + [2295] = 937, + [2296] = 965, + [2297] = 930, + [2298] = 955, + [2299] = 924, + [2300] = 312, + [2301] = 895, + [2302] = 949, + [2303] = 899, + [2304] = 322, + [2305] = 952, + [2306] = 880, + [2307] = 932, + [2308] = 964, + [2309] = 919, + [2310] = 969, + [2311] = 920, + [2312] = 953, + [2313] = 981, + [2314] = 872, + [2315] = 928, + [2316] = 927, + [2317] = 915, + [2318] = 887, + [2319] = 970, + [2320] = 366, + [2321] = 387, + [2322] = 390, + [2323] = 364, + [2324] = 366, + [2325] = 450, + [2326] = 372, + [2327] = 469, + [2328] = 454, + [2329] = 376, + [2330] = 388, + [2331] = 2331, + [2332] = 312, + [2333] = 384, + [2334] = 322, + [2335] = 2335, + [2336] = 343, + [2337] = 2337, + [2338] = 2338, + [2339] = 916, + [2340] = 334, + [2341] = 387, + [2342] = 388, + [2343] = 372, + [2344] = 2344, + [2345] = 343, + [2346] = 404, + [2347] = 312, + [2348] = 366, + [2349] = 322, + [2350] = 402, + [2351] = 364, + [2352] = 390, + [2353] = 376, + [2354] = 384, + [2355] = 404, + [2356] = 402, + [2357] = 916, + [2358] = 2337, + [2359] = 906, + [2360] = 2338, + [2361] = 454, + [2362] = 523, + [2363] = 603, + [2364] = 983, + [2365] = 2365, + [2366] = 469, + [2367] = 558, + [2368] = 450, + [2369] = 873, + [2370] = 603, + [2371] = 919, + [2372] = 390, + [2373] = 387, + [2374] = 2374, + [2375] = 376, + [2376] = 372, + [2377] = 366, + [2378] = 875, + [2379] = 876, + [2380] = 364, + [2381] = 916, + [2382] = 921, + [2383] = 887, + [2384] = 888, + [2385] = 927, + [2386] = 898, + [2387] = 900, + [2388] = 901, + [2389] = 2374, + [2390] = 902, + [2391] = 958, + [2392] = 970, + [2393] = 558, + [2394] = 967, + [2395] = 904, + [2396] = 905, + [2397] = 907, + [2398] = 878, + [2399] = 879, + [2400] = 896, + [2401] = 874, + [2402] = 880, + [2403] = 908, + [2404] = 881, + [2405] = 914, + [2406] = 885, + [2407] = 886, + [2408] = 938, + [2409] = 892, + [2410] = 939, + [2411] = 2374, + [2412] = 980, + [2413] = 979, + [2414] = 975, + [2415] = 974, + [2416] = 897, + [2417] = 2374, [2418] = 909, - [2419] = 912, - [2420] = 901, - [2421] = 898, - [2422] = 896, - [2423] = 903, - [2424] = 900, - [2425] = 919, - [2426] = 472, - [2427] = 921, - [2428] = 923, - [2429] = 930, - [2430] = 932, - [2431] = 935, - [2432] = 942, - [2433] = 333, - [2434] = 326, - [2435] = 2435, - [2436] = 863, - [2437] = 681, - [2438] = 458, - [2439] = 2435, - [2440] = 865, - [2441] = 318, - [2442] = 324, - [2443] = 326, - [2444] = 2435, - [2445] = 333, - [2446] = 340, - [2447] = 365, - [2448] = 980, - [2449] = 343, - [2450] = 600, - [2451] = 294, - [2452] = 2435, - [2453] = 618, - [2454] = 981, - [2455] = 2435, - [2456] = 2435, - [2457] = 2435, - [2458] = 2435, - [2459] = 2435, - [2460] = 2435, - [2461] = 2435, - [2462] = 2435, - [2463] = 318, - [2464] = 324, - [2465] = 365, - [2466] = 863, - [2467] = 294, - [2468] = 340, - [2469] = 681, - [2470] = 343, - [2471] = 2435, - [2472] = 899, - [2473] = 945, - [2474] = 934, - [2475] = 333, - [2476] = 340, - [2477] = 931, - [2478] = 343, - [2479] = 893, - [2480] = 929, - [2481] = 851, - [2482] = 860, - [2483] = 854, - [2484] = 950, - [2485] = 70, - [2486] = 68, - [2487] = 66, - [2488] = 869, - [2489] = 946, - [2490] = 318, - [2491] = 922, - [2492] = 324, - [2493] = 924, - [2494] = 920, - [2495] = 326, - [2496] = 952, - [2497] = 936, - [2498] = 908, - [2499] = 378, - [2500] = 911, - [2501] = 913, - [2502] = 915, - [2503] = 294, - [2504] = 365, - [2505] = 916, - [2506] = 955, - [2507] = 926, - [2508] = 361, - [2509] = 885, - [2510] = 953, - [2511] = 853, - [2512] = 902, - [2513] = 882, - [2514] = 881, - [2515] = 886, - [2516] = 873, - [2517] = 880, - [2518] = 883, - [2519] = 879, - [2520] = 2520, - [2521] = 888, - [2522] = 889, - [2523] = 877, - [2524] = 878, - [2525] = 2525, - [2526] = 890, - [2527] = 876, - [2528] = 875, - [2529] = 2520, - [2530] = 891, - [2531] = 874, - [2532] = 866, - [2533] = 872, - [2534] = 870, - [2535] = 940, - [2536] = 895, - [2537] = 892, - [2538] = 905, - [2539] = 896, - [2540] = 865, - [2541] = 910, - [2542] = 928, - [2543] = 903, - [2544] = 901, - [2545] = 904, - [2546] = 864, - [2547] = 917, - [2548] = 909, - [2549] = 961, - [2550] = 912, - [2551] = 919, - [2552] = 933, - [2553] = 943, - [2554] = 921, - [2555] = 900, - [2556] = 995, - [2557] = 986, - [2558] = 988, - [2559] = 923, - [2560] = 984, - [2561] = 862, - [2562] = 935, - [2563] = 342, - [2564] = 942, - [2565] = 947, - [2566] = 861, - [2567] = 865, - [2568] = 948, - [2569] = 930, - [2570] = 949, - [2571] = 906, - [2572] = 951, - [2573] = 859, - [2574] = 954, - [2575] = 681, - [2576] = 927, - [2577] = 960, - [2578] = 959, - [2579] = 957, - [2580] = 956, - [2581] = 855, - [2582] = 907, - [2583] = 852, - [2584] = 937, - [2585] = 898, - [2586] = 897, - [2587] = 941, - [2588] = 894, - [2589] = 900, - [2590] = 901, - [2591] = 887, - [2592] = 871, - [2593] = 863, - [2594] = 958, - [2595] = 858, - [2596] = 932, - [2597] = 901, - [2598] = 326, - [2599] = 900, - [2600] = 318, - [2601] = 324, - [2602] = 294, - [2603] = 326, - [2604] = 2604, - [2605] = 472, - [2606] = 500, - [2607] = 333, - [2608] = 340, - [2609] = 340, - [2610] = 343, - [2611] = 343, - [2612] = 962, - [2613] = 333, - [2614] = 318, - [2615] = 324, - [2616] = 326, - [2617] = 395, - [2618] = 324, - [2619] = 394, - [2620] = 333, - [2621] = 365, - [2622] = 294, - [2623] = 318, - [2624] = 340, - [2625] = 343, - [2626] = 365, - [2627] = 980, - [2628] = 294, - [2629] = 962, - [2630] = 365, - [2631] = 2631, - [2632] = 2632, - [2633] = 2633, - [2634] = 2634, - [2635] = 2635, - [2636] = 2634, - [2637] = 2637, - [2638] = 2634, - [2639] = 2634, - [2640] = 2634, - [2641] = 2635, - [2642] = 2635, - [2643] = 980, - [2644] = 865, - [2645] = 2635, - [2646] = 2635, - [2647] = 2635, - [2648] = 2635, - [2649] = 600, - [2650] = 2635, - [2651] = 2634, - [2652] = 332, - [2653] = 2635, - [2654] = 2634, - [2655] = 2655, - [2656] = 458, - [2657] = 2634, - [2658] = 2635, - [2659] = 332, - [2660] = 2634, - [2661] = 2635, - [2662] = 863, - [2663] = 2635, - [2664] = 2634, - [2665] = 2634, - [2666] = 2635, - [2667] = 618, - [2668] = 2634, - [2669] = 332, - [2670] = 681, - [2671] = 915, - [2672] = 681, - [2673] = 340, - [2674] = 2674, - [2675] = 950, - [2676] = 2676, - [2677] = 958, - [2678] = 908, - [2679] = 2676, - [2680] = 333, - [2681] = 2676, - [2682] = 2674, - [2683] = 2683, - [2684] = 326, - [2685] = 863, - [2686] = 895, - [2687] = 905, - [2688] = 2683, - [2689] = 681, - [2690] = 907, - [2691] = 2691, - [2692] = 343, - [2693] = 959, - [2694] = 960, - [2695] = 2674, - [2696] = 2674, - [2697] = 949, - [2698] = 948, - [2699] = 2691, - [2700] = 947, - [2701] = 942, - [2702] = 935, - [2703] = 340, - [2704] = 2691, - [2705] = 952, - [2706] = 2691, - [2707] = 955, - [2708] = 912, - [2709] = 909, - [2710] = 879, - [2711] = 878, - [2712] = 876, - [2713] = 891, - [2714] = 890, - [2715] = 889, - [2716] = 888, - [2717] = 883, - [2718] = 880, - [2719] = 2674, - [2720] = 926, - [2721] = 854, - [2722] = 2691, - [2723] = 936, - [2724] = 906, - [2725] = 2691, - [2726] = 2726, - [2727] = 941, - [2728] = 940, - [2729] = 910, - [2730] = 2683, - [2731] = 866, - [2732] = 2732, - [2733] = 933, - [2734] = 332, - [2735] = 2637, - [2736] = 2676, - [2737] = 324, - [2738] = 928, - [2739] = 2676, - [2740] = 886, - [2741] = 916, - [2742] = 2691, - [2743] = 913, - [2744] = 911, - [2745] = 893, - [2746] = 2683, - [2747] = 920, - [2748] = 885, - [2749] = 2676, - [2750] = 882, - [2751] = 881, - [2752] = 877, - [2753] = 875, - [2754] = 874, - [2755] = 995, - [2756] = 872, - [2757] = 937, - [2758] = 934, - [2759] = 2674, - [2760] = 852, - [2761] = 2691, - [2762] = 861, - [2763] = 897, - [2764] = 898, - [2765] = 855, - [2766] = 860, - [2767] = 2683, - [2768] = 927, - [2769] = 859, - [2770] = 932, - [2771] = 862, - [2772] = 899, - [2773] = 853, - [2774] = 922, - [2775] = 864, - [2776] = 873, - [2777] = 365, - [2778] = 902, - [2779] = 294, - [2780] = 953, - [2781] = 924, - [2782] = 2674, - [2783] = 318, - [2784] = 2691, - [2785] = 394, - [2786] = 2674, - [2787] = 2683, - [2788] = 892, - [2789] = 365, - [2790] = 681, - [2791] = 294, - [2792] = 2792, - [2793] = 395, - [2794] = 2691, - [2795] = 2795, - [2796] = 2676, - [2797] = 2683, - [2798] = 851, - [2799] = 2674, - [2800] = 919, - [2801] = 921, - [2802] = 923, - [2803] = 2683, - [2804] = 863, - [2805] = 2683, - [2806] = 929, - [2807] = 931, - [2808] = 2691, - [2809] = 324, - [2810] = 951, - [2811] = 2676, - [2812] = 954, - [2813] = 945, - [2814] = 2814, - [2815] = 2674, - [2816] = 957, - [2817] = 956, - [2818] = 2676, - [2819] = 343, - [2820] = 2683, - [2821] = 863, - [2822] = 2674, - [2823] = 318, - [2824] = 2683, - [2825] = 863, - [2826] = 865, - [2827] = 500, - [2828] = 2676, - [2829] = 894, - [2830] = 326, - [2831] = 681, - [2832] = 2832, - [2833] = 887, - [2834] = 871, - [2835] = 869, - [2836] = 2691, - [2837] = 333, - [2838] = 943, - [2839] = 865, - [2840] = 865, - [2841] = 870, - [2842] = 946, - [2843] = 2676, - [2844] = 2844, - [2845] = 2691, - [2846] = 2674, - [2847] = 858, - [2848] = 930, - [2849] = 917, - [2850] = 904, - [2851] = 903, - [2852] = 2674, - [2853] = 2853, - [2854] = 2854, - [2855] = 472, - [2856] = 2676, - [2857] = 896, - [2858] = 2858, - [2859] = 2691, - [2860] = 2683, - [2861] = 2861, - [2862] = 2862, - [2863] = 2861, - [2864] = 2861, - [2865] = 2861, - [2866] = 901, - [2867] = 900, - [2868] = 2868, - [2869] = 2861, - [2870] = 600, - [2871] = 2868, - [2872] = 1927, - [2873] = 2861, - [2874] = 2861, - [2875] = 2875, - [2876] = 2861, - [2877] = 2861, - [2878] = 2878, - [2879] = 2861, - [2880] = 2868, - [2881] = 2861, - [2882] = 2861, - [2883] = 1290, - [2884] = 458, - [2885] = 2885, - [2886] = 2886, - [2887] = 2861, - [2888] = 895, - [2889] = 960, - [2890] = 937, - [2891] = 852, - [2892] = 2892, - [2893] = 878, - [2894] = 2892, - [2895] = 2892, - [2896] = 2892, - [2897] = 68, - [2898] = 2892, - [2899] = 2892, - [2900] = 66, - [2901] = 2892, - [2902] = 2892, - [2903] = 854, - [2904] = 2892, - [2905] = 932, - [2906] = 879, - [2907] = 66, - [2908] = 68, - [2909] = 950, - [2910] = 2892, - [2911] = 942, - [2912] = 70, - [2913] = 880, - [2914] = 958, - [2915] = 883, - [2916] = 2892, - [2917] = 888, - [2918] = 889, - [2919] = 2919, - [2920] = 890, - [2921] = 70, - [2922] = 891, - [2923] = 909, - [2924] = 908, - [2925] = 2892, - [2926] = 2150, - [2927] = 959, - [2928] = 912, - [2929] = 907, - [2930] = 935, - [2931] = 2892, - [2932] = 876, - [2933] = 905, - [2934] = 926, - [2935] = 947, - [2936] = 948, - [2937] = 949, - [2938] = 1291, - [2939] = 1365, - [2940] = 2940, - [2941] = 2940, - [2942] = 2942, - [2943] = 1365, - [2944] = 1291, - [2945] = 1291, - [2946] = 2940, - [2947] = 2942, - [2948] = 2940, - [2949] = 2940, - [2950] = 1291, - [2951] = 1365, - [2952] = 1320, - [2953] = 1291, - [2954] = 1320, - [2955] = 2940, - [2956] = 2940, - [2957] = 2942, - [2958] = 1320, - [2959] = 1365, - [2960] = 2942, - [2961] = 2940, - [2962] = 1365, - [2963] = 1365, - [2964] = 1320, - [2965] = 1291, - [2966] = 1320, - [2967] = 1320, - [2968] = 1320, - [2969] = 1291, - [2970] = 1320, - [2971] = 1320, - [2972] = 1291, - [2973] = 1291, - [2974] = 1291, - [2975] = 2942, - [2976] = 1291, - [2977] = 2940, - [2978] = 1320, - [2979] = 1365, - [2980] = 2942, - [2981] = 2940, - [2982] = 1291, - [2983] = 1320, - [2984] = 2940, - [2985] = 2942, - [2986] = 1365, - [2987] = 1320, - [2988] = 1365, - [2989] = 1365, - [2990] = 1365, - [2991] = 1291, - [2992] = 1320, - [2993] = 1291, - [2994] = 1320, - [2995] = 2942, - [2996] = 1320, - [2997] = 2942, - [2998] = 1291, - [2999] = 1365, - [3000] = 1291, - [3001] = 1320, - [3002] = 1365, - [3003] = 1365, - [3004] = 2942, - [3005] = 2942, - [3006] = 1365, - [3007] = 2940, - [3008] = 2942, - [3009] = 1365, - [3010] = 3010, - [3011] = 3010, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 3012, - [3016] = 3016, - [3017] = 3012, - [3018] = 3012, - [3019] = 3019, - [3020] = 3020, - [3021] = 3012, - [3022] = 3013, - [3023] = 3013, - [3024] = 3012, - [3025] = 3025, - [3026] = 3012, - [3027] = 3013, - [3028] = 3012, - [3029] = 3013, - [3030] = 3030, - [3031] = 3013, - [3032] = 3013, - [3033] = 3033, - [3034] = 3013, - [3035] = 3012, - [3036] = 1590, - [3037] = 3013, - [3038] = 3013, - [3039] = 3013, - [3040] = 3013, - [3041] = 3012, + [2419] = 2374, + [2420] = 934, + [2421] = 913, + [2422] = 940, + [2423] = 912, + [2424] = 911, + [2425] = 910, + [2426] = 918, + [2427] = 948, + [2428] = 947, + [2429] = 941, + [2430] = 942, + [2431] = 945, + [2432] = 2374, + [2433] = 949, + [2434] = 2374, + [2435] = 872, + [2436] = 895, + [2437] = 937, + [2438] = 954, + [2439] = 960, + [2440] = 962, + [2441] = 957, + [2442] = 969, + [2443] = 964, + [2444] = 981, + [2445] = 953, + [2446] = 952, + [2447] = 928, + [2448] = 915, + [2449] = 920, + [2450] = 899, + [2451] = 924, + [2452] = 961, + [2453] = 931, + [2454] = 933, + [2455] = 935, + [2456] = 956, + [2457] = 959, + [2458] = 932, + [2459] = 977, + [2460] = 894, + [2461] = 893, + [2462] = 891, + [2463] = 890, + [2464] = 889, + [2465] = 903, + [2466] = 2374, + [2467] = 906, + [2468] = 930, + [2469] = 923, + [2470] = 884, + [2471] = 2374, + [2472] = 882, + [2473] = 877, + [2474] = 950, + [2475] = 951, + [2476] = 1001, + [2477] = 925, + [2478] = 993, + [2479] = 917, + [2480] = 944, + [2481] = 946, + [2482] = 322, + [2483] = 2374, + [2484] = 2374, + [2485] = 963, + [2486] = 976, + [2487] = 312, + [2488] = 972, + [2489] = 2374, + [2490] = 450, + [2491] = 965, + [2492] = 2374, + [2493] = 955, + [2494] = 523, + [2495] = 941, + [2496] = 891, + [2497] = 961, + [2498] = 364, + [2499] = 960, + [2500] = 931, + [2501] = 933, + [2502] = 954, + [2503] = 322, + [2504] = 312, + [2505] = 935, + [2506] = 364, + [2507] = 366, + [2508] = 343, + [2509] = 372, + [2510] = 937, + [2511] = 895, + [2512] = 376, + [2513] = 872, + [2514] = 955, + [2515] = 949, + [2516] = 965, + [2517] = 312, + [2518] = 387, + [2519] = 390, + [2520] = 942, + [2521] = 322, + [2522] = 940, + [2523] = 927, + [2524] = 956, + [2525] = 384, + [2526] = 948, + [2527] = 934, + [2528] = 972, + [2529] = 909, + [2530] = 976, + [2531] = 906, + [2532] = 959, + [2533] = 963, + [2534] = 908, + [2535] = 450, + [2536] = 907, + [2537] = 905, + [2538] = 904, + [2539] = 977, + [2540] = 902, + [2541] = 901, + [2542] = 964, + [2543] = 900, + [2544] = 898, + [2545] = 888, + [2546] = 887, + [2547] = 2547, + [2548] = 982, + [2549] = 876, + [2550] = 875, + [2551] = 932, + [2552] = 981, + [2553] = 899, + [2554] = 919, + [2555] = 953, + [2556] = 946, + [2557] = 894, + [2558] = 944, + [2559] = 71, + [2560] = 906, + [2561] = 68, + [2562] = 69, + [2563] = 920, + [2564] = 917, + [2565] = 893, + [2566] = 1008, + [2567] = 924, + [2568] = 925, + [2569] = 388, + [2570] = 951, + [2571] = 950, + [2572] = 1011, + [2573] = 1010, + [2574] = 957, + [2575] = 890, + [2576] = 877, + [2577] = 882, + [2578] = 916, + [2579] = 958, + [2580] = 884, + [2581] = 970, + [2582] = 923, + [2583] = 967, + [2584] = 1006, + [2585] = 916, + [2586] = 952, + [2587] = 873, + [2588] = 903, + [2589] = 878, + [2590] = 962, + [2591] = 880, + [2592] = 906, + [2593] = 896, + [2594] = 874, + [2595] = 366, + [2596] = 881, + [2597] = 885, + [2598] = 886, + [2599] = 892, + [2600] = 910, + [2601] = 372, + [2602] = 376, + [2603] = 911, + [2604] = 387, + [2605] = 928, + [2606] = 915, + [2607] = 912, + [2608] = 913, + [2609] = 980, + [2610] = 979, + [2611] = 975, + [2612] = 390, + [2613] = 974, + [2614] = 930, + [2615] = 969, + [2616] = 897, + [2617] = 914, + [2618] = 945, + [2619] = 947, + [2620] = 939, + [2621] = 938, + [2622] = 879, + [2623] = 921, + [2624] = 915, + [2625] = 450, + [2626] = 918, + [2627] = 889, + [2628] = 928, + [2629] = 2629, + [2630] = 390, + [2631] = 387, + [2632] = 469, + [2633] = 454, + [2634] = 928, + [2635] = 915, + [2636] = 312, + [2637] = 376, + [2638] = 372, + [2639] = 366, + [2640] = 364, + [2641] = 402, + [2642] = 404, + [2643] = 322, + [2644] = 312, + [2645] = 364, + [2646] = 983, + [2647] = 983, + [2648] = 322, + [2649] = 366, + [2650] = 390, + [2651] = 372, + [2652] = 387, + [2653] = 376, + [2654] = 376, + [2655] = 387, + [2656] = 322, + [2657] = 312, + [2658] = 390, + [2659] = 372, + [2660] = 364, + [2661] = 366, + [2662] = 1001, + [2663] = 2663, + [2664] = 906, + [2665] = 2665, + [2666] = 2666, + [2667] = 2666, + [2668] = 2665, + [2669] = 334, + [2670] = 2666, + [2671] = 558, + [2672] = 2672, + [2673] = 2666, + [2674] = 2665, + [2675] = 1001, + [2676] = 334, + [2677] = 2666, + [2678] = 2665, + [2679] = 2665, + [2680] = 2666, + [2681] = 523, + [2682] = 2665, + [2683] = 334, + [2684] = 2666, + [2685] = 2666, + [2686] = 2666, + [2687] = 2665, + [2688] = 2665, + [2689] = 2665, + [2690] = 2665, + [2691] = 2666, + [2692] = 2692, + [2693] = 450, + [2694] = 2694, + [2695] = 2665, + [2696] = 2665, + [2697] = 2666, + [2698] = 2698, + [2699] = 916, + [2700] = 603, + [2701] = 2666, + [2702] = 2666, + [2703] = 939, + [2704] = 924, + [2705] = 942, + [2706] = 895, + [2707] = 937, + [2708] = 954, + [2709] = 960, + [2710] = 961, + [2711] = 957, + [2712] = 2712, + [2713] = 322, + [2714] = 920, + [2715] = 899, + [2716] = 2716, + [2717] = 2717, + [2718] = 2712, + [2719] = 930, + [2720] = 931, + [2721] = 933, + [2722] = 935, + [2723] = 956, + [2724] = 959, + [2725] = 897, + [2726] = 893, + [2727] = 891, + [2728] = 909, + [2729] = 2729, + [2730] = 2730, + [2731] = 2730, + [2732] = 876, + [2733] = 875, + [2734] = 938, + [2735] = 917, + [2736] = 2717, + [2737] = 2730, + [2738] = 916, + [2739] = 921, + [2740] = 2730, + [2741] = 2717, + [2742] = 2742, + [2743] = 2730, + [2744] = 914, + [2745] = 2716, + [2746] = 2716, + [2747] = 913, + [2748] = 912, + [2749] = 911, + [2750] = 910, + [2751] = 903, + [2752] = 469, + [2753] = 2717, + [2754] = 884, + [2755] = 2755, + [2756] = 882, + [2757] = 877, + [2758] = 950, + [2759] = 951, + [2760] = 925, + [2761] = 2717, + [2762] = 944, + [2763] = 2712, + [2764] = 946, + [2765] = 2730, + [2766] = 923, + [2767] = 918, + [2768] = 967, + [2769] = 963, + [2770] = 976, + [2771] = 972, + [2772] = 2712, + [2773] = 2717, + [2774] = 965, + [2775] = 955, + [2776] = 962, + [2777] = 932, + [2778] = 969, + [2779] = 873, + [2780] = 980, + [2781] = 927, + [2782] = 892, + [2783] = 948, + [2784] = 964, + [2785] = 916, + [2786] = 450, + [2787] = 886, + [2788] = 2788, + [2789] = 2789, + [2790] = 2712, + [2791] = 2717, + [2792] = 2716, + [2793] = 885, + [2794] = 334, + [2795] = 881, + [2796] = 450, + [2797] = 2730, + [2798] = 979, + [2799] = 975, + [2800] = 2717, + [2801] = 880, + [2802] = 2717, + [2803] = 974, + [2804] = 2717, + [2805] = 874, + [2806] = 2730, + [2807] = 896, + [2808] = 2712, + [2809] = 2716, + [2810] = 2716, + [2811] = 2717, + [2812] = 390, + [2813] = 879, + [2814] = 2716, + [2815] = 2712, + [2816] = 2712, + [2817] = 2817, + [2818] = 2716, + [2819] = 947, + [2820] = 945, + [2821] = 387, + [2822] = 878, + [2823] = 2823, + [2824] = 981, + [2825] = 889, + [2826] = 890, + [2827] = 2730, + [2828] = 2716, + [2829] = 390, + [2830] = 387, + [2831] = 2831, + [2832] = 906, + [2833] = 916, + [2834] = 894, + [2835] = 376, + [2836] = 977, + [2837] = 941, + [2838] = 952, + [2839] = 953, + [2840] = 450, + [2841] = 2716, + [2842] = 1008, + [2843] = 2717, + [2844] = 2716, + [2845] = 872, + [2846] = 949, + [2847] = 906, + [2848] = 906, + [2849] = 2692, + [2850] = 372, + [2851] = 940, + [2852] = 970, + [2853] = 2730, + [2854] = 376, + [2855] = 2855, + [2856] = 2716, + [2857] = 934, + [2858] = 2716, + [2859] = 2730, + [2860] = 372, + [2861] = 366, + [2862] = 364, + [2863] = 958, + [2864] = 908, + [2865] = 2712, + [2866] = 919, + [2867] = 2712, + [2868] = 916, + [2869] = 907, + [2870] = 450, + [2871] = 2712, + [2872] = 2730, + [2873] = 404, + [2874] = 402, + [2875] = 366, + [2876] = 905, + [2877] = 454, + [2878] = 2717, + [2879] = 2716, + [2880] = 904, + [2881] = 2712, + [2882] = 887, + [2883] = 312, + [2884] = 322, + [2885] = 888, + [2886] = 902, + [2887] = 312, + [2888] = 364, + [2889] = 898, + [2890] = 901, + [2891] = 2891, + [2892] = 900, + [2893] = 2893, + [2894] = 2893, + [2895] = 2895, + [2896] = 1435, + [2897] = 2893, + [2898] = 2893, + [2899] = 2893, + [2900] = 2893, + [2901] = 2893, + [2902] = 2902, + [2903] = 603, + [2904] = 2893, + [2905] = 1957, + [2906] = 2906, + [2907] = 2893, + [2908] = 2893, + [2909] = 2893, + [2910] = 2893, + [2911] = 2911, + [2912] = 2912, + [2913] = 523, + [2914] = 2895, + [2915] = 2893, + [2916] = 2916, + [2917] = 2895, + [2918] = 928, + [2919] = 915, + [2920] = 875, + [2921] = 2183, + [2922] = 974, + [2923] = 891, + [2924] = 2924, + [2925] = 71, + [2926] = 2924, + [2927] = 947, + [2928] = 945, + [2929] = 2924, + [2930] = 2924, + [2931] = 954, + [2932] = 2924, + [2933] = 937, + [2934] = 979, + [2935] = 873, + [2936] = 967, + [2937] = 2924, + [2938] = 2938, + [2939] = 923, + [2940] = 2924, + [2941] = 2924, + [2942] = 69, + [2943] = 876, + [2944] = 909, + [2945] = 975, + [2946] = 959, + [2947] = 956, + [2948] = 935, + [2949] = 941, + [2950] = 2924, + [2951] = 942, + [2952] = 933, + [2953] = 931, + [2954] = 69, + [2955] = 930, + [2956] = 68, + [2957] = 68, + [2958] = 895, + [2959] = 2924, + [2960] = 899, + [2961] = 962, + [2962] = 893, + [2963] = 920, + [2964] = 71, + [2965] = 2924, + [2966] = 2924, + [2967] = 961, + [2968] = 2924, + [2969] = 960, + [2970] = 1443, + [2971] = 1437, + [2972] = 2972, + [2973] = 2973, + [2974] = 2973, + [2975] = 2972, + [2976] = 1436, + [2977] = 1443, + [2978] = 1437, + [2979] = 2973, + [2980] = 2972, + [2981] = 2972, + [2982] = 1437, + [2983] = 1437, + [2984] = 1443, + [2985] = 1443, + [2986] = 1436, + [2987] = 1437, + [2988] = 1436, + [2989] = 1436, + [2990] = 1443, + [2991] = 1437, + [2992] = 1437, + [2993] = 2973, + [2994] = 2972, + [2995] = 1437, + [2996] = 1437, + [2997] = 1443, + [2998] = 1436, + [2999] = 1443, + [3000] = 1437, + [3001] = 2973, + [3002] = 2972, + [3003] = 1443, + [3004] = 2972, + [3005] = 2973, + [3006] = 1437, + [3007] = 1436, + [3008] = 1437, + [3009] = 2973, + [3010] = 2973, + [3011] = 2972, + [3012] = 1443, + [3013] = 1436, + [3014] = 2972, + [3015] = 1443, + [3016] = 1436, + [3017] = 1443, + [3018] = 1436, + [3019] = 1437, + [3020] = 2973, + [3021] = 2972, + [3022] = 1436, + [3023] = 2972, + [3024] = 2973, + [3025] = 2973, + [3026] = 1443, + [3027] = 1437, + [3028] = 1436, + [3029] = 1443, + [3030] = 1437, + [3031] = 1443, + [3032] = 1436, + [3033] = 1436, + [3034] = 1443, + [3035] = 1436, + [3036] = 1436, + [3037] = 1443, + [3038] = 1437, + [3039] = 2973, + [3040] = 1436, + [3041] = 2972, [3042] = 3042, - [3043] = 3012, - [3044] = 3013, - [3045] = 3012, - [3046] = 3013, - [3047] = 3012, + [3043] = 3042, + [3044] = 3044, + [3045] = 3045, + [3046] = 3045, + [3047] = 3045, [3048] = 3048, - [3049] = 3012, - [3050] = 3050, - [3051] = 3051, + [3049] = 3048, + [3050] = 3048, + [3051] = 3045, [3052] = 3052, - [3053] = 3053, - [3054] = 3054, - [3055] = 3055, - [3056] = 3056, - [3057] = 3057, - [3058] = 3058, - [3059] = 3059, - [3060] = 3053, - [3061] = 3061, - [3062] = 3062, - [3063] = 3051, - [3064] = 3050, + [3053] = 3045, + [3054] = 1626, + [3055] = 3048, + [3056] = 3048, + [3057] = 3045, + [3058] = 3045, + [3059] = 3048, + [3060] = 3048, + [3061] = 3048, + [3062] = 3048, + [3063] = 3063, + [3064] = 3045, [3065] = 3065, - [3066] = 3066, - [3067] = 3066, - [3068] = 3057, - [3069] = 3050, - [3070] = 3052, + [3066] = 3045, + [3067] = 3067, + [3068] = 3048, + [3069] = 3069, + [3070] = 3045, [3071] = 3071, - [3072] = 3052, - [3073] = 3054, - [3074] = 3061, - [3075] = 3050, - [3076] = 3062, - [3077] = 3051, - [3078] = 3057, - [3079] = 3065, - [3080] = 3053, - [3081] = 3081, - [3082] = 3058, - [3083] = 3059, - [3084] = 3065, - [3085] = 3051, - [3086] = 3062, - [3087] = 3061, + [3072] = 3045, + [3073] = 3045, + [3074] = 3048, + [3075] = 3075, + [3076] = 3076, + [3077] = 3048, + [3078] = 3048, + [3079] = 3045, + [3080] = 3048, + [3081] = 3045, + [3082] = 3082, + [3083] = 3083, + [3084] = 3084, + [3085] = 3084, + [3086] = 3086, + [3087] = 3087, [3088] = 3088, - [3089] = 3089, - [3090] = 3052, - [3091] = 3050, + [3089] = 3084, + [3090] = 3090, + [3091] = 3091, [3092] = 3092, - [3093] = 3093, - [3094] = 3093, - [3095] = 3066, - [3096] = 3057, - [3097] = 3092, - [3098] = 3053, - [3099] = 3055, - [3100] = 3054, - [3101] = 3061, - [3102] = 3062, - [3103] = 3054, - [3104] = 3093, - [3105] = 3092, - [3106] = 3051, - [3107] = 3088, - [3108] = 3053, - [3109] = 3065, - [3110] = 3065, - [3111] = 3051, - [3112] = 3112, - [3113] = 3071, - [3114] = 3062, - [3115] = 3088, - [3116] = 3088, - [3117] = 3055, + [3093] = 3082, + [3094] = 3094, + [3095] = 3084, + [3096] = 3096, + [3097] = 3091, + [3098] = 3098, + [3099] = 3099, + [3100] = 3098, + [3101] = 3094, + [3102] = 3082, + [3103] = 3084, + [3104] = 3086, + [3105] = 3091, + [3106] = 3094, + [3107] = 3107, + [3108] = 3108, + [3109] = 3088, + [3110] = 3090, + [3111] = 3082, + [3112] = 3098, + [3113] = 3083, + [3114] = 3083, + [3115] = 3115, + [3116] = 3107, + [3117] = 3115, [3118] = 3092, - [3119] = 3093, - [3120] = 3055, - [3121] = 3121, - [3122] = 3059, - [3123] = 3059, - [3124] = 3058, - [3125] = 3066, - [3126] = 3054, - [3127] = 3061, - [3128] = 3053, - [3129] = 3057, - [3130] = 3053, - [3131] = 3059, - [3132] = 3058, - [3133] = 3059, - [3134] = 3058, - [3135] = 3050, - [3136] = 3053, - [3137] = 3052, - [3138] = 3062, - [3139] = 3051, - [3140] = 3058, - [3141] = 3065, - [3142] = 3059, - [3143] = 3058, - [3144] = 3065, - [3145] = 3058, - [3146] = 3059, - [3147] = 3053, - [3148] = 3051, - [3149] = 3062, - [3150] = 3059, - [3151] = 3055, - [3152] = 3152, - [3153] = 3058, - [3154] = 3059, - [3155] = 3054, - [3156] = 3055, - [3157] = 3058, - [3158] = 3065, - [3159] = 3058, - [3160] = 3059, - [3161] = 3053, - [3162] = 3052, - [3163] = 3058, - [3164] = 3058, - [3165] = 3059, - [3166] = 3059, - [3167] = 3093, - [3168] = 3092, - [3169] = 3059, - [3170] = 3050, - [3171] = 3057, - [3172] = 3088, - [3173] = 3052, - [3174] = 3057, - [3175] = 3066, - [3176] = 3053, - [3177] = 3065, - [3178] = 3061, - [3179] = 3058, - [3180] = 3066, - [3181] = 3066, - [3182] = 3062, - [3183] = 3050, - [3184] = 3093, - [3185] = 3052, - [3186] = 3092, - [3187] = 3066, - [3188] = 3054, - [3189] = 3061, - [3190] = 3055, + [3119] = 3119, + [3120] = 3084, + [3121] = 3092, + [3122] = 3088, + [3123] = 3123, + [3124] = 3086, + [3125] = 3096, + [3126] = 3096, + [3127] = 3099, + [3128] = 3128, + [3129] = 3087, + [3130] = 3107, + [3131] = 3119, + [3132] = 3090, + [3133] = 3083, + [3134] = 3092, + [3135] = 3083, + [3136] = 3119, + [3137] = 3084, + [3138] = 3090, + [3139] = 3087, + [3140] = 3099, + [3141] = 3096, + [3142] = 3086, + [3143] = 3091, + [3144] = 3094, + [3145] = 3082, + [3146] = 3119, + [3147] = 3088, + [3148] = 3098, + [3149] = 3107, + [3150] = 3119, + [3151] = 3084, + [3152] = 3082, + [3153] = 3086, + [3154] = 3094, + [3155] = 3091, + [3156] = 3107, + [3157] = 3115, + [3158] = 3098, + [3159] = 3090, + [3160] = 3083, + [3161] = 3088, + [3162] = 3086, + [3163] = 3115, + [3164] = 3115, + [3165] = 3107, + [3166] = 3119, + [3167] = 3115, + [3168] = 3082, + [3169] = 3084, + [3170] = 3092, + [3171] = 3092, + [3172] = 3094, + [3173] = 3092, + [3174] = 3099, + [3175] = 3091, + [3176] = 3091, + [3177] = 3094, + [3178] = 3082, + [3179] = 3119, + [3180] = 3088, + [3181] = 3086, + [3182] = 3096, + [3183] = 3099, + [3184] = 3096, + [3185] = 3096, + [3186] = 3099, + [3187] = 3099, + [3188] = 3086, + [3189] = 3092, + [3190] = 3084, [3191] = 3088, - [3192] = 3055, - [3193] = 3054, - [3194] = 3050, - [3195] = 3088, - [3196] = 3055, - [3197] = 3092, - [3198] = 3093, - [3199] = 3066, - [3200] = 3066, - [3201] = 3088, - [3202] = 3054, - [3203] = 3061, - [3204] = 3092, - [3205] = 3093, - [3206] = 3058, - [3207] = 3057, - [3208] = 3059, - [3209] = 3088, - [3210] = 3058, - [3211] = 3059, - [3212] = 3059, - [3213] = 3062, - [3214] = 3058, - [3215] = 3215, - [3216] = 3057, - [3217] = 3092, - [3218] = 3051, - [3219] = 3053, - [3220] = 3093, - [3221] = 3065, - [3222] = 3050, - [3223] = 3065, - [3224] = 3051, - [3225] = 3052, - [3226] = 3052, - [3227] = 3058, - [3228] = 3059, - [3229] = 3066, - [3230] = 3065, - [3231] = 3057, - [3232] = 3062, - [3233] = 3061, - [3234] = 3059, - [3235] = 3058, - [3236] = 3053, - [3237] = 3054, - [3238] = 3061, - [3239] = 3054, - [3240] = 3058, - [3241] = 3059, - [3242] = 3055, - [3243] = 3052, - [3244] = 3050, - [3245] = 3053, - [3246] = 3057, - [3247] = 3053, - [3248] = 3053, - [3249] = 3061, - [3250] = 3059, - [3251] = 3055, - [3252] = 3054, - [3253] = 3061, - [3254] = 3062, - [3255] = 3051, - [3256] = 3052, - [3257] = 3052, - [3258] = 3093, - [3259] = 3092, - [3260] = 3260, - [3261] = 3065, - [3262] = 3050, - [3263] = 3057, - [3264] = 3057, - [3265] = 3050, - [3266] = 3066, - [3267] = 3055, - [3268] = 3054, - [3269] = 3061, - [3270] = 3088, - [3271] = 3062, - [3272] = 3051, - [3273] = 3065, - [3274] = 3055, - [3275] = 3051, - [3276] = 3092, - [3277] = 3066, - [3278] = 3052, - [3279] = 3062, - [3280] = 3071, - [3281] = 3062, - [3282] = 3093, - [3283] = 3050, - [3284] = 3088, - [3285] = 3057, - [3286] = 3065, - [3287] = 3054, - [3288] = 3066, - [3289] = 3061, - [3290] = 3051, - [3291] = 3059, - [3292] = 3062, - [3293] = 3051, - [3294] = 3055, - [3295] = 3052, - [3296] = 3050, - [3297] = 3057, - [3298] = 3065, - [3299] = 3051, - [3300] = 3062, - [3301] = 3061, - [3302] = 3054, - [3303] = 3055, - [3304] = 3058, - [3305] = 3057, - [3306] = 3055, - [3307] = 3054, - [3308] = 3050, - [3309] = 3088, - [3310] = 3061, - [3311] = 3052, - [3312] = 3092, - [3313] = 3093, - [3314] = 3058, - [3315] = 3315, - [3316] = 3316, - [3317] = 3315, - [3318] = 3318, - [3319] = 3319, - [3320] = 3315, - [3321] = 3315, - [3322] = 3315, - [3323] = 3323, - [3324] = 3315, - [3325] = 3315, - [3326] = 3315, - [3327] = 3315, - [3328] = 3315, - [3329] = 3315, - [3330] = 3315, - [3331] = 3331, - [3332] = 867, - [3333] = 868, - [3334] = 856, - [3335] = 884, - [3336] = 857, - [3337] = 1122, - [3338] = 3338, - [3339] = 856, - [3340] = 857, - [3341] = 868, - [3342] = 867, - [3343] = 3343, - [3344] = 884, - [3345] = 3345, - [3346] = 3346, - [3347] = 1122, - [3348] = 2170, - [3349] = 1122, - [3350] = 3350, - [3351] = 3351, - [3352] = 1433, - [3353] = 3353, - [3354] = 3354, - [3355] = 2238, - [3356] = 3356, - [3357] = 1421, - [3358] = 3354, - [3359] = 1427, - [3360] = 3354, - [3361] = 3354, + [3192] = 3087, + [3193] = 3098, + [3194] = 3194, + [3195] = 3115, + [3196] = 3087, + [3197] = 3197, + [3198] = 3107, + [3199] = 3115, + [3200] = 3090, + [3201] = 3083, + [3202] = 3107, + [3203] = 3119, + [3204] = 3098, + [3205] = 3090, + [3206] = 3087, + [3207] = 3099, + [3208] = 3096, + [3209] = 3084, + [3210] = 3091, + [3211] = 3086, + [3212] = 3099, + [3213] = 3094, + [3214] = 3082, + [3215] = 3092, + [3216] = 3088, + [3217] = 3098, + [3218] = 3098, + [3219] = 3084, + [3220] = 3088, + [3221] = 3094, + [3222] = 3091, + [3223] = 3091, + [3224] = 3094, + [3225] = 3086, + [3226] = 3087, + [3227] = 3099, + [3228] = 3082, + [3229] = 3096, + [3230] = 3087, + [3231] = 3087, + [3232] = 3092, + [3233] = 3087, + [3234] = 3084, + [3235] = 3119, + [3236] = 3090, + [3237] = 3083, + [3238] = 3107, + [3239] = 3115, + [3240] = 3096, + [3241] = 3115, + [3242] = 3119, + [3243] = 3090, + [3244] = 3083, + [3245] = 3107, + [3246] = 3246, + [3247] = 3107, + [3248] = 3092, + [3249] = 3119, + [3250] = 3115, + [3251] = 3107, + [3252] = 3098, + [3253] = 3084, + [3254] = 3099, + [3255] = 3255, + [3256] = 3090, + [3257] = 3083, + [3258] = 3098, + [3259] = 3083, + [3260] = 3086, + [3261] = 3088, + [3262] = 3123, + [3263] = 3090, + [3264] = 3088, + [3265] = 3098, + [3266] = 3087, + [3267] = 3099, + [3268] = 3096, + [3269] = 3092, + [3270] = 3086, + [3271] = 3096, + [3272] = 3090, + [3273] = 3087, + [3274] = 3099, + [3275] = 3119, + [3276] = 3096, + [3277] = 3099, + [3278] = 3088, + [3279] = 3086, + [3280] = 3083, + [3281] = 3087, + [3282] = 3082, + [3283] = 3094, + [3284] = 3091, + [3285] = 3285, + [3286] = 3084, + [3287] = 3119, + [3288] = 3090, + [3289] = 3083, + [3290] = 3107, + [3291] = 3115, + [3292] = 3107, + [3293] = 3086, + [3294] = 3088, + [3295] = 3295, + [3296] = 3096, + [3297] = 3092, + [3298] = 3119, + [3299] = 3090, + [3300] = 3083, + [3301] = 3107, + [3302] = 3086, + [3303] = 3098, + [3304] = 3090, + [3305] = 3115, + [3306] = 3115, + [3307] = 3088, + [3308] = 3098, + [3309] = 3098, + [3310] = 3092, + [3311] = 3083, + [3312] = 3115, + [3313] = 3099, + [3314] = 3087, + [3315] = 3090, + [3316] = 3083, + [3317] = 3090, + [3318] = 3091, + [3319] = 3088, + [3320] = 3107, + [3321] = 3094, + [3322] = 3082, + [3323] = 3088, + [3324] = 3086, + [3325] = 3083, + [3326] = 3119, + [3327] = 3096, + [3328] = 3090, + [3329] = 3096, + [3330] = 3099, + [3331] = 3083, + [3332] = 3087, + [3333] = 3090, + [3334] = 3083, + [3335] = 3090, + [3336] = 3083, + [3337] = 3083, + [3338] = 3098, + [3339] = 3090, + [3340] = 3087, + [3341] = 3084, + [3342] = 3119, + [3343] = 3123, + [3344] = 3115, + [3345] = 3083, + [3346] = 3090, + [3347] = 3347, + [3348] = 3348, + [3349] = 3349, + [3350] = 3349, + [3351] = 3349, + [3352] = 3349, + [3353] = 3349, + [3354] = 3349, + [3355] = 3349, + [3356] = 3349, + [3357] = 3349, + [3358] = 3358, + [3359] = 3349, + [3360] = 3349, + [3361] = 3349, [3362] = 3362, - [3363] = 2292, - [3364] = 3364, - [3365] = 3365, - [3366] = 3366, - [3367] = 2302, - [3368] = 3368, - [3369] = 3368, + [3363] = 3363, + [3364] = 883, + [3365] = 978, + [3366] = 926, + [3367] = 922, + [3368] = 973, + [3369] = 1147, [3370] = 3370, - [3371] = 3371, + [3371] = 922, [3372] = 3372, - [3373] = 3372, - [3374] = 3374, - [3375] = 3375, - [3376] = 3372, + [3373] = 3373, + [3374] = 926, + [3375] = 883, + [3376] = 978, [3377] = 3377, - [3378] = 3372, - [3379] = 3368, - [3380] = 3380, - [3381] = 3380, + [3378] = 973, + [3379] = 1147, + [3380] = 1147, + [3381] = 1519, [3382] = 3382, - [3383] = 3372, - [3384] = 3368, - [3385] = 3368, - [3386] = 898, - [3387] = 3372, - [3388] = 618, - [3389] = 3372, - [3390] = 3368, - [3391] = 3368, - [3392] = 3372, - [3393] = 3368, - [3394] = 3368, - [3395] = 3372, - [3396] = 3372, - [3397] = 865, + [3383] = 2193, + [3384] = 3384, + [3385] = 3385, + [3386] = 3386, + [3387] = 3385, + [3388] = 2217, + [3389] = 1458, + [3390] = 1450, + [3391] = 3391, + [3392] = 3385, + [3393] = 3385, + [3394] = 3394, + [3395] = 2331, + [3396] = 2335, + [3397] = 3397, [3398] = 3398, - [3399] = 3372, - [3400] = 897, - [3401] = 3401, - [3402] = 3368, - [3403] = 3368, - [3404] = 3372, - [3405] = 3405, - [3406] = 3406, - [3407] = 3372, - [3408] = 3368, - [3409] = 3368, - [3410] = 3380, - [3411] = 3372, - [3412] = 3368, - [3413] = 3380, - [3414] = 893, - [3415] = 3415, + [3399] = 3399, + [3400] = 3400, + [3401] = 3400, + [3402] = 3402, + [3403] = 3400, + [3404] = 3400, + [3405] = 3400, + [3406] = 3402, + [3407] = 906, + [3408] = 3408, + [3409] = 3409, + [3410] = 3400, + [3411] = 3402, + [3412] = 3412, + [3413] = 558, + [3414] = 3414, + [3415] = 3402, [3416] = 3416, - [3417] = 899, - [3418] = 902, + [3417] = 3417, + [3418] = 3418, [3419] = 3419, - [3420] = 3420, - [3421] = 3421, - [3422] = 859, - [3423] = 3423, + [3420] = 3402, + [3421] = 3402, + [3422] = 3400, + [3423] = 3402, [3424] = 3424, - [3425] = 881, - [3426] = 911, - [3427] = 913, - [3428] = 915, - [3429] = 916, - [3430] = 928, - [3431] = 941, - [3432] = 864, - [3433] = 862, - [3434] = 3434, - [3435] = 875, - [3436] = 933, - [3437] = 3437, - [3438] = 940, - [3439] = 882, - [3440] = 855, - [3441] = 870, - [3442] = 872, - [3443] = 927, - [3444] = 877, - [3445] = 874, - [3446] = 885, - [3447] = 3447, + [3425] = 3402, + [3426] = 3426, + [3427] = 3400, + [3428] = 3400, + [3429] = 3429, + [3430] = 3400, + [3431] = 3400, + [3432] = 3402, + [3433] = 3402, + [3434] = 976, + [3435] = 3400, + [3436] = 3402, + [3437] = 3400, + [3438] = 3429, + [3439] = 3402, + [3440] = 963, + [3441] = 3400, + [3442] = 3402, + [3443] = 3429, + [3444] = 3402, + [3445] = 3429, + [3446] = 3446, + [3447] = 969, [3448] = 3448, - [3449] = 3449, - [3450] = 3450, + [3449] = 964, + [3450] = 903, [3451] = 3451, [3452] = 3452, [3453] = 3453, - [3454] = 3451, - [3455] = 3451, - [3456] = 3456, - [3457] = 3451, - [3458] = 3451, - [3459] = 3451, - [3460] = 3460, - [3461] = 3451, - [3462] = 3451, - [3463] = 910, - [3464] = 3451, - [3465] = 3451, - [3466] = 3451, - [3467] = 3451, - [3468] = 3468, - [3469] = 3469, + [3454] = 927, + [3455] = 939, + [3456] = 932, + [3457] = 882, + [3458] = 972, + [3459] = 914, + [3460] = 921, + [3461] = 884, + [3462] = 938, + [3463] = 913, + [3464] = 3464, + [3465] = 912, + [3466] = 3466, + [3467] = 925, + [3468] = 910, + [3469] = 946, [3470] = 3470, [3471] = 3471, - [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 3476, - [3477] = 3477, - [3478] = 3478, + [3472] = 950, + [3473] = 877, + [3474] = 965, + [3475] = 951, + [3476] = 955, + [3477] = 911, + [3478] = 944, [3479] = 3479, [3480] = 3480, [3481] = 3481, [3482] = 3482, - [3483] = 3483, - [3484] = 3484, + [3483] = 3482, + [3484] = 3482, [3485] = 3485, - [3486] = 3486, - [3487] = 3487, - [3488] = 3488, + [3486] = 3482, + [3487] = 3482, + [3488] = 3482, [3489] = 3489, [3490] = 3490, - [3491] = 3491, - [3492] = 3492, - [3493] = 3489, - [3494] = 3489, - [3495] = 3490, - [3496] = 3496, - [3497] = 3491, - [3498] = 3498, - [3499] = 3499, - [3500] = 3491, - [3501] = 3489, + [3491] = 3482, + [3492] = 3482, + [3493] = 3482, + [3494] = 3494, + [3495] = 3495, + [3496] = 3482, + [3497] = 3482, + [3498] = 917, + [3499] = 3482, + [3500] = 3500, + [3501] = 3501, [3502] = 3502, - [3503] = 3490, - [3504] = 3490, - [3505] = 3489, - [3506] = 3490, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 3506, [3507] = 3507, - [3508] = 3489, - [3509] = 3490, + [3508] = 3508, + [3509] = 3509, [3510] = 3510, [3511] = 3511, - [3512] = 3491, - [3513] = 3490, - [3514] = 3489, - [3515] = 3490, - [3516] = 3490, + [3512] = 3512, + [3513] = 3513, + [3514] = 3514, + [3515] = 3515, + [3516] = 3516, [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 3491, - [3521] = 3521, + [3520] = 3520, + [3521] = 3520, [3522] = 3522, - [3523] = 3491, + [3523] = 3523, [3524] = 3524, - [3525] = 3491, - [3526] = 3491, - [3527] = 3491, - [3528] = 3528, - [3529] = 3489, - [3530] = 3491, - [3531] = 3489, - [3532] = 3489, - [3533] = 3489, - [3534] = 3490, - [3535] = 3490, - [3536] = 3490, - [3537] = 3491, - [3538] = 3489, - [3539] = 3491, - [3540] = 3540, - [3541] = 3541, + [3525] = 3525, + [3526] = 3526, + [3527] = 3520, + [3528] = 3520, + [3529] = 3524, + [3530] = 3525, + [3531] = 3531, + [3532] = 3532, + [3533] = 3524, + [3534] = 3534, + [3535] = 3520, + [3536] = 3524, + [3537] = 3524, + [3538] = 3538, + [3539] = 3525, + [3540] = 3525, + [3541] = 3524, [3542] = 3542, [3543] = 3543, [3544] = 3544, - [3545] = 3545, - [3546] = 3546, - [3547] = 618, - [3548] = 3548, - [3549] = 3549, - [3550] = 3545, - [3551] = 3551, - [3552] = 3551, - [3553] = 1427, - [3554] = 1421, - [3555] = 3555, + [3545] = 3525, + [3546] = 3524, + [3547] = 3520, + [3548] = 3520, + [3549] = 3525, + [3550] = 3550, + [3551] = 3525, + [3552] = 3552, + [3553] = 3553, + [3554] = 3525, + [3555] = 3525, [3556] = 3556, - [3557] = 3557, - [3558] = 3544, - [3559] = 3544, - [3560] = 865, - [3561] = 1418, - [3562] = 3555, - [3563] = 3543, - [3564] = 3564, - [3565] = 1438, - [3566] = 1439, - [3567] = 3545, - [3568] = 3551, - [3569] = 3556, - [3570] = 3555, - [3571] = 3556, - [3572] = 3557, - [3573] = 3564, - [3574] = 3557, - [3575] = 3544, - [3576] = 3544, - [3577] = 3544, - [3578] = 3555, - [3579] = 3556, - [3580] = 3557, - [3581] = 3544, - [3582] = 3544, - [3583] = 3557, - [3584] = 3556, - [3585] = 3555, - [3586] = 3551, - [3587] = 3545, - [3588] = 3564, - [3589] = 3543, - [3590] = 3564, - [3591] = 3545, - [3592] = 3551, - [3593] = 3543, - [3594] = 3543, - [3595] = 3556, - [3596] = 3555, - [3597] = 3597, - [3598] = 3551, - [3599] = 3557, - [3600] = 3545, - [3601] = 3564, - [3602] = 3564, - [3603] = 3603, - [3604] = 3551, - [3605] = 3605, - [3606] = 3545, - [3607] = 3564, - [3608] = 3551, - [3609] = 3543, - [3610] = 3545, - [3611] = 3555, - [3612] = 3564, - [3613] = 3543, - [3614] = 3556, - [3615] = 3557, - [3616] = 1430, - [3617] = 3543, - [3618] = 3544, - [3619] = 3557, - [3620] = 3556, - [3621] = 3555, - [3622] = 3543, - [3623] = 3564, - [3624] = 3545, - [3625] = 3551, - [3626] = 3545, - [3627] = 3564, - [3628] = 3543, - [3629] = 3551, - [3630] = 3557, - [3631] = 3543, - [3632] = 3544, - [3633] = 3556, - [3634] = 3564, - [3635] = 3544, - [3636] = 3557, - [3637] = 3637, - [3638] = 3557, - [3639] = 3556, - [3640] = 3555, - [3641] = 3545, - [3642] = 3642, - [3643] = 3551, - [3644] = 3556, - [3645] = 3555, - [3646] = 3555, - [3647] = 3555, - [3648] = 3648, - [3649] = 3556, - [3650] = 3543, - [3651] = 3557, - [3652] = 3544, - [3653] = 3653, - [3654] = 3564, - [3655] = 3545, - [3656] = 3656, - [3657] = 3551, - [3658] = 3658, + [3557] = 3525, + [3558] = 3524, + [3559] = 3520, + [3560] = 3560, + [3561] = 3524, + [3562] = 3520, + [3563] = 3524, + [3564] = 3520, + [3565] = 3524, + [3566] = 3566, + [3567] = 3567, + [3568] = 3568, + [3569] = 3569, + [3570] = 3525, + [3571] = 3525, + [3572] = 3524, + [3573] = 3520, + [3574] = 3520, + [3575] = 3575, + [3576] = 3576, + [3577] = 3576, + [3578] = 3578, + [3579] = 3579, + [3580] = 1458, + [3581] = 3581, + [3582] = 3582, + [3583] = 3583, + [3584] = 3575, + [3585] = 3582, + [3586] = 3586, + [3587] = 3578, + [3588] = 3588, + [3589] = 3579, + [3590] = 3579, + [3591] = 3591, + [3592] = 3581, + [3593] = 3576, + [3594] = 3591, + [3595] = 3578, + [3596] = 3579, + [3597] = 3576, + [3598] = 3575, + [3599] = 3583, + [3600] = 3582, + [3601] = 3581, + [3602] = 3582, + [3603] = 3583, + [3604] = 3575, + [3605] = 3575, + [3606] = 3591, + [3607] = 3583, + [3608] = 3581, + [3609] = 3576, + [3610] = 3582, + [3611] = 3583, + [3612] = 3579, + [3613] = 3575, + [3614] = 3582, + [3615] = 3581, + [3616] = 906, + [3617] = 3578, + [3618] = 3579, + [3619] = 3578, + [3620] = 3576, + [3621] = 3591, + [3622] = 3591, + [3623] = 3578, + [3624] = 3579, + [3625] = 3591, + [3626] = 3626, + [3627] = 3579, + [3628] = 3578, + [3629] = 3591, + [3630] = 3576, + [3631] = 3576, + [3632] = 3583, + [3633] = 3581, + [3634] = 3581, + [3635] = 3576, + [3636] = 3582, + [3637] = 3579, + [3638] = 3583, + [3639] = 3575, + [3640] = 3591, + [3641] = 3641, + [3642] = 558, + [3643] = 3583, + [3644] = 1450, + [3645] = 3578, + [3646] = 3646, + [3647] = 3591, + [3648] = 3581, + [3649] = 3576, + [3650] = 3582, + [3651] = 3575, + [3652] = 3591, + [3653] = 3578, + [3654] = 3578, + [3655] = 3579, + [3656] = 3583, + [3657] = 3657, + [3658] = 3582, [3659] = 3659, - [3660] = 3660, - [3661] = 3661, - [3662] = 3662, - [3663] = 3663, - [3664] = 3664, - [3665] = 3665, - [3666] = 3666, - [3667] = 3667, - [3668] = 3668, - [3669] = 3669, - [3670] = 3670, - [3671] = 3671, - [3672] = 3672, - [3673] = 3673, - [3674] = 3674, - [3675] = 3675, - [3676] = 3676, + [3660] = 1457, + [3661] = 3581, + [3662] = 3575, + [3663] = 3583, + [3664] = 3582, + [3665] = 3581, + [3666] = 3582, + [3667] = 3583, + [3668] = 3575, + [3669] = 3581, + [3670] = 3576, + [3671] = 1456, + [3672] = 3591, + [3673] = 3578, + [3674] = 3579, + [3675] = 1489, + [3676] = 1513, [3677] = 3677, [3678] = 3678, - [3679] = 3674, - [3680] = 3680, - [3681] = 3681, - [3682] = 3658, + [3679] = 3579, + [3680] = 3578, + [3681] = 3591, + [3682] = 3576, [3683] = 3683, [3684] = 3684, - [3685] = 3685, - [3686] = 3686, - [3687] = 1433, - [3688] = 3688, - [3689] = 3689, + [3685] = 3581, + [3686] = 3582, + [3687] = 3583, + [3688] = 3575, + [3689] = 3575, [3690] = 3690, [3691] = 3691, [3692] = 3692, [3693] = 3693, [3694] = 3694, - [3695] = 3690, + [3695] = 3695, [3696] = 3696, [3697] = 3697, [3698] = 3698, - [3699] = 3693, + [3699] = 3699, [3700] = 3700, - [3701] = 3698, + [3701] = 3701, [3702] = 3702, [3703] = 3703, - [3704] = 3693, - [3705] = 3698, + [3704] = 3704, + [3705] = 3699, [3706] = 3706, [3707] = 3707, - [3708] = 3689, + [3708] = 3708, [3709] = 3709, - [3710] = 3693, - [3711] = 3711, + [3710] = 3710, + [3711] = 3704, [3712] = 3712, - [3713] = 3713, + [3713] = 1519, [3714] = 3714, [3715] = 3715, [3716] = 3716, [3717] = 3717, [3718] = 3718, [3719] = 3719, - [3720] = 3702, + [3720] = 3720, [3721] = 3721, - [3722] = 3722, - [3723] = 3703, + [3722] = 1616, + [3723] = 3723, [3724] = 3724, [3725] = 3725, [3726] = 3726, - [3727] = 3690, - [3728] = 3698, - [3729] = 3693, - [3730] = 3690, - [3731] = 3731, - [3732] = 3698, - [3733] = 3733, - [3734] = 3734, + [3727] = 3727, + [3728] = 3721, + [3729] = 3729, + [3730] = 3727, + [3731] = 3724, + [3732] = 3732, + [3733] = 3721, + [3734] = 3723, [3735] = 3735, - [3736] = 3693, - [3737] = 3689, - [3738] = 3738, - [3739] = 3696, - [3740] = 3740, - [3741] = 3741, - [3742] = 3742, + [3736] = 3736, + [3737] = 3737, + [3738] = 3727, + [3739] = 3724, + [3740] = 3723, + [3741] = 3724, + [3742] = 3727, [3743] = 3743, [3744] = 3744, - [3745] = 3693, - [3746] = 3690, - [3747] = 3747, - [3748] = 3698, + [3745] = 3721, + [3746] = 3721, + [3747] = 3721, + [3748] = 3721, [3749] = 3749, - [3750] = 3689, + [3750] = 3750, [3751] = 3751, - [3752] = 3703, + [3752] = 3752, [3753] = 3753, - [3754] = 3754, + [3754] = 3721, [3755] = 3755, - [3756] = 3702, - [3757] = 3693, - [3758] = 3689, - [3759] = 1544, - [3760] = 1530, - [3761] = 1512, - [3762] = 1526, - [3763] = 1500, - [3764] = 1503, - [3765] = 1504, - [3766] = 3702, - [3767] = 3703, - [3768] = 1506, - [3769] = 1520, - [3770] = 1523, + [3756] = 3756, + [3757] = 3757, + [3758] = 3758, + [3759] = 3759, + [3760] = 3760, + [3761] = 3761, + [3762] = 3762, + [3763] = 3763, + [3764] = 3764, + [3765] = 3765, + [3766] = 3729, + [3767] = 3767, + [3768] = 3768, + [3769] = 3769, + [3770] = 3723, [3771] = 3771, - [3772] = 3696, - [3773] = 1535, - [3774] = 1553, - [3775] = 3689, - [3776] = 3690, - [3777] = 3689, - [3778] = 1555, - [3779] = 3779, - [3780] = 1561, - [3781] = 3696, - [3782] = 1558, - [3783] = 3696, - [3784] = 1572, - [3785] = 3690, - [3786] = 1563, + [3772] = 3772, + [3773] = 3721, + [3774] = 3774, + [3775] = 3727, + [3776] = 3724, + [3777] = 3724, + [3778] = 3778, + [3779] = 3727, + [3780] = 3727, + [3781] = 3781, + [3782] = 3782, + [3783] = 3783, + [3784] = 3724, + [3785] = 3723, + [3786] = 3774, [3787] = 3787, - [3788] = 3706, - [3789] = 3709, - [3790] = 3703, - [3791] = 3696, - [3792] = 3703, - [3793] = 3738, - [3794] = 3794, + [3788] = 3729, + [3789] = 3789, + [3790] = 3729, + [3791] = 3791, + [3792] = 3721, + [3793] = 3793, + [3794] = 3723, [3795] = 3795, - [3796] = 3702, - [3797] = 1552, - [3798] = 3698, - [3799] = 3696, - [3800] = 3698, - [3801] = 3801, - [3802] = 3696, - [3803] = 3702, - [3804] = 3690, - [3805] = 3703, - [3806] = 3702, - [3807] = 3693, - [3808] = 3689, - [3809] = 3702, - [3810] = 3703, - [3811] = 3689, - [3812] = 3812, - [3813] = 3698, - [3814] = 3690, - [3815] = 3689, - [3816] = 3703, - [3817] = 3702, - [3818] = 3693, - [3819] = 3690, - [3820] = 3696, - [3821] = 3689, - [3822] = 3698, - [3823] = 3689, - [3824] = 3702, - [3825] = 3689, - [3826] = 3693, - [3827] = 3703, - [3828] = 3828, - [3829] = 3693, - [3830] = 3690, - [3831] = 3689, - [3832] = 3832, - [3833] = 3703, - [3834] = 3702, - [3835] = 3698, - [3836] = 3698, - [3837] = 3702, - [3838] = 3703, - [3839] = 3839, - [3840] = 3696, - [3841] = 3689, - [3842] = 3842, - [3843] = 3843, - [3844] = 3690, - [3845] = 3845, - [3846] = 3846, + [3796] = 3723, + [3797] = 3797, + [3798] = 3798, + [3799] = 3723, + [3800] = 3724, + [3801] = 3729, + [3802] = 3729, + [3803] = 3727, + [3804] = 3721, + [3805] = 3727, + [3806] = 3724, + [3807] = 3727, + [3808] = 1578, + [3809] = 1572, + [3810] = 3724, + [3811] = 3774, + [3812] = 3723, + [3813] = 3729, + [3814] = 1570, + [3815] = 3721, + [3816] = 3729, + [3817] = 3723, + [3818] = 3787, + [3819] = 3724, + [3820] = 3721, + [3821] = 1571, + [3822] = 3822, + [3823] = 3823, + [3824] = 3824, + [3825] = 1592, + [3826] = 3826, + [3827] = 3729, + [3828] = 3822, + [3829] = 3829, + [3830] = 1537, + [3831] = 3723, + [3832] = 3787, + [3833] = 3774, + [3834] = 3727, + [3835] = 3787, + [3836] = 1573, + [3837] = 3774, + [3838] = 3838, + [3839] = 1577, + [3840] = 3795, + [3841] = 3774, + [3842] = 3787, + [3843] = 1586, + [3844] = 3774, + [3845] = 3787, + [3846] = 3787, [3847] = 3847, [3848] = 3848, - [3849] = 3696, - [3850] = 3702, - [3851] = 3703, - [3852] = 3852, - [3853] = 3696, - [3854] = 3854, - [3855] = 3690, - [3856] = 3856, - [3857] = 3689, - [3858] = 3858, - [3859] = 3859, + [3849] = 3721, + [3850] = 1587, + [3851] = 3774, + [3852] = 3729, + [3853] = 3853, + [3854] = 3727, + [3855] = 3787, + [3856] = 3724, + [3857] = 3787, + [3858] = 3723, + [3859] = 3774, [3860] = 3860, - [3861] = 3861, - [3862] = 3862, - [3863] = 3863, - [3864] = 1430, - [3865] = 3865, - [3866] = 3859, - [3867] = 3867, - [3868] = 3868, + [3861] = 3729, + [3862] = 1536, + [3863] = 1596, + [3864] = 3864, + [3865] = 3787, + [3866] = 3721, + [3867] = 3774, + [3868] = 3797, [3869] = 3869, - [3870] = 3870, - [3871] = 3871, - [3872] = 3872, - [3873] = 3873, - [3874] = 3874, - [3875] = 3875, - [3876] = 3874, - [3877] = 3859, + [3870] = 3798, + [3871] = 1531, + [3872] = 1530, + [3873] = 1618, + [3874] = 3774, + [3875] = 1576, + [3876] = 3727, + [3877] = 3724, [3878] = 3878, - [3879] = 3860, - [3880] = 3873, - [3881] = 3862, - [3882] = 3882, - [3883] = 3863, - [3884] = 3860, - [3885] = 3885, - [3886] = 3860, + [3879] = 3879, + [3880] = 3880, + [3881] = 3723, + [3882] = 3787, + [3883] = 3883, + [3884] = 3729, + [3885] = 3774, + [3886] = 3721, [3887] = 3887, - [3888] = 3861, - [3889] = 3875, - [3890] = 3861, - [3891] = 3860, - [3892] = 3862, + [3888] = 1617, + [3889] = 3889, + [3890] = 3787, + [3891] = 3891, + [3892] = 3892, [3893] = 3893, - [3894] = 3887, - [3895] = 3861, + [3894] = 3894, + [3895] = 3895, [3896] = 3896, [3897] = 3897, - [3898] = 3871, - [3899] = 3870, + [3898] = 3898, + [3899] = 3893, [3900] = 3900, [3901] = 3901, [3902] = 3902, - [3903] = 3862, - [3904] = 3873, - [3905] = 1421, - [3906] = 3874, - [3907] = 3882, - [3908] = 3870, - [3909] = 3871, - [3910] = 3875, + [3903] = 3902, + [3904] = 3904, + [3905] = 3905, + [3906] = 3906, + [3907] = 3892, + [3908] = 3908, + [3909] = 3905, + [3910] = 3908, [3911] = 3911, - [3912] = 3912, - [3913] = 3902, - [3914] = 3873, + [3912] = 3901, + [3913] = 3896, + [3914] = 3893, [3915] = 3915, - [3916] = 1430, - [3917] = 1427, - [3918] = 3902, - [3919] = 3860, - [3920] = 3859, - [3921] = 3882, - [3922] = 3863, - [3923] = 3923, - [3924] = 3924, - [3925] = 3925, - [3926] = 3887, - [3927] = 1418, - [3928] = 3928, - [3929] = 3929, - [3930] = 3874, - [3931] = 3931, - [3932] = 3932, - [3933] = 3874, - [3934] = 3873, - [3935] = 3935, - [3936] = 3353, - [3937] = 3902, - [3938] = 3875, - [3939] = 3874, - [3940] = 3873, - [3941] = 3875, - [3942] = 3942, + [3916] = 3892, + [3917] = 3917, + [3918] = 3895, + [3919] = 3919, + [3920] = 3904, + [3921] = 3895, + [3922] = 3900, + [3923] = 3900, + [3924] = 3902, + [3925] = 3902, + [3926] = 3904, + [3927] = 3904, + [3928] = 3897, + [3929] = 3898, + [3930] = 3893, + [3931] = 3896, + [3932] = 3901, + [3933] = 3933, + [3934] = 3908, + [3935] = 3905, + [3936] = 3936, + [3937] = 3892, + [3938] = 3906, + [3939] = 3898, + [3940] = 3897, + [3941] = 3905, + [3942] = 3908, [3943] = 3943, - [3944] = 3860, - [3945] = 3861, - [3946] = 3862, - [3947] = 3947, - [3948] = 1427, - [3949] = 3871, - [3950] = 3950, - [3951] = 3356, - [3952] = 1421, - [3953] = 3902, - [3954] = 3862, - [3955] = 3955, - [3956] = 3870, - [3957] = 1430, - [3958] = 3863, + [3944] = 3904, + [3945] = 3945, + [3946] = 3902, + [3947] = 3900, + [3948] = 2193, + [3949] = 3908, + [3950] = 3902, + [3951] = 3905, + [3952] = 3908, + [3953] = 3900, + [3954] = 3902, + [3955] = 3904, + [3956] = 3905, + [3957] = 3893, + [3958] = 3958, [3959] = 3959, - [3960] = 3887, - [3961] = 3882, - [3962] = 3860, - [3963] = 3859, - [3964] = 3902, - [3965] = 1427, - [3966] = 3861, - [3967] = 3870, - [3968] = 3859, - [3969] = 3882, - [3970] = 3863, - [3971] = 3887, - [3972] = 3862, - [3973] = 3973, - [3974] = 3902, - [3975] = 3870, - [3976] = 3871, - [3977] = 3871, - [3978] = 3978, - [3979] = 3979, - [3980] = 3875, + [3960] = 3893, + [3961] = 3961, + [3962] = 3898, + [3963] = 1458, + [3964] = 3895, + [3965] = 3897, + [3966] = 3896, + [3967] = 3895, + [3968] = 3893, + [3969] = 3906, + [3970] = 3901, + [3971] = 3901, + [3972] = 3892, + [3973] = 3896, + [3974] = 3906, + [3975] = 3896, + [3976] = 3901, + [3977] = 1457, + [3978] = 3898, + [3979] = 3897, + [3980] = 3980, [3981] = 3981, - [3982] = 3875, - [3983] = 3873, + [3982] = 3906, + [3983] = 3983, [3984] = 3984, [3985] = 3985, - [3986] = 3871, - [3987] = 3870, - [3988] = 3988, - [3989] = 3859, - [3990] = 3862, - [3991] = 3861, - [3992] = 3862, - [3993] = 3861, - [3994] = 3863, - [3995] = 3860, - [3996] = 3996, - [3997] = 3861, + [3986] = 3986, + [3987] = 3897, + [3988] = 3898, + [3989] = 3895, + [3990] = 3990, + [3991] = 1456, + [3992] = 3893, + [3993] = 3386, + [3994] = 3892, + [3995] = 3895, + [3996] = 3905, + [3997] = 3997, [3998] = 3998, - [3999] = 3902, - [4000] = 3882, - [4001] = 3871, - [4002] = 3870, - [4003] = 1421, - [4004] = 3902, - [4005] = 3870, - [4006] = 3871, - [4007] = 3863, - [4008] = 3875, - [4009] = 3874, - [4010] = 3873, - [4011] = 3874, - [4012] = 3902, - [4013] = 3676, - [4014] = 3671, - [4015] = 3882, - [4016] = 3859, - [4017] = 3875, - [4018] = 3887, - [4019] = 3670, - [4020] = 3887, - [4021] = 3669, - [4022] = 3874, - [4023] = 3875, - [4024] = 3873, - [4025] = 3875, - [4026] = 3863, - [4027] = 3882, - [4028] = 3882, - [4029] = 3902, - [4030] = 3862, - [4031] = 3859, - [4032] = 2170, - [4033] = 3862, - [4034] = 3874, - [4035] = 3873, - [4036] = 3861, - [4037] = 3860, - [4038] = 3874, - [4039] = 3863, - [4040] = 3882, - [4041] = 3870, - [4042] = 3871, - [4043] = 3873, - [4044] = 3887, - [4045] = 1418, - [4046] = 3860, - [4047] = 3861, - [4048] = 3862, - [4049] = 3859, - [4050] = 3875, - [4051] = 3870, - [4052] = 3887, - [4053] = 3863, - [4054] = 3882, - [4055] = 3863, - [4056] = 3882, - [4057] = 3887, - [4058] = 3860, - [4059] = 3861, - [4060] = 3871, - [4061] = 3859, - [4062] = 3862, - [4063] = 3870, - [4064] = 3887, - [4065] = 3859, + [3999] = 3908, + [4000] = 3900, + [4001] = 4001, + [4002] = 3902, + [4003] = 3904, + [4004] = 3892, + [4005] = 4005, + [4006] = 3892, + [4007] = 4007, + [4008] = 3906, + [4009] = 1450, + [4010] = 3391, + [4011] = 3906, + [4012] = 1458, + [4013] = 3898, + [4014] = 3901, + [4015] = 3896, + [4016] = 3897, + [4017] = 1457, + [4018] = 3895, + [4019] = 4019, + [4020] = 3897, + [4021] = 3904, + [4022] = 3719, + [4023] = 3718, + [4024] = 3902, + [4025] = 4025, + [4026] = 3895, + [4027] = 3897, + [4028] = 3695, + [4029] = 3900, + [4030] = 3697, + [4031] = 3898, + [4032] = 3898, + [4033] = 3892, + [4034] = 1450, + [4035] = 1450, + [4036] = 4036, + [4037] = 3893, + [4038] = 3892, + [4039] = 3895, + [4040] = 3908, + [4041] = 3905, + [4042] = 3906, + [4043] = 3905, + [4044] = 3908, + [4045] = 3904, + [4046] = 3902, + [4047] = 3906, + [4048] = 4048, + [4049] = 3900, + [4050] = 3901, + [4051] = 3896, + [4052] = 4052, + [4053] = 3895, + [4054] = 3908, + [4055] = 3900, + [4056] = 3902, + [4057] = 3904, + [4058] = 3901, + [4059] = 3905, + [4060] = 3896, + [4061] = 3900, + [4062] = 4062, + [4063] = 3896, + [4064] = 3901, + [4065] = 1458, [4066] = 4066, - [4067] = 4067, - [4068] = 3871, - [4069] = 3874, - [4070] = 3875, - [4071] = 3882, - [4072] = 3863, - [4073] = 4073, - [4074] = 3862, - [4075] = 3863, - [4076] = 4076, - [4077] = 3861, - [4078] = 3860, - [4079] = 3873, - [4080] = 4080, - [4081] = 3861, - [4082] = 3875, - [4083] = 3902, - [4084] = 3859, - [4085] = 3859, - [4086] = 3863, - [4087] = 4087, - [4088] = 3902, - [4089] = 4089, - [4090] = 3882, - [4091] = 910, - [4092] = 3887, - [4093] = 4093, - [4094] = 3860, - [4095] = 3887, - [4096] = 3887, - [4097] = 4097, - [4098] = 4098, - [4099] = 4099, - [4100] = 3670, - [4101] = 4101, - [4102] = 4102, - [4103] = 4103, - [4104] = 4104, + [4067] = 3904, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 3902, + [4072] = 3898, + [4073] = 3905, + [4074] = 3892, + [4075] = 3908, + [4076] = 3897, + [4077] = 3900, + [4078] = 3893, + [4079] = 4079, + [4080] = 3898, + [4081] = 3897, + [4082] = 3896, + [4083] = 3901, + [4084] = 4084, + [4085] = 4085, + [4086] = 4086, + [4087] = 3895, + [4088] = 3897, + [4089] = 3898, + [4090] = 3900, + [4091] = 3895, + [4092] = 3902, + [4093] = 3908, + [4094] = 3892, + [4095] = 3896, + [4096] = 3901, + [4097] = 3904, + [4098] = 3906, + [4099] = 3904, + [4100] = 3905, + [4101] = 3906, + [4102] = 3902, + [4103] = 3906, + [4104] = 3900, [4105] = 4105, [4106] = 4106, - [4107] = 4102, - [4108] = 4108, - [4109] = 4097, - [4110] = 4110, - [4111] = 3671, - [4112] = 4104, - [4113] = 4105, + [4107] = 4107, + [4108] = 3906, + [4109] = 3892, + [4110] = 3898, + [4111] = 4111, + [4112] = 3895, + [4113] = 3897, [4114] = 4114, - [4115] = 4115, - [4116] = 4116, - [4117] = 4108, - [4118] = 4105, - [4119] = 4119, - [4120] = 4110, - [4121] = 4104, - [4122] = 4122, - [4123] = 3669, - [4124] = 4124, - [4125] = 4114, + [4115] = 1457, + [4116] = 1456, + [4117] = 4117, + [4118] = 3897, + [4119] = 3898, + [4120] = 3893, + [4121] = 4121, + [4122] = 3893, + [4123] = 3893, + [4124] = 917, + [4125] = 3892, [4126] = 4126, - [4127] = 4126, - [4128] = 4110, - [4129] = 4106, - [4130] = 4108, - [4131] = 4124, - [4132] = 4119, - [4133] = 4115, - [4134] = 4134, - [4135] = 4135, - [4136] = 4108, - [4137] = 3676, - [4138] = 3671, - [4139] = 4139, - [4140] = 4126, - [4141] = 3676, - [4142] = 4126, - [4143] = 3671, - [4144] = 4110, - [4145] = 4105, - [4146] = 4097, - [4147] = 4106, + [4127] = 4127, + [4128] = 3904, + [4129] = 3893, + [4130] = 3900, + [4131] = 4131, + [4132] = 4132, + [4133] = 4133, + [4134] = 3719, + [4135] = 3718, + [4136] = 4131, + [4137] = 4132, + [4138] = 4138, + [4139] = 3695, + [4140] = 3697, + [4141] = 4141, + [4142] = 4132, + [4143] = 4143, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, + [4147] = 4145, [4148] = 4148, - [4149] = 4106, - [4150] = 4124, - [4151] = 4097, - [4152] = 4119, + [4149] = 4146, + [4150] = 4141, + [4151] = 4132, + [4152] = 4152, [4153] = 4153, - [4154] = 1563, - [4155] = 1572, - [4156] = 4110, - [4157] = 4119, - [4158] = 3669, - [4159] = 3670, - [4160] = 4116, - [4161] = 4105, - [4162] = 4097, - [4163] = 4104, - [4164] = 3669, - [4165] = 4106, - [4166] = 2238, - [4167] = 4153, - [4168] = 4105, - [4169] = 4114, - [4170] = 1544, - [4171] = 4153, - [4172] = 4115, - [4173] = 4116, - [4174] = 4115, - [4175] = 4116, - [4176] = 4114, - [4177] = 3669, - [4178] = 3671, - [4179] = 4102, - [4180] = 4116, + [4154] = 4154, + [4155] = 4153, + [4156] = 4138, + [4157] = 4157, + [4158] = 4158, + [4159] = 4153, + [4160] = 4144, + [4161] = 4153, + [4162] = 4154, + [4163] = 4163, + [4164] = 4164, + [4165] = 4153, + [4166] = 4153, + [4167] = 4167, + [4168] = 4168, + [4169] = 4153, + [4170] = 4170, + [4171] = 4167, + [4172] = 4138, + [4173] = 4148, + [4174] = 4154, + [4175] = 4153, + [4176] = 4168, + [4177] = 4143, + [4178] = 4178, + [4179] = 4179, + [4180] = 4144, [4181] = 4181, - [4182] = 4115, + [4182] = 4154, [4183] = 4183, - [4184] = 4103, - [4185] = 4185, - [4186] = 4186, - [4187] = 4114, - [4188] = 4134, + [4184] = 4184, + [4185] = 4153, + [4186] = 4153, + [4187] = 4131, + [4188] = 4143, [4189] = 4189, - [4190] = 3670, - [4191] = 4134, - [4192] = 4115, - [4193] = 4103, - [4194] = 4102, - [4195] = 4104, - [4196] = 4104, - [4197] = 3676, - [4198] = 4104, - [4199] = 4102, - [4200] = 4105, - [4201] = 4201, - [4202] = 4106, - [4203] = 4153, - [4204] = 4108, - [4205] = 3670, - [4206] = 4206, - [4207] = 4102, - [4208] = 4105, - [4209] = 4103, - [4210] = 4106, - [4211] = 4114, - [4212] = 4119, - [4213] = 4124, + [4190] = 4143, + [4191] = 4191, + [4192] = 4192, + [4193] = 4193, + [4194] = 4184, + [4195] = 4153, + [4196] = 1537, + [4197] = 4148, + [4198] = 3719, + [4199] = 4199, + [4200] = 4164, + [4201] = 3718, + [4202] = 4179, + [4203] = 4203, + [4204] = 4138, + [4205] = 4205, + [4206] = 4178, + [4207] = 3719, + [4208] = 1536, + [4209] = 4145, + [4210] = 3695, + [4211] = 4211, + [4212] = 4146, + [4213] = 4213, [4214] = 4214, - [4215] = 3669, + [4215] = 3718, [4216] = 4216, - [4217] = 4108, - [4218] = 4218, - [4219] = 4119, - [4220] = 4103, - [4221] = 4189, - [4222] = 3670, - [4223] = 4104, - [4224] = 4153, - [4225] = 4134, - [4226] = 4186, - [4227] = 4110, - [4228] = 4108, - [4229] = 3671, - [4230] = 4102, - [4231] = 4185, - [4232] = 3676, + [4217] = 3697, + [4218] = 4141, + [4219] = 4141, + [4220] = 4131, + [4221] = 4221, + [4222] = 4146, + [4223] = 3697, + [4224] = 4224, + [4225] = 4138, + [4226] = 3695, + [4227] = 4170, + [4228] = 4145, + [4229] = 4229, + [4230] = 3695, + [4231] = 4231, + [4232] = 4138, [4233] = 4233, - [4234] = 4126, - [4235] = 4235, - [4236] = 4110, - [4237] = 4237, - [4238] = 3676, - [4239] = 4239, - [4240] = 4110, - [4241] = 4126, - [4242] = 4126, - [4243] = 4108, - [4244] = 3676, - [4245] = 4108, - [4246] = 4246, - [4247] = 3676, - [4248] = 3671, - [4249] = 4249, - [4250] = 4134, - [4251] = 3671, - [4252] = 4110, - [4253] = 4253, - [4254] = 4153, - [4255] = 4255, - [4256] = 4153, - [4257] = 4104, + [4234] = 4234, + [4235] = 4170, + [4236] = 4178, + [4237] = 3718, + [4238] = 4164, + [4239] = 3719, + [4240] = 4240, + [4241] = 4153, + [4242] = 4184, + [4243] = 4143, + [4244] = 4179, + [4245] = 4131, + [4246] = 3697, + [4247] = 4247, + [4248] = 4154, + [4249] = 4179, + [4250] = 4178, + [4251] = 4143, + [4252] = 4170, + [4253] = 4144, + [4254] = 4144, + [4255] = 4184, + [4256] = 4146, + [4257] = 4154, [4258] = 4258, - [4259] = 4124, - [4260] = 4102, - [4261] = 4119, - [4262] = 4262, - [4263] = 4124, - [4264] = 4134, - [4265] = 4103, - [4266] = 4103, - [4267] = 4102, - [4268] = 4106, - [4269] = 4097, - [4270] = 4099, - [4271] = 4271, - [4272] = 4134, - [4273] = 4104, - [4274] = 3670, - [4275] = 4105, - [4276] = 3670, - [4277] = 4124, - [4278] = 4108, - [4279] = 4105, - [4280] = 4097, - [4281] = 4106, - [4282] = 4282, - [4283] = 4119, - [4284] = 4119, - [4285] = 4101, - [4286] = 4126, - [4287] = 4114, - [4288] = 3669, - [4289] = 4153, - [4290] = 4115, - [4291] = 4116, - [4292] = 4292, - [4293] = 4293, - [4294] = 4124, - [4295] = 4119, - [4296] = 4116, - [4297] = 4297, - [4298] = 4114, - [4299] = 4110, - [4300] = 4105, - [4301] = 4301, - [4302] = 4097, - [4303] = 4110, - [4304] = 4102, - [4305] = 4124, - [4306] = 4153, - [4307] = 3669, - [4308] = 4308, - [4309] = 4115, - [4310] = 4116, - [4311] = 4126, - [4312] = 4116, - [4313] = 4115, - [4314] = 4314, - [4315] = 4315, + [4259] = 4164, + [4260] = 4145, + [4261] = 4148, + [4262] = 4164, + [4263] = 4148, + [4264] = 4132, + [4265] = 4265, + [4266] = 4145, + [4267] = 4148, + [4268] = 4146, + [4269] = 4184, + [4270] = 4132, + [4271] = 3719, + [4272] = 4272, + [4273] = 3718, + [4274] = 4143, + [4275] = 4141, + [4276] = 4132, + [4277] = 4277, + [4278] = 4278, + [4279] = 4279, + [4280] = 4144, + [4281] = 4131, + [4282] = 4138, + [4283] = 4283, + [4284] = 4138, + [4285] = 4154, + [4286] = 4179, + [4287] = 4132, + [4288] = 3695, + [4289] = 4148, + [4290] = 4144, + [4291] = 4291, + [4292] = 4148, + [4293] = 3697, + [4294] = 4131, + [4295] = 2217, + [4296] = 4178, + [4297] = 4131, + [4298] = 4141, + [4299] = 4154, + [4300] = 4146, + [4301] = 4145, + [4302] = 4170, + [4303] = 4131, + [4304] = 4154, + [4305] = 4305, + [4306] = 3719, + [4307] = 4138, + [4308] = 3718, + [4309] = 4141, + [4310] = 4229, + [4311] = 4311, + [4312] = 4153, + [4313] = 4233, + [4314] = 4170, + [4315] = 4234, [4316] = 4316, - [4317] = 4114, - [4318] = 4318, - [4319] = 4134, - [4320] = 4320, + [4317] = 4178, + [4318] = 4179, + [4319] = 4138, + [4320] = 4144, [4321] = 4321, - [4322] = 4116, - [4323] = 4323, - [4324] = 4116, + [4322] = 4143, + [4323] = 4184, + [4324] = 4164, [4325] = 4325, - [4326] = 4106, - [4327] = 4115, - [4328] = 3669, - [4329] = 4103, - [4330] = 4115, - [4331] = 4103, - [4332] = 4110, - [4333] = 4333, - [4334] = 4334, - [4335] = 4335, - [4336] = 4336, + [4326] = 1578, + [4327] = 4141, + [4328] = 4146, + [4329] = 4329, + [4330] = 4145, + [4331] = 4132, + [4332] = 3695, + [4333] = 3697, + [4334] = 4145, + [4335] = 4164, + [4336] = 4148, [4337] = 4337, - [4338] = 3670, - [4339] = 4102, - [4340] = 4114, - [4341] = 4104, - [4342] = 4342, - [4343] = 4343, - [4344] = 4344, - [4345] = 3671, - [4346] = 3669, + [4338] = 4146, + [4339] = 4184, + [4340] = 4141, + [4341] = 4143, + [4342] = 4141, + [4343] = 4146, + [4344] = 4164, + [4345] = 4345, + [4346] = 3697, [4347] = 4347, - [4348] = 3676, - [4349] = 4134, - [4350] = 4126, - [4351] = 3670, - [4352] = 4352, - [4353] = 4102, - [4354] = 4108, - [4355] = 4183, - [4356] = 4153, - [4357] = 4104, - [4358] = 4124, - [4359] = 4103, - [4360] = 4134, - [4361] = 4097, - [4362] = 3671, - [4363] = 4363, - [4364] = 4102, - [4365] = 4119, - [4366] = 4103, - [4367] = 4103, - [4368] = 4108, - [4369] = 4104, - [4370] = 3676, - [4371] = 4134, - [4372] = 4372, - [4373] = 4373, - [4374] = 4115, - [4375] = 4097, - [4376] = 4376, - [4377] = 4116, - [4378] = 4105, + [4348] = 3695, + [4349] = 4138, + [4350] = 4145, + [4351] = 4170, + [4352] = 3718, + [4353] = 3719, + [4354] = 4184, + [4355] = 4184, + [4356] = 4170, + [4357] = 4179, + [4358] = 4131, + [4359] = 4178, + [4360] = 4170, + [4361] = 4143, + [4362] = 4329, + [4363] = 4164, + [4364] = 4154, + [4365] = 4178, + [4366] = 4144, + [4367] = 4132, + [4368] = 4179, + [4369] = 4184, + [4370] = 4143, + [4371] = 4178, + [4372] = 4148, + [4373] = 4146, + [4374] = 4374, + [4375] = 4170, + [4376] = 4170, + [4377] = 4143, + [4378] = 4179, [4379] = 4379, - [4380] = 4380, - [4381] = 4110, - [4382] = 4114, - [4383] = 4105, - [4384] = 4097, - [4385] = 4153, - [4386] = 4106, - [4387] = 4119, - [4388] = 4124, - [4389] = 4134, - [4390] = 4116, - [4391] = 4115, + [4380] = 4178, + [4381] = 4179, + [4382] = 4382, + [4383] = 4132, + [4384] = 4143, + [4385] = 4385, + [4386] = 4164, + [4387] = 4387, + [4388] = 4388, + [4389] = 4184, + [4390] = 4144, + [4391] = 4164, [4392] = 4392, - [4393] = 4114, - [4394] = 3669, - [4395] = 4108, - [4396] = 4126, - [4397] = 4106, - [4398] = 4153, - [4399] = 3670, - [4400] = 4400, - [4401] = 4097, - [4402] = 4104, - [4403] = 3671, - [4404] = 4126, - [4405] = 3676, - [4406] = 4105, - [4407] = 4114, - [4408] = 4408, - [4409] = 4409, + [4393] = 4148, + [4394] = 4154, + [4395] = 4145, + [4396] = 4146, + [4397] = 4141, + [4398] = 4398, + [4399] = 4170, + [4400] = 4131, + [4401] = 4178, + [4402] = 3697, + [4403] = 4178, + [4404] = 4179, + [4405] = 4179, + [4406] = 3695, + [4407] = 4138, + [4408] = 3718, + [4409] = 3719, [4410] = 4410, - [4411] = 4124, - [4412] = 4412, + [4411] = 4143, + [4412] = 4184, [4413] = 4413, - [4414] = 4414, + [4414] = 4164, [4415] = 4415, - [4416] = 4416, + [4416] = 4131, [4417] = 4417, - [4418] = 4418, - [4419] = 4419, - [4420] = 4420, - [4421] = 4418, - [4422] = 4422, - [4423] = 4423, - [4424] = 4422, - [4425] = 4416, - [4426] = 4420, - [4427] = 4416, - [4428] = 4428, - [4429] = 4420, - [4430] = 4420, - [4431] = 4418, - [4432] = 4422, - [4433] = 4418, - [4434] = 4422, - [4435] = 4435, - [4436] = 4412, + [4418] = 3719, + [4419] = 3718, + [4420] = 4138, + [4421] = 4145, + [4422] = 4146, + [4423] = 4154, + [4424] = 4424, + [4425] = 4425, + [4426] = 4144, + [4427] = 4141, + [4428] = 3697, + [4429] = 3695, + [4430] = 3695, + [4431] = 4138, + [4432] = 4432, + [4433] = 4433, + [4434] = 3718, + [4435] = 4132, + [4436] = 3719, [4437] = 4437, - [4438] = 4416, - [4439] = 4439, - [4440] = 4440, - [4441] = 4441, - [4442] = 4442, - [4443] = 4443, + [4438] = 4131, + [4439] = 3697, + [4440] = 4141, + [4441] = 4154, + [4442] = 4148, + [4443] = 4144, [4444] = 4444, - [4445] = 4445, + [4445] = 4145, [4446] = 4446, [4447] = 4447, - [4448] = 4416, + [4448] = 4448, [4449] = 4449, [4450] = 4450, - [4451] = 4420, - [4452] = 4418, - [4453] = 4422, + [4451] = 4451, + [4452] = 4452, + [4453] = 4453, [4454] = 4454, - [4455] = 4422, - [4456] = 4456, - [4457] = 4418, + [4455] = 4455, + [4456] = 4446, + [4457] = 4457, [4458] = 4458, - [4459] = 4420, - [4460] = 4460, + [4459] = 4452, + [4460] = 4451, [4461] = 4461, - [4462] = 4416, - [4463] = 4463, - [4464] = 4464, + [4462] = 4455, + [4463] = 4446, + [4464] = 4451, [4465] = 4465, [4466] = 4466, [4467] = 4467, - [4468] = 4468, - [4469] = 4416, + [4468] = 4452, + [4469] = 4457, [4470] = 4470, - [4471] = 4467, - [4472] = 4420, - [4473] = 4418, - [4474] = 4422, - [4475] = 4475, + [4471] = 4471, + [4472] = 4472, + [4473] = 4473, + [4474] = 4474, + [4475] = 4454, [4476] = 4476, - [4477] = 4477, - [4478] = 4467, + [4477] = 4465, + [4478] = 4449, [4479] = 4479, - [4480] = 4480, - [4481] = 4481, - [4482] = 4467, - [4483] = 4467, - [4484] = 4484, - [4485] = 4485, + [4480] = 4452, + [4481] = 4458, + [4482] = 4449, + [4483] = 4455, + [4484] = 4446, + [4485] = 4451, [4486] = 4486, [4487] = 4487, - [4488] = 4488, - [4489] = 4467, - [4490] = 4416, - [4491] = 4487, - [4492] = 4492, - [4493] = 4420, - [4494] = 4418, - [4495] = 4422, - [4496] = 4496, - [4497] = 4492, - [4498] = 4487, - [4499] = 2292, - [4500] = 4467, - [4501] = 2302, - [4502] = 4502, - [4503] = 4449, - [4504] = 4435, - [4505] = 4412, - [4506] = 4506, - [4507] = 4417, - [4508] = 4450, - [4509] = 4484, - [4510] = 4492, - [4511] = 4416, - [4512] = 4512, + [4488] = 4452, + [4489] = 4489, + [4490] = 4490, + [4491] = 4491, + [4492] = 4457, + [4493] = 4493, + [4494] = 4494, + [4495] = 4495, + [4496] = 4455, + [4497] = 4497, + [4498] = 4446, + [4499] = 4451, + [4500] = 4455, + [4501] = 4452, + [4502] = 4466, + [4503] = 4467, + [4504] = 4455, + [4505] = 4446, + [4506] = 4451, + [4507] = 4507, + [4508] = 4458, + [4509] = 4446, + [4510] = 4473, + [4511] = 4494, + [4512] = 4479, [4513] = 4513, - [4514] = 4420, - [4515] = 4418, - [4516] = 4422, - [4517] = 4517, - [4518] = 4487, - [4519] = 4467, - [4520] = 4520, - [4521] = 4449, - [4522] = 4522, - [4523] = 4492, - [4524] = 4524, - [4525] = 4435, - [4526] = 4512, - [4527] = 4527, - [4528] = 4417, - [4529] = 4450, - [4530] = 4484, - [4531] = 4502, - [4532] = 4416, - [4533] = 4449, - [4534] = 4534, - [4535] = 4420, - [4536] = 4418, - [4537] = 4422, - [4538] = 4512, - [4539] = 4467, - [4540] = 4513, - [4541] = 4517, - [4542] = 4487, - [4543] = 4487, + [4514] = 4497, + [4515] = 4495, + [4516] = 4489, + [4517] = 4495, + [4518] = 4490, + [4519] = 4465, + [4520] = 4454, + [4521] = 4490, + [4522] = 4452, + [4523] = 4494, + [4524] = 4495, + [4525] = 4455, + [4526] = 4446, + [4527] = 4451, + [4528] = 4497, + [4529] = 4529, + [4530] = 4490, + [4531] = 4454, + [4532] = 4532, + [4533] = 4533, + [4534] = 4465, + [4535] = 4489, + [4536] = 4479, + [4537] = 4537, + [4538] = 4494, + [4539] = 4494, + [4540] = 4451, + [4541] = 4466, + [4542] = 4542, + [4543] = 4452, [4544] = 4467, - [4545] = 4520, - [4546] = 4517, - [4547] = 4513, - [4548] = 4445, - [4549] = 4512, - [4550] = 4492, - [4551] = 4449, - [4552] = 4502, - [4553] = 4416, - [4554] = 4513, - [4555] = 4517, - [4556] = 4420, - [4557] = 4418, - [4558] = 4422, - [4559] = 4435, - [4560] = 4412, - [4561] = 4417, - [4562] = 4450, - [4563] = 4484, - [4564] = 4564, - [4565] = 4450, - [4566] = 4502, - [4567] = 4492, - [4568] = 4512, - [4569] = 4417, - [4570] = 4416, - [4571] = 4513, - [4572] = 4420, - [4573] = 4418, - [4574] = 4422, - [4575] = 4517, - [4576] = 4412, - [4577] = 4577, - [4578] = 4416, - [4579] = 4422, - [4580] = 4435, - [4581] = 4581, - [4582] = 4492, - [4583] = 4487, - [4584] = 4520, - [4585] = 4467, - [4586] = 4520, - [4587] = 4587, - [4588] = 4467, - [4589] = 4484, - [4590] = 4449, - [4591] = 4487, - [4592] = 4435, - [4593] = 4412, - [4594] = 4417, - [4595] = 4506, - [4596] = 4450, - [4597] = 4484, - [4598] = 4502, - [4599] = 4492, - [4600] = 4512, - [4601] = 4513, - [4602] = 4517, - [4603] = 4517, - [4604] = 4513, + [4545] = 4446, + [4546] = 4455, + [4547] = 4446, + [4548] = 4451, + [4549] = 4549, + [4550] = 4550, + [4551] = 4473, + [4552] = 4455, + [4553] = 4479, + [4554] = 4554, + [4555] = 4452, + [4556] = 4495, + [4557] = 4489, + [4558] = 4473, + [4559] = 4465, + [4560] = 4457, + [4561] = 4454, + [4562] = 4454, + [4563] = 4465, + [4564] = 4452, + [4565] = 4497, + [4566] = 4467, + [4567] = 4455, + [4568] = 4446, + [4569] = 4451, + [4570] = 4466, + [4571] = 4449, + [4572] = 4489, + [4573] = 4458, + [4574] = 4497, + [4575] = 4495, + [4576] = 4576, + [4577] = 4479, + [4578] = 4489, + [4579] = 4494, + [4580] = 4473, + [4581] = 4452, + [4582] = 4582, + [4583] = 4455, + [4584] = 4446, + [4585] = 4451, + [4586] = 4479, + [4587] = 4466, + [4588] = 4490, + [4589] = 4452, + [4590] = 4451, + [4591] = 4467, + [4592] = 4458, + [4593] = 4467, + [4594] = 4458, + [4595] = 4473, + [4596] = 4596, + [4597] = 4597, + [4598] = 4598, + [4599] = 4466, + [4600] = 4479, + [4601] = 4465, + [4602] = 4454, + [4603] = 4603, + [4604] = 4473, [4605] = 4605, - [4606] = 4606, - [4607] = 4607, - [4608] = 4487, - [4609] = 4512, - [4610] = 4610, - [4611] = 4611, + [4606] = 4489, + [4607] = 4597, + [4608] = 4608, + [4609] = 4490, + [4610] = 4479, + [4611] = 4473, [4612] = 4612, - [4613] = 4450, - [4614] = 4614, - [4615] = 4502, - [4616] = 4484, - [4617] = 4492, - [4618] = 4467, - [4619] = 4520, - [4620] = 4417, - [4621] = 4412, - [4622] = 4435, - [4623] = 4449, - [4624] = 4449, - [4625] = 4520, - [4626] = 4435, - [4627] = 4412, - [4628] = 4417, - [4629] = 4450, - [4630] = 4484, - [4631] = 4502, - [4632] = 4492, - [4633] = 4633, - [4634] = 4512, - [4635] = 4467, - [4636] = 4636, - [4637] = 4513, - [4638] = 4638, - [4639] = 4487, - [4640] = 4517, - [4641] = 4422, - [4642] = 4487, - [4643] = 4418, - [4644] = 4420, - [4645] = 4487, - [4646] = 4646, - [4647] = 4467, - [4648] = 4520, - [4649] = 4517, - [4650] = 4513, - [4651] = 4512, - [4652] = 4484, - [4653] = 4502, - [4654] = 4449, - [4655] = 4416, - [4656] = 4484, - [4657] = 4450, - [4658] = 4435, - [4659] = 4412, - [4660] = 4660, - [4661] = 4417, - [4662] = 4662, - [4663] = 4450, - [4664] = 4484, - [4665] = 4502, - [4666] = 4492, + [4613] = 4449, + [4614] = 4489, + [4615] = 4615, + [4616] = 4458, + [4617] = 4449, + [4618] = 4457, + [4619] = 4451, + [4620] = 4470, + [4621] = 4446, + [4622] = 4457, + [4623] = 4455, + [4624] = 4624, + [4625] = 4454, + [4626] = 4467, + [4627] = 4627, + [4628] = 4465, + [4629] = 4466, + [4630] = 4630, + [4631] = 4451, + [4632] = 4490, + [4633] = 4497, + [4634] = 2335, + [4635] = 4494, + [4636] = 4455, + [4637] = 4449, + [4638] = 4452, + [4639] = 4457, + [4640] = 4495, + [4641] = 4495, + [4642] = 4452, + [4643] = 2331, + [4644] = 4497, + [4645] = 4645, + [4646] = 4490, + [4647] = 4449, + [4648] = 4648, + [4649] = 4494, + [4650] = 4650, + [4651] = 4494, + [4652] = 4495, + [4653] = 4653, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, + [4657] = 4657, + [4658] = 4497, + [4659] = 4490, + [4660] = 4490, + [4661] = 4490, + [4662] = 4467, + [4663] = 4466, + [4664] = 4664, + [4665] = 4494, + [4666] = 4495, [4667] = 4667, - [4668] = 4417, - [4669] = 4412, - [4670] = 4512, - [4671] = 4435, - [4672] = 4513, - [4673] = 4517, - [4674] = 4449, - [4675] = 4463, - [4676] = 4487, - [4677] = 4520, - [4678] = 4467, - [4679] = 4467, - [4680] = 4467, - [4681] = 4520, - [4682] = 4487, - [4683] = 4449, - [4684] = 4435, - [4685] = 4412, - [4686] = 4417, - [4687] = 4450, - [4688] = 4506, - [4689] = 4467, - [4690] = 4502, - [4691] = 4492, - [4692] = 4512, - [4693] = 4506, - [4694] = 4517, - [4695] = 4513, + [4668] = 4497, + [4669] = 4458, + [4670] = 4466, + [4671] = 4467, + [4672] = 4465, + [4673] = 4466, + [4674] = 4473, + [4675] = 4479, + [4676] = 4467, + [4677] = 4677, + [4678] = 4489, + [4679] = 4473, + [4680] = 4449, + [4681] = 4454, + [4682] = 4465, + [4683] = 4648, + [4684] = 4684, + [4685] = 4685, + [4686] = 4686, + [4687] = 4479, + [4688] = 4688, + [4689] = 4449, + [4690] = 4457, + [4691] = 4691, + [4692] = 4449, + [4693] = 4449, + [4694] = 4694, + [4695] = 4489, [4696] = 4696, - [4697] = 4506, - [4698] = 4513, - [4699] = 4517, - [4700] = 4492, - [4701] = 4506, - [4702] = 4502, - [4703] = 4484, - [4704] = 4450, - [4705] = 4506, - [4706] = 4487, - [4707] = 4417, - [4708] = 4412, - [4709] = 4506, - [4710] = 4465, - [4711] = 4435, - [4712] = 4522, - [4713] = 4506, + [4697] = 4449, + [4698] = 4698, + [4699] = 4465, + [4700] = 4454, + [4701] = 4458, + [4702] = 4449, + [4703] = 4703, + [4704] = 4458, + [4705] = 4489, + [4706] = 4479, + [4707] = 4449, + [4708] = 4473, + [4709] = 4709, + [4710] = 4454, + [4711] = 4465, + [4712] = 4458, + [4713] = 4458, [4714] = 4467, - [4715] = 4449, - [4716] = 4520, - [4717] = 4506, - [4718] = 4520, + [4715] = 4466, + [4716] = 4449, + [4717] = 4449, + [4718] = 4497, [4719] = 4449, - [4720] = 4520, - [4721] = 4506, - [4722] = 4512, - [4723] = 4435, - [4724] = 4412, - [4725] = 4506, - [4726] = 4417, - [4727] = 4450, - [4728] = 4728, - [4729] = 4484, - [4730] = 4730, - [4731] = 4502, - [4732] = 4732, - [4733] = 4492, - [4734] = 4734, - [4735] = 4512, - [4736] = 4513, - [4737] = 4517, - [4738] = 4487, + [4720] = 4597, + [4721] = 4495, + [4722] = 4494, + [4723] = 4497, + [4724] = 4654, + [4725] = 4597, + [4726] = 4726, + [4727] = 4490, + [4728] = 4457, + [4729] = 4597, + [4730] = 4479, + [4731] = 4458, + [4732] = 4465, + [4733] = 4597, + [4734] = 4726, + [4735] = 4454, + [4736] = 4449, + [4737] = 4597, + [4738] = 4489, + [4739] = 4739, + [4740] = 4457, + [4741] = 4597, + [4742] = 4457, + [4743] = 4479, + [4744] = 4473, + [4745] = 4597, + [4746] = 4458, + [4747] = 4467, + [4748] = 4466, + [4749] = 4597, + [4750] = 4458, + [4751] = 4449, + [4752] = 4752, + [4753] = 4597, + [4754] = 4754, + [4755] = 4490, + [4756] = 4494, + [4757] = 4597, + [4758] = 4758, + [4759] = 4495, + [4760] = 4497, + [4761] = 4466, + [4762] = 4467, + [4763] = 4458, + [4764] = 4764, + [4765] = 4479, + [4766] = 4497, + [4767] = 4767, + [4768] = 4489, + [4769] = 4495, + [4770] = 4494, + [4771] = 4457, + [4772] = 4454, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -9552,6 +9596,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(683); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) @@ -9596,6 +9641,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(683); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38) @@ -9617,6 +9663,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(328); if (lookahead == '<') ADVANCE(310); if (lookahead == '=') ADVANCE(167); if (lookahead == '>') ADVANCE(317); @@ -9638,6 +9685,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(683); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) @@ -9659,6 +9707,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(328); if (lookahead == '<') ADVANCE(310); if (lookahead == '=') ADVANCE(167); if (lookahead == '>') ADVANCE(317); @@ -9680,6 +9729,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(683); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40) @@ -9699,9 +9749,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(306); if (lookahead == '0') ADVANCE(398); - if (lookahead == ':') ADVANCE(329); + if (lookahead == ':') ADVANCE(166); if (lookahead == ';') ADVANCE(275); - if (lookahead == '<') ADVANCE(309); + if (lookahead == '<') ADVANCE(311); if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); if (lookahead == '?') ADVANCE(333); @@ -9735,9 +9785,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(306); if (lookahead == '0') ADVANCE(398); - if (lookahead == ':') ADVANCE(329); + if (lookahead == ':') ADVANCE(166); if (lookahead == ';') ADVANCE(275); - if (lookahead == '<') ADVANCE(309); + if (lookahead == '<') ADVANCE(311); if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); if (lookahead == '?') ADVANCE(333); @@ -9780,21 +9830,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'J') ADVANCE(687); if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(340); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); if (lookahead == 'a') ADVANCE(699); if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); if (lookahead == 'o') ADVANCE(697); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) + lookahead == ' ') SKIP(45) END_STATE(); case 44: if (lookahead == '!') ADVANCE(335); @@ -9817,7 +9861,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(684); if (lookahead == 'J') ADVANCE(687); - if (lookahead == '[') ADVANCE(337); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9833,7 +9877,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) + lookahead == ' ') SKIP(46) END_STATE(); case 45: if (lookahead == '!') ADVANCE(335); @@ -9848,16 +9892,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(306); - if (lookahead == ':') ADVANCE(166); - if (lookahead == ';') ADVANCE(275); - if (lookahead == '<') ADVANCE(311); + if (lookahead == ':') ADVANCE(328); + if (lookahead == '<') ADVANCE(309); if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); if (lookahead == '?') ADVANCE(333); if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(684); if (lookahead == 'J') ADVANCE(687); - if (lookahead == '[') ADVANCE(323); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(340); if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); if (lookahead == 'a') ADVANCE(699); @@ -9867,7 +9910,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(45) END_STATE(); case 46: if (lookahead == '!') ADVANCE(335); @@ -9882,16 +9925,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(306); - if (lookahead == ':') ADVANCE(166); - if (lookahead == ';') ADVANCE(275); - if (lookahead == '<') ADVANCE(311); + if (lookahead == ':') ADVANCE(328); + if (lookahead == '<') ADVANCE(309); if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); if (lookahead == '?') ADVANCE(333); if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(684); if (lookahead == 'J') ADVANCE(687); - if (lookahead == '[') ADVANCE(323); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9907,7 +9949,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + lookahead == ' ') SKIP(46) END_STATE(); case 47: if (lookahead == '!') ADVANCE(335); @@ -9931,17 +9973,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(684); if (lookahead == 'J') ADVANCE(687); - if (lookahead == '[') ADVANCE(337); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(340); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); if (lookahead == 'a') ADVANCE(699); if (lookahead == 'i') ADVANCE(689); - if (lookahead == 'm') ADVANCE(702); if (lookahead == 'o') ADVANCE(697); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(48) END_STATE(); case 48: if (lookahead == '!') ADVANCE(335); @@ -10016,7 +10064,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(697); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51) END_STATE(); @@ -10059,7 +10106,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(697); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52) END_STATE(); @@ -10096,7 +10142,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(697); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51) END_STATE(); @@ -10139,7 +10184,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(697); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52) END_STATE(); @@ -10895,7 +10939,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(200); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(74) END_STATE(); @@ -10927,7 +10970,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(200); if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(294); - if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(74) END_STATE(); @@ -17918,13 +17960,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [62] = {.lex_state = 259}, [63] = {.lex_state = 259}, [64] = {.lex_state = 259}, - [65] = {.lex_state = 254}, - [66] = {.lex_state = 245}, + [65] = {.lex_state = 259}, + [66] = {.lex_state = 254}, [67] = {.lex_state = 245}, [68] = {.lex_state = 245}, [69] = {.lex_state = 245}, [70] = {.lex_state = 245}, - [71] = {.lex_state = 79}, + [71] = {.lex_state = 245}, [72] = {.lex_state = 79}, [73] = {.lex_state = 79}, [74] = {.lex_state = 79}, @@ -18029,10 +18071,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [173] = {.lex_state = 79}, [174] = {.lex_state = 79}, [175] = {.lex_state = 79}, - [176] = {.lex_state = 80}, + [176] = {.lex_state = 79}, [177] = {.lex_state = 79}, [178] = {.lex_state = 79}, - [179] = {.lex_state = 79}, + [179] = {.lex_state = 80}, [180] = {.lex_state = 79}, [181] = {.lex_state = 79}, [182] = {.lex_state = 79}, @@ -18069,17 +18111,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 79}, [214] = {.lex_state = 79}, [215] = {.lex_state = 79}, - [216] = {.lex_state = 79}, - [217] = {.lex_state = 30}, + [216] = {.lex_state = 30}, + [217] = {.lex_state = 79}, [218] = {.lex_state = 79}, [219] = {.lex_state = 79}, - [220] = {.lex_state = 247}, - [221] = {.lex_state = 247}, + [220] = {.lex_state = 79}, + [221] = {.lex_state = 79}, [222] = {.lex_state = 247}, [223] = {.lex_state = 247}, [224] = {.lex_state = 247}, - [225] = {.lex_state = 79}, - [226] = {.lex_state = 79}, + [225] = {.lex_state = 247}, + [226] = {.lex_state = 247}, [227] = {.lex_state = 79}, [228] = {.lex_state = 79}, [229] = {.lex_state = 79}, @@ -18105,7 +18147,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [249] = {.lex_state = 79}, [250] = {.lex_state = 79}, [251] = {.lex_state = 79}, - [252] = {.lex_state = 245}, + [252] = {.lex_state = 79}, [253] = {.lex_state = 79}, [254] = {.lex_state = 79}, [255] = {.lex_state = 79}, @@ -18113,7 +18155,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [257] = {.lex_state = 79}, [258] = {.lex_state = 79}, [259] = {.lex_state = 79}, - [260] = {.lex_state = 79}, + [260] = {.lex_state = 245}, [261] = {.lex_state = 79}, [262] = {.lex_state = 79}, [263] = {.lex_state = 79}, @@ -18124,9 +18166,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [268] = {.lex_state = 79}, [269] = {.lex_state = 79}, [270] = {.lex_state = 79}, - [271] = {.lex_state = 245}, + [271] = {.lex_state = 79}, [272] = {.lex_state = 79}, - [273] = {.lex_state = 79}, + [273] = {.lex_state = 245}, [274] = {.lex_state = 79}, [275] = {.lex_state = 79}, [276] = {.lex_state = 79}, @@ -18147,117 +18189,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [291] = {.lex_state = 79}, [292] = {.lex_state = 79}, [293] = {.lex_state = 79}, - [294] = {.lex_state = 245}, + [294] = {.lex_state = 79}, [295] = {.lex_state = 79}, [296] = {.lex_state = 79}, [297] = {.lex_state = 79}, [298] = {.lex_state = 79}, [299] = {.lex_state = 79}, [300] = {.lex_state = 79}, - [301] = {.lex_state = 79}, + [301] = {.lex_state = 80}, [302] = {.lex_state = 79}, - [303] = {.lex_state = 80}, + [303] = {.lex_state = 79}, [304] = {.lex_state = 80}, [305] = {.lex_state = 79}, - [306] = {.lex_state = 80}, - [307] = {.lex_state = 79}, - [308] = {.lex_state = 79}, - [309] = {.lex_state = 79}, - [310] = {.lex_state = 80}, + [306] = {.lex_state = 79}, + [307] = {.lex_state = 80}, + [308] = {.lex_state = 80}, + [309] = {.lex_state = 80}, + [310] = {.lex_state = 79}, [311] = {.lex_state = 79}, - [312] = {.lex_state = 79}, - [313] = {.lex_state = 80}, - [314] = {.lex_state = 80}, + [312] = {.lex_state = 245}, + [313] = {.lex_state = 79}, + [314] = {.lex_state = 79}, [315] = {.lex_state = 79}, - [316] = {.lex_state = 80}, - [317] = {.lex_state = 79}, - [318] = {.lex_state = 245}, + [316] = {.lex_state = 79}, + [317] = {.lex_state = 80}, + [318] = {.lex_state = 80}, [319] = {.lex_state = 79}, - [320] = {.lex_state = 79}, - [321] = {.lex_state = 79}, - [322] = {.lex_state = 79}, + [320] = {.lex_state = 80}, + [321] = {.lex_state = 80}, + [322] = {.lex_state = 245}, [323] = {.lex_state = 79}, - [324] = {.lex_state = 245}, + [324] = {.lex_state = 79}, [325] = {.lex_state = 79}, - [326] = {.lex_state = 245}, + [326] = {.lex_state = 79}, [327] = {.lex_state = 79}, - [328] = {.lex_state = 80}, - [329] = {.lex_state = 79}, - [330] = {.lex_state = 79}, + [328] = {.lex_state = 79}, + [329] = {.lex_state = 80}, + [330] = {.lex_state = 80}, [331] = {.lex_state = 80}, - [332] = {.lex_state = 245}, - [333] = {.lex_state = 245}, - [334] = {.lex_state = 79}, - [335] = {.lex_state = 80}, + [332] = {.lex_state = 79}, + [333] = {.lex_state = 80}, + [334] = {.lex_state = 245}, + [335] = {.lex_state = 79}, [336] = {.lex_state = 79}, - [337] = {.lex_state = 80}, - [338] = {.lex_state = 245}, + [337] = {.lex_state = 79}, + [338] = {.lex_state = 79}, [339] = {.lex_state = 79}, - [340] = {.lex_state = 245}, - [341] = {.lex_state = 79}, - [342] = {.lex_state = 245}, + [340] = {.lex_state = 79}, + [341] = {.lex_state = 80}, + [342] = {.lex_state = 80}, [343] = {.lex_state = 245}, - [344] = {.lex_state = 79}, + [344] = {.lex_state = 80}, [345] = {.lex_state = 79}, [346] = {.lex_state = 79}, - [347] = {.lex_state = 79}, - [348] = {.lex_state = 80}, - [349] = {.lex_state = 80}, - [350] = {.lex_state = 79}, - [351] = {.lex_state = 79}, + [347] = {.lex_state = 80}, + [348] = {.lex_state = 79}, + [349] = {.lex_state = 79}, + [350] = {.lex_state = 80}, + [351] = {.lex_state = 80}, [352] = {.lex_state = 79}, [353] = {.lex_state = 79}, [354] = {.lex_state = 79}, - [355] = {.lex_state = 80}, - [356] = {.lex_state = 79}, - [357] = {.lex_state = 80}, + [355] = {.lex_state = 79}, + [356] = {.lex_state = 80}, + [357] = {.lex_state = 79}, [358] = {.lex_state = 80}, - [359] = {.lex_state = 79}, - [360] = {.lex_state = 80}, - [361] = {.lex_state = 245}, - [362] = {.lex_state = 79}, + [359] = {.lex_state = 80}, + [360] = {.lex_state = 79}, + [361] = {.lex_state = 79}, + [362] = {.lex_state = 80}, [363] = {.lex_state = 79}, - [364] = {.lex_state = 79}, - [365] = {.lex_state = 245}, - [366] = {.lex_state = 80}, + [364] = {.lex_state = 245}, + [365] = {.lex_state = 79}, + [366] = {.lex_state = 245}, [367] = {.lex_state = 79}, - [368] = {.lex_state = 80}, - [369] = {.lex_state = 80}, - [370] = {.lex_state = 80}, + [368] = {.lex_state = 79}, + [369] = {.lex_state = 79}, + [370] = {.lex_state = 79}, [371] = {.lex_state = 79}, - [372] = {.lex_state = 80}, + [372] = {.lex_state = 245}, [373] = {.lex_state = 79}, - [374] = {.lex_state = 80}, - [375] = {.lex_state = 79}, - [376] = {.lex_state = 79}, - [377] = {.lex_state = 79}, - [378] = {.lex_state = 245}, - [379] = {.lex_state = 80}, + [374] = {.lex_state = 79}, + [375] = {.lex_state = 80}, + [376] = {.lex_state = 245}, + [377] = {.lex_state = 245}, + [378] = {.lex_state = 79}, + [379] = {.lex_state = 79}, [380] = {.lex_state = 79}, [381] = {.lex_state = 79}, [382] = {.lex_state = 79}, [383] = {.lex_state = 79}, - [384] = {.lex_state = 79}, + [384] = {.lex_state = 245}, [385] = {.lex_state = 79}, [386] = {.lex_state = 79}, - [387] = {.lex_state = 79}, - [388] = {.lex_state = 79}, + [387] = {.lex_state = 245}, + [388] = {.lex_state = 245}, [389] = {.lex_state = 79}, - [390] = {.lex_state = 79}, + [390] = {.lex_state = 245}, [391] = {.lex_state = 79}, [392] = {.lex_state = 79}, [393] = {.lex_state = 79}, - [394] = {.lex_state = 245}, - [395] = {.lex_state = 245}, + [394] = {.lex_state = 79}, + [395] = {.lex_state = 79}, [396] = {.lex_state = 79}, [397] = {.lex_state = 79}, [398] = {.lex_state = 79}, [399] = {.lex_state = 79}, [400] = {.lex_state = 79}, [401] = {.lex_state = 79}, - [402] = {.lex_state = 79}, + [402] = {.lex_state = 245}, [403] = {.lex_state = 79}, - [404] = {.lex_state = 79}, + [404] = {.lex_state = 245}, [405] = {.lex_state = 79}, [406] = {.lex_state = 79}, [407] = {.lex_state = 79}, @@ -18303,15 +18345,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [447] = {.lex_state = 79}, [448] = {.lex_state = 79}, [449] = {.lex_state = 79}, - [450] = {.lex_state = 79}, + [450] = {.lex_state = 245}, [451] = {.lex_state = 79}, [452] = {.lex_state = 79}, [453] = {.lex_state = 79}, - [454] = {.lex_state = 79}, + [454] = {.lex_state = 245}, [455] = {.lex_state = 79}, [456] = {.lex_state = 79}, [457] = {.lex_state = 79}, - [458] = {.lex_state = 249}, + [458] = {.lex_state = 79}, [459] = {.lex_state = 79}, [460] = {.lex_state = 79}, [461] = {.lex_state = 79}, @@ -18322,10 +18364,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [466] = {.lex_state = 79}, [467] = {.lex_state = 79}, [468] = {.lex_state = 79}, - [469] = {.lex_state = 79}, + [469] = {.lex_state = 245}, [470] = {.lex_state = 79}, [471] = {.lex_state = 79}, - [472] = {.lex_state = 245}, + [472] = {.lex_state = 79}, [473] = {.lex_state = 79}, [474] = {.lex_state = 79}, [475] = {.lex_state = 79}, @@ -18353,7 +18395,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [497] = {.lex_state = 79}, [498] = {.lex_state = 79}, [499] = {.lex_state = 79}, - [500] = {.lex_state = 249}, + [500] = {.lex_state = 79}, [501] = {.lex_state = 79}, [502] = {.lex_state = 79}, [503] = {.lex_state = 79}, @@ -18367,7 +18409,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [511] = {.lex_state = 79}, [512] = {.lex_state = 79}, [513] = {.lex_state = 79}, - [514] = {.lex_state = 79}, + [514] = {.lex_state = 249}, [515] = {.lex_state = 79}, [516] = {.lex_state = 79}, [517] = {.lex_state = 79}, @@ -18376,10 +18418,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [520] = {.lex_state = 79}, [521] = {.lex_state = 79}, [522] = {.lex_state = 79}, - [523] = {.lex_state = 79}, + [523] = {.lex_state = 249}, [524] = {.lex_state = 79}, [525] = {.lex_state = 79}, - [526] = {.lex_state = 245}, + [526] = {.lex_state = 79}, [527] = {.lex_state = 79}, [528] = {.lex_state = 79}, [529] = {.lex_state = 79}, @@ -18390,7 +18432,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [534] = {.lex_state = 79}, [535] = {.lex_state = 79}, [536] = {.lex_state = 79}, - [537] = {.lex_state = 249}, + [537] = {.lex_state = 79}, [538] = {.lex_state = 79}, [539] = {.lex_state = 79}, [540] = {.lex_state = 79}, @@ -18411,7 +18453,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [555] = {.lex_state = 79}, [556] = {.lex_state = 79}, [557] = {.lex_state = 79}, - [558] = {.lex_state = 79}, + [558] = {.lex_state = 245}, [559] = {.lex_state = 79}, [560] = {.lex_state = 79}, [561] = {.lex_state = 79}, @@ -18443,7 +18485,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [587] = {.lex_state = 79}, [588] = {.lex_state = 79}, [589] = {.lex_state = 79}, - [590] = {.lex_state = 79}, + [590] = {.lex_state = 245}, [591] = {.lex_state = 79}, [592] = {.lex_state = 79}, [593] = {.lex_state = 79}, @@ -18453,10 +18495,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [597] = {.lex_state = 79}, [598] = {.lex_state = 79}, [599] = {.lex_state = 79}, - [600] = {.lex_state = 249}, + [600] = {.lex_state = 79}, [601] = {.lex_state = 79}, [602] = {.lex_state = 79}, - [603] = {.lex_state = 79}, + [603] = {.lex_state = 249}, [604] = {.lex_state = 79}, [605] = {.lex_state = 79}, [606] = {.lex_state = 79}, @@ -18471,7 +18513,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [615] = {.lex_state = 79}, [616] = {.lex_state = 79}, [617] = {.lex_state = 79}, - [618] = {.lex_state = 245}, + [618] = {.lex_state = 79}, [619] = {.lex_state = 79}, [620] = {.lex_state = 79}, [621] = {.lex_state = 79}, @@ -18534,7 +18576,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [678] = {.lex_state = 79}, [679] = {.lex_state = 79}, [680] = {.lex_state = 79}, - [681] = {.lex_state = 245}, + [681] = {.lex_state = 79}, [682] = {.lex_state = 79}, [683] = {.lex_state = 79}, [684] = {.lex_state = 79}, @@ -18542,7 +18584,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [686] = {.lex_state = 79}, [687] = {.lex_state = 79}, [688] = {.lex_state = 79}, - [689] = {.lex_state = 79}, + [689] = {.lex_state = 249}, [690] = {.lex_state = 79}, [691] = {.lex_state = 79}, [692] = {.lex_state = 79}, @@ -18569,7 +18611,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [713] = {.lex_state = 79}, [714] = {.lex_state = 79}, [715] = {.lex_state = 79}, - [716] = {.lex_state = 245}, + [716] = {.lex_state = 79}, [717] = {.lex_state = 79}, [718] = {.lex_state = 79}, [719] = {.lex_state = 79}, @@ -18704,27 +18746,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [848] = {.lex_state = 79}, [849] = {.lex_state = 79}, [850] = {.lex_state = 79}, - [851] = {.lex_state = 245}, - [852] = {.lex_state = 245}, - [853] = {.lex_state = 245}, - [854] = {.lex_state = 245}, - [855] = {.lex_state = 245}, - [856] = {.lex_state = 245}, - [857] = {.lex_state = 245}, - [858] = {.lex_state = 245}, - [859] = {.lex_state = 245}, - [860] = {.lex_state = 245}, - [861] = {.lex_state = 245}, - [862] = {.lex_state = 245}, - [863] = {.lex_state = 245}, - [864] = {.lex_state = 245}, - [865] = {.lex_state = 245}, - [866] = {.lex_state = 245}, - [867] = {.lex_state = 245}, - [868] = {.lex_state = 245}, - [869] = {.lex_state = 245}, - [870] = {.lex_state = 245}, - [871] = {.lex_state = 245}, + [851] = {.lex_state = 79}, + [852] = {.lex_state = 79}, + [853] = {.lex_state = 79}, + [854] = {.lex_state = 79}, + [855] = {.lex_state = 79}, + [856] = {.lex_state = 79}, + [857] = {.lex_state = 79}, + [858] = {.lex_state = 79}, + [859] = {.lex_state = 79}, + [860] = {.lex_state = 79}, + [861] = {.lex_state = 79}, + [862] = {.lex_state = 79}, + [863] = {.lex_state = 79}, + [864] = {.lex_state = 79}, + [865] = {.lex_state = 79}, + [866] = {.lex_state = 79}, + [867] = {.lex_state = 79}, + [868] = {.lex_state = 79}, + [869] = {.lex_state = 79}, + [870] = {.lex_state = 79}, + [871] = {.lex_state = 79}, [872] = {.lex_state = 245}, [873] = {.lex_state = 245}, [874] = {.lex_state = 245}, @@ -18814,48 +18856,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [958] = {.lex_state = 245}, [959] = {.lex_state = 245}, [960] = {.lex_state = 245}, - [961] = {.lex_state = 2}, - [962] = {.lex_state = 247}, - [963] = {.lex_state = 247}, - [964] = {.lex_state = 2}, - [965] = {.lex_state = 2}, - [966] = {.lex_state = 247}, - [967] = {.lex_state = 2}, - [968] = {.lex_state = 247}, - [969] = {.lex_state = 247}, - [970] = {.lex_state = 247}, - [971] = {.lex_state = 2}, - [972] = {.lex_state = 247}, - [973] = {.lex_state = 247}, - [974] = {.lex_state = 247}, - [975] = {.lex_state = 247}, - [976] = {.lex_state = 247}, - [977] = {.lex_state = 2}, - [978] = {.lex_state = 247}, - [979] = {.lex_state = 247}, - [980] = {.lex_state = 247}, - [981] = {.lex_state = 247}, - [982] = {.lex_state = 247}, + [961] = {.lex_state = 245}, + [962] = {.lex_state = 245}, + [963] = {.lex_state = 245}, + [964] = {.lex_state = 245}, + [965] = {.lex_state = 245}, + [966] = {.lex_state = 245}, + [967] = {.lex_state = 245}, + [968] = {.lex_state = 245}, + [969] = {.lex_state = 245}, + [970] = {.lex_state = 245}, + [971] = {.lex_state = 245}, + [972] = {.lex_state = 245}, + [973] = {.lex_state = 245}, + [974] = {.lex_state = 245}, + [975] = {.lex_state = 245}, + [976] = {.lex_state = 245}, + [977] = {.lex_state = 245}, + [978] = {.lex_state = 245}, + [979] = {.lex_state = 245}, + [980] = {.lex_state = 245}, + [981] = {.lex_state = 245}, + [982] = {.lex_state = 2}, [983] = {.lex_state = 247}, [984] = {.lex_state = 247}, - [985] = {.lex_state = 247}, + [985] = {.lex_state = 2}, [986] = {.lex_state = 247}, - [987] = {.lex_state = 247}, - [988] = {.lex_state = 247}, - [989] = {.lex_state = 247}, + [987] = {.lex_state = 2}, + [988] = {.lex_state = 2}, + [989] = {.lex_state = 2}, [990] = {.lex_state = 247}, [991] = {.lex_state = 247}, [992] = {.lex_state = 247}, [993] = {.lex_state = 247}, [994] = {.lex_state = 247}, [995] = {.lex_state = 247}, - [996] = {.lex_state = 251}, - [997] = {.lex_state = 251}, - [998] = {.lex_state = 251}, + [996] = {.lex_state = 247}, + [997] = {.lex_state = 247}, + [998] = {.lex_state = 247}, [999] = {.lex_state = 247}, [1000] = {.lex_state = 247}, - [1001] = {.lex_state = 251}, - [1002] = {.lex_state = 247}, + [1001] = {.lex_state = 247}, + [1002] = {.lex_state = 2}, [1003] = {.lex_state = 247}, [1004] = {.lex_state = 247}, [1005] = {.lex_state = 247}, @@ -18871,17 +18913,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1015] = {.lex_state = 247}, [1016] = {.lex_state = 247}, [1017] = {.lex_state = 247}, - [1018] = {.lex_state = 247}, + [1018] = {.lex_state = 37}, [1019] = {.lex_state = 247}, - [1020] = {.lex_state = 247}, - [1021] = {.lex_state = 247}, - [1022] = {.lex_state = 247}, - [1023] = {.lex_state = 247}, + [1020] = {.lex_state = 251}, + [1021] = {.lex_state = 251}, + [1022] = {.lex_state = 37}, + [1023] = {.lex_state = 37}, [1024] = {.lex_state = 247}, - [1025] = {.lex_state = 247}, - [1026] = {.lex_state = 247}, - [1027] = {.lex_state = 247}, - [1028] = {.lex_state = 247}, + [1025] = {.lex_state = 251}, + [1026] = {.lex_state = 37}, + [1027] = {.lex_state = 251}, + [1028] = {.lex_state = 37}, [1029] = {.lex_state = 247}, [1030] = {.lex_state = 247}, [1031] = {.lex_state = 247}, @@ -18966,90 +19008,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1110] = {.lex_state = 247}, [1111] = {.lex_state = 247}, [1112] = {.lex_state = 247}, - [1113] = {.lex_state = 37}, - [1114] = {.lex_state = 37}, - [1115] = {.lex_state = 37}, - [1116] = {.lex_state = 37}, - [1117] = {.lex_state = 37}, - [1118] = {.lex_state = 254}, - [1119] = {.lex_state = 254}, - [1120] = {.lex_state = 254}, - [1121] = {.lex_state = 6}, - [1122] = {.lex_state = 253}, - [1123] = {.lex_state = 6}, - [1124] = {.lex_state = 6}, - [1125] = {.lex_state = 6}, - [1126] = {.lex_state = 6}, - [1127] = {.lex_state = 10}, - [1128] = {.lex_state = 10}, - [1129] = {.lex_state = 10}, - [1130] = {.lex_state = 10}, - [1131] = {.lex_state = 10}, - [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 2}, - [1134] = {.lex_state = 2}, - [1135] = {.lex_state = 2}, - [1136] = {.lex_state = 2}, - [1137] = {.lex_state = 2}, - [1138] = {.lex_state = 2}, - [1139] = {.lex_state = 2}, - [1140] = {.lex_state = 2}, - [1141] = {.lex_state = 2}, - [1142] = {.lex_state = 2}, - [1143] = {.lex_state = 2}, - [1144] = {.lex_state = 2}, - [1145] = {.lex_state = 41}, - [1146] = {.lex_state = 2}, - [1147] = {.lex_state = 45}, - [1148] = {.lex_state = 41}, - [1149] = {.lex_state = 2}, - [1150] = {.lex_state = 45}, - [1151] = {.lex_state = 41}, - [1152] = {.lex_state = 41}, - [1153] = {.lex_state = 41}, - [1154] = {.lex_state = 45}, - [1155] = {.lex_state = 45}, - [1156] = {.lex_state = 45}, + [1113] = {.lex_state = 247}, + [1114] = {.lex_state = 247}, + [1115] = {.lex_state = 247}, + [1116] = {.lex_state = 247}, + [1117] = {.lex_state = 247}, + [1118] = {.lex_state = 247}, + [1119] = {.lex_state = 247}, + [1120] = {.lex_state = 247}, + [1121] = {.lex_state = 247}, + [1122] = {.lex_state = 247}, + [1123] = {.lex_state = 247}, + [1124] = {.lex_state = 247}, + [1125] = {.lex_state = 247}, + [1126] = {.lex_state = 247}, + [1127] = {.lex_state = 247}, + [1128] = {.lex_state = 247}, + [1129] = {.lex_state = 247}, + [1130] = {.lex_state = 247}, + [1131] = {.lex_state = 247}, + [1132] = {.lex_state = 247}, + [1133] = {.lex_state = 247}, + [1134] = {.lex_state = 247}, + [1135] = {.lex_state = 247}, + [1136] = {.lex_state = 247}, + [1137] = {.lex_state = 247}, + [1138] = {.lex_state = 247}, + [1139] = {.lex_state = 254}, + [1140] = {.lex_state = 254}, + [1141] = {.lex_state = 254}, + [1142] = {.lex_state = 6}, + [1143] = {.lex_state = 6}, + [1144] = {.lex_state = 6}, + [1145] = {.lex_state = 6}, + [1146] = {.lex_state = 6}, + [1147] = {.lex_state = 253}, + [1148] = {.lex_state = 10}, + [1149] = {.lex_state = 10}, + [1150] = {.lex_state = 10}, + [1151] = {.lex_state = 10}, + [1152] = {.lex_state = 10}, + [1153] = {.lex_state = 2}, + [1154] = {.lex_state = 2}, + [1155] = {.lex_state = 2}, + [1156] = {.lex_state = 2}, [1157] = {.lex_state = 2}, - [1158] = {.lex_state = 45}, + [1158] = {.lex_state = 2}, [1159] = {.lex_state = 2}, [1160] = {.lex_state = 2}, - [1161] = {.lex_state = 4}, - [1162] = {.lex_state = 4}, + [1161] = {.lex_state = 2}, + [1162] = {.lex_state = 2}, [1163] = {.lex_state = 2}, - [1164] = {.lex_state = 4}, - [1165] = {.lex_state = 4}, - [1166] = {.lex_state = 2}, - [1167] = {.lex_state = 2}, - [1168] = {.lex_state = 45}, - [1169] = {.lex_state = 2}, + [1164] = {.lex_state = 2}, + [1165] = {.lex_state = 2}, + [1166] = {.lex_state = 41}, + [1167] = {.lex_state = 41}, + [1168] = {.lex_state = 2}, + [1169] = {.lex_state = 41}, [1170] = {.lex_state = 2}, [1171] = {.lex_state = 2}, - [1172] = {.lex_state = 2}, - [1173] = {.lex_state = 2}, + [1172] = {.lex_state = 43}, + [1173] = {.lex_state = 43}, [1174] = {.lex_state = 2}, - [1175] = {.lex_state = 2}, - [1176] = {.lex_state = 2}, - [1177] = {.lex_state = 2}, - [1178] = {.lex_state = 2}, - [1179] = {.lex_state = 2}, + [1175] = {.lex_state = 43}, + [1176] = {.lex_state = 41}, + [1177] = {.lex_state = 41}, + [1178] = {.lex_state = 43}, + [1179] = {.lex_state = 43}, [1180] = {.lex_state = 2}, - [1181] = {.lex_state = 2}, + [1181] = {.lex_state = 41}, [1182] = {.lex_state = 2}, - [1183] = {.lex_state = 2}, - [1184] = {.lex_state = 2}, - [1185] = {.lex_state = 2}, + [1183] = {.lex_state = 37}, + [1184] = {.lex_state = 41}, + [1185] = {.lex_state = 37}, [1186] = {.lex_state = 2}, - [1187] = {.lex_state = 2}, - [1188] = {.lex_state = 2}, + [1187] = {.lex_state = 4}, + [1188] = {.lex_state = 4}, [1189] = {.lex_state = 2}, - [1190] = {.lex_state = 2}, - [1191] = {.lex_state = 2}, - [1192] = {.lex_state = 2}, + [1190] = {.lex_state = 37}, + [1191] = {.lex_state = 4}, + [1192] = {.lex_state = 4}, [1193] = {.lex_state = 2}, [1194] = {.lex_state = 2}, [1195] = {.lex_state = 2}, - [1196] = {.lex_state = 2}, + [1196] = {.lex_state = 37}, [1197] = {.lex_state = 2}, [1198] = {.lex_state = 2}, [1199] = {.lex_state = 2}, @@ -19076,7 +19118,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1220] = {.lex_state = 2}, [1221] = {.lex_state = 2}, [1222] = {.lex_state = 2}, - [1223] = {.lex_state = 2}, + [1223] = {.lex_state = 37}, [1224] = {.lex_state = 2}, [1225] = {.lex_state = 2}, [1226] = {.lex_state = 2}, @@ -19128,39 +19170,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1272] = {.lex_state = 2}, [1273] = {.lex_state = 2}, [1274] = {.lex_state = 37}, - [1275] = {.lex_state = 37}, - [1276] = {.lex_state = 37}, - [1277] = {.lex_state = 37}, - [1278] = {.lex_state = 37}, - [1279] = {.lex_state = 37}, - [1280] = {.lex_state = 37}, - [1281] = {.lex_state = 37}, - [1282] = {.lex_state = 37}, - [1283] = {.lex_state = 37}, - [1284] = {.lex_state = 37}, - [1285] = {.lex_state = 37}, - [1286] = {.lex_state = 37}, - [1287] = {.lex_state = 37}, - [1288] = {.lex_state = 37}, - [1289] = {.lex_state = 37}, - [1290] = {.lex_state = 37}, - [1291] = {.lex_state = 37}, - [1292] = {.lex_state = 37}, - [1293] = {.lex_state = 37}, - [1294] = {.lex_state = 37}, - [1295] = {.lex_state = 39}, - [1296] = {.lex_state = 37}, - [1297] = {.lex_state = 37}, - [1298] = {.lex_state = 37}, - [1299] = {.lex_state = 37}, - [1300] = {.lex_state = 14}, - [1301] = {.lex_state = 39}, - [1302] = {.lex_state = 37}, + [1275] = {.lex_state = 2}, + [1276] = {.lex_state = 2}, + [1277] = {.lex_state = 2}, + [1278] = {.lex_state = 2}, + [1279] = {.lex_state = 2}, + [1280] = {.lex_state = 2}, + [1281] = {.lex_state = 2}, + [1282] = {.lex_state = 2}, + [1283] = {.lex_state = 2}, + [1284] = {.lex_state = 2}, + [1285] = {.lex_state = 2}, + [1286] = {.lex_state = 2}, + [1287] = {.lex_state = 2}, + [1288] = {.lex_state = 2}, + [1289] = {.lex_state = 2}, + [1290] = {.lex_state = 2}, + [1291] = {.lex_state = 2}, + [1292] = {.lex_state = 2}, + [1293] = {.lex_state = 2}, + [1294] = {.lex_state = 2}, + [1295] = {.lex_state = 2}, + [1296] = {.lex_state = 2}, + [1297] = {.lex_state = 2}, + [1298] = {.lex_state = 2}, + [1299] = {.lex_state = 2}, + [1300] = {.lex_state = 2}, + [1301] = {.lex_state = 37}, + [1302] = {.lex_state = 39}, [1303] = {.lex_state = 37}, [1304] = {.lex_state = 39}, [1305] = {.lex_state = 37}, - [1306] = {.lex_state = 39}, - [1307] = {.lex_state = 14}, + [1306] = {.lex_state = 37}, + [1307] = {.lex_state = 37}, [1308] = {.lex_state = 37}, [1309] = {.lex_state = 37}, [1310] = {.lex_state = 37}, @@ -19168,8 +19210,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1312] = {.lex_state = 37}, [1313] = {.lex_state = 37}, [1314] = {.lex_state = 37}, - [1315] = {.lex_state = 37}, - [1316] = {.lex_state = 37}, + [1315] = {.lex_state = 39}, + [1316] = {.lex_state = 39}, [1317] = {.lex_state = 37}, [1318] = {.lex_state = 37}, [1319] = {.lex_state = 37}, @@ -19196,10 +19238,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1340] = {.lex_state = 37}, [1341] = {.lex_state = 37}, [1342] = {.lex_state = 37}, - [1343] = {.lex_state = 14}, - [1344] = {.lex_state = 14}, + [1343] = {.lex_state = 37}, + [1344] = {.lex_state = 37}, [1345] = {.lex_state = 37}, - [1346] = {.lex_state = 14}, + [1346] = {.lex_state = 37}, [1347] = {.lex_state = 37}, [1348] = {.lex_state = 37}, [1349] = {.lex_state = 37}, @@ -19264,59 +19306,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1408] = {.lex_state = 37}, [1409] = {.lex_state = 37}, [1410] = {.lex_state = 37}, - [1411] = {.lex_state = 49}, - [1412] = {.lex_state = 49}, - [1413] = {.lex_state = 49}, - [1414] = {.lex_state = 14}, - [1415] = {.lex_state = 255}, - [1416] = {.lex_state = 49}, - [1417] = {.lex_state = 14}, - [1418] = {.lex_state = 254}, - [1419] = {.lex_state = 254}, - [1420] = {.lex_state = 254}, - [1421] = {.lex_state = 254}, - [1422] = {.lex_state = 14}, - [1423] = {.lex_state = 254}, - [1424] = {.lex_state = 14}, - [1425] = {.lex_state = 255}, - [1426] = {.lex_state = 255}, - [1427] = {.lex_state = 254}, - [1428] = {.lex_state = 14}, - [1429] = {.lex_state = 255}, - [1430] = {.lex_state = 254}, - [1431] = {.lex_state = 254}, - [1432] = {.lex_state = 254}, - [1433] = {.lex_state = 254}, - [1434] = {.lex_state = 254}, - [1435] = {.lex_state = 254}, - [1436] = {.lex_state = 254}, - [1437] = {.lex_state = 254}, - [1438] = {.lex_state = 254}, - [1439] = {.lex_state = 254}, - [1440] = {.lex_state = 254}, - [1441] = {.lex_state = 254}, - [1442] = {.lex_state = 254}, - [1443] = {.lex_state = 254}, - [1444] = {.lex_state = 254}, - [1445] = {.lex_state = 254}, - [1446] = {.lex_state = 254}, - [1447] = {.lex_state = 254}, - [1448] = {.lex_state = 254}, - [1449] = {.lex_state = 254}, - [1450] = {.lex_state = 49}, - [1451] = {.lex_state = 254}, - [1452] = {.lex_state = 254}, + [1411] = {.lex_state = 37}, + [1412] = {.lex_state = 37}, + [1413] = {.lex_state = 37}, + [1414] = {.lex_state = 37}, + [1415] = {.lex_state = 37}, + [1416] = {.lex_state = 37}, + [1417] = {.lex_state = 37}, + [1418] = {.lex_state = 37}, + [1419] = {.lex_state = 37}, + [1420] = {.lex_state = 37}, + [1421] = {.lex_state = 37}, + [1422] = {.lex_state = 37}, + [1423] = {.lex_state = 37}, + [1424] = {.lex_state = 37}, + [1425] = {.lex_state = 37}, + [1426] = {.lex_state = 37}, + [1427] = {.lex_state = 37}, + [1428] = {.lex_state = 37}, + [1429] = {.lex_state = 37}, + [1430] = {.lex_state = 37}, + [1431] = {.lex_state = 37}, + [1432] = {.lex_state = 37}, + [1433] = {.lex_state = 14}, + [1434] = {.lex_state = 37}, + [1435] = {.lex_state = 37}, + [1436] = {.lex_state = 37}, + [1437] = {.lex_state = 37}, + [1438] = {.lex_state = 37}, + [1439] = {.lex_state = 14}, + [1440] = {.lex_state = 37}, + [1441] = {.lex_state = 14}, + [1442] = {.lex_state = 14}, + [1443] = {.lex_state = 37}, + [1444] = {.lex_state = 14}, + [1445] = {.lex_state = 49}, + [1446] = {.lex_state = 49}, + [1447] = {.lex_state = 255}, + [1448] = {.lex_state = 14}, + [1449] = {.lex_state = 49}, + [1450] = {.lex_state = 254}, + [1451] = {.lex_state = 14}, + [1452] = {.lex_state = 14}, [1453] = {.lex_state = 254}, - [1454] = {.lex_state = 254}, - [1455] = {.lex_state = 254}, + [1454] = {.lex_state = 14}, + [1455] = {.lex_state = 49}, [1456] = {.lex_state = 254}, [1457] = {.lex_state = 254}, [1458] = {.lex_state = 254}, - [1459] = {.lex_state = 254}, - [1460] = {.lex_state = 254}, - [1461] = {.lex_state = 254}, + [1459] = {.lex_state = 255}, + [1460] = {.lex_state = 14}, + [1461] = {.lex_state = 255}, [1462] = {.lex_state = 254}, - [1463] = {.lex_state = 254}, + [1463] = {.lex_state = 255}, [1464] = {.lex_state = 254}, [1465] = {.lex_state = 254}, [1466] = {.lex_state = 254}, @@ -19352,7 +19394,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1496] = {.lex_state = 254}, [1497] = {.lex_state = 254}, [1498] = {.lex_state = 254}, - [1499] = {.lex_state = 259}, + [1499] = {.lex_state = 254}, [1500] = {.lex_state = 254}, [1501] = {.lex_state = 254}, [1502] = {.lex_state = 254}, @@ -19366,7 +19408,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 254}, [1511] = {.lex_state = 254}, [1512] = {.lex_state = 254}, - [1513] = {.lex_state = 53}, + [1513] = {.lex_state = 254}, [1514] = {.lex_state = 254}, [1515] = {.lex_state = 254}, [1516] = {.lex_state = 254}, @@ -19382,11 +19424,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1526] = {.lex_state = 254}, [1527] = {.lex_state = 254}, [1528] = {.lex_state = 254}, - [1529] = {.lex_state = 254}, + [1529] = {.lex_state = 53}, [1530] = {.lex_state = 254}, [1531] = {.lex_state = 254}, - [1532] = {.lex_state = 254}, - [1533] = {.lex_state = 254}, + [1532] = {.lex_state = 49}, + [1533] = {.lex_state = 259}, [1534] = {.lex_state = 254}, [1535] = {.lex_state = 254}, [1536] = {.lex_state = 254}, @@ -19412,7 +19454,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1556] = {.lex_state = 254}, [1557] = {.lex_state = 254}, [1558] = {.lex_state = 254}, - [1559] = {.lex_state = 259}, + [1559] = {.lex_state = 254}, [1560] = {.lex_state = 254}, [1561] = {.lex_state = 254}, [1562] = {.lex_state = 254}, @@ -19438,105 +19480,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1582] = {.lex_state = 254}, [1583] = {.lex_state = 254}, [1584] = {.lex_state = 254}, - [1585] = {.lex_state = 53}, - [1586] = {.lex_state = 49}, - [1587] = {.lex_state = 53}, - [1588] = {.lex_state = 53}, - [1589] = {.lex_state = 53}, - [1590] = {.lex_state = 79}, - [1591] = {.lex_state = 259}, - [1592] = {.lex_state = 49}, - [1593] = {.lex_state = 49}, - [1594] = {.lex_state = 259}, - [1595] = {.lex_state = 259}, - [1596] = {.lex_state = 259}, - [1597] = {.lex_state = 6}, - [1598] = {.lex_state = 6}, - [1599] = {.lex_state = 6}, - [1600] = {.lex_state = 6}, - [1601] = {.lex_state = 6}, - [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 10}, - [1604] = {.lex_state = 10}, - [1605] = {.lex_state = 10}, - [1606] = {.lex_state = 10}, - [1607] = {.lex_state = 41}, - [1608] = {.lex_state = 45}, - [1609] = {.lex_state = 45}, - [1610] = {.lex_state = 24}, - [1611] = {.lex_state = 45}, - [1612] = {.lex_state = 45}, - [1613] = {.lex_state = 45}, - [1614] = {.lex_state = 41}, - [1615] = {.lex_state = 41}, - [1616] = {.lex_state = 41}, - [1617] = {.lex_state = 41}, - [1618] = {.lex_state = 24}, - [1619] = {.lex_state = 24}, - [1620] = {.lex_state = 24}, - [1621] = {.lex_state = 24}, - [1622] = {.lex_state = 24}, - [1623] = {.lex_state = 24}, - [1624] = {.lex_state = 24}, - [1625] = {.lex_state = 24}, - [1626] = {.lex_state = 24}, - [1627] = {.lex_state = 24}, - [1628] = {.lex_state = 24}, - [1629] = {.lex_state = 24}, - [1630] = {.lex_state = 24}, - [1631] = {.lex_state = 7}, - [1632] = {.lex_state = 18}, - [1633] = {.lex_state = 26}, - [1634] = {.lex_state = 7}, - [1635] = {.lex_state = 18}, - [1636] = {.lex_state = 24}, - [1637] = {.lex_state = 26}, - [1638] = {.lex_state = 26}, - [1639] = {.lex_state = 24}, - [1640] = {.lex_state = 24}, + [1585] = {.lex_state = 254}, + [1586] = {.lex_state = 254}, + [1587] = {.lex_state = 254}, + [1588] = {.lex_state = 254}, + [1589] = {.lex_state = 254}, + [1590] = {.lex_state = 254}, + [1591] = {.lex_state = 254}, + [1592] = {.lex_state = 254}, + [1593] = {.lex_state = 254}, + [1594] = {.lex_state = 254}, + [1595] = {.lex_state = 254}, + [1596] = {.lex_state = 254}, + [1597] = {.lex_state = 254}, + [1598] = {.lex_state = 254}, + [1599] = {.lex_state = 254}, + [1600] = {.lex_state = 254}, + [1601] = {.lex_state = 254}, + [1602] = {.lex_state = 254}, + [1603] = {.lex_state = 254}, + [1604] = {.lex_state = 254}, + [1605] = {.lex_state = 254}, + [1606] = {.lex_state = 254}, + [1607] = {.lex_state = 259}, + [1608] = {.lex_state = 254}, + [1609] = {.lex_state = 254}, + [1610] = {.lex_state = 254}, + [1611] = {.lex_state = 254}, + [1612] = {.lex_state = 254}, + [1613] = {.lex_state = 254}, + [1614] = {.lex_state = 254}, + [1615] = {.lex_state = 254}, + [1616] = {.lex_state = 254}, + [1617] = {.lex_state = 254}, + [1618] = {.lex_state = 254}, + [1619] = {.lex_state = 53}, + [1620] = {.lex_state = 53}, + [1621] = {.lex_state = 53}, + [1622] = {.lex_state = 53}, + [1623] = {.lex_state = 49}, + [1624] = {.lex_state = 259}, + [1625] = {.lex_state = 49}, + [1626] = {.lex_state = 79}, + [1627] = {.lex_state = 259}, + [1628] = {.lex_state = 259}, + [1629] = {.lex_state = 49}, + [1630] = {.lex_state = 259}, + [1631] = {.lex_state = 6}, + [1632] = {.lex_state = 6}, + [1633] = {.lex_state = 6}, + [1634] = {.lex_state = 6}, + [1635] = {.lex_state = 6}, + [1636] = {.lex_state = 10}, + [1637] = {.lex_state = 10}, + [1638] = {.lex_state = 10}, + [1639] = {.lex_state = 10}, + [1640] = {.lex_state = 10}, [1641] = {.lex_state = 24}, - [1642] = {.lex_state = 69}, - [1643] = {.lex_state = 69}, - [1644] = {.lex_state = 26}, - [1645] = {.lex_state = 26}, - [1646] = {.lex_state = 24}, - [1647] = {.lex_state = 26}, - [1648] = {.lex_state = 26}, - [1649] = {.lex_state = 26}, - [1650] = {.lex_state = 24}, - [1651] = {.lex_state = 24}, + [1642] = {.lex_state = 43}, + [1643] = {.lex_state = 43}, + [1644] = {.lex_state = 41}, + [1645] = {.lex_state = 43}, + [1646] = {.lex_state = 41}, + [1647] = {.lex_state = 41}, + [1648] = {.lex_state = 41}, + [1649] = {.lex_state = 41}, + [1650] = {.lex_state = 43}, + [1651] = {.lex_state = 43}, [1652] = {.lex_state = 24}, [1653] = {.lex_state = 24}, [1654] = {.lex_state = 24}, [1655] = {.lex_state = 24}, [1656] = {.lex_state = 24}, [1657] = {.lex_state = 24}, - [1658] = {.lex_state = 26}, + [1658] = {.lex_state = 24}, [1659] = {.lex_state = 24}, [1660] = {.lex_state = 24}, [1661] = {.lex_state = 24}, [1662] = {.lex_state = 24}, - [1663] = {.lex_state = 26}, - [1664] = {.lex_state = 26}, - [1665] = {.lex_state = 24}, - [1666] = {.lex_state = 24}, - [1667] = {.lex_state = 26}, - [1668] = {.lex_state = 24}, - [1669] = {.lex_state = 24}, + [1663] = {.lex_state = 24}, + [1664] = {.lex_state = 24}, + [1665] = {.lex_state = 18}, + [1666] = {.lex_state = 18}, + [1667] = {.lex_state = 7}, + [1668] = {.lex_state = 7}, + [1669] = {.lex_state = 26}, [1670] = {.lex_state = 24}, - [1671] = {.lex_state = 26}, - [1672] = {.lex_state = 24}, + [1671] = {.lex_state = 24}, + [1672] = {.lex_state = 26}, [1673] = {.lex_state = 24}, [1674] = {.lex_state = 24}, [1675] = {.lex_state = 24}, [1676] = {.lex_state = 24}, - [1677] = {.lex_state = 24}, + [1677] = {.lex_state = 69}, [1678] = {.lex_state = 24}, - [1679] = {.lex_state = 259}, + [1679] = {.lex_state = 24}, [1680] = {.lex_state = 24}, [1681] = {.lex_state = 24}, [1682] = {.lex_state = 24}, - [1683] = {.lex_state = 24}, + [1683] = {.lex_state = 259}, [1684] = {.lex_state = 24}, [1685] = {.lex_state = 24}, [1686] = {.lex_state = 24}, @@ -19549,35 +19591,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1693] = {.lex_state = 24}, [1694] = {.lex_state = 24}, [1695] = {.lex_state = 24}, - [1696] = {.lex_state = 24}, - [1697] = {.lex_state = 24}, + [1696] = {.lex_state = 26}, + [1697] = {.lex_state = 26}, [1698] = {.lex_state = 24}, - [1699] = {.lex_state = 24}, - [1700] = {.lex_state = 24}, - [1701] = {.lex_state = 24}, - [1702] = {.lex_state = 24}, + [1699] = {.lex_state = 26}, + [1700] = {.lex_state = 26}, + [1701] = {.lex_state = 26}, + [1702] = {.lex_state = 26}, [1703] = {.lex_state = 24}, [1704] = {.lex_state = 24}, [1705] = {.lex_state = 24}, [1706] = {.lex_state = 24}, - [1707] = {.lex_state = 24}, - [1708] = {.lex_state = 24}, - [1709] = {.lex_state = 20}, - [1710] = {.lex_state = 24}, - [1711] = {.lex_state = 24}, - [1712] = {.lex_state = 24}, + [1707] = {.lex_state = 26}, + [1708] = {.lex_state = 26}, + [1709] = {.lex_state = 26}, + [1710] = {.lex_state = 26}, + [1711] = {.lex_state = 69}, + [1712] = {.lex_state = 26}, [1713] = {.lex_state = 24}, [1714] = {.lex_state = 24}, [1715] = {.lex_state = 24}, [1716] = {.lex_state = 24}, [1717] = {.lex_state = 24}, - [1718] = {.lex_state = 20}, + [1718] = {.lex_state = 24}, [1719] = {.lex_state = 24}, [1720] = {.lex_state = 24}, [1721] = {.lex_state = 24}, [1722] = {.lex_state = 24}, [1723] = {.lex_state = 24}, - [1724] = {.lex_state = 26}, + [1724] = {.lex_state = 24}, [1725] = {.lex_state = 24}, [1726] = {.lex_state = 24}, [1727] = {.lex_state = 24}, @@ -19585,9 +19627,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1729] = {.lex_state = 24}, [1730] = {.lex_state = 24}, [1731] = {.lex_state = 24}, - [1732] = {.lex_state = 24}, + [1732] = {.lex_state = 26}, [1733] = {.lex_state = 24}, - [1734] = {.lex_state = 11}, + [1734] = {.lex_state = 24}, [1735] = {.lex_state = 24}, [1736] = {.lex_state = 24}, [1737] = {.lex_state = 24}, @@ -19597,9 +19639,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 24}, [1742] = {.lex_state = 24}, [1743] = {.lex_state = 24}, - [1744] = {.lex_state = 11}, - [1745] = {.lex_state = 24}, - [1746] = {.lex_state = 24}, + [1744] = {.lex_state = 24}, + [1745] = {.lex_state = 11}, + [1746] = {.lex_state = 11}, [1747] = {.lex_state = 24}, [1748] = {.lex_state = 24}, [1749] = {.lex_state = 24}, @@ -19617,113 +19659,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1761] = {.lex_state = 24}, [1762] = {.lex_state = 24}, [1763] = {.lex_state = 24}, - [1764] = {.lex_state = 24}, - [1765] = {.lex_state = 69}, - [1766] = {.lex_state = 69}, - [1767] = {.lex_state = 69}, - [1768] = {.lex_state = 14}, - [1769] = {.lex_state = 69}, - [1770] = {.lex_state = 14}, - [1771] = {.lex_state = 26}, - [1772] = {.lex_state = 69}, - [1773] = {.lex_state = 26}, - [1774] = {.lex_state = 71}, - [1775] = {.lex_state = 14}, - [1776] = {.lex_state = 14}, - [1777] = {.lex_state = 71}, - [1778] = {.lex_state = 26}, - [1779] = {.lex_state = 71}, - [1780] = {.lex_state = 69}, - [1781] = {.lex_state = 71}, - [1782] = {.lex_state = 71}, - [1783] = {.lex_state = 69}, - [1784] = {.lex_state = 69}, - [1785] = {.lex_state = 71}, - [1786] = {.lex_state = 71}, - [1787] = {.lex_state = 26}, - [1788] = {.lex_state = 26}, - [1789] = {.lex_state = 14}, - [1790] = {.lex_state = 69}, - [1791] = {.lex_state = 69}, - [1792] = {.lex_state = 71}, - [1793] = {.lex_state = 69}, - [1794] = {.lex_state = 71}, - [1795] = {.lex_state = 71}, - [1796] = {.lex_state = 69}, - [1797] = {.lex_state = 26}, - [1798] = {.lex_state = 71}, + [1764] = {.lex_state = 20}, + [1765] = {.lex_state = 24}, + [1766] = {.lex_state = 24}, + [1767] = {.lex_state = 24}, + [1768] = {.lex_state = 24}, + [1769] = {.lex_state = 24}, + [1770] = {.lex_state = 24}, + [1771] = {.lex_state = 24}, + [1772] = {.lex_state = 24}, + [1773] = {.lex_state = 24}, + [1774] = {.lex_state = 24}, + [1775] = {.lex_state = 24}, + [1776] = {.lex_state = 24}, + [1777] = {.lex_state = 24}, + [1778] = {.lex_state = 24}, + [1779] = {.lex_state = 24}, + [1780] = {.lex_state = 24}, + [1781] = {.lex_state = 24}, + [1782] = {.lex_state = 24}, + [1783] = {.lex_state = 24}, + [1784] = {.lex_state = 24}, + [1785] = {.lex_state = 24}, + [1786] = {.lex_state = 24}, + [1787] = {.lex_state = 24}, + [1788] = {.lex_state = 24}, + [1789] = {.lex_state = 24}, + [1790] = {.lex_state = 24}, + [1791] = {.lex_state = 24}, + [1792] = {.lex_state = 20}, + [1793] = {.lex_state = 24}, + [1794] = {.lex_state = 24}, + [1795] = {.lex_state = 24}, + [1796] = {.lex_state = 24}, + [1797] = {.lex_state = 24}, + [1798] = {.lex_state = 24}, [1799] = {.lex_state = 69}, [1800] = {.lex_state = 69}, - [1801] = {.lex_state = 26}, - [1802] = {.lex_state = 26}, - [1803] = {.lex_state = 26}, - [1804] = {.lex_state = 26}, - [1805] = {.lex_state = 26}, + [1801] = {.lex_state = 69}, + [1802] = {.lex_state = 69}, + [1803] = {.lex_state = 69}, + [1804] = {.lex_state = 14}, + [1805] = {.lex_state = 14}, [1806] = {.lex_state = 26}, [1807] = {.lex_state = 26}, - [1808] = {.lex_state = 26}, + [1808] = {.lex_state = 71}, [1809] = {.lex_state = 26}, - [1810] = {.lex_state = 26}, - [1811] = {.lex_state = 26}, + [1810] = {.lex_state = 14}, + [1811] = {.lex_state = 69}, [1812] = {.lex_state = 26}, [1813] = {.lex_state = 26}, - [1814] = {.lex_state = 26}, - [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 26}, - [1817] = {.lex_state = 26}, - [1818] = {.lex_state = 26}, - [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 26}, - [1821] = {.lex_state = 26}, - [1822] = {.lex_state = 26}, - [1823] = {.lex_state = 69}, - [1824] = {.lex_state = 26}, + [1814] = {.lex_state = 71}, + [1815] = {.lex_state = 71}, + [1816] = {.lex_state = 71}, + [1817] = {.lex_state = 69}, + [1818] = {.lex_state = 71}, + [1819] = {.lex_state = 71}, + [1820] = {.lex_state = 71}, + [1821] = {.lex_state = 71}, + [1822] = {.lex_state = 69}, + [1823] = {.lex_state = 71}, + [1824] = {.lex_state = 69}, [1825] = {.lex_state = 26}, - [1826] = {.lex_state = 26}, - [1827] = {.lex_state = 26}, - [1828] = {.lex_state = 26}, - [1829] = {.lex_state = 26}, - [1830] = {.lex_state = 26}, - [1831] = {.lex_state = 26}, - [1832] = {.lex_state = 26}, - [1833] = {.lex_state = 26}, - [1834] = {.lex_state = 26}, + [1826] = {.lex_state = 71}, + [1827] = {.lex_state = 71}, + [1828] = {.lex_state = 69}, + [1829] = {.lex_state = 69}, + [1830] = {.lex_state = 69}, + [1831] = {.lex_state = 14}, + [1832] = {.lex_state = 14}, + [1833] = {.lex_state = 69}, + [1834] = {.lex_state = 69}, [1835] = {.lex_state = 26}, - [1836] = {.lex_state = 69}, - [1837] = {.lex_state = 46}, - [1838] = {.lex_state = 46}, + [1836] = {.lex_state = 26}, + [1837] = {.lex_state = 26}, + [1838] = {.lex_state = 26}, [1839] = {.lex_state = 26}, - [1840] = {.lex_state = 26}, + [1840] = {.lex_state = 69}, [1841] = {.lex_state = 26}, [1842] = {.lex_state = 26}, [1843] = {.lex_state = 26}, [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 71}, - [1848] = {.lex_state = 69}, + [1847] = {.lex_state = 26}, + [1848] = {.lex_state = 26}, [1849] = {.lex_state = 26}, [1850] = {.lex_state = 26}, [1851] = {.lex_state = 26}, - [1852] = {.lex_state = 26}, + [1852] = {.lex_state = 44}, [1853] = {.lex_state = 26}, - [1854] = {.lex_state = 26}, + [1854] = {.lex_state = 44}, [1855] = {.lex_state = 26}, [1856] = {.lex_state = 26}, [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, - [1859] = {.lex_state = 26}, + [1859] = {.lex_state = 69}, [1860] = {.lex_state = 26}, - [1861] = {.lex_state = 61}, + [1861] = {.lex_state = 26}, [1862] = {.lex_state = 26}, - [1863] = {.lex_state = 59}, + [1863] = {.lex_state = 26}, [1864] = {.lex_state = 26}, [1865] = {.lex_state = 26}, - [1866] = {.lex_state = 69}, + [1866] = {.lex_state = 26}, [1867] = {.lex_state = 26}, - [1868] = {.lex_state = 59}, + [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 26}, + [1870] = {.lex_state = 61}, [1871] = {.lex_state = 26}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, @@ -19736,31 +19778,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1880] = {.lex_state = 26}, [1881] = {.lex_state = 26}, [1882] = {.lex_state = 26}, - [1883] = {.lex_state = 69}, - [1884] = {.lex_state = 69}, - [1885] = {.lex_state = 61}, + [1883] = {.lex_state = 26}, + [1884] = {.lex_state = 26}, + [1885] = {.lex_state = 26}, [1886] = {.lex_state = 26}, - [1887] = {.lex_state = 43}, + [1887] = {.lex_state = 26}, [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 69}, + [1890] = {.lex_state = 26}, [1891] = {.lex_state = 26}, [1892] = {.lex_state = 26}, - [1893] = {.lex_state = 69}, + [1893] = {.lex_state = 26}, [1894] = {.lex_state = 26}, [1895] = {.lex_state = 26}, [1896] = {.lex_state = 26}, [1897] = {.lex_state = 26}, [1898] = {.lex_state = 26}, - [1899] = {.lex_state = 69}, - [1900] = {.lex_state = 69}, + [1899] = {.lex_state = 26}, + [1900] = {.lex_state = 26}, [1901] = {.lex_state = 26}, - [1902] = {.lex_state = 26}, + [1902] = {.lex_state = 47}, [1903] = {.lex_state = 26}, [1904] = {.lex_state = 26}, - [1905] = {.lex_state = 26}, + [1905] = {.lex_state = 47}, [1906] = {.lex_state = 26}, - [1907] = {.lex_state = 43}, + [1907] = {.lex_state = 26}, [1908] = {.lex_state = 26}, [1909] = {.lex_state = 26}, [1910] = {.lex_state = 26}, @@ -19773,65 +19815,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1917] = {.lex_state = 26}, [1918] = {.lex_state = 26}, [1919] = {.lex_state = 26}, - [1920] = {.lex_state = 69}, + [1920] = {.lex_state = 26}, [1921] = {.lex_state = 69}, - [1922] = {.lex_state = 69}, - [1923] = {.lex_state = 71}, - [1924] = {.lex_state = 71}, - [1925] = {.lex_state = 71}, + [1922] = {.lex_state = 26}, + [1923] = {.lex_state = 26}, + [1924] = {.lex_state = 69}, + [1925] = {.lex_state = 26}, [1926] = {.lex_state = 69}, - [1927] = {.lex_state = 71}, - [1928] = {.lex_state = 69}, - [1929] = {.lex_state = 69}, - [1930] = {.lex_state = 69}, - [1931] = {.lex_state = 69}, - [1932] = {.lex_state = 69}, + [1927] = {.lex_state = 69}, + [1928] = {.lex_state = 71}, + [1929] = {.lex_state = 26}, + [1930] = {.lex_state = 59}, + [1931] = {.lex_state = 26}, + [1932] = {.lex_state = 26}, [1933] = {.lex_state = 69}, - [1934] = {.lex_state = 69}, - [1935] = {.lex_state = 69}, - [1936] = {.lex_state = 69}, - [1937] = {.lex_state = 69}, - [1938] = {.lex_state = 49}, - [1939] = {.lex_state = 71}, - [1940] = {.lex_state = 71}, - [1941] = {.lex_state = 49}, - [1942] = {.lex_state = 49}, - [1943] = {.lex_state = 49}, - [1944] = {.lex_state = 71}, - [1945] = {.lex_state = 69}, - [1946] = {.lex_state = 69}, - [1947] = {.lex_state = 69}, - [1948] = {.lex_state = 69}, - [1949] = {.lex_state = 69}, + [1934] = {.lex_state = 59}, + [1935] = {.lex_state = 26}, + [1936] = {.lex_state = 26}, + [1937] = {.lex_state = 26}, + [1938] = {.lex_state = 26}, + [1939] = {.lex_state = 26}, + [1940] = {.lex_state = 26}, + [1941] = {.lex_state = 26}, + [1942] = {.lex_state = 26}, + [1943] = {.lex_state = 26}, + [1944] = {.lex_state = 26}, + [1945] = {.lex_state = 26}, + [1946] = {.lex_state = 26}, + [1947] = {.lex_state = 26}, + [1948] = {.lex_state = 26}, + [1949] = {.lex_state = 61}, [1950] = {.lex_state = 69}, [1951] = {.lex_state = 69}, - [1952] = {.lex_state = 69}, + [1952] = {.lex_state = 26}, [1953] = {.lex_state = 69}, [1954] = {.lex_state = 69}, - [1955] = {.lex_state = 71}, - [1956] = {.lex_state = 71}, - [1957] = {.lex_state = 69}, - [1958] = {.lex_state = 71}, + [1955] = {.lex_state = 69}, + [1956] = {.lex_state = 69}, + [1957] = {.lex_state = 71}, + [1958] = {.lex_state = 69}, [1959] = {.lex_state = 69}, [1960] = {.lex_state = 69}, - [1961] = {.lex_state = 69}, - [1962] = {.lex_state = 69}, + [1961] = {.lex_state = 71}, + [1962] = {.lex_state = 71}, [1963] = {.lex_state = 69}, - [1964] = {.lex_state = 69}, - [1965] = {.lex_state = 30}, + [1964] = {.lex_state = 71}, + [1965] = {.lex_state = 71}, [1966] = {.lex_state = 69}, - [1967] = {.lex_state = 69}, + [1967] = {.lex_state = 71}, [1968] = {.lex_state = 69}, [1969] = {.lex_state = 69}, [1970] = {.lex_state = 69}, - [1971] = {.lex_state = 71}, + [1971] = {.lex_state = 69}, [1972] = {.lex_state = 69}, [1973] = {.lex_state = 69}, - [1974] = {.lex_state = 49}, - [1975] = {.lex_state = 71}, + [1974] = {.lex_state = 69}, + [1975] = {.lex_state = 69}, [1976] = {.lex_state = 69}, - [1977] = {.lex_state = 71}, - [1978] = {.lex_state = 69}, + [1977] = {.lex_state = 69}, + [1978] = {.lex_state = 30}, [1979] = {.lex_state = 69}, [1980] = {.lex_state = 69}, [1981] = {.lex_state = 69}, @@ -19839,15 +19881,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1983] = {.lex_state = 69}, [1984] = {.lex_state = 69}, [1985] = {.lex_state = 69}, - [1986] = {.lex_state = 71}, + [1986] = {.lex_state = 69}, [1987] = {.lex_state = 69}, - [1988] = {.lex_state = 69}, + [1988] = {.lex_state = 71}, [1989] = {.lex_state = 69}, - [1990] = {.lex_state = 69}, + [1990] = {.lex_state = 71}, [1991] = {.lex_state = 69}, [1992] = {.lex_state = 69}, - [1993] = {.lex_state = 69}, - [1994] = {.lex_state = 69}, + [1993] = {.lex_state = 71}, + [1994] = {.lex_state = 71}, [1995] = {.lex_state = 69}, [1996] = {.lex_state = 69}, [1997] = {.lex_state = 69}, @@ -19858,15 +19900,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2002] = {.lex_state = 69}, [2003] = {.lex_state = 69}, [2004] = {.lex_state = 69}, - [2005] = {.lex_state = 71}, - [2006] = {.lex_state = 71}, + [2005] = {.lex_state = 69}, + [2006] = {.lex_state = 69}, [2007] = {.lex_state = 71}, [2008] = {.lex_state = 71}, [2009] = {.lex_state = 69}, - [2010] = {.lex_state = 69}, + [2010] = {.lex_state = 71}, [2011] = {.lex_state = 69}, - [2012] = {.lex_state = 69}, - [2013] = {.lex_state = 69}, + [2012] = {.lex_state = 71}, + [2013] = {.lex_state = 71}, [2014] = {.lex_state = 71}, [2015] = {.lex_state = 69}, [2016] = {.lex_state = 69}, @@ -19880,23 +19922,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2024] = {.lex_state = 69}, [2025] = {.lex_state = 69}, [2026] = {.lex_state = 69}, - [2027] = {.lex_state = 71}, + [2027] = {.lex_state = 69}, [2028] = {.lex_state = 69}, [2029] = {.lex_state = 69}, - [2030] = {.lex_state = 71}, - [2031] = {.lex_state = 69}, - [2032] = {.lex_state = 69}, + [2030] = {.lex_state = 69}, + [2031] = {.lex_state = 71}, + [2032] = {.lex_state = 71}, [2033] = {.lex_state = 71}, - [2034] = {.lex_state = 71}, - [2035] = {.lex_state = 71}, - [2036] = {.lex_state = 71}, - [2037] = {.lex_state = 71}, - [2038] = {.lex_state = 71}, + [2034] = {.lex_state = 69}, + [2035] = {.lex_state = 69}, + [2036] = {.lex_state = 69}, + [2037] = {.lex_state = 69}, + [2038] = {.lex_state = 69}, [2039] = {.lex_state = 69}, - [2040] = {.lex_state = 69}, - [2041] = {.lex_state = 71}, + [2040] = {.lex_state = 71}, + [2041] = {.lex_state = 69}, [2042] = {.lex_state = 71}, - [2043] = {.lex_state = 71}, + [2043] = {.lex_state = 69}, [2044] = {.lex_state = 69}, [2045] = {.lex_state = 71}, [2046] = {.lex_state = 69}, @@ -19905,180 +19947,180 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2049] = {.lex_state = 71}, [2050] = {.lex_state = 71}, [2051] = {.lex_state = 71}, - [2052] = {.lex_state = 71}, - [2053] = {.lex_state = 71}, - [2054] = {.lex_state = 71}, - [2055] = {.lex_state = 71}, - [2056] = {.lex_state = 71}, - [2057] = {.lex_state = 71}, + [2052] = {.lex_state = 69}, + [2053] = {.lex_state = 69}, + [2054] = {.lex_state = 69}, + [2055] = {.lex_state = 69}, + [2056] = {.lex_state = 69}, + [2057] = {.lex_state = 69}, [2058] = {.lex_state = 71}, [2059] = {.lex_state = 71}, - [2060] = {.lex_state = 71}, - [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 71}, + [2060] = {.lex_state = 69}, + [2061] = {.lex_state = 69}, + [2062] = {.lex_state = 69}, [2063] = {.lex_state = 69}, [2064] = {.lex_state = 71}, - [2065] = {.lex_state = 71}, - [2066] = {.lex_state = 71}, - [2067] = {.lex_state = 71}, + [2065] = {.lex_state = 69}, + [2066] = {.lex_state = 69}, + [2067] = {.lex_state = 69}, [2068] = {.lex_state = 71}, - [2069] = {.lex_state = 71}, - [2070] = {.lex_state = 71}, + [2069] = {.lex_state = 69}, + [2070] = {.lex_state = 69}, [2071] = {.lex_state = 71}, [2072] = {.lex_state = 71}, - [2073] = {.lex_state = 71}, - [2074] = {.lex_state = 69}, + [2073] = {.lex_state = 69}, + [2074] = {.lex_state = 71}, [2075] = {.lex_state = 69}, [2076] = {.lex_state = 69}, [2077] = {.lex_state = 71}, [2078] = {.lex_state = 71}, [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 71}, - [2081] = {.lex_state = 71}, - [2082] = {.lex_state = 69}, + [2080] = {.lex_state = 69}, + [2081] = {.lex_state = 69}, + [2082] = {.lex_state = 71}, [2083] = {.lex_state = 71}, [2084] = {.lex_state = 71}, [2085] = {.lex_state = 71}, [2086] = {.lex_state = 71}, - [2087] = {.lex_state = 71}, + [2087] = {.lex_state = 69}, [2088] = {.lex_state = 71}, [2089] = {.lex_state = 69}, [2090] = {.lex_state = 69}, [2091] = {.lex_state = 71}, [2092] = {.lex_state = 71}, - [2093] = {.lex_state = 71}, + [2093] = {.lex_state = 69}, [2094] = {.lex_state = 71}, [2095] = {.lex_state = 69}, - [2096] = {.lex_state = 71}, + [2096] = {.lex_state = 69}, [2097] = {.lex_state = 71}, [2098] = {.lex_state = 69}, [2099] = {.lex_state = 71}, [2100] = {.lex_state = 71}, - [2101] = {.lex_state = 71}, + [2101] = {.lex_state = 69}, [2102] = {.lex_state = 71}, - [2103] = {.lex_state = 69}, + [2103] = {.lex_state = 71}, [2104] = {.lex_state = 71}, - [2105] = {.lex_state = 71}, - [2106] = {.lex_state = 71}, - [2107] = {.lex_state = 71}, - [2108] = {.lex_state = 69}, - [2109] = {.lex_state = 69}, - [2110] = {.lex_state = 69}, - [2111] = {.lex_state = 69}, + [2105] = {.lex_state = 69}, + [2106] = {.lex_state = 69}, + [2107] = {.lex_state = 69}, + [2108] = {.lex_state = 71}, + [2109] = {.lex_state = 71}, + [2110] = {.lex_state = 30}, + [2111] = {.lex_state = 71}, [2112] = {.lex_state = 71}, - [2113] = {.lex_state = 69}, + [2113] = {.lex_state = 71}, [2114] = {.lex_state = 71}, - [2115] = {.lex_state = 69}, - [2116] = {.lex_state = 71}, - [2117] = {.lex_state = 71}, - [2118] = {.lex_state = 71}, + [2115] = {.lex_state = 71}, + [2116] = {.lex_state = 69}, + [2117] = {.lex_state = 69}, + [2118] = {.lex_state = 69}, [2119] = {.lex_state = 71}, - [2120] = {.lex_state = 71}, + [2120] = {.lex_state = 69}, [2121] = {.lex_state = 71}, - [2122] = {.lex_state = 69}, + [2122] = {.lex_state = 71}, [2123] = {.lex_state = 71}, [2124] = {.lex_state = 71}, - [2125] = {.lex_state = 30}, + [2125] = {.lex_state = 71}, [2126] = {.lex_state = 71}, [2127] = {.lex_state = 71}, [2128] = {.lex_state = 71}, [2129] = {.lex_state = 71}, [2130] = {.lex_state = 71}, - [2131] = {.lex_state = 71}, + [2131] = {.lex_state = 69}, [2132] = {.lex_state = 71}, - [2133] = {.lex_state = 69}, - [2134] = {.lex_state = 69}, + [2133] = {.lex_state = 71}, + [2134] = {.lex_state = 71}, [2135] = {.lex_state = 71}, - [2136] = {.lex_state = 69}, + [2136] = {.lex_state = 71}, [2137] = {.lex_state = 69}, - [2138] = {.lex_state = 69}, - [2139] = {.lex_state = 71}, + [2138] = {.lex_state = 71}, + [2139] = {.lex_state = 69}, [2140] = {.lex_state = 71}, [2141] = {.lex_state = 71}, [2142] = {.lex_state = 69}, - [2143] = {.lex_state = 69}, + [2143] = {.lex_state = 71}, [2144] = {.lex_state = 71}, - [2145] = {.lex_state = 69}, + [2145] = {.lex_state = 71}, [2146] = {.lex_state = 71}, - [2147] = {.lex_state = 69}, - [2148] = {.lex_state = 15}, - [2149] = {.lex_state = 15}, - [2150] = {.lex_state = 69}, - [2151] = {.lex_state = 15}, - [2152] = {.lex_state = 15}, - [2153] = {.lex_state = 15}, - [2154] = {.lex_state = 79}, - [2155] = {.lex_state = 22}, - [2156] = {.lex_state = 15}, - [2157] = {.lex_state = 15}, - [2158] = {.lex_state = 79}, - [2159] = {.lex_state = 79}, - [2160] = {.lex_state = 15}, - [2161] = {.lex_state = 22}, - [2162] = {.lex_state = 79}, - [2163] = {.lex_state = 79}, - [2164] = {.lex_state = 15}, - [2165] = {.lex_state = 79}, - [2166] = {.lex_state = 22}, - [2167] = {.lex_state = 22}, - [2168] = {.lex_state = 15}, - [2169] = {.lex_state = 79}, - [2170] = {.lex_state = 79}, - [2171] = {.lex_state = 15}, - [2172] = {.lex_state = 15}, - [2173] = {.lex_state = 15}, - [2174] = {.lex_state = 15}, - [2175] = {.lex_state = 15}, - [2176] = {.lex_state = 15}, - [2177] = {.lex_state = 15}, - [2178] = {.lex_state = 15}, - [2179] = {.lex_state = 15}, - [2180] = {.lex_state = 15}, - [2181] = {.lex_state = 15}, + [2147] = {.lex_state = 71}, + [2148] = {.lex_state = 69}, + [2149] = {.lex_state = 71}, + [2150] = {.lex_state = 71}, + [2151] = {.lex_state = 71}, + [2152] = {.lex_state = 71}, + [2153] = {.lex_state = 71}, + [2154] = {.lex_state = 71}, + [2155] = {.lex_state = 69}, + [2156] = {.lex_state = 71}, + [2157] = {.lex_state = 71}, + [2158] = {.lex_state = 71}, + [2159] = {.lex_state = 71}, + [2160] = {.lex_state = 71}, + [2161] = {.lex_state = 71}, + [2162] = {.lex_state = 71}, + [2163] = {.lex_state = 69}, + [2164] = {.lex_state = 71}, + [2165] = {.lex_state = 69}, + [2166] = {.lex_state = 69}, + [2167] = {.lex_state = 69}, + [2168] = {.lex_state = 71}, + [2169] = {.lex_state = 71}, + [2170] = {.lex_state = 71}, + [2171] = {.lex_state = 71}, + [2172] = {.lex_state = 71}, + [2173] = {.lex_state = 71}, + [2174] = {.lex_state = 71}, + [2175] = {.lex_state = 71}, + [2176] = {.lex_state = 69}, + [2177] = {.lex_state = 49}, + [2178] = {.lex_state = 49}, + [2179] = {.lex_state = 49}, + [2180] = {.lex_state = 49}, + [2181] = {.lex_state = 49}, [2182] = {.lex_state = 15}, - [2183] = {.lex_state = 15}, + [2183] = {.lex_state = 69}, [2184] = {.lex_state = 15}, [2185] = {.lex_state = 15}, - [2186] = {.lex_state = 73}, + [2186] = {.lex_state = 15}, [2187] = {.lex_state = 15}, - [2188] = {.lex_state = 15}, - [2189] = {.lex_state = 15}, - [2190] = {.lex_state = 15}, + [2188] = {.lex_state = 79}, + [2189] = {.lex_state = 22}, + [2190] = {.lex_state = 22}, [2191] = {.lex_state = 15}, [2192] = {.lex_state = 15}, - [2193] = {.lex_state = 15}, + [2193] = {.lex_state = 79}, [2194] = {.lex_state = 15}, - [2195] = {.lex_state = 15}, - [2196] = {.lex_state = 15}, - [2197] = {.lex_state = 15}, - [2198] = {.lex_state = 15}, - [2199] = {.lex_state = 15}, + [2195] = {.lex_state = 79}, + [2196] = {.lex_state = 79}, + [2197] = {.lex_state = 22}, + [2198] = {.lex_state = 79}, + [2199] = {.lex_state = 22}, [2200] = {.lex_state = 15}, [2201] = {.lex_state = 15}, - [2202] = {.lex_state = 15}, - [2203] = {.lex_state = 15}, - [2204] = {.lex_state = 15}, - [2205] = {.lex_state = 15}, - [2206] = {.lex_state = 53}, + [2202] = {.lex_state = 79}, + [2203] = {.lex_state = 79}, + [2204] = {.lex_state = 79}, + [2205] = {.lex_state = 53}, + [2206] = {.lex_state = 15}, [2207] = {.lex_state = 15}, [2208] = {.lex_state = 15}, [2209] = {.lex_state = 15}, - [2210] = {.lex_state = 53}, - [2211] = {.lex_state = 53}, - [2212] = {.lex_state = 53}, - [2213] = {.lex_state = 53}, + [2210] = {.lex_state = 15}, + [2211] = {.lex_state = 15}, + [2212] = {.lex_state = 15}, + [2213] = {.lex_state = 15}, [2214] = {.lex_state = 15}, [2215] = {.lex_state = 15}, [2216] = {.lex_state = 15}, - [2217] = {.lex_state = 15}, + [2217] = {.lex_state = 79}, [2218] = {.lex_state = 15}, - [2219] = {.lex_state = 73}, + [2219] = {.lex_state = 15}, [2220] = {.lex_state = 15}, [2221] = {.lex_state = 15}, [2222] = {.lex_state = 15}, - [2223] = {.lex_state = 79}, + [2223] = {.lex_state = 15}, [2224] = {.lex_state = 15}, - [2225] = {.lex_state = 73}, + [2225] = {.lex_state = 15}, [2226] = {.lex_state = 15}, [2227] = {.lex_state = 15}, [2228] = {.lex_state = 15}, @@ -20091,11 +20133,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2235] = {.lex_state = 15}, [2236] = {.lex_state = 15}, [2237] = {.lex_state = 15}, - [2238] = {.lex_state = 79}, + [2238] = {.lex_state = 15}, [2239] = {.lex_state = 15}, - [2240] = {.lex_state = 15}, + [2240] = {.lex_state = 79}, [2241] = {.lex_state = 15}, - [2242] = {.lex_state = 15}, + [2242] = {.lex_state = 79}, [2243] = {.lex_state = 15}, [2244] = {.lex_state = 15}, [2245] = {.lex_state = 15}, @@ -20109,9 +20151,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2253] = {.lex_state = 15}, [2254] = {.lex_state = 15}, [2255] = {.lex_state = 15}, - [2256] = {.lex_state = 15}, + [2256] = {.lex_state = 79}, [2257] = {.lex_state = 15}, - [2258] = {.lex_state = 15}, + [2258] = {.lex_state = 31}, [2259] = {.lex_state = 15}, [2260] = {.lex_state = 15}, [2261] = {.lex_state = 15}, @@ -20119,13 +20161,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2263] = {.lex_state = 15}, [2264] = {.lex_state = 15}, [2265] = {.lex_state = 15}, - [2266] = {.lex_state = 15}, + [2266] = {.lex_state = 53}, [2267] = {.lex_state = 15}, [2268] = {.lex_state = 15}, - [2269] = {.lex_state = 15}, - [2270] = {.lex_state = 15}, - [2271] = {.lex_state = 15}, - [2272] = {.lex_state = 79}, + [2269] = {.lex_state = 53}, + [2270] = {.lex_state = 53}, + [2271] = {.lex_state = 53}, + [2272] = {.lex_state = 15}, [2273] = {.lex_state = 15}, [2274] = {.lex_state = 15}, [2275] = {.lex_state = 15}, @@ -20140,104 +20182,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2284] = {.lex_state = 15}, [2285] = {.lex_state = 15}, [2286] = {.lex_state = 15}, - [2287] = {.lex_state = 79}, - [2288] = {.lex_state = 31}, + [2287] = {.lex_state = 15}, + [2288] = {.lex_state = 15}, [2289] = {.lex_state = 15}, [2290] = {.lex_state = 15}, - [2291] = {.lex_state = 63}, - [2292] = {.lex_state = 79}, + [2291] = {.lex_state = 15}, + [2292] = {.lex_state = 15}, [2293] = {.lex_state = 15}, [2294] = {.lex_state = 15}, [2295] = {.lex_state = 15}, - [2296] = {.lex_state = 63}, - [2297] = {.lex_state = 50}, - [2298] = {.lex_state = 50}, + [2296] = {.lex_state = 15}, + [2297] = {.lex_state = 15}, + [2298] = {.lex_state = 15}, [2299] = {.lex_state = 15}, [2300] = {.lex_state = 15}, [2301] = {.lex_state = 15}, - [2302] = {.lex_state = 79}, + [2302] = {.lex_state = 15}, [2303] = {.lex_state = 15}, [2304] = {.lex_state = 15}, [2305] = {.lex_state = 15}, [2306] = {.lex_state = 15}, [2307] = {.lex_state = 15}, - [2308] = {.lex_state = 73}, - [2309] = {.lex_state = 28}, - [2310] = {.lex_state = 28}, - [2311] = {.lex_state = 28}, - [2312] = {.lex_state = 28}, - [2313] = {.lex_state = 28}, - [2314] = {.lex_state = 28}, - [2315] = {.lex_state = 73}, - [2316] = {.lex_state = 28}, - [2317] = {.lex_state = 28}, + [2308] = {.lex_state = 15}, + [2309] = {.lex_state = 15}, + [2310] = {.lex_state = 15}, + [2311] = {.lex_state = 15}, + [2312] = {.lex_state = 15}, + [2313] = {.lex_state = 15}, + [2314] = {.lex_state = 15}, + [2315] = {.lex_state = 15}, + [2316] = {.lex_state = 15}, + [2317] = {.lex_state = 15}, [2318] = {.lex_state = 15}, - [2319] = {.lex_state = 28}, - [2320] = {.lex_state = 73}, - [2321] = {.lex_state = 28}, - [2322] = {.lex_state = 28}, - [2323] = {.lex_state = 28}, - [2324] = {.lex_state = 28}, - [2325] = {.lex_state = 73}, - [2326] = {.lex_state = 28}, - [2327] = {.lex_state = 28}, - [2328] = {.lex_state = 73}, - [2329] = {.lex_state = 73}, + [2319] = {.lex_state = 15}, + [2320] = {.lex_state = 15}, + [2321] = {.lex_state = 15}, + [2322] = {.lex_state = 15}, + [2323] = {.lex_state = 15}, + [2324] = {.lex_state = 15}, + [2325] = {.lex_state = 15}, + [2326] = {.lex_state = 15}, + [2327] = {.lex_state = 63}, + [2328] = {.lex_state = 63}, + [2329] = {.lex_state = 15}, [2330] = {.lex_state = 73}, - [2331] = {.lex_state = 73}, - [2332] = {.lex_state = 73}, + [2331] = {.lex_state = 79}, + [2332] = {.lex_state = 15}, [2333] = {.lex_state = 73}, [2334] = {.lex_state = 15}, - [2335] = {.lex_state = 73}, + [2335] = {.lex_state = 79}, [2336] = {.lex_state = 73}, - [2337] = {.lex_state = 73}, - [2338] = {.lex_state = 73}, - [2339] = {.lex_state = 73}, - [2340] = {.lex_state = 73}, - [2341] = {.lex_state = 73}, - [2342] = {.lex_state = 73}, - [2343] = {.lex_state = 73}, - [2344] = {.lex_state = 73}, - [2345] = {.lex_state = 73}, - [2346] = {.lex_state = 73}, - [2347] = {.lex_state = 73}, - [2348] = {.lex_state = 73}, - [2349] = {.lex_state = 73}, - [2350] = {.lex_state = 73}, - [2351] = {.lex_state = 73}, - [2352] = {.lex_state = 15}, - [2353] = {.lex_state = 73}, - [2354] = {.lex_state = 73}, - [2355] = {.lex_state = 73}, - [2356] = {.lex_state = 73}, - [2357] = {.lex_state = 73}, - [2358] = {.lex_state = 73}, - [2359] = {.lex_state = 73}, - [2360] = {.lex_state = 73}, - [2361] = {.lex_state = 73}, + [2337] = {.lex_state = 15}, + [2338] = {.lex_state = 15}, + [2339] = {.lex_state = 15}, + [2340] = {.lex_state = 28}, + [2341] = {.lex_state = 28}, + [2342] = {.lex_state = 28}, + [2343] = {.lex_state = 28}, + [2344] = {.lex_state = 15}, + [2345] = {.lex_state = 28}, + [2346] = {.lex_state = 50}, + [2347] = {.lex_state = 28}, + [2348] = {.lex_state = 28}, + [2349] = {.lex_state = 28}, + [2350] = {.lex_state = 50}, + [2351] = {.lex_state = 28}, + [2352] = {.lex_state = 28}, + [2353] = {.lex_state = 28}, + [2354] = {.lex_state = 28}, + [2355] = {.lex_state = 15}, + [2356] = {.lex_state = 15}, + [2357] = {.lex_state = 15}, + [2358] = {.lex_state = 28}, + [2359] = {.lex_state = 28}, + [2360] = {.lex_state = 28}, + [2361] = {.lex_state = 22}, [2362] = {.lex_state = 73}, [2363] = {.lex_state = 73}, - [2364] = {.lex_state = 73}, - [2365] = {.lex_state = 22}, - [2366] = {.lex_state = 15}, - [2367] = {.lex_state = 15}, - [2368] = {.lex_state = 73}, + [2364] = {.lex_state = 28}, + [2365] = {.lex_state = 28}, + [2366] = {.lex_state = 22}, + [2367] = {.lex_state = 73}, + [2368] = {.lex_state = 15}, [2369] = {.lex_state = 73}, - [2370] = {.lex_state = 73}, + [2370] = {.lex_state = 28}, [2371] = {.lex_state = 73}, - [2372] = {.lex_state = 73}, - [2373] = {.lex_state = 73}, + [2372] = {.lex_state = 28}, + [2373] = {.lex_state = 28}, [2374] = {.lex_state = 73}, - [2375] = {.lex_state = 73}, - [2376] = {.lex_state = 73}, - [2377] = {.lex_state = 73}, + [2375] = {.lex_state = 28}, + [2376] = {.lex_state = 28}, + [2377] = {.lex_state = 28}, [2378] = {.lex_state = 73}, [2379] = {.lex_state = 73}, - [2380] = {.lex_state = 73}, - [2381] = {.lex_state = 73}, + [2380] = {.lex_state = 28}, + [2381] = {.lex_state = 28}, [2382] = {.lex_state = 73}, [2383] = {.lex_state = 73}, - [2384] = {.lex_state = 28}, + [2384] = {.lex_state = 73}, [2385] = {.lex_state = 73}, [2386] = {.lex_state = 73}, [2387] = {.lex_state = 73}, @@ -20246,7 +20288,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2390] = {.lex_state = 73}, [2391] = {.lex_state = 73}, [2392] = {.lex_state = 73}, - [2393] = {.lex_state = 73}, + [2393] = {.lex_state = 28}, [2394] = {.lex_state = 73}, [2395] = {.lex_state = 73}, [2396] = {.lex_state = 73}, @@ -20254,7 +20296,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2398] = {.lex_state = 73}, [2399] = {.lex_state = 73}, [2400] = {.lex_state = 73}, - [2401] = {.lex_state = 28}, + [2401] = {.lex_state = 73}, [2402] = {.lex_state = 73}, [2403] = {.lex_state = 73}, [2404] = {.lex_state = 73}, @@ -20279,19 +20321,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2423] = {.lex_state = 73}, [2424] = {.lex_state = 73}, [2425] = {.lex_state = 73}, - [2426] = {.lex_state = 22}, + [2426] = {.lex_state = 73}, [2427] = {.lex_state = 73}, [2428] = {.lex_state = 73}, [2429] = {.lex_state = 73}, [2430] = {.lex_state = 73}, [2431] = {.lex_state = 73}, [2432] = {.lex_state = 73}, - [2433] = {.lex_state = 28}, - [2434] = {.lex_state = 28}, + [2433] = {.lex_state = 73}, + [2434] = {.lex_state = 73}, [2435] = {.lex_state = 73}, [2436] = {.lex_state = 73}, - [2437] = {.lex_state = 28}, - [2438] = {.lex_state = 28}, + [2437] = {.lex_state = 73}, + [2438] = {.lex_state = 73}, [2439] = {.lex_state = 73}, [2440] = {.lex_state = 73}, [2441] = {.lex_state = 73}, @@ -20300,14 +20342,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2444] = {.lex_state = 73}, [2445] = {.lex_state = 73}, [2446] = {.lex_state = 73}, - [2447] = {.lex_state = 28}, - [2448] = {.lex_state = 28}, + [2447] = {.lex_state = 73}, + [2448] = {.lex_state = 73}, [2449] = {.lex_state = 73}, - [2450] = {.lex_state = 28}, - [2451] = {.lex_state = 28}, + [2450] = {.lex_state = 73}, + [2451] = {.lex_state = 73}, [2452] = {.lex_state = 73}, - [2453] = {.lex_state = 28}, - [2454] = {.lex_state = 28}, + [2453] = {.lex_state = 73}, + [2454] = {.lex_state = 73}, [2455] = {.lex_state = 73}, [2456] = {.lex_state = 73}, [2457] = {.lex_state = 73}, @@ -20316,84 +20358,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2460] = {.lex_state = 73}, [2461] = {.lex_state = 73}, [2462] = {.lex_state = 73}, - [2463] = {.lex_state = 28}, - [2464] = {.lex_state = 28}, + [2463] = {.lex_state = 73}, + [2464] = {.lex_state = 73}, [2465] = {.lex_state = 73}, - [2466] = {.lex_state = 28}, + [2466] = {.lex_state = 73}, [2467] = {.lex_state = 73}, - [2468] = {.lex_state = 28}, + [2468] = {.lex_state = 73}, [2469] = {.lex_state = 73}, - [2470] = {.lex_state = 28}, + [2470] = {.lex_state = 73}, [2471] = {.lex_state = 73}, - [2472] = {.lex_state = 28}, - [2473] = {.lex_state = 28}, - [2474] = {.lex_state = 28}, - [2475] = {.lex_state = 75}, - [2476] = {.lex_state = 75}, - [2477] = {.lex_state = 28}, - [2478] = {.lex_state = 75}, - [2479] = {.lex_state = 28}, - [2480] = {.lex_state = 28}, - [2481] = {.lex_state = 28}, + [2472] = {.lex_state = 73}, + [2473] = {.lex_state = 73}, + [2474] = {.lex_state = 73}, + [2475] = {.lex_state = 73}, + [2476] = {.lex_state = 28}, + [2477] = {.lex_state = 73}, + [2478] = {.lex_state = 28}, + [2479] = {.lex_state = 73}, + [2480] = {.lex_state = 73}, + [2481] = {.lex_state = 73}, [2482] = {.lex_state = 28}, - [2483] = {.lex_state = 28}, - [2484] = {.lex_state = 28}, - [2485] = {.lex_state = 33}, - [2486] = {.lex_state = 33}, - [2487] = {.lex_state = 33}, - [2488] = {.lex_state = 28}, - [2489] = {.lex_state = 28}, - [2490] = {.lex_state = 75}, - [2491] = {.lex_state = 28}, - [2492] = {.lex_state = 75}, - [2493] = {.lex_state = 28}, + [2483] = {.lex_state = 73}, + [2484] = {.lex_state = 73}, + [2485] = {.lex_state = 73}, + [2486] = {.lex_state = 73}, + [2487] = {.lex_state = 28}, + [2488] = {.lex_state = 73}, + [2489] = {.lex_state = 73}, + [2490] = {.lex_state = 28}, + [2491] = {.lex_state = 73}, + [2492] = {.lex_state = 73}, + [2493] = {.lex_state = 73}, [2494] = {.lex_state = 28}, - [2495] = {.lex_state = 75}, + [2495] = {.lex_state = 28}, [2496] = {.lex_state = 28}, [2497] = {.lex_state = 28}, - [2498] = {.lex_state = 28}, - [2499] = {.lex_state = 75}, + [2498] = {.lex_state = 73}, + [2499] = {.lex_state = 28}, [2500] = {.lex_state = 28}, [2501] = {.lex_state = 28}, [2502] = {.lex_state = 28}, [2503] = {.lex_state = 75}, [2504] = {.lex_state = 75}, [2505] = {.lex_state = 28}, - [2506] = {.lex_state = 28}, - [2507] = {.lex_state = 28}, + [2506] = {.lex_state = 75}, + [2507] = {.lex_state = 75}, [2508] = {.lex_state = 75}, - [2509] = {.lex_state = 28}, + [2509] = {.lex_state = 75}, [2510] = {.lex_state = 28}, [2511] = {.lex_state = 28}, - [2512] = {.lex_state = 28}, + [2512] = {.lex_state = 75}, [2513] = {.lex_state = 28}, [2514] = {.lex_state = 28}, [2515] = {.lex_state = 28}, [2516] = {.lex_state = 28}, - [2517] = {.lex_state = 28}, - [2518] = {.lex_state = 28}, - [2519] = {.lex_state = 28}, - [2520] = {.lex_state = 73}, - [2521] = {.lex_state = 28}, + [2517] = {.lex_state = 73}, + [2518] = {.lex_state = 75}, + [2519] = {.lex_state = 75}, + [2520] = {.lex_state = 28}, + [2521] = {.lex_state = 73}, [2522] = {.lex_state = 28}, [2523] = {.lex_state = 28}, [2524] = {.lex_state = 28}, - [2525] = {.lex_state = 28}, + [2525] = {.lex_state = 75}, [2526] = {.lex_state = 28}, [2527] = {.lex_state = 28}, [2528] = {.lex_state = 28}, - [2529] = {.lex_state = 73}, + [2529] = {.lex_state = 28}, [2530] = {.lex_state = 28}, - [2531] = {.lex_state = 28}, + [2531] = {.lex_state = 73}, [2532] = {.lex_state = 28}, [2533] = {.lex_state = 28}, [2534] = {.lex_state = 28}, - [2535] = {.lex_state = 28}, + [2535] = {.lex_state = 73}, [2536] = {.lex_state = 28}, [2537] = {.lex_state = 28}, [2538] = {.lex_state = 28}, [2539] = {.lex_state = 28}, - [2540] = {.lex_state = 75}, + [2540] = {.lex_state = 28}, [2541] = {.lex_state = 28}, [2542] = {.lex_state = 28}, [2543] = {.lex_state = 28}, @@ -20401,8 +20443,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2545] = {.lex_state = 28}, [2546] = {.lex_state = 28}, [2547] = {.lex_state = 28}, - [2548] = {.lex_state = 28}, - [2549] = {.lex_state = 31}, + [2548] = {.lex_state = 31}, + [2549] = {.lex_state = 28}, [2550] = {.lex_state = 28}, [2551] = {.lex_state = 28}, [2552] = {.lex_state = 28}, @@ -20412,17 +20454,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2556] = {.lex_state = 28}, [2557] = {.lex_state = 28}, [2558] = {.lex_state = 28}, - [2559] = {.lex_state = 28}, - [2560] = {.lex_state = 28}, - [2561] = {.lex_state = 28}, - [2562] = {.lex_state = 28}, - [2563] = {.lex_state = 75}, + [2559] = {.lex_state = 33}, + [2560] = {.lex_state = 75}, + [2561] = {.lex_state = 33}, + [2562] = {.lex_state = 33}, + [2563] = {.lex_state = 28}, [2564] = {.lex_state = 28}, [2565] = {.lex_state = 28}, [2566] = {.lex_state = 28}, [2567] = {.lex_state = 28}, [2568] = {.lex_state = 28}, - [2569] = {.lex_state = 28}, + [2569] = {.lex_state = 75}, [2570] = {.lex_state = 28}, [2571] = {.lex_state = 28}, [2572] = {.lex_state = 28}, @@ -20438,7 +20480,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2582] = {.lex_state = 28}, [2583] = {.lex_state = 28}, [2584] = {.lex_state = 28}, - [2585] = {.lex_state = 28}, + [2585] = {.lex_state = 73}, [2586] = {.lex_state = 28}, [2587] = {.lex_state = 28}, [2588] = {.lex_state = 28}, @@ -20448,381 +20490,381 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2592] = {.lex_state = 28}, [2593] = {.lex_state = 28}, [2594] = {.lex_state = 28}, - [2595] = {.lex_state = 28}, + [2595] = {.lex_state = 73}, [2596] = {.lex_state = 28}, - [2597] = {.lex_state = 75}, - [2598] = {.lex_state = 73}, - [2599] = {.lex_state = 75}, - [2600] = {.lex_state = 73}, + [2597] = {.lex_state = 28}, + [2598] = {.lex_state = 28}, + [2599] = {.lex_state = 28}, + [2600] = {.lex_state = 28}, [2601] = {.lex_state = 73}, - [2602] = {.lex_state = 75}, - [2603] = {.lex_state = 73}, - [2604] = {.lex_state = 75}, - [2605] = {.lex_state = 65}, - [2606] = {.lex_state = 65}, - [2607] = {.lex_state = 73}, - [2608] = {.lex_state = 73}, - [2609] = {.lex_state = 75}, - [2610] = {.lex_state = 75}, - [2611] = {.lex_state = 73}, + [2602] = {.lex_state = 73}, + [2603] = {.lex_state = 28}, + [2604] = {.lex_state = 73}, + [2605] = {.lex_state = 28}, + [2606] = {.lex_state = 28}, + [2607] = {.lex_state = 28}, + [2608] = {.lex_state = 28}, + [2609] = {.lex_state = 28}, + [2610] = {.lex_state = 28}, + [2611] = {.lex_state = 28}, [2612] = {.lex_state = 73}, - [2613] = {.lex_state = 75}, - [2614] = {.lex_state = 73}, - [2615] = {.lex_state = 73}, - [2616] = {.lex_state = 75}, - [2617] = {.lex_state = 55}, - [2618] = {.lex_state = 75}, - [2619] = {.lex_state = 55}, - [2620] = {.lex_state = 73}, - [2621] = {.lex_state = 73}, - [2622] = {.lex_state = 73}, - [2623] = {.lex_state = 75}, - [2624] = {.lex_state = 73}, - [2625] = {.lex_state = 73}, - [2626] = {.lex_state = 73}, - [2627] = {.lex_state = 73}, - [2628] = {.lex_state = 73}, - [2629] = {.lex_state = 73}, + [2613] = {.lex_state = 28}, + [2614] = {.lex_state = 28}, + [2615] = {.lex_state = 28}, + [2616] = {.lex_state = 28}, + [2617] = {.lex_state = 28}, + [2618] = {.lex_state = 28}, + [2619] = {.lex_state = 28}, + [2620] = {.lex_state = 28}, + [2621] = {.lex_state = 28}, + [2622] = {.lex_state = 28}, + [2623] = {.lex_state = 28}, + [2624] = {.lex_state = 28}, + [2625] = {.lex_state = 28}, + [2626] = {.lex_state = 28}, + [2627] = {.lex_state = 28}, + [2628] = {.lex_state = 28}, + [2629] = {.lex_state = 75}, [2630] = {.lex_state = 75}, - [2631] = {.lex_state = 77}, - [2632] = {.lex_state = 75}, - [2633] = {.lex_state = 75}, - [2634] = {.lex_state = 73}, - [2635] = {.lex_state = 73}, - [2636] = {.lex_state = 73}, - [2637] = {.lex_state = 73}, - [2638] = {.lex_state = 73}, - [2639] = {.lex_state = 73}, - [2640] = {.lex_state = 73}, - [2641] = {.lex_state = 73}, - [2642] = {.lex_state = 73}, + [2631] = {.lex_state = 75}, + [2632] = {.lex_state = 65}, + [2633] = {.lex_state = 65}, + [2634] = {.lex_state = 75}, + [2635] = {.lex_state = 75}, + [2636] = {.lex_state = 75}, + [2637] = {.lex_state = 75}, + [2638] = {.lex_state = 75}, + [2639] = {.lex_state = 75}, + [2640] = {.lex_state = 75}, + [2641] = {.lex_state = 55}, + [2642] = {.lex_state = 55}, [2643] = {.lex_state = 73}, [2644] = {.lex_state = 73}, [2645] = {.lex_state = 73}, [2646] = {.lex_state = 73}, [2647] = {.lex_state = 73}, - [2648] = {.lex_state = 73}, - [2649] = {.lex_state = 75}, + [2648] = {.lex_state = 75}, + [2649] = {.lex_state = 73}, [2650] = {.lex_state = 73}, [2651] = {.lex_state = 73}, [2652] = {.lex_state = 73}, [2653] = {.lex_state = 73}, [2654] = {.lex_state = 73}, [2655] = {.lex_state = 73}, - [2656] = {.lex_state = 75}, + [2656] = {.lex_state = 73}, [2657] = {.lex_state = 73}, [2658] = {.lex_state = 73}, [2659] = {.lex_state = 73}, [2660] = {.lex_state = 73}, [2661] = {.lex_state = 73}, - [2662] = {.lex_state = 75}, - [2663] = {.lex_state = 73}, + [2662] = {.lex_state = 73}, + [2663] = {.lex_state = 75}, [2664] = {.lex_state = 73}, [2665] = {.lex_state = 73}, [2666] = {.lex_state = 73}, - [2667] = {.lex_state = 75}, + [2667] = {.lex_state = 73}, [2668] = {.lex_state = 73}, [2669] = {.lex_state = 73}, - [2670] = {.lex_state = 75}, + [2670] = {.lex_state = 73}, [2671] = {.lex_state = 75}, - [2672] = {.lex_state = 73}, + [2672] = {.lex_state = 75}, [2673] = {.lex_state = 73}, [2674] = {.lex_state = 73}, - [2675] = {.lex_state = 75}, + [2675] = {.lex_state = 73}, [2676] = {.lex_state = 73}, - [2677] = {.lex_state = 75}, - [2678] = {.lex_state = 75}, + [2677] = {.lex_state = 73}, + [2678] = {.lex_state = 73}, [2679] = {.lex_state = 73}, [2680] = {.lex_state = 73}, - [2681] = {.lex_state = 73}, + [2681] = {.lex_state = 75}, [2682] = {.lex_state = 73}, [2683] = {.lex_state = 73}, [2684] = {.lex_state = 73}, - [2685] = {.lex_state = 77}, - [2686] = {.lex_state = 75}, - [2687] = {.lex_state = 75}, + [2685] = {.lex_state = 73}, + [2686] = {.lex_state = 73}, + [2687] = {.lex_state = 73}, [2688] = {.lex_state = 73}, - [2689] = {.lex_state = 75}, - [2690] = {.lex_state = 75}, - [2691] = {.lex_state = 83}, + [2689] = {.lex_state = 73}, + [2690] = {.lex_state = 73}, + [2691] = {.lex_state = 73}, [2692] = {.lex_state = 73}, [2693] = {.lex_state = 75}, - [2694] = {.lex_state = 75}, + [2694] = {.lex_state = 77}, [2695] = {.lex_state = 73}, [2696] = {.lex_state = 73}, - [2697] = {.lex_state = 75}, - [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 83}, + [2697] = {.lex_state = 73}, + [2698] = {.lex_state = 73}, + [2699] = {.lex_state = 75}, [2700] = {.lex_state = 75}, - [2701] = {.lex_state = 75}, - [2702] = {.lex_state = 75}, - [2703] = {.lex_state = 73}, - [2704] = {.lex_state = 83}, + [2701] = {.lex_state = 73}, + [2702] = {.lex_state = 73}, + [2703] = {.lex_state = 75}, + [2704] = {.lex_state = 75}, [2705] = {.lex_state = 75}, - [2706] = {.lex_state = 83}, + [2706] = {.lex_state = 75}, [2707] = {.lex_state = 75}, [2708] = {.lex_state = 75}, [2709] = {.lex_state = 75}, [2710] = {.lex_state = 75}, [2711] = {.lex_state = 75}, - [2712] = {.lex_state = 75}, - [2713] = {.lex_state = 75}, + [2712] = {.lex_state = 73}, + [2713] = {.lex_state = 73}, [2714] = {.lex_state = 75}, [2715] = {.lex_state = 75}, - [2716] = {.lex_state = 75}, - [2717] = {.lex_state = 75}, - [2718] = {.lex_state = 75}, - [2719] = {.lex_state = 73}, + [2716] = {.lex_state = 83}, + [2717] = {.lex_state = 73}, + [2718] = {.lex_state = 73}, + [2719] = {.lex_state = 75}, [2720] = {.lex_state = 75}, [2721] = {.lex_state = 75}, - [2722] = {.lex_state = 83}, + [2722] = {.lex_state = 75}, [2723] = {.lex_state = 75}, [2724] = {.lex_state = 75}, - [2725] = {.lex_state = 83}, - [2726] = {.lex_state = 73}, + [2725] = {.lex_state = 75}, + [2726] = {.lex_state = 75}, [2727] = {.lex_state = 75}, [2728] = {.lex_state = 75}, - [2729] = {.lex_state = 75}, + [2729] = {.lex_state = 83}, [2730] = {.lex_state = 73}, - [2731] = {.lex_state = 75}, - [2732] = {.lex_state = 83}, + [2731] = {.lex_state = 73}, + [2732] = {.lex_state = 75}, [2733] = {.lex_state = 75}, - [2734] = {.lex_state = 73}, - [2735] = {.lex_state = 73}, + [2734] = {.lex_state = 75}, + [2735] = {.lex_state = 75}, [2736] = {.lex_state = 73}, [2737] = {.lex_state = 73}, - [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 73}, - [2740] = {.lex_state = 75}, - [2741] = {.lex_state = 75}, - [2742] = {.lex_state = 83}, - [2743] = {.lex_state = 75}, + [2738] = {.lex_state = 77}, + [2739] = {.lex_state = 75}, + [2740] = {.lex_state = 73}, + [2741] = {.lex_state = 73}, + [2742] = {.lex_state = 73}, + [2743] = {.lex_state = 73}, [2744] = {.lex_state = 75}, - [2745] = {.lex_state = 75}, - [2746] = {.lex_state = 73}, + [2745] = {.lex_state = 83}, + [2746] = {.lex_state = 83}, [2747] = {.lex_state = 75}, [2748] = {.lex_state = 75}, - [2749] = {.lex_state = 73}, + [2749] = {.lex_state = 75}, [2750] = {.lex_state = 75}, [2751] = {.lex_state = 75}, - [2752] = {.lex_state = 75}, - [2753] = {.lex_state = 75}, + [2752] = {.lex_state = 67}, + [2753] = {.lex_state = 73}, [2754] = {.lex_state = 75}, - [2755] = {.lex_state = 73}, + [2755] = {.lex_state = 83}, [2756] = {.lex_state = 75}, [2757] = {.lex_state = 75}, [2758] = {.lex_state = 75}, - [2759] = {.lex_state = 73}, + [2759] = {.lex_state = 75}, [2760] = {.lex_state = 75}, - [2761] = {.lex_state = 83}, + [2761] = {.lex_state = 73}, [2762] = {.lex_state = 75}, - [2763] = {.lex_state = 75}, + [2763] = {.lex_state = 73}, [2764] = {.lex_state = 75}, - [2765] = {.lex_state = 75}, + [2765] = {.lex_state = 73}, [2766] = {.lex_state = 75}, - [2767] = {.lex_state = 73}, + [2767] = {.lex_state = 75}, [2768] = {.lex_state = 75}, [2769] = {.lex_state = 75}, [2770] = {.lex_state = 75}, [2771] = {.lex_state = 75}, - [2772] = {.lex_state = 75}, - [2773] = {.lex_state = 75}, + [2772] = {.lex_state = 73}, + [2773] = {.lex_state = 73}, [2774] = {.lex_state = 75}, [2775] = {.lex_state = 75}, [2776] = {.lex_state = 75}, - [2777] = {.lex_state = 73}, + [2777] = {.lex_state = 75}, [2778] = {.lex_state = 75}, - [2779] = {.lex_state = 73}, + [2779] = {.lex_state = 75}, [2780] = {.lex_state = 75}, [2781] = {.lex_state = 75}, - [2782] = {.lex_state = 73}, - [2783] = {.lex_state = 73}, - [2784] = {.lex_state = 83}, - [2785] = {.lex_state = 57}, + [2782] = {.lex_state = 75}, + [2783] = {.lex_state = 75}, + [2784] = {.lex_state = 75}, + [2785] = {.lex_state = 75}, [2786] = {.lex_state = 73}, - [2787] = {.lex_state = 73}, - [2788] = {.lex_state = 75}, + [2787] = {.lex_state = 75}, + [2788] = {.lex_state = 73}, [2789] = {.lex_state = 73}, - [2790] = {.lex_state = 77}, + [2790] = {.lex_state = 73}, [2791] = {.lex_state = 73}, - [2792] = {.lex_state = 73}, - [2793] = {.lex_state = 57}, - [2794] = {.lex_state = 83}, - [2795] = {.lex_state = 77}, - [2796] = {.lex_state = 73}, + [2792] = {.lex_state = 83}, + [2793] = {.lex_state = 75}, + [2794] = {.lex_state = 73}, + [2795] = {.lex_state = 75}, + [2796] = {.lex_state = 77}, [2797] = {.lex_state = 73}, [2798] = {.lex_state = 75}, - [2799] = {.lex_state = 73}, - [2800] = {.lex_state = 75}, + [2799] = {.lex_state = 75}, + [2800] = {.lex_state = 73}, [2801] = {.lex_state = 75}, - [2802] = {.lex_state = 75}, - [2803] = {.lex_state = 73}, - [2804] = {.lex_state = 75}, - [2805] = {.lex_state = 73}, - [2806] = {.lex_state = 75}, + [2802] = {.lex_state = 73}, + [2803] = {.lex_state = 75}, + [2804] = {.lex_state = 73}, + [2805] = {.lex_state = 75}, + [2806] = {.lex_state = 73}, [2807] = {.lex_state = 75}, - [2808] = {.lex_state = 83}, - [2809] = {.lex_state = 73}, - [2810] = {.lex_state = 75}, + [2808] = {.lex_state = 73}, + [2809] = {.lex_state = 83}, + [2810] = {.lex_state = 83}, [2811] = {.lex_state = 73}, - [2812] = {.lex_state = 75}, + [2812] = {.lex_state = 73}, [2813] = {.lex_state = 75}, - [2814] = {.lex_state = 73}, + [2814] = {.lex_state = 83}, [2815] = {.lex_state = 73}, - [2816] = {.lex_state = 75}, - [2817] = {.lex_state = 75}, - [2818] = {.lex_state = 73}, - [2819] = {.lex_state = 73}, - [2820] = {.lex_state = 73}, - [2821] = {.lex_state = 75}, - [2822] = {.lex_state = 73}, - [2823] = {.lex_state = 73}, - [2824] = {.lex_state = 73}, - [2825] = {.lex_state = 73}, + [2816] = {.lex_state = 73}, + [2817] = {.lex_state = 77}, + [2818] = {.lex_state = 83}, + [2819] = {.lex_state = 75}, + [2820] = {.lex_state = 75}, + [2821] = {.lex_state = 73}, + [2822] = {.lex_state = 75}, + [2823] = {.lex_state = 75}, + [2824] = {.lex_state = 75}, + [2825] = {.lex_state = 75}, [2826] = {.lex_state = 75}, - [2827] = {.lex_state = 67}, - [2828] = {.lex_state = 73}, - [2829] = {.lex_state = 75}, + [2827] = {.lex_state = 73}, + [2828] = {.lex_state = 83}, + [2829] = {.lex_state = 73}, [2830] = {.lex_state = 73}, - [2831] = {.lex_state = 75}, + [2831] = {.lex_state = 73}, [2832] = {.lex_state = 75}, [2833] = {.lex_state = 75}, [2834] = {.lex_state = 75}, - [2835] = {.lex_state = 75}, - [2836] = {.lex_state = 83}, - [2837] = {.lex_state = 73}, + [2835] = {.lex_state = 73}, + [2836] = {.lex_state = 75}, + [2837] = {.lex_state = 75}, [2838] = {.lex_state = 75}, - [2839] = {.lex_state = 73}, + [2839] = {.lex_state = 75}, [2840] = {.lex_state = 75}, - [2841] = {.lex_state = 75}, - [2842] = {.lex_state = 75}, + [2841] = {.lex_state = 83}, + [2842] = {.lex_state = 73}, [2843] = {.lex_state = 73}, [2844] = {.lex_state = 83}, - [2845] = {.lex_state = 83}, - [2846] = {.lex_state = 73}, - [2847] = {.lex_state = 75}, + [2845] = {.lex_state = 75}, + [2846] = {.lex_state = 75}, + [2847] = {.lex_state = 73}, [2848] = {.lex_state = 75}, - [2849] = {.lex_state = 75}, - [2850] = {.lex_state = 75}, + [2849] = {.lex_state = 73}, + [2850] = {.lex_state = 73}, [2851] = {.lex_state = 75}, - [2852] = {.lex_state = 73}, + [2852] = {.lex_state = 75}, [2853] = {.lex_state = 73}, [2854] = {.lex_state = 73}, - [2855] = {.lex_state = 67}, - [2856] = {.lex_state = 73}, + [2855] = {.lex_state = 73}, + [2856] = {.lex_state = 83}, [2857] = {.lex_state = 75}, - [2858] = {.lex_state = 73}, - [2859] = {.lex_state = 83}, + [2858] = {.lex_state = 83}, + [2859] = {.lex_state = 73}, [2860] = {.lex_state = 73}, [2861] = {.lex_state = 73}, - [2862] = {.lex_state = 81}, - [2863] = {.lex_state = 73}, - [2864] = {.lex_state = 73}, + [2862] = {.lex_state = 73}, + [2863] = {.lex_state = 75}, + [2864] = {.lex_state = 75}, [2865] = {.lex_state = 73}, - [2866] = {.lex_state = 73}, + [2866] = {.lex_state = 75}, [2867] = {.lex_state = 73}, [2868] = {.lex_state = 73}, - [2869] = {.lex_state = 73}, - [2870] = {.lex_state = 77}, + [2869] = {.lex_state = 75}, + [2870] = {.lex_state = 75}, [2871] = {.lex_state = 73}, [2872] = {.lex_state = 73}, - [2873] = {.lex_state = 73}, - [2874] = {.lex_state = 73}, - [2875] = {.lex_state = 81}, - [2876] = {.lex_state = 73}, - [2877] = {.lex_state = 73}, - [2878] = {.lex_state = 81}, - [2879] = {.lex_state = 73}, - [2880] = {.lex_state = 73}, + [2873] = {.lex_state = 57}, + [2874] = {.lex_state = 57}, + [2875] = {.lex_state = 73}, + [2876] = {.lex_state = 75}, + [2877] = {.lex_state = 67}, + [2878] = {.lex_state = 73}, + [2879] = {.lex_state = 83}, + [2880] = {.lex_state = 75}, [2881] = {.lex_state = 73}, - [2882] = {.lex_state = 73}, + [2882] = {.lex_state = 75}, [2883] = {.lex_state = 73}, - [2884] = {.lex_state = 77}, - [2885] = {.lex_state = 73}, - [2886] = {.lex_state = 81}, + [2884] = {.lex_state = 73}, + [2885] = {.lex_state = 75}, + [2886] = {.lex_state = 75}, [2887] = {.lex_state = 73}, - [2888] = {.lex_state = 77}, - [2889] = {.lex_state = 77}, - [2890] = {.lex_state = 77}, - [2891] = {.lex_state = 77}, - [2892] = {.lex_state = 73}, - [2893] = {.lex_state = 77}, + [2888] = {.lex_state = 73}, + [2889] = {.lex_state = 75}, + [2890] = {.lex_state = 75}, + [2891] = {.lex_state = 73}, + [2892] = {.lex_state = 75}, + [2893] = {.lex_state = 73}, [2894] = {.lex_state = 73}, [2895] = {.lex_state = 73}, [2896] = {.lex_state = 73}, - [2897] = {.lex_state = 83}, + [2897] = {.lex_state = 73}, [2898] = {.lex_state = 73}, [2899] = {.lex_state = 73}, - [2900] = {.lex_state = 83}, + [2900] = {.lex_state = 73}, [2901] = {.lex_state = 73}, - [2902] = {.lex_state = 73}, + [2902] = {.lex_state = 81}, [2903] = {.lex_state = 77}, [2904] = {.lex_state = 73}, - [2905] = {.lex_state = 77}, - [2906] = {.lex_state = 77}, - [2907] = {.lex_state = 33}, - [2908] = {.lex_state = 33}, - [2909] = {.lex_state = 77}, + [2905] = {.lex_state = 73}, + [2906] = {.lex_state = 81}, + [2907] = {.lex_state = 73}, + [2908] = {.lex_state = 73}, + [2909] = {.lex_state = 73}, [2910] = {.lex_state = 73}, - [2911] = {.lex_state = 77}, - [2912] = {.lex_state = 33}, + [2911] = {.lex_state = 81}, + [2912] = {.lex_state = 81}, [2913] = {.lex_state = 77}, - [2914] = {.lex_state = 77}, - [2915] = {.lex_state = 77}, + [2914] = {.lex_state = 73}, + [2915] = {.lex_state = 73}, [2916] = {.lex_state = 73}, - [2917] = {.lex_state = 77}, - [2918] = {.lex_state = 77}, - [2919] = {.lex_state = 83}, + [2917] = {.lex_state = 73}, + [2918] = {.lex_state = 73}, + [2919] = {.lex_state = 73}, [2920] = {.lex_state = 77}, - [2921] = {.lex_state = 83}, + [2921] = {.lex_state = 73}, [2922] = {.lex_state = 77}, [2923] = {.lex_state = 77}, - [2924] = {.lex_state = 77}, - [2925] = {.lex_state = 73}, + [2924] = {.lex_state = 73}, + [2925] = {.lex_state = 83}, [2926] = {.lex_state = 73}, [2927] = {.lex_state = 77}, [2928] = {.lex_state = 77}, - [2929] = {.lex_state = 77}, - [2930] = {.lex_state = 77}, - [2931] = {.lex_state = 73}, - [2932] = {.lex_state = 77}, + [2929] = {.lex_state = 73}, + [2930] = {.lex_state = 73}, + [2931] = {.lex_state = 77}, + [2932] = {.lex_state = 73}, [2933] = {.lex_state = 77}, [2934] = {.lex_state = 77}, [2935] = {.lex_state = 77}, [2936] = {.lex_state = 77}, - [2937] = {.lex_state = 77}, - [2938] = {.lex_state = 73}, - [2939] = {.lex_state = 73}, + [2937] = {.lex_state = 73}, + [2938] = {.lex_state = 83}, + [2939] = {.lex_state = 77}, [2940] = {.lex_state = 73}, [2941] = {.lex_state = 73}, - [2942] = {.lex_state = 73}, - [2943] = {.lex_state = 73}, - [2944] = {.lex_state = 73}, - [2945] = {.lex_state = 73}, - [2946] = {.lex_state = 73}, - [2947] = {.lex_state = 73}, - [2948] = {.lex_state = 73}, - [2949] = {.lex_state = 73}, + [2942] = {.lex_state = 83}, + [2943] = {.lex_state = 77}, + [2944] = {.lex_state = 77}, + [2945] = {.lex_state = 77}, + [2946] = {.lex_state = 77}, + [2947] = {.lex_state = 77}, + [2948] = {.lex_state = 77}, + [2949] = {.lex_state = 77}, [2950] = {.lex_state = 73}, - [2951] = {.lex_state = 73}, - [2952] = {.lex_state = 73}, - [2953] = {.lex_state = 73}, - [2954] = {.lex_state = 73}, - [2955] = {.lex_state = 73}, - [2956] = {.lex_state = 73}, - [2957] = {.lex_state = 73}, - [2958] = {.lex_state = 73}, + [2951] = {.lex_state = 77}, + [2952] = {.lex_state = 77}, + [2953] = {.lex_state = 77}, + [2954] = {.lex_state = 33}, + [2955] = {.lex_state = 77}, + [2956] = {.lex_state = 33}, + [2957] = {.lex_state = 83}, + [2958] = {.lex_state = 77}, [2959] = {.lex_state = 73}, - [2960] = {.lex_state = 73}, - [2961] = {.lex_state = 73}, - [2962] = {.lex_state = 73}, - [2963] = {.lex_state = 73}, - [2964] = {.lex_state = 73}, + [2960] = {.lex_state = 77}, + [2961] = {.lex_state = 77}, + [2962] = {.lex_state = 77}, + [2963] = {.lex_state = 77}, + [2964] = {.lex_state = 33}, [2965] = {.lex_state = 73}, [2966] = {.lex_state = 73}, - [2967] = {.lex_state = 73}, + [2967] = {.lex_state = 77}, [2968] = {.lex_state = 73}, - [2969] = {.lex_state = 73}, + [2969] = {.lex_state = 77}, [2970] = {.lex_state = 73}, [2971] = {.lex_state = 73}, [2972] = {.lex_state = 73}, @@ -20863,38 +20905,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3007] = {.lex_state = 73}, [3008] = {.lex_state = 73}, [3009] = {.lex_state = 73}, - [3010] = {.lex_state = 83}, - [3011] = {.lex_state = 83}, - [3012] = {.lex_state = 83}, - [3013] = {.lex_state = 83}, - [3014] = {.lex_state = 83}, - [3015] = {.lex_state = 83}, - [3016] = {.lex_state = 83}, - [3017] = {.lex_state = 83}, - [3018] = {.lex_state = 83}, - [3019] = {.lex_state = 83}, - [3020] = {.lex_state = 83}, - [3021] = {.lex_state = 83}, - [3022] = {.lex_state = 83}, - [3023] = {.lex_state = 83}, - [3024] = {.lex_state = 83}, - [3025] = {.lex_state = 83}, - [3026] = {.lex_state = 83}, - [3027] = {.lex_state = 83}, - [3028] = {.lex_state = 83}, - [3029] = {.lex_state = 83}, - [3030] = {.lex_state = 83}, - [3031] = {.lex_state = 83}, - [3032] = {.lex_state = 83}, - [3033] = {.lex_state = 83}, - [3034] = {.lex_state = 83}, - [3035] = {.lex_state = 83}, - [3036] = {.lex_state = 83}, - [3037] = {.lex_state = 83}, - [3038] = {.lex_state = 83}, - [3039] = {.lex_state = 83}, - [3040] = {.lex_state = 83}, - [3041] = {.lex_state = 83}, + [3010] = {.lex_state = 73}, + [3011] = {.lex_state = 73}, + [3012] = {.lex_state = 73}, + [3013] = {.lex_state = 73}, + [3014] = {.lex_state = 73}, + [3015] = {.lex_state = 73}, + [3016] = {.lex_state = 73}, + [3017] = {.lex_state = 73}, + [3018] = {.lex_state = 73}, + [3019] = {.lex_state = 73}, + [3020] = {.lex_state = 73}, + [3021] = {.lex_state = 73}, + [3022] = {.lex_state = 73}, + [3023] = {.lex_state = 73}, + [3024] = {.lex_state = 73}, + [3025] = {.lex_state = 73}, + [3026] = {.lex_state = 73}, + [3027] = {.lex_state = 73}, + [3028] = {.lex_state = 73}, + [3029] = {.lex_state = 73}, + [3030] = {.lex_state = 73}, + [3031] = {.lex_state = 73}, + [3032] = {.lex_state = 73}, + [3033] = {.lex_state = 73}, + [3034] = {.lex_state = 73}, + [3035] = {.lex_state = 73}, + [3036] = {.lex_state = 73}, + [3037] = {.lex_state = 73}, + [3038] = {.lex_state = 73}, + [3039] = {.lex_state = 73}, + [3040] = {.lex_state = 73}, + [3041] = {.lex_state = 73}, [3042] = {.lex_state = 83}, [3043] = {.lex_state = 83}, [3044] = {.lex_state = 83}, @@ -21169,10 +21211,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3313] = {.lex_state = 83}, [3314] = {.lex_state = 83}, [3315] = {.lex_state = 83}, - [3316] = {.lex_state = 87}, + [3316] = {.lex_state = 83}, [3317] = {.lex_state = 83}, [3318] = {.lex_state = 83}, - [3319] = {.lex_state = 87}, + [3319] = {.lex_state = 83}, [3320] = {.lex_state = 83}, [3321] = {.lex_state = 83}, [3322] = {.lex_state = 83}, @@ -21184,595 +21226,595 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3328] = {.lex_state = 83}, [3329] = {.lex_state = 83}, [3330] = {.lex_state = 83}, - [3331] = {.lex_state = 85}, - [3332] = {.lex_state = 33}, - [3333] = {.lex_state = 33}, - [3334] = {.lex_state = 33}, - [3335] = {.lex_state = 33}, - [3336] = {.lex_state = 33}, - [3337] = {.lex_state = 245}, - [3338] = {.lex_state = 84}, + [3331] = {.lex_state = 83}, + [3332] = {.lex_state = 83}, + [3333] = {.lex_state = 83}, + [3334] = {.lex_state = 83}, + [3335] = {.lex_state = 83}, + [3336] = {.lex_state = 83}, + [3337] = {.lex_state = 83}, + [3338] = {.lex_state = 83}, [3339] = {.lex_state = 83}, [3340] = {.lex_state = 83}, [3341] = {.lex_state = 83}, [3342] = {.lex_state = 83}, - [3343] = {.lex_state = 84}, + [3343] = {.lex_state = 83}, [3344] = {.lex_state = 83}, - [3345] = {.lex_state = 87}, - [3346] = {.lex_state = 84}, - [3347] = {.lex_state = 41}, + [3345] = {.lex_state = 83}, + [3346] = {.lex_state = 83}, + [3347] = {.lex_state = 83}, [3348] = {.lex_state = 83}, - [3349] = {.lex_state = 41}, - [3350] = {.lex_state = 34}, - [3351] = {.lex_state = 34}, - [3352] = {.lex_state = 41}, - [3353] = {.lex_state = 41}, - [3354] = {.lex_state = 41}, + [3349] = {.lex_state = 83}, + [3350] = {.lex_state = 83}, + [3351] = {.lex_state = 83}, + [3352] = {.lex_state = 83}, + [3353] = {.lex_state = 83}, + [3354] = {.lex_state = 83}, [3355] = {.lex_state = 83}, - [3356] = {.lex_state = 41}, - [3357] = {.lex_state = 41}, - [3358] = {.lex_state = 41}, - [3359] = {.lex_state = 41}, - [3360] = {.lex_state = 41}, - [3361] = {.lex_state = 41}, - [3362] = {.lex_state = 85}, - [3363] = {.lex_state = 83}, - [3364] = {.lex_state = 41}, - [3365] = {.lex_state = 85}, - [3366] = {.lex_state = 85}, - [3367] = {.lex_state = 83}, - [3368] = {.lex_state = 85}, - [3369] = {.lex_state = 85}, + [3356] = {.lex_state = 83}, + [3357] = {.lex_state = 83}, + [3358] = {.lex_state = 87}, + [3359] = {.lex_state = 83}, + [3360] = {.lex_state = 83}, + [3361] = {.lex_state = 83}, + [3362] = {.lex_state = 87}, + [3363] = {.lex_state = 85}, + [3364] = {.lex_state = 33}, + [3365] = {.lex_state = 33}, + [3366] = {.lex_state = 33}, + [3367] = {.lex_state = 33}, + [3368] = {.lex_state = 33}, + [3369] = {.lex_state = 245}, [3370] = {.lex_state = 84}, - [3371] = {.lex_state = 84}, - [3372] = {.lex_state = 85}, - [3373] = {.lex_state = 85}, - [3374] = {.lex_state = 84}, - [3375] = {.lex_state = 84}, - [3376] = {.lex_state = 85}, - [3377] = {.lex_state = 34}, - [3378] = {.lex_state = 85}, - [3379] = {.lex_state = 85}, + [3371] = {.lex_state = 83}, + [3372] = {.lex_state = 87}, + [3373] = {.lex_state = 84}, + [3374] = {.lex_state = 83}, + [3375] = {.lex_state = 83}, + [3376] = {.lex_state = 83}, + [3377] = {.lex_state = 84}, + [3378] = {.lex_state = 83}, + [3379] = {.lex_state = 41}, [3380] = {.lex_state = 41}, [3381] = {.lex_state = 41}, - [3382] = {.lex_state = 84}, - [3383] = {.lex_state = 85}, - [3384] = {.lex_state = 85}, - [3385] = {.lex_state = 85}, - [3386] = {.lex_state = 35}, - [3387] = {.lex_state = 85}, - [3388] = {.lex_state = 35}, - [3389] = {.lex_state = 85}, - [3390] = {.lex_state = 85}, - [3391] = {.lex_state = 85}, - [3392] = {.lex_state = 85}, - [3393] = {.lex_state = 85}, + [3382] = {.lex_state = 34}, + [3383] = {.lex_state = 83}, + [3384] = {.lex_state = 34}, + [3385] = {.lex_state = 41}, + [3386] = {.lex_state = 41}, + [3387] = {.lex_state = 41}, + [3388] = {.lex_state = 83}, + [3389] = {.lex_state = 41}, + [3390] = {.lex_state = 41}, + [3391] = {.lex_state = 41}, + [3392] = {.lex_state = 41}, + [3393] = {.lex_state = 41}, [3394] = {.lex_state = 85}, - [3395] = {.lex_state = 85}, - [3396] = {.lex_state = 85}, - [3397] = {.lex_state = 35}, + [3395] = {.lex_state = 83}, + [3396] = {.lex_state = 83}, + [3397] = {.lex_state = 41}, [3398] = {.lex_state = 85}, [3399] = {.lex_state = 85}, - [3400] = {.lex_state = 35}, - [3401] = {.lex_state = 84}, + [3400] = {.lex_state = 85}, + [3401] = {.lex_state = 85}, [3402] = {.lex_state = 85}, [3403] = {.lex_state = 85}, [3404] = {.lex_state = 85}, - [3405] = {.lex_state = 84}, - [3406] = {.lex_state = 84}, - [3407] = {.lex_state = 85}, - [3408] = {.lex_state = 85}, - [3409] = {.lex_state = 85}, - [3410] = {.lex_state = 41}, + [3405] = {.lex_state = 85}, + [3406] = {.lex_state = 85}, + [3407] = {.lex_state = 35}, + [3408] = {.lex_state = 84}, + [3409] = {.lex_state = 84}, + [3410] = {.lex_state = 85}, [3411] = {.lex_state = 85}, - [3412] = {.lex_state = 85}, - [3413] = {.lex_state = 41}, - [3414] = {.lex_state = 34}, - [3415] = {.lex_state = 84}, - [3416] = {.lex_state = 84}, - [3417] = {.lex_state = 34}, - [3418] = {.lex_state = 34}, + [3412] = {.lex_state = 84}, + [3413] = {.lex_state = 35}, + [3414] = {.lex_state = 84}, + [3415] = {.lex_state = 85}, + [3416] = {.lex_state = 85}, + [3417] = {.lex_state = 84}, + [3418] = {.lex_state = 84}, [3419] = {.lex_state = 84}, - [3420] = {.lex_state = 84}, - [3421] = {.lex_state = 34}, - [3422] = {.lex_state = 34}, - [3423] = {.lex_state = 34}, - [3424] = {.lex_state = 35}, - [3425] = {.lex_state = 34}, - [3426] = {.lex_state = 34}, - [3427] = {.lex_state = 34}, - [3428] = {.lex_state = 34}, - [3429] = {.lex_state = 34}, - [3430] = {.lex_state = 34}, - [3431] = {.lex_state = 34}, - [3432] = {.lex_state = 34}, - [3433] = {.lex_state = 34}, - [3434] = {.lex_state = 34}, - [3435] = {.lex_state = 34}, - [3436] = {.lex_state = 34}, - [3437] = {.lex_state = 84}, - [3438] = {.lex_state = 34}, - [3439] = {.lex_state = 34}, - [3440] = {.lex_state = 34}, - [3441] = {.lex_state = 34}, - [3442] = {.lex_state = 34}, - [3443] = {.lex_state = 34}, - [3444] = {.lex_state = 34}, - [3445] = {.lex_state = 34}, - [3446] = {.lex_state = 34}, - [3447] = {.lex_state = 85}, - [3448] = {.lex_state = 85}, - [3449] = {.lex_state = 35}, - [3450] = {.lex_state = 85}, - [3451] = {.lex_state = 81}, - [3452] = {.lex_state = 34}, - [3453] = {.lex_state = 85}, - [3454] = {.lex_state = 81}, - [3455] = {.lex_state = 81}, + [3420] = {.lex_state = 85}, + [3421] = {.lex_state = 85}, + [3422] = {.lex_state = 85}, + [3423] = {.lex_state = 85}, + [3424] = {.lex_state = 34}, + [3425] = {.lex_state = 85}, + [3426] = {.lex_state = 84}, + [3427] = {.lex_state = 85}, + [3428] = {.lex_state = 85}, + [3429] = {.lex_state = 41}, + [3430] = {.lex_state = 85}, + [3431] = {.lex_state = 85}, + [3432] = {.lex_state = 85}, + [3433] = {.lex_state = 85}, + [3434] = {.lex_state = 35}, + [3435] = {.lex_state = 85}, + [3436] = {.lex_state = 85}, + [3437] = {.lex_state = 85}, + [3438] = {.lex_state = 41}, + [3439] = {.lex_state = 85}, + [3440] = {.lex_state = 35}, + [3441] = {.lex_state = 85}, + [3442] = {.lex_state = 85}, + [3443] = {.lex_state = 41}, + [3444] = {.lex_state = 85}, + [3445] = {.lex_state = 41}, + [3446] = {.lex_state = 84}, + [3447] = {.lex_state = 34}, + [3448] = {.lex_state = 84}, + [3449] = {.lex_state = 34}, + [3450] = {.lex_state = 34}, + [3451] = {.lex_state = 34}, + [3452] = {.lex_state = 84}, + [3453] = {.lex_state = 84}, + [3454] = {.lex_state = 34}, + [3455] = {.lex_state = 34}, [3456] = {.lex_state = 34}, - [3457] = {.lex_state = 81}, - [3458] = {.lex_state = 81}, - [3459] = {.lex_state = 81}, + [3457] = {.lex_state = 34}, + [3458] = {.lex_state = 34}, + [3459] = {.lex_state = 34}, [3460] = {.lex_state = 34}, - [3461] = {.lex_state = 81}, - [3462] = {.lex_state = 81}, + [3461] = {.lex_state = 34}, + [3462] = {.lex_state = 34}, [3463] = {.lex_state = 34}, - [3464] = {.lex_state = 81}, - [3465] = {.lex_state = 81}, - [3466] = {.lex_state = 81}, - [3467] = {.lex_state = 81}, - [3468] = {.lex_state = 24}, - [3469] = {.lex_state = 24}, + [3464] = {.lex_state = 84}, + [3465] = {.lex_state = 34}, + [3466] = {.lex_state = 34}, + [3467] = {.lex_state = 34}, + [3468] = {.lex_state = 34}, + [3469] = {.lex_state = 34}, [3470] = {.lex_state = 34}, - [3471] = {.lex_state = 24}, + [3471] = {.lex_state = 35}, [3472] = {.lex_state = 34}, - [3473] = {.lex_state = 24}, - [3474] = {.lex_state = 85}, + [3473] = {.lex_state = 34}, + [3474] = {.lex_state = 34}, [3475] = {.lex_state = 34}, [3476] = {.lex_state = 34}, - [3477] = {.lex_state = 85}, + [3477] = {.lex_state = 34}, [3478] = {.lex_state = 34}, - [3479] = {.lex_state = 34}, - [3480] = {.lex_state = 34}, - [3481] = {.lex_state = 34}, - [3482] = {.lex_state = 34}, - [3483] = {.lex_state = 34}, - [3484] = {.lex_state = 34}, - [3485] = {.lex_state = 85}, - [3486] = {.lex_state = 34}, + [3479] = {.lex_state = 85}, + [3480] = {.lex_state = 85}, + [3481] = {.lex_state = 35}, + [3482] = {.lex_state = 81}, + [3483] = {.lex_state = 81}, + [3484] = {.lex_state = 81}, + [3485] = {.lex_state = 34}, + [3486] = {.lex_state = 81}, [3487] = {.lex_state = 81}, [3488] = {.lex_state = 81}, - [3489] = {.lex_state = 81}, - [3490] = {.lex_state = 254}, - [3491] = {.lex_state = 254}, + [3489] = {.lex_state = 34}, + [3490] = {.lex_state = 85}, + [3491] = {.lex_state = 81}, [3492] = {.lex_state = 81}, [3493] = {.lex_state = 81}, - [3494] = {.lex_state = 81}, - [3495] = {.lex_state = 254}, - [3496] = {.lex_state = 254}, - [3497] = {.lex_state = 254}, - [3498] = {.lex_state = 81}, + [3494] = {.lex_state = 34}, + [3495] = {.lex_state = 85}, + [3496] = {.lex_state = 81}, + [3497] = {.lex_state = 81}, + [3498] = {.lex_state = 34}, [3499] = {.lex_state = 81}, - [3500] = {.lex_state = 254}, - [3501] = {.lex_state = 81}, - [3502] = {.lex_state = 81}, - [3503] = {.lex_state = 254}, - [3504] = {.lex_state = 254}, - [3505] = {.lex_state = 81}, - [3506] = {.lex_state = 254}, - [3507] = {.lex_state = 24}, - [3508] = {.lex_state = 81}, - [3509] = {.lex_state = 254}, - [3510] = {.lex_state = 24}, - [3511] = {.lex_state = 81}, - [3512] = {.lex_state = 254}, - [3513] = {.lex_state = 254}, - [3514] = {.lex_state = 81}, - [3515] = {.lex_state = 254}, - [3516] = {.lex_state = 254}, + [3500] = {.lex_state = 34}, + [3501] = {.lex_state = 24}, + [3502] = {.lex_state = 34}, + [3503] = {.lex_state = 34}, + [3504] = {.lex_state = 24}, + [3505] = {.lex_state = 85}, + [3506] = {.lex_state = 34}, + [3507] = {.lex_state = 34}, + [3508] = {.lex_state = 34}, + [3509] = {.lex_state = 34}, + [3510] = {.lex_state = 34}, + [3511] = {.lex_state = 34}, + [3512] = {.lex_state = 34}, + [3513] = {.lex_state = 24}, + [3514] = {.lex_state = 24}, + [3515] = {.lex_state = 34}, + [3516] = {.lex_state = 34}, [3517] = {.lex_state = 85}, - [3518] = {.lex_state = 34}, - [3519] = {.lex_state = 81}, + [3518] = {.lex_state = 85}, + [3519] = {.lex_state = 34}, [3520] = {.lex_state = 254}, - [3521] = {.lex_state = 81}, - [3522] = {.lex_state = 81}, - [3523] = {.lex_state = 254}, - [3524] = {.lex_state = 85}, + [3521] = {.lex_state = 254}, + [3522] = {.lex_state = 24}, + [3523] = {.lex_state = 81}, + [3524] = {.lex_state = 81}, [3525] = {.lex_state = 254}, - [3526] = {.lex_state = 254}, + [3526] = {.lex_state = 81}, [3527] = {.lex_state = 254}, - [3528] = {.lex_state = 81}, + [3528] = {.lex_state = 254}, [3529] = {.lex_state = 81}, [3530] = {.lex_state = 254}, [3531] = {.lex_state = 81}, - [3532] = {.lex_state = 81}, + [3532] = {.lex_state = 24}, [3533] = {.lex_state = 81}, - [3534] = {.lex_state = 254}, + [3534] = {.lex_state = 81}, [3535] = {.lex_state = 254}, - [3536] = {.lex_state = 254}, - [3537] = {.lex_state = 254}, - [3538] = {.lex_state = 81}, + [3536] = {.lex_state = 81}, + [3537] = {.lex_state = 81}, + [3538] = {.lex_state = 85}, [3539] = {.lex_state = 254}, - [3540] = {.lex_state = 85}, + [3540] = {.lex_state = 254}, [3541] = {.lex_state = 81}, - [3542] = {.lex_state = 85}, - [3543] = {.lex_state = 88}, - [3544] = {.lex_state = 88}, - [3545] = {.lex_state = 88}, - [3546] = {.lex_state = 254}, - [3547] = {.lex_state = 0}, - [3548] = {.lex_state = 93}, - [3549] = {.lex_state = 88}, - [3550] = {.lex_state = 88}, - [3551] = {.lex_state = 93}, - [3552] = {.lex_state = 93}, - [3553] = {.lex_state = 254}, + [3542] = {.lex_state = 81}, + [3543] = {.lex_state = 81}, + [3544] = {.lex_state = 81}, + [3545] = {.lex_state = 254}, + [3546] = {.lex_state = 81}, + [3547] = {.lex_state = 254}, + [3548] = {.lex_state = 254}, + [3549] = {.lex_state = 254}, + [3550] = {.lex_state = 81}, + [3551] = {.lex_state = 254}, + [3552] = {.lex_state = 81}, + [3553] = {.lex_state = 81}, [3554] = {.lex_state = 254}, - [3555] = {.lex_state = 93}, - [3556] = {.lex_state = 88}, - [3557] = {.lex_state = 93}, - [3558] = {.lex_state = 88}, - [3559] = {.lex_state = 88}, - [3560] = {.lex_state = 0}, - [3561] = {.lex_state = 254}, - [3562] = {.lex_state = 93}, - [3563] = {.lex_state = 88}, - [3564] = {.lex_state = 93}, - [3565] = {.lex_state = 34}, - [3566] = {.lex_state = 34}, - [3567] = {.lex_state = 88}, - [3568] = {.lex_state = 93}, - [3569] = {.lex_state = 88}, - [3570] = {.lex_state = 93}, - [3571] = {.lex_state = 88}, - [3572] = {.lex_state = 93}, - [3573] = {.lex_state = 93}, - [3574] = {.lex_state = 93}, + [3555] = {.lex_state = 254}, + [3556] = {.lex_state = 254}, + [3557] = {.lex_state = 254}, + [3558] = {.lex_state = 81}, + [3559] = {.lex_state = 254}, + [3560] = {.lex_state = 81}, + [3561] = {.lex_state = 81}, + [3562] = {.lex_state = 254}, + [3563] = {.lex_state = 81}, + [3564] = {.lex_state = 254}, + [3565] = {.lex_state = 81}, + [3566] = {.lex_state = 85}, + [3567] = {.lex_state = 85}, + [3568] = {.lex_state = 85}, + [3569] = {.lex_state = 81}, + [3570] = {.lex_state = 254}, + [3571] = {.lex_state = 254}, + [3572] = {.lex_state = 81}, + [3573] = {.lex_state = 254}, + [3574] = {.lex_state = 254}, [3575] = {.lex_state = 88}, - [3576] = {.lex_state = 88}, - [3577] = {.lex_state = 88}, + [3576] = {.lex_state = 93}, + [3577] = {.lex_state = 93}, [3578] = {.lex_state = 93}, [3579] = {.lex_state = 88}, - [3580] = {.lex_state = 93}, - [3581] = {.lex_state = 88}, + [3580] = {.lex_state = 254}, + [3581] = {.lex_state = 93}, [3582] = {.lex_state = 88}, [3583] = {.lex_state = 93}, [3584] = {.lex_state = 88}, - [3585] = {.lex_state = 93}, - [3586] = {.lex_state = 93}, - [3587] = {.lex_state = 88}, - [3588] = {.lex_state = 93}, + [3585] = {.lex_state = 88}, + [3586] = {.lex_state = 254}, + [3587] = {.lex_state = 93}, + [3588] = {.lex_state = 90}, [3589] = {.lex_state = 88}, - [3590] = {.lex_state = 93}, + [3590] = {.lex_state = 88}, [3591] = {.lex_state = 88}, [3592] = {.lex_state = 93}, - [3593] = {.lex_state = 88}, + [3593] = {.lex_state = 93}, [3594] = {.lex_state = 88}, - [3595] = {.lex_state = 88}, - [3596] = {.lex_state = 93}, - [3597] = {.lex_state = 85}, - [3598] = {.lex_state = 93}, + [3595] = {.lex_state = 93}, + [3596] = {.lex_state = 88}, + [3597] = {.lex_state = 93}, + [3598] = {.lex_state = 88}, [3599] = {.lex_state = 93}, [3600] = {.lex_state = 88}, [3601] = {.lex_state = 93}, - [3602] = {.lex_state = 93}, - [3603] = {.lex_state = 254}, - [3604] = {.lex_state = 93}, - [3605] = {.lex_state = 254}, + [3602] = {.lex_state = 88}, + [3603] = {.lex_state = 93}, + [3604] = {.lex_state = 88}, + [3605] = {.lex_state = 88}, [3606] = {.lex_state = 88}, [3607] = {.lex_state = 93}, [3608] = {.lex_state = 93}, - [3609] = {.lex_state = 88}, + [3609] = {.lex_state = 93}, [3610] = {.lex_state = 88}, [3611] = {.lex_state = 93}, - [3612] = {.lex_state = 93}, + [3612] = {.lex_state = 88}, [3613] = {.lex_state = 88}, [3614] = {.lex_state = 88}, [3615] = {.lex_state = 93}, - [3616] = {.lex_state = 254}, - [3617] = {.lex_state = 88}, + [3616] = {.lex_state = 0}, + [3617] = {.lex_state = 93}, [3618] = {.lex_state = 88}, [3619] = {.lex_state = 93}, - [3620] = {.lex_state = 88}, - [3621] = {.lex_state = 93}, + [3620] = {.lex_state = 93}, + [3621] = {.lex_state = 88}, [3622] = {.lex_state = 88}, [3623] = {.lex_state = 93}, [3624] = {.lex_state = 88}, - [3625] = {.lex_state = 93}, - [3626] = {.lex_state = 88}, - [3627] = {.lex_state = 93}, - [3628] = {.lex_state = 88}, - [3629] = {.lex_state = 93}, + [3625] = {.lex_state = 88}, + [3626] = {.lex_state = 254}, + [3627] = {.lex_state = 88}, + [3628] = {.lex_state = 93}, + [3629] = {.lex_state = 88}, [3630] = {.lex_state = 93}, - [3631] = {.lex_state = 88}, - [3632] = {.lex_state = 88}, - [3633] = {.lex_state = 88}, + [3631] = {.lex_state = 93}, + [3632] = {.lex_state = 93}, + [3633] = {.lex_state = 93}, [3634] = {.lex_state = 93}, - [3635] = {.lex_state = 88}, - [3636] = {.lex_state = 93}, - [3637] = {.lex_state = 254}, + [3635] = {.lex_state = 93}, + [3636] = {.lex_state = 88}, + [3637] = {.lex_state = 88}, [3638] = {.lex_state = 93}, [3639] = {.lex_state = 88}, - [3640] = {.lex_state = 93}, - [3641] = {.lex_state = 88}, - [3642] = {.lex_state = 254}, + [3640] = {.lex_state = 88}, + [3641] = {.lex_state = 254}, + [3642] = {.lex_state = 0}, [3643] = {.lex_state = 93}, - [3644] = {.lex_state = 88}, + [3644] = {.lex_state = 254}, [3645] = {.lex_state = 93}, - [3646] = {.lex_state = 93}, - [3647] = {.lex_state = 93}, - [3648] = {.lex_state = 254}, - [3649] = {.lex_state = 88}, + [3646] = {.lex_state = 85}, + [3647] = {.lex_state = 88}, + [3648] = {.lex_state = 93}, + [3649] = {.lex_state = 93}, [3650] = {.lex_state = 88}, - [3651] = {.lex_state = 93}, + [3651] = {.lex_state = 88}, [3652] = {.lex_state = 88}, - [3653] = {.lex_state = 85}, + [3653] = {.lex_state = 93}, [3654] = {.lex_state = 93}, [3655] = {.lex_state = 88}, - [3656] = {.lex_state = 90}, - [3657] = {.lex_state = 93}, - [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 0}, - [3660] = {.lex_state = 81}, - [3661] = {.lex_state = 81}, - [3662] = {.lex_state = 85}, - [3663] = {.lex_state = 34}, - [3664] = {.lex_state = 34}, - [3665] = {.lex_state = 81}, - [3666] = {.lex_state = 85}, - [3667] = {.lex_state = 254}, - [3668] = {.lex_state = 254}, - [3669] = {.lex_state = 0}, - [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 0}, - [3672] = {.lex_state = 85}, - [3673] = {.lex_state = 81}, - [3674] = {.lex_state = 85}, - [3675] = {.lex_state = 254}, - [3676] = {.lex_state = 0}, - [3677] = {.lex_state = 254}, - [3678] = {.lex_state = 254}, - [3679] = {.lex_state = 85}, - [3680] = {.lex_state = 81}, - [3681] = {.lex_state = 81}, - [3682] = {.lex_state = 0}, - [3683] = {.lex_state = 34}, - [3684] = {.lex_state = 81}, - [3685] = {.lex_state = 81}, - [3686] = {.lex_state = 85}, - [3687] = {.lex_state = 254}, - [3688] = {.lex_state = 0}, - [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 69}, - [3691] = {.lex_state = 90}, - [3692] = {.lex_state = 258}, - [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 69}, + [3656] = {.lex_state = 93}, + [3657] = {.lex_state = 85}, + [3658] = {.lex_state = 88}, + [3659] = {.lex_state = 254}, + [3660] = {.lex_state = 254}, + [3661] = {.lex_state = 93}, + [3662] = {.lex_state = 88}, + [3663] = {.lex_state = 93}, + [3664] = {.lex_state = 88}, + [3665] = {.lex_state = 93}, + [3666] = {.lex_state = 88}, + [3667] = {.lex_state = 93}, + [3668] = {.lex_state = 88}, + [3669] = {.lex_state = 93}, + [3670] = {.lex_state = 93}, + [3671] = {.lex_state = 254}, + [3672] = {.lex_state = 88}, + [3673] = {.lex_state = 93}, + [3674] = {.lex_state = 88}, + [3675] = {.lex_state = 34}, + [3676] = {.lex_state = 34}, + [3677] = {.lex_state = 88}, + [3678] = {.lex_state = 93}, + [3679] = {.lex_state = 88}, + [3680] = {.lex_state = 93}, + [3681] = {.lex_state = 88}, + [3682] = {.lex_state = 93}, + [3683] = {.lex_state = 254}, + [3684] = {.lex_state = 254}, + [3685] = {.lex_state = 93}, + [3686] = {.lex_state = 88}, + [3687] = {.lex_state = 93}, + [3688] = {.lex_state = 88}, + [3689] = {.lex_state = 88}, + [3690] = {.lex_state = 81}, + [3691] = {.lex_state = 254}, + [3692] = {.lex_state = 81}, + [3693] = {.lex_state = 85}, + [3694] = {.lex_state = 34}, + [3695] = {.lex_state = 0}, [3696] = {.lex_state = 85}, - [3697] = {.lex_state = 85}, - [3698] = {.lex_state = 0}, + [3697] = {.lex_state = 0}, + [3698] = {.lex_state = 81}, [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 85}, - [3701] = {.lex_state = 0}, + [3700] = {.lex_state = 0}, + [3701] = {.lex_state = 34}, [3702] = {.lex_state = 85}, - [3703] = {.lex_state = 69}, - [3704] = {.lex_state = 0}, + [3703] = {.lex_state = 81}, + [3704] = {.lex_state = 85}, [3705] = {.lex_state = 0}, - [3706] = {.lex_state = 88}, - [3707] = {.lex_state = 85}, - [3708] = {.lex_state = 0}, - [3709] = {.lex_state = 88}, - [3710] = {.lex_state = 0}, + [3706] = {.lex_state = 81}, + [3707] = {.lex_state = 254}, + [3708] = {.lex_state = 34}, + [3709] = {.lex_state = 81}, + [3710] = {.lex_state = 254}, [3711] = {.lex_state = 85}, - [3712] = {.lex_state = 0}, - [3713] = {.lex_state = 85}, - [3714] = {.lex_state = 85}, - [3715] = {.lex_state = 0}, - [3716] = {.lex_state = 85}, - [3717] = {.lex_state = 69}, - [3718] = {.lex_state = 254}, - [3719] = {.lex_state = 85}, - [3720] = {.lex_state = 85}, - [3721] = {.lex_state = 90}, - [3722] = {.lex_state = 258}, + [3712] = {.lex_state = 81}, + [3713] = {.lex_state = 254}, + [3714] = {.lex_state = 81}, + [3715] = {.lex_state = 85}, + [3716] = {.lex_state = 254}, + [3717] = {.lex_state = 0}, + [3718] = {.lex_state = 0}, + [3719] = {.lex_state = 0}, + [3720] = {.lex_state = 254}, + [3721] = {.lex_state = 0}, + [3722] = {.lex_state = 254}, [3723] = {.lex_state = 69}, - [3724] = {.lex_state = 0}, + [3724] = {.lex_state = 69}, [3725] = {.lex_state = 85}, - [3726] = {.lex_state = 0}, - [3727] = {.lex_state = 69}, + [3726] = {.lex_state = 85}, + [3727] = {.lex_state = 85}, [3728] = {.lex_state = 0}, - [3729] = {.lex_state = 0}, - [3730] = {.lex_state = 69}, - [3731] = {.lex_state = 0}, - [3732] = {.lex_state = 0}, - [3733] = {.lex_state = 254}, - [3734] = {.lex_state = 254}, - [3735] = {.lex_state = 85}, + [3729] = {.lex_state = 85}, + [3730] = {.lex_state = 85}, + [3731] = {.lex_state = 69}, + [3732] = {.lex_state = 258}, + [3733] = {.lex_state = 0}, + [3734] = {.lex_state = 69}, + [3735] = {.lex_state = 90}, [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 0}, - [3738] = {.lex_state = 88}, - [3739] = {.lex_state = 85}, - [3740] = {.lex_state = 0}, - [3741] = {.lex_state = 0}, + [3737] = {.lex_state = 254}, + [3738] = {.lex_state = 85}, + [3739] = {.lex_state = 69}, + [3740] = {.lex_state = 69}, + [3741] = {.lex_state = 69}, [3742] = {.lex_state = 85}, - [3743] = {.lex_state = 0}, - [3744] = {.lex_state = 254}, + [3743] = {.lex_state = 258}, + [3744] = {.lex_state = 90}, [3745] = {.lex_state = 0}, - [3746] = {.lex_state = 69}, - [3747] = {.lex_state = 69}, + [3746] = {.lex_state = 0}, + [3747] = {.lex_state = 0}, [3748] = {.lex_state = 0}, - [3749] = {.lex_state = 0}, + [3749] = {.lex_state = 85}, [3750] = {.lex_state = 0}, [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 69}, - [3753] = {.lex_state = 85}, - [3754] = {.lex_state = 85}, - [3755] = {.lex_state = 0}, - [3756] = {.lex_state = 85}, - [3757] = {.lex_state = 0}, - [3758] = {.lex_state = 0}, - [3759] = {.lex_state = 254}, - [3760] = {.lex_state = 254}, - [3761] = {.lex_state = 254}, - [3762] = {.lex_state = 254}, - [3763] = {.lex_state = 254}, - [3764] = {.lex_state = 254}, - [3765] = {.lex_state = 254}, + [3752] = {.lex_state = 85}, + [3753] = {.lex_state = 254}, + [3754] = {.lex_state = 0}, + [3755] = {.lex_state = 69}, + [3756] = {.lex_state = 254}, + [3757] = {.lex_state = 254}, + [3758] = {.lex_state = 85}, + [3759] = {.lex_state = 85}, + [3760] = {.lex_state = 0}, + [3761] = {.lex_state = 0}, + [3762] = {.lex_state = 0}, + [3763] = {.lex_state = 0}, + [3764] = {.lex_state = 85}, + [3765] = {.lex_state = 81}, [3766] = {.lex_state = 85}, - [3767] = {.lex_state = 69}, - [3768] = {.lex_state = 254}, - [3769] = {.lex_state = 254}, - [3770] = {.lex_state = 254}, - [3771] = {.lex_state = 69}, - [3772] = {.lex_state = 85}, - [3773] = {.lex_state = 254}, - [3774] = {.lex_state = 254}, - [3775] = {.lex_state = 0}, + [3767] = {.lex_state = 0}, + [3768] = {.lex_state = 85}, + [3769] = {.lex_state = 85}, + [3770] = {.lex_state = 69}, + [3771] = {.lex_state = 0}, + [3772] = {.lex_state = 69}, + [3773] = {.lex_state = 0}, + [3774] = {.lex_state = 0}, + [3775] = {.lex_state = 85}, [3776] = {.lex_state = 69}, - [3777] = {.lex_state = 0}, - [3778] = {.lex_state = 254}, - [3779] = {.lex_state = 0}, - [3780] = {.lex_state = 254}, + [3777] = {.lex_state = 69}, + [3778] = {.lex_state = 81}, + [3779] = {.lex_state = 85}, + [3780] = {.lex_state = 85}, [3781] = {.lex_state = 85}, - [3782] = {.lex_state = 254}, + [3782] = {.lex_state = 0}, [3783] = {.lex_state = 85}, - [3784] = {.lex_state = 254}, + [3784] = {.lex_state = 69}, [3785] = {.lex_state = 69}, - [3786] = {.lex_state = 254}, - [3787] = {.lex_state = 69}, - [3788] = {.lex_state = 93}, - [3789] = {.lex_state = 93}, - [3790] = {.lex_state = 69}, - [3791] = {.lex_state = 85}, - [3792] = {.lex_state = 69}, - [3793] = {.lex_state = 93}, - [3794] = {.lex_state = 85}, - [3795] = {.lex_state = 81}, - [3796] = {.lex_state = 85}, - [3797] = {.lex_state = 254}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 85}, - [3800] = {.lex_state = 0}, + [3786] = {.lex_state = 0}, + [3787] = {.lex_state = 0}, + [3788] = {.lex_state = 85}, + [3789] = {.lex_state = 81}, + [3790] = {.lex_state = 85}, + [3791] = {.lex_state = 69}, + [3792] = {.lex_state = 0}, + [3793] = {.lex_state = 85}, + [3794] = {.lex_state = 69}, + [3795] = {.lex_state = 88}, + [3796] = {.lex_state = 69}, + [3797] = {.lex_state = 88}, + [3798] = {.lex_state = 88}, + [3799] = {.lex_state = 69}, + [3800] = {.lex_state = 69}, [3801] = {.lex_state = 85}, [3802] = {.lex_state = 85}, [3803] = {.lex_state = 85}, - [3804] = {.lex_state = 69}, - [3805] = {.lex_state = 69}, - [3806] = {.lex_state = 85}, - [3807] = {.lex_state = 0}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 85}, + [3804] = {.lex_state = 0}, + [3805] = {.lex_state = 85}, + [3806] = {.lex_state = 69}, + [3807] = {.lex_state = 85}, + [3808] = {.lex_state = 254}, + [3809] = {.lex_state = 254}, [3810] = {.lex_state = 69}, [3811] = {.lex_state = 0}, - [3812] = {.lex_state = 254}, - [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 69}, + [3812] = {.lex_state = 69}, + [3813] = {.lex_state = 85}, + [3814] = {.lex_state = 254}, [3815] = {.lex_state = 0}, - [3816] = {.lex_state = 69}, - [3817] = {.lex_state = 85}, + [3816] = {.lex_state = 85}, + [3817] = {.lex_state = 69}, [3818] = {.lex_state = 0}, [3819] = {.lex_state = 69}, - [3820] = {.lex_state = 85}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 0}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 254}, + [3822] = {.lex_state = 88}, + [3823] = {.lex_state = 85}, [3824] = {.lex_state = 85}, - [3825] = {.lex_state = 0}, - [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 69}, - [3828] = {.lex_state = 85}, - [3829] = {.lex_state = 0}, - [3830] = {.lex_state = 69}, - [3831] = {.lex_state = 0}, - [3832] = {.lex_state = 81}, - [3833] = {.lex_state = 69}, + [3825] = {.lex_state = 254}, + [3826] = {.lex_state = 85}, + [3827] = {.lex_state = 85}, + [3828] = {.lex_state = 93}, + [3829] = {.lex_state = 254}, + [3830] = {.lex_state = 254}, + [3831] = {.lex_state = 69}, + [3832] = {.lex_state = 0}, + [3833] = {.lex_state = 0}, [3834] = {.lex_state = 85}, [3835] = {.lex_state = 0}, - [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 85}, - [3838] = {.lex_state = 69}, - [3839] = {.lex_state = 0}, - [3840] = {.lex_state = 85}, + [3836] = {.lex_state = 254}, + [3837] = {.lex_state = 0}, + [3838] = {.lex_state = 0}, + [3839] = {.lex_state = 254}, + [3840] = {.lex_state = 93}, [3841] = {.lex_state = 0}, - [3842] = {.lex_state = 258}, - [3843] = {.lex_state = 81}, - [3844] = {.lex_state = 69}, - [3845] = {.lex_state = 254}, - [3846] = {.lex_state = 85}, - [3847] = {.lex_state = 85}, - [3848] = {.lex_state = 85}, - [3849] = {.lex_state = 85}, - [3850] = {.lex_state = 85}, - [3851] = {.lex_state = 69}, - [3852] = {.lex_state = 254}, - [3853] = {.lex_state = 85}, + [3842] = {.lex_state = 0}, + [3843] = {.lex_state = 254}, + [3844] = {.lex_state = 0}, + [3845] = {.lex_state = 0}, + [3846] = {.lex_state = 0}, + [3847] = {.lex_state = 69}, + [3848] = {.lex_state = 0}, + [3849] = {.lex_state = 0}, + [3850] = {.lex_state = 254}, + [3851] = {.lex_state = 0}, + [3852] = {.lex_state = 85}, + [3853] = {.lex_state = 0}, [3854] = {.lex_state = 85}, - [3855] = {.lex_state = 69}, - [3856] = {.lex_state = 254}, + [3855] = {.lex_state = 0}, + [3856] = {.lex_state = 69}, [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 85}, + [3858] = {.lex_state = 69}, [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 0}, - [3861] = {.lex_state = 0}, - [3862] = {.lex_state = 0}, - [3863] = {.lex_state = 0}, - [3864] = {.lex_state = 0}, + [3860] = {.lex_state = 258}, + [3861] = {.lex_state = 85}, + [3862] = {.lex_state = 254}, + [3863] = {.lex_state = 254}, + [3864] = {.lex_state = 254}, [3865] = {.lex_state = 0}, [3866] = {.lex_state = 0}, - [3867] = {.lex_state = 81}, - [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 89}, - [3871] = {.lex_state = 94}, - [3872] = {.lex_state = 85}, - [3873] = {.lex_state = 94}, - [3874] = {.lex_state = 89}, - [3875] = {.lex_state = 0}, - [3876] = {.lex_state = 89}, - [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 81}, - [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 94}, - [3881] = {.lex_state = 0}, + [3867] = {.lex_state = 0}, + [3868] = {.lex_state = 93}, + [3869] = {.lex_state = 85}, + [3870] = {.lex_state = 93}, + [3871] = {.lex_state = 254}, + [3872] = {.lex_state = 254}, + [3873] = {.lex_state = 254}, + [3874] = {.lex_state = 0}, + [3875] = {.lex_state = 254}, + [3876] = {.lex_state = 85}, + [3877] = {.lex_state = 69}, + [3878] = {.lex_state = 254}, + [3879] = {.lex_state = 85}, + [3880] = {.lex_state = 85}, + [3881] = {.lex_state = 69}, [3882] = {.lex_state = 0}, - [3883] = {.lex_state = 0}, - [3884] = {.lex_state = 0}, + [3883] = {.lex_state = 254}, + [3884] = {.lex_state = 85}, [3885] = {.lex_state = 0}, [3886] = {.lex_state = 0}, - [3887] = {.lex_state = 0}, - [3888] = {.lex_state = 0}, + [3887] = {.lex_state = 85}, + [3888] = {.lex_state = 254}, [3889] = {.lex_state = 0}, [3890] = {.lex_state = 0}, - [3891] = {.lex_state = 0}, + [3891] = {.lex_state = 85}, [3892] = {.lex_state = 0}, [3893] = {.lex_state = 0}, [3894] = {.lex_state = 0}, [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 0}, + [3896] = {.lex_state = 94}, [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 94}, - [3899] = {.lex_state = 89}, + [3898] = {.lex_state = 0}, + [3899] = {.lex_state = 0}, [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 69}, - [3902] = {.lex_state = 85}, + [3901] = {.lex_state = 89}, + [3902] = {.lex_state = 0}, [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 94}, - [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 89}, + [3904] = {.lex_state = 0}, + [3905] = {.lex_state = 89}, + [3906] = {.lex_state = 85}, [3907] = {.lex_state = 0}, - [3908] = {.lex_state = 89}, - [3909] = {.lex_state = 94}, - [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 85}, - [3912] = {.lex_state = 85}, - [3913] = {.lex_state = 85}, - [3914] = {.lex_state = 94}, - [3915] = {.lex_state = 258}, + [3908] = {.lex_state = 94}, + [3909] = {.lex_state = 89}, + [3910] = {.lex_state = 94}, + [3911] = {.lex_state = 258}, + [3912] = {.lex_state = 89}, + [3913] = {.lex_state = 94}, + [3914] = {.lex_state = 0}, + [3915] = {.lex_state = 81}, [3916] = {.lex_state = 0}, [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 85}, - [3919] = {.lex_state = 0}, + [3918] = {.lex_state = 0}, + [3919] = {.lex_state = 85}, [3920] = {.lex_state = 0}, [3921] = {.lex_state = 0}, [3922] = {.lex_state = 0}, @@ -21781,231 +21823,231 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3925] = {.lex_state = 0}, [3926] = {.lex_state = 0}, [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 258}, + [3928] = {.lex_state = 0}, [3929] = {.lex_state = 0}, - [3930] = {.lex_state = 89}, - [3931] = {.lex_state = 81}, - [3932] = {.lex_state = 0}, - [3933] = {.lex_state = 89}, + [3930] = {.lex_state = 0}, + [3931] = {.lex_state = 94}, + [3932] = {.lex_state = 89}, + [3933] = {.lex_state = 85}, [3934] = {.lex_state = 94}, - [3935] = {.lex_state = 81}, + [3935] = {.lex_state = 89}, [3936] = {.lex_state = 0}, - [3937] = {.lex_state = 85}, - [3938] = {.lex_state = 0}, - [3939] = {.lex_state = 89}, - [3940] = {.lex_state = 94}, - [3941] = {.lex_state = 0}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 0}, + [3937] = {.lex_state = 0}, + [3938] = {.lex_state = 85}, + [3939] = {.lex_state = 0}, + [3940] = {.lex_state = 0}, + [3941] = {.lex_state = 89}, + [3942] = {.lex_state = 94}, + [3943] = {.lex_state = 85}, [3944] = {.lex_state = 0}, [3945] = {.lex_state = 0}, [3946] = {.lex_state = 0}, [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 0}, + [3948] = {.lex_state = 85}, [3949] = {.lex_state = 94}, [3950] = {.lex_state = 0}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 0}, - [3953] = {.lex_state = 85}, + [3951] = {.lex_state = 89}, + [3952] = {.lex_state = 94}, + [3953] = {.lex_state = 0}, [3954] = {.lex_state = 0}, [3955] = {.lex_state = 0}, [3956] = {.lex_state = 89}, [3957] = {.lex_state = 0}, [3958] = {.lex_state = 0}, - [3959] = {.lex_state = 85}, + [3959] = {.lex_state = 0}, [3960] = {.lex_state = 0}, - [3961] = {.lex_state = 0}, + [3961] = {.lex_state = 69}, [3962] = {.lex_state = 0}, [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 85}, + [3964] = {.lex_state = 0}, [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 89}, + [3966] = {.lex_state = 94}, + [3967] = {.lex_state = 0}, [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 0}, + [3969] = {.lex_state = 85}, + [3970] = {.lex_state = 89}, + [3971] = {.lex_state = 89}, [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 69}, + [3973] = {.lex_state = 94}, [3974] = {.lex_state = 85}, - [3975] = {.lex_state = 89}, - [3976] = {.lex_state = 94}, - [3977] = {.lex_state = 94}, + [3975] = {.lex_state = 94}, + [3976] = {.lex_state = 89}, + [3977] = {.lex_state = 0}, [3978] = {.lex_state = 0}, - [3979] = {.lex_state = 81}, + [3979] = {.lex_state = 0}, [3980] = {.lex_state = 0}, [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 0}, - [3983] = {.lex_state = 94}, + [3982] = {.lex_state = 85}, + [3983] = {.lex_state = 0}, [3984] = {.lex_state = 0}, [3985] = {.lex_state = 85}, - [3986] = {.lex_state = 94}, - [3987] = {.lex_state = 89}, + [3986] = {.lex_state = 69}, + [3987] = {.lex_state = 0}, [3988] = {.lex_state = 0}, [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0}, + [3990] = {.lex_state = 258}, [3991] = {.lex_state = 0}, [3992] = {.lex_state = 0}, [3993] = {.lex_state = 0}, [3994] = {.lex_state = 0}, [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 0}, - [3999] = {.lex_state = 85}, + [3996] = {.lex_state = 89}, + [3997] = {.lex_state = 89}, + [3998] = {.lex_state = 94}, + [3999] = {.lex_state = 94}, [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 94}, - [4002] = {.lex_state = 89}, + [4001] = {.lex_state = 69}, + [4002] = {.lex_state = 0}, [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 85}, - [4005] = {.lex_state = 89}, - [4006] = {.lex_state = 94}, + [4004] = {.lex_state = 0}, + [4005] = {.lex_state = 0}, + [4006] = {.lex_state = 0}, [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 89}, - [4010] = {.lex_state = 94}, - [4011] = {.lex_state = 89}, - [4012] = {.lex_state = 85}, + [4008] = {.lex_state = 85}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 0}, + [4011] = {.lex_state = 85}, + [4012] = {.lex_state = 0}, [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 0}, - [4015] = {.lex_state = 0}, + [4014] = {.lex_state = 89}, + [4015] = {.lex_state = 94}, [4016] = {.lex_state = 0}, [4017] = {.lex_state = 0}, [4018] = {.lex_state = 0}, [4019] = {.lex_state = 0}, [4020] = {.lex_state = 0}, [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 89}, + [4022] = {.lex_state = 0}, [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 94}, - [4025] = {.lex_state = 0}, + [4024] = {.lex_state = 0}, + [4025] = {.lex_state = 81}, [4026] = {.lex_state = 0}, [4027] = {.lex_state = 0}, [4028] = {.lex_state = 0}, - [4029] = {.lex_state = 85}, + [4029] = {.lex_state = 0}, [4030] = {.lex_state = 0}, [4031] = {.lex_state = 0}, - [4032] = {.lex_state = 85}, + [4032] = {.lex_state = 0}, [4033] = {.lex_state = 0}, - [4034] = {.lex_state = 89}, - [4035] = {.lex_state = 94}, + [4034] = {.lex_state = 0}, + [4035] = {.lex_state = 0}, [4036] = {.lex_state = 0}, [4037] = {.lex_state = 0}, - [4038] = {.lex_state = 89}, + [4038] = {.lex_state = 0}, [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 0}, + [4040] = {.lex_state = 94}, [4041] = {.lex_state = 89}, - [4042] = {.lex_state = 94}, - [4043] = {.lex_state = 94}, - [4044] = {.lex_state = 0}, + [4042] = {.lex_state = 85}, + [4043] = {.lex_state = 89}, + [4044] = {.lex_state = 94}, [4045] = {.lex_state = 0}, [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 0}, - [4048] = {.lex_state = 0}, + [4047] = {.lex_state = 85}, + [4048] = {.lex_state = 85}, [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 89}, - [4052] = {.lex_state = 0}, + [4050] = {.lex_state = 89}, + [4051] = {.lex_state = 94}, + [4052] = {.lex_state = 85}, [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 0}, + [4054] = {.lex_state = 94}, [4055] = {.lex_state = 0}, [4056] = {.lex_state = 0}, [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 0}, - [4059] = {.lex_state = 0}, + [4058] = {.lex_state = 89}, + [4059] = {.lex_state = 89}, [4060] = {.lex_state = 94}, [4061] = {.lex_state = 0}, [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 89}, - [4064] = {.lex_state = 0}, + [4063] = {.lex_state = 94}, + [4064] = {.lex_state = 89}, [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 94}, - [4067] = {.lex_state = 85}, - [4068] = {.lex_state = 94}, - [4069] = {.lex_state = 89}, + [4066] = {.lex_state = 0}, + [4067] = {.lex_state = 0}, + [4068] = {.lex_state = 0}, + [4069] = {.lex_state = 0}, [4070] = {.lex_state = 0}, [4071] = {.lex_state = 0}, [4072] = {.lex_state = 0}, [4073] = {.lex_state = 89}, [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 0}, + [4075] = {.lex_state = 94}, [4076] = {.lex_state = 0}, [4077] = {.lex_state = 0}, [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 94}, - [4080] = {.lex_state = 85}, + [4079] = {.lex_state = 0}, + [4080] = {.lex_state = 0}, [4081] = {.lex_state = 0}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 85}, + [4082] = {.lex_state = 94}, + [4083] = {.lex_state = 89}, [4084] = {.lex_state = 0}, - [4085] = {.lex_state = 0}, + [4085] = {.lex_state = 81}, [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 69}, - [4088] = {.lex_state = 85}, - [4089] = {.lex_state = 258}, + [4087] = {.lex_state = 0}, + [4088] = {.lex_state = 0}, + [4089] = {.lex_state = 0}, [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 258}, + [4091] = {.lex_state = 0}, [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 85}, + [4093] = {.lex_state = 94}, [4094] = {.lex_state = 0}, - [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, + [4095] = {.lex_state = 94}, + [4096] = {.lex_state = 89}, [4097] = {.lex_state = 0}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 85}, - [4100] = {.lex_state = 0}, - [4101] = {.lex_state = 0}, + [4098] = {.lex_state = 85}, + [4099] = {.lex_state = 0}, + [4100] = {.lex_state = 89}, + [4101] = {.lex_state = 85}, [4102] = {.lex_state = 0}, - [4103] = {.lex_state = 0}, + [4103] = {.lex_state = 85}, [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 85}, - [4106] = {.lex_state = 0}, - [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 0}, + [4105] = {.lex_state = 0}, + [4106] = {.lex_state = 258}, + [4107] = {.lex_state = 85}, + [4108] = {.lex_state = 85}, [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 0}, + [4111] = {.lex_state = 85}, [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 85}, + [4113] = {.lex_state = 0}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 85}, + [4117] = {.lex_state = 85}, + [4118] = {.lex_state = 0}, [4119] = {.lex_state = 0}, [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 69}, + [4121] = {.lex_state = 81}, + [4122] = {.lex_state = 0}, [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 0}, + [4124] = {.lex_state = 258}, [4125] = {.lex_state = 0}, [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 0}, + [4127] = {.lex_state = 81}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, [4130] = {.lex_state = 0}, [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 0}, + [4132] = {.lex_state = 85}, [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 85}, + [4134] = {.lex_state = 0}, [4135] = {.lex_state = 0}, [4136] = {.lex_state = 0}, - [4137] = {.lex_state = 0}, + [4137] = {.lex_state = 85}, [4138] = {.lex_state = 0}, [4139] = {.lex_state = 0}, [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, - [4142] = {.lex_state = 0}, - [4143] = {.lex_state = 0}, + [4142] = {.lex_state = 85}, + [4143] = {.lex_state = 85}, [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 85}, + [4145] = {.lex_state = 0}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, [4148] = {.lex_state = 0}, [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, - [4152] = {.lex_state = 0}, + [4151] = {.lex_state = 85}, + [4152] = {.lex_state = 85}, [4153] = {.lex_state = 0}, [4154] = {.lex_state = 0}, [4155] = {.lex_state = 0}, @@ -22014,12 +22056,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4158] = {.lex_state = 0}, [4159] = {.lex_state = 0}, [4160] = {.lex_state = 0}, - [4161] = {.lex_state = 85}, + [4161] = {.lex_state = 0}, [4162] = {.lex_state = 0}, [4163] = {.lex_state = 0}, [4164] = {.lex_state = 0}, [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 85}, + [4166] = {.lex_state = 0}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 85}, [4169] = {.lex_state = 0}, @@ -22029,8 +22071,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4173] = {.lex_state = 0}, [4174] = {.lex_state = 0}, [4175] = {.lex_state = 0}, - [4176] = {.lex_state = 0}, - [4177] = {.lex_state = 0}, + [4176] = {.lex_state = 85}, + [4177] = {.lex_state = 85}, [4178] = {.lex_state = 0}, [4179] = {.lex_state = 0}, [4180] = {.lex_state = 0}, @@ -22043,8 +22085,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4187] = {.lex_state = 0}, [4188] = {.lex_state = 85}, [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 85}, + [4190] = {.lex_state = 85}, + [4191] = {.lex_state = 0}, [4192] = {.lex_state = 0}, [4193] = {.lex_state = 0}, [4194] = {.lex_state = 0}, @@ -22053,7 +22095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 85}, + [4200] = {.lex_state = 0}, [4201] = {.lex_state = 0}, [4202] = {.lex_state = 0}, [4203] = {.lex_state = 0}, @@ -22061,121 +22103,121 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4205] = {.lex_state = 0}, [4206] = {.lex_state = 0}, [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 85}, + [4208] = {.lex_state = 0}, [4209] = {.lex_state = 0}, [4210] = {.lex_state = 0}, [4211] = {.lex_state = 0}, [4212] = {.lex_state = 0}, [4213] = {.lex_state = 0}, - [4214] = {.lex_state = 85}, + [4214] = {.lex_state = 0}, [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 85}, + [4216] = {.lex_state = 0}, [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 85}, + [4218] = {.lex_state = 0}, [4219] = {.lex_state = 0}, [4220] = {.lex_state = 0}, - [4221] = {.lex_state = 0}, + [4221] = {.lex_state = 85}, [4222] = {.lex_state = 0}, [4223] = {.lex_state = 0}, [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 85}, + [4225] = {.lex_state = 0}, [4226] = {.lex_state = 0}, [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, [4229] = {.lex_state = 0}, [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 0}, + [4231] = {.lex_state = 85}, [4232] = {.lex_state = 0}, - [4233] = {.lex_state = 85}, + [4233] = {.lex_state = 0}, [4234] = {.lex_state = 0}, [4235] = {.lex_state = 0}, [4236] = {.lex_state = 0}, [4237] = {.lex_state = 0}, [4238] = {.lex_state = 0}, [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 0}, + [4240] = {.lex_state = 85}, [4241] = {.lex_state = 0}, [4242] = {.lex_state = 0}, - [4243] = {.lex_state = 0}, + [4243] = {.lex_state = 85}, [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 85}, + [4246] = {.lex_state = 0}, [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 85}, - [4251] = {.lex_state = 0}, + [4250] = {.lex_state = 0}, + [4251] = {.lex_state = 85}, [4252] = {.lex_state = 0}, [4253] = {.lex_state = 0}, [4254] = {.lex_state = 0}, [4255] = {.lex_state = 0}, [4256] = {.lex_state = 0}, [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 69}, + [4258] = {.lex_state = 85}, [4259] = {.lex_state = 0}, [4260] = {.lex_state = 0}, [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 85}, + [4262] = {.lex_state = 0}, [4263] = {.lex_state = 0}, [4264] = {.lex_state = 85}, - [4265] = {.lex_state = 0}, + [4265] = {.lex_state = 85}, [4266] = {.lex_state = 0}, [4267] = {.lex_state = 0}, [4268] = {.lex_state = 0}, [4269] = {.lex_state = 0}, [4270] = {.lex_state = 85}, - [4271] = {.lex_state = 85}, + [4271] = {.lex_state = 0}, [4272] = {.lex_state = 85}, [4273] = {.lex_state = 0}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 85}, - [4276] = {.lex_state = 0}, + [4274] = {.lex_state = 85}, + [4275] = {.lex_state = 0}, + [4276] = {.lex_state = 85}, [4277] = {.lex_state = 0}, [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 85}, + [4279] = {.lex_state = 0}, [4280] = {.lex_state = 0}, [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 85}, + [4282] = {.lex_state = 0}, [4283] = {.lex_state = 0}, [4284] = {.lex_state = 0}, [4285] = {.lex_state = 0}, [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 0}, + [4287] = {.lex_state = 85}, [4288] = {.lex_state = 0}, [4289] = {.lex_state = 0}, [4290] = {.lex_state = 0}, [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 85}, + [4292] = {.lex_state = 0}, [4293] = {.lex_state = 0}, [4294] = {.lex_state = 0}, - [4295] = {.lex_state = 0}, + [4295] = {.lex_state = 85}, [4296] = {.lex_state = 0}, [4297] = {.lex_state = 0}, [4298] = {.lex_state = 0}, [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 85}, - [4301] = {.lex_state = 85}, + [4300] = {.lex_state = 0}, + [4301] = {.lex_state = 0}, [4302] = {.lex_state = 0}, [4303] = {.lex_state = 0}, [4304] = {.lex_state = 0}, - [4305] = {.lex_state = 0}, + [4305] = {.lex_state = 69}, [4306] = {.lex_state = 0}, [4307] = {.lex_state = 0}, [4308] = {.lex_state = 0}, [4309] = {.lex_state = 0}, [4310] = {.lex_state = 0}, - [4311] = {.lex_state = 0}, + [4311] = {.lex_state = 85}, [4312] = {.lex_state = 0}, [4313] = {.lex_state = 0}, [4314] = {.lex_state = 0}, [4315] = {.lex_state = 0}, - [4316] = {.lex_state = 0}, + [4316] = {.lex_state = 85}, [4317] = {.lex_state = 0}, [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 85}, - [4320] = {.lex_state = 85}, - [4321] = {.lex_state = 0}, - [4322] = {.lex_state = 0}, + [4319] = {.lex_state = 0}, + [4320] = {.lex_state = 0}, + [4321] = {.lex_state = 69}, + [4322] = {.lex_state = 85}, [4323] = {.lex_state = 0}, [4324] = {.lex_state = 0}, [4325] = {.lex_state = 0}, @@ -22184,17 +22226,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4328] = {.lex_state = 0}, [4329] = {.lex_state = 0}, [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 0}, + [4331] = {.lex_state = 85}, [4332] = {.lex_state = 0}, [4333] = {.lex_state = 0}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, [4336] = {.lex_state = 0}, - [4337] = {.lex_state = 0}, + [4337] = {.lex_state = 69}, [4338] = {.lex_state = 0}, [4339] = {.lex_state = 0}, [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, + [4341] = {.lex_state = 85}, [4342] = {.lex_state = 0}, [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, @@ -22202,7 +22244,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4346] = {.lex_state = 0}, [4347] = {.lex_state = 0}, [4348] = {.lex_state = 0}, - [4349] = {.lex_state = 85}, + [4349] = {.lex_state = 0}, [4350] = {.lex_state = 0}, [4351] = {.lex_state = 0}, [4352] = {.lex_state = 0}, @@ -22213,36 +22255,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4357] = {.lex_state = 0}, [4358] = {.lex_state = 0}, [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 85}, - [4361] = {.lex_state = 0}, + [4360] = {.lex_state = 0}, + [4361] = {.lex_state = 85}, [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 69}, + [4363] = {.lex_state = 0}, [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, [4366] = {.lex_state = 0}, - [4367] = {.lex_state = 0}, + [4367] = {.lex_state = 85}, [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 0}, - [4371] = {.lex_state = 85}, + [4370] = {.lex_state = 85}, + [4371] = {.lex_state = 0}, [4372] = {.lex_state = 0}, [4373] = {.lex_state = 0}, [4374] = {.lex_state = 0}, [4375] = {.lex_state = 0}, [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 85}, + [4377] = {.lex_state = 85}, + [4378] = {.lex_state = 0}, [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, [4381] = {.lex_state = 0}, [4382] = {.lex_state = 0}, [4383] = {.lex_state = 85}, - [4384] = {.lex_state = 0}, + [4384] = {.lex_state = 85}, [4385] = {.lex_state = 0}, [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 0}, - [4389] = {.lex_state = 85}, + [4387] = {.lex_state = 85}, + [4388] = {.lex_state = 85}, + [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, [4391] = {.lex_state = 0}, [4392] = {.lex_state = 85}, @@ -22251,7 +22293,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4395] = {.lex_state = 0}, [4396] = {.lex_state = 0}, [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, + [4398] = {.lex_state = 85}, [4399] = {.lex_state = 0}, [4400] = {.lex_state = 0}, [4401] = {.lex_state = 0}, @@ -22259,12 +22301,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4403] = {.lex_state = 0}, [4404] = {.lex_state = 0}, [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 85}, + [4406] = {.lex_state = 0}, [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 85}, - [4409] = {.lex_state = 85}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, + [4408] = {.lex_state = 0}, + [4409] = {.lex_state = 0}, + [4410] = {.lex_state = 85}, + [4411] = {.lex_state = 85}, [4412] = {.lex_state = 0}, [4413] = {.lex_state = 0}, [4414] = {.lex_state = 0}, @@ -22275,9 +22317,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4419] = {.lex_state = 0}, [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 159}, + [4422] = {.lex_state = 0}, [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 159}, + [4424] = {.lex_state = 0}, [4425] = {.lex_state = 0}, [4426] = {.lex_state = 0}, [4427] = {.lex_state = 0}, @@ -22285,51 +22327,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4429] = {.lex_state = 0}, [4430] = {.lex_state = 0}, [4431] = {.lex_state = 0}, - [4432] = {.lex_state = 159}, + [4432] = {.lex_state = 0}, [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 159}, - [4435] = {.lex_state = 0}, + [4434] = {.lex_state = 0}, + [4435] = {.lex_state = 85}, [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 85}, + [4437] = {.lex_state = 0}, [4438] = {.lex_state = 0}, [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 85}, + [4440] = {.lex_state = 0}, [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, [4443] = {.lex_state = 0}, [4444] = {.lex_state = 0}, [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 85}, + [4446] = {.lex_state = 0}, [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, + [4448] = {.lex_state = 85}, [4449] = {.lex_state = 0}, [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 0}, + [4451] = {.lex_state = 159}, [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 159}, + [4453] = {.lex_state = 41}, [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 159}, + [4455] = {.lex_state = 0}, [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, + [4457] = {.lex_state = 85}, [4458] = {.lex_state = 0}, [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 41}, + [4460] = {.lex_state = 159}, [4461] = {.lex_state = 0}, [4462] = {.lex_state = 0}, [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 85}, - [4465] = {.lex_state = 85}, + [4464] = {.lex_state = 159}, + [4465] = {.lex_state = 0}, [4466] = {.lex_state = 0}, [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 85}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 85}, + [4468] = {.lex_state = 0}, + [4469] = {.lex_state = 85}, + [4470] = {.lex_state = 0}, [4471] = {.lex_state = 0}, [4472] = {.lex_state = 0}, [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 159}, + [4474] = {.lex_state = 85}, [4475] = {.lex_state = 0}, - [4476] = {.lex_state = 41}, + [4476] = {.lex_state = 0}, [4477] = {.lex_state = 0}, [4478] = {.lex_state = 0}, [4479] = {.lex_state = 0}, @@ -22338,82 +22380,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4482] = {.lex_state = 0}, [4483] = {.lex_state = 0}, [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 41}, + [4485] = {.lex_state = 159}, [4486] = {.lex_state = 0}, [4487] = {.lex_state = 0}, [4488] = {.lex_state = 0}, [4489] = {.lex_state = 0}, [4490] = {.lex_state = 0}, [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 0}, + [4492] = {.lex_state = 85}, [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 159}, + [4495] = {.lex_state = 0}, [4496] = {.lex_state = 0}, [4497] = {.lex_state = 0}, [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 85}, + [4499] = {.lex_state = 159}, [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 85}, + [4501] = {.lex_state = 0}, [4502] = {.lex_state = 0}, [4503] = {.lex_state = 0}, [4504] = {.lex_state = 0}, [4505] = {.lex_state = 0}, - [4506] = {.lex_state = 0}, + [4506] = {.lex_state = 159}, [4507] = {.lex_state = 0}, [4508] = {.lex_state = 0}, [4509] = {.lex_state = 0}, [4510] = {.lex_state = 0}, [4511] = {.lex_state = 0}, [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 0}, + [4513] = {.lex_state = 85}, [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 159}, + [4516] = {.lex_state = 0}, [4517] = {.lex_state = 0}, [4518] = {.lex_state = 0}, [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 85}, + [4520] = {.lex_state = 0}, [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 160}, + [4522] = {.lex_state = 0}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 0}, [4525] = {.lex_state = 0}, [4526] = {.lex_state = 0}, - [4527] = {.lex_state = 0}, + [4527] = {.lex_state = 159}, [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, + [4529] = {.lex_state = 85}, [4530] = {.lex_state = 0}, [4531] = {.lex_state = 0}, - [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 85}, + [4532] = {.lex_state = 85}, + [4533] = {.lex_state = 85}, + [4534] = {.lex_state = 0}, [4535] = {.lex_state = 0}, [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 159}, + [4537] = {.lex_state = 85}, [4538] = {.lex_state = 0}, [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 0}, + [4540] = {.lex_state = 159}, [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 0}, + [4542] = {.lex_state = 85}, [4543] = {.lex_state = 0}, [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 85}, + [4545] = {.lex_state = 0}, [4546] = {.lex_state = 0}, [4547] = {.lex_state = 0}, - [4548] = {.lex_state = 0}, - [4549] = {.lex_state = 0}, - [4550] = {.lex_state = 0}, + [4548] = {.lex_state = 159}, + [4549] = {.lex_state = 85}, + [4550] = {.lex_state = 85}, [4551] = {.lex_state = 0}, [4552] = {.lex_state = 0}, [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 0}, + [4554] = {.lex_state = 85}, [4555] = {.lex_state = 0}, [4556] = {.lex_state = 0}, [4557] = {.lex_state = 0}, - [4558] = {.lex_state = 159}, + [4558] = {.lex_state = 0}, [4559] = {.lex_state = 0}, - [4560] = {.lex_state = 0}, + [4560] = {.lex_state = 85}, [4561] = {.lex_state = 0}, [4562] = {.lex_state = 0}, [4563] = {.lex_state = 0}, @@ -22422,28 +22464,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4566] = {.lex_state = 0}, [4567] = {.lex_state = 0}, [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 0}, + [4569] = {.lex_state = 159}, [4570] = {.lex_state = 0}, [4571] = {.lex_state = 0}, [4572] = {.lex_state = 0}, [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 159}, + [4574] = {.lex_state = 0}, [4575] = {.lex_state = 0}, [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 85}, + [4577] = {.lex_state = 0}, [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 159}, + [4579] = {.lex_state = 0}, [4580] = {.lex_state = 0}, [4581] = {.lex_state = 0}, [4582] = {.lex_state = 0}, [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 85}, - [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 85}, + [4584] = {.lex_state = 0}, + [4585] = {.lex_state = 159}, + [4586] = {.lex_state = 0}, [4587] = {.lex_state = 0}, [4588] = {.lex_state = 0}, [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 0}, + [4590] = {.lex_state = 159}, [4591] = {.lex_state = 0}, [4592] = {.lex_state = 0}, [4593] = {.lex_state = 0}, @@ -22458,62 +22500,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4602] = {.lex_state = 0}, [4603] = {.lex_state = 0}, [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 85}, - [4606] = {.lex_state = 85}, - [4607] = {.lex_state = 85}, - [4608] = {.lex_state = 0}, + [4605] = {.lex_state = 0}, + [4606] = {.lex_state = 0}, + [4607] = {.lex_state = 0}, + [4608] = {.lex_state = 69}, [4609] = {.lex_state = 0}, - [4610] = {.lex_state = 85}, - [4611] = {.lex_state = 85}, + [4610] = {.lex_state = 0}, + [4611] = {.lex_state = 0}, [4612] = {.lex_state = 85}, [4613] = {.lex_state = 0}, - [4614] = {.lex_state = 85}, + [4614] = {.lex_state = 0}, [4615] = {.lex_state = 0}, [4616] = {.lex_state = 0}, [4617] = {.lex_state = 0}, - [4618] = {.lex_state = 0}, - [4619] = {.lex_state = 85}, + [4618] = {.lex_state = 85}, + [4619] = {.lex_state = 159}, [4620] = {.lex_state = 0}, [4621] = {.lex_state = 0}, - [4622] = {.lex_state = 0}, + [4622] = {.lex_state = 85}, [4623] = {.lex_state = 0}, [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 85}, + [4625] = {.lex_state = 0}, [4626] = {.lex_state = 0}, [4627] = {.lex_state = 0}, [4628] = {.lex_state = 0}, [4629] = {.lex_state = 0}, [4630] = {.lex_state = 0}, - [4631] = {.lex_state = 0}, + [4631] = {.lex_state = 159}, [4632] = {.lex_state = 0}, [4633] = {.lex_state = 0}, - [4634] = {.lex_state = 0}, + [4634] = {.lex_state = 85}, [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 69}, + [4636] = {.lex_state = 0}, [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 85}, - [4639] = {.lex_state = 0}, + [4638] = {.lex_state = 0}, + [4639] = {.lex_state = 85}, [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 159}, + [4641] = {.lex_state = 0}, [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, + [4643] = {.lex_state = 85}, [4644] = {.lex_state = 0}, [4645] = {.lex_state = 0}, [4646] = {.lex_state = 0}, [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 85}, + [4648] = {.lex_state = 0}, [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 0}, + [4650] = {.lex_state = 85}, [4651] = {.lex_state = 0}, [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 0}, + [4653] = {.lex_state = 41}, + [4654] = {.lex_state = 85}, + [4655] = {.lex_state = 85}, [4656] = {.lex_state = 0}, [4657] = {.lex_state = 0}, [4658] = {.lex_state = 0}, [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 85}, + [4660] = {.lex_state = 0}, [4661] = {.lex_state = 0}, [4662] = {.lex_state = 0}, [4663] = {.lex_state = 0}, @@ -22530,24 +22572,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4674] = {.lex_state = 0}, [4675] = {.lex_state = 0}, [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 85}, + [4677] = {.lex_state = 0}, [4678] = {.lex_state = 0}, [4679] = {.lex_state = 0}, [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 85}, + [4681] = {.lex_state = 0}, [4682] = {.lex_state = 0}, [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 0}, + [4684] = {.lex_state = 85}, [4685] = {.lex_state = 0}, - [4686] = {.lex_state = 0}, + [4686] = {.lex_state = 85}, [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, + [4688] = {.lex_state = 85}, [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, + [4690] = {.lex_state = 85}, [4691] = {.lex_state = 0}, [4692] = {.lex_state = 0}, [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, + [4694] = {.lex_state = 41}, [4695] = {.lex_state = 0}, [4696] = {.lex_state = 0}, [4697] = {.lex_state = 0}, @@ -22563,35 +22605,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4707] = {.lex_state = 0}, [4708] = {.lex_state = 0}, [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 85}, + [4710] = {.lex_state = 0}, [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 160}, + [4712] = {.lex_state = 0}, [4713] = {.lex_state = 0}, [4714] = {.lex_state = 0}, [4715] = {.lex_state = 0}, - [4716] = {.lex_state = 85}, + [4716] = {.lex_state = 0}, [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 85}, + [4718] = {.lex_state = 0}, [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 85}, + [4720] = {.lex_state = 0}, [4721] = {.lex_state = 0}, [4722] = {.lex_state = 0}, [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 0}, + [4724] = {.lex_state = 85}, [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 0}, + [4726] = {.lex_state = 160}, [4727] = {.lex_state = 0}, [4728] = {.lex_state = 85}, [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 85}, + [4730] = {.lex_state = 0}, [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 85}, + [4732] = {.lex_state = 0}, [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 85}, + [4734] = {.lex_state = 160}, [4735] = {.lex_state = 0}, [4736] = {.lex_state = 0}, [4737] = {.lex_state = 0}, [4738] = {.lex_state = 0}, + [4739] = {.lex_state = 0}, + [4740] = {.lex_state = 85}, + [4741] = {.lex_state = 0}, + [4742] = {.lex_state = 85}, + [4743] = {.lex_state = 0}, + [4744] = {.lex_state = 0}, + [4745] = {.lex_state = 0}, + [4746] = {.lex_state = 0}, + [4747] = {.lex_state = 0}, + [4748] = {.lex_state = 0}, + [4749] = {.lex_state = 0}, + [4750] = {.lex_state = 0}, + [4751] = {.lex_state = 0}, + [4752] = {.lex_state = 85}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 85}, + [4755] = {.lex_state = 0}, + [4756] = {.lex_state = 0}, + [4757] = {.lex_state = 0}, + [4758] = {.lex_state = 85}, + [4759] = {.lex_state = 0}, + [4760] = {.lex_state = 0}, + [4761] = {.lex_state = 0}, + [4762] = {.lex_state = 0}, + [4763] = {.lex_state = 0}, + [4764] = {.lex_state = 85}, + [4765] = {.lex_state = 0}, + [4766] = {.lex_state = 0}, + [4767] = {.lex_state = 0}, + [4768] = {.lex_state = 0}, + [4769] = {.lex_state = 0}, + [4770] = {.lex_state = 0}, + [4771] = {.lex_state = 85}, + [4772] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -22727,110 +22803,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4696), + [sym_source_file] = STATE(4709), [sym_module_clause] = STATE(3), [sym_import_list] = STATE(6), - [sym_import_declaration] = STATE(1559), - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3448), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_import_list_repeat1] = STATE(1559), - [aux_sym_attributes_repeat1] = STATE(3416), + [sym_import_declaration] = STATE(1533), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3479), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_import_list_repeat1] = STATE(1533), + [aux_sym_attributes_repeat1] = STATE(3448), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_shebang] = ACTIONS(9), @@ -22904,108 +22980,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(5), - [sym_import_declaration] = STATE(1559), - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3448), - [sym_attribute] = STATE(3377), + [sym_import_list] = STATE(11), + [sym_import_declaration] = STATE(1533), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3479), + [sym_attribute] = STATE(3424), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_import_list_repeat1] = STATE(1559), - [aux_sym_attributes_repeat1] = STATE(3416), + [aux_sym_import_list_repeat1] = STATE(1533), + [aux_sym_attributes_repeat1] = STATE(3448), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -23077,108 +23153,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [3] = { - [sym_import_list] = STATE(5), - [sym_import_declaration] = STATE(1559), - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), + [sym_import_list] = STATE(11), + [sym_import_declaration] = STATE(1533), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_import_list_repeat1] = STATE(1559), - [aux_sym_attributes_repeat1] = STATE(3416), + [aux_sym_import_list_repeat1] = STATE(1533), + [aux_sym_attributes_repeat1] = STATE(3448), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -23249,108 +23325,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [4] = { - [sym_import_list] = STATE(11), - [sym_import_declaration] = STATE(1559), - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_import_list_repeat1] = STATE(1559), - [aux_sym_attributes_repeat1] = STATE(3416), + [sym_import_list] = STATE(12), + [sym_import_declaration] = STATE(1533), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_import_list_repeat1] = STATE(1533), + [aux_sym_attributes_repeat1] = STATE(3448), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -23421,106 +23497,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [5] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_attributes_repeat1] = STATE(3416), - [ts_builtin_sym_end] = ACTIONS(129), + [aux_sym_attributes_repeat1] = STATE(3448), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -23589,105 +23665,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [6] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_attributes_repeat1] = STATE(3416), + [aux_sym_attributes_repeat1] = STATE(3448), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -23757,106 +23833,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [7] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3416), - [ts_builtin_sym_end] = ACTIONS(125), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3448), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -23925,106 +24001,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [8] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3416), - [ts_builtin_sym_end] = ACTIONS(131), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3448), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -24093,106 +24169,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [9] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3416), - [ts_builtin_sym_end] = ACTIONS(133), + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3448), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym___global] = ACTIONS(152), + [anon_sym_type] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(164), + [anon_sym_struct] = ACTIONS(167), + [anon_sym_union] = ACTIONS(170), + [anon_sym_pub] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(176), + [anon_sym_enum] = ACTIONS(179), + [anon_sym_interface] = ACTIONS(182), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_go] = ACTIONS(191), + [anon_sym_spawn] = ACTIONS(194), + [anon_sym_json_DOTdecode] = ACTIONS(197), + [anon_sym_LBRACK2] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(161), + [anon_sym_CARET] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_LT_DASH] = ACTIONS(206), + [sym_none] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_nil] = ACTIONS(209), + [anon_sym_if] = ACTIONS(212), + [anon_sym_DOLLARif] = ACTIONS(215), + [anon_sym_match] = ACTIONS(218), + [anon_sym_select] = ACTIONS(221), + [anon_sym_lock] = ACTIONS(224), + [anon_sym_rlock] = ACTIONS(224), + [anon_sym_unsafe] = ACTIONS(227), + [anon_sym_sql] = ACTIONS(230), + [sym_int_literal] = ACTIONS(209), + [sym_float_literal] = ACTIONS(233), + [sym_rune_literal] = ACTIONS(233), + [anon_sym_AT] = ACTIONS(236), + [anon_sym_shared] = ACTIONS(239), + [anon_sym_map_LBRACK] = ACTIONS(242), + [anon_sym_chan] = ACTIONS(245), + [anon_sym_thread] = ACTIONS(248), + [anon_sym_atomic] = ACTIONS(251), + [anon_sym_assert] = ACTIONS(254), + [anon_sym_defer] = ACTIONS(257), + [anon_sym_goto] = ACTIONS(260), + [anon_sym_break] = ACTIONS(263), + [anon_sym_continue] = ACTIONS(266), + [anon_sym_return] = ACTIONS(269), + [anon_sym_DOLLARfor] = ACTIONS(272), + [anon_sym_for] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(278), + [anon_sym_asm] = ACTIONS(281), + [anon_sym_AT_LBRACK] = ACTIONS(284), + [sym___double_quote] = ACTIONS(287), + [sym___single_quote] = ACTIONS(290), + [sym___c_double_quote] = ACTIONS(293), + [sym___c_single_quote] = ACTIONS(296), + [sym___r_double_quote] = ACTIONS(299), + [sym___r_single_quote] = ACTIONS(302), + }, + [10] = { + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3448), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -24260,106 +24504,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [10] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3416), + [11] = { + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_attributes_repeat1] = STATE(3448), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -24428,107 +24672,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [11] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_attributes_repeat1] = STATE(3416), - [ts_builtin_sym_end] = ACTIONS(133), + [12] = { + [sym_const_declaration] = STATE(1562), + [sym_global_var_declaration] = STATE(1562), + [sym_type_declaration] = STATE(1562), + [sym_function_declaration] = STATE(1562), + [sym_static_method_declaration] = STATE(1562), + [sym_struct_declaration] = STATE(1562), + [sym_enum_declaration] = STATE(1562), + [sym_interface_declaration] = STATE(1562), + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_visibility_modifiers] = STATE(3567), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1562), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_attributes] = STATE(3490), + [sym_attribute] = STATE(3424), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3448), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -24596,265 +24840,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [12] = { - [sym_const_declaration] = STATE(1566), - [sym_global_var_declaration] = STATE(1566), - [sym_type_declaration] = STATE(1566), - [sym_function_declaration] = STATE(1566), - [sym_static_method_declaration] = STATE(1566), - [sym_struct_declaration] = STATE(1566), - [sym_enum_declaration] = STATE(1566), - [sym_interface_declaration] = STATE(1566), - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_visibility_modifiers] = STATE(3540), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1566), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_attributes] = STATE(3450), - [sym_attribute] = STATE(3377), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3416), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(137), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym___global] = ACTIONS(152), - [anon_sym_type] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(164), - [anon_sym_struct] = ACTIONS(167), - [anon_sym_union] = ACTIONS(170), - [anon_sym_pub] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(176), - [anon_sym_enum] = ACTIONS(179), - [anon_sym_interface] = ACTIONS(182), - [anon_sym_QMARK] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(188), - [anon_sym_go] = ACTIONS(191), - [anon_sym_spawn] = ACTIONS(194), - [anon_sym_json_DOTdecode] = ACTIONS(197), - [anon_sym_LBRACK2] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_CARET] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(206), - [sym_none] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_nil] = ACTIONS(209), - [anon_sym_if] = ACTIONS(212), - [anon_sym_DOLLARif] = ACTIONS(215), - [anon_sym_match] = ACTIONS(218), - [anon_sym_select] = ACTIONS(221), - [anon_sym_lock] = ACTIONS(224), - [anon_sym_rlock] = ACTIONS(224), - [anon_sym_unsafe] = ACTIONS(227), - [anon_sym_sql] = ACTIONS(230), - [sym_int_literal] = ACTIONS(209), - [sym_float_literal] = ACTIONS(233), - [sym_rune_literal] = ACTIONS(233), - [anon_sym_AT] = ACTIONS(236), - [anon_sym_shared] = ACTIONS(239), - [anon_sym_map_LBRACK] = ACTIONS(242), - [anon_sym_chan] = ACTIONS(245), - [anon_sym_thread] = ACTIONS(248), - [anon_sym_atomic] = ACTIONS(251), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_defer] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(260), - [anon_sym_break] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(266), - [anon_sym_return] = ACTIONS(269), - [anon_sym_DOLLARfor] = ACTIONS(272), - [anon_sym_for] = ACTIONS(275), - [anon_sym_POUND] = ACTIONS(278), - [anon_sym_asm] = ACTIONS(281), - [anon_sym_AT_LBRACK] = ACTIONS(284), - [sym___double_quote] = ACTIONS(287), - [sym___single_quote] = ACTIONS(290), - [sym___c_double_quote] = ACTIONS(293), - [sym___c_single_quote] = ACTIONS(296), - [sym___r_double_quote] = ACTIONS(299), - [sym___r_single_quote] = ACTIONS(302), - }, [13] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4719), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4719), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(289), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -24916,96 +24992,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [14] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4539), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4539), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4716), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4716), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25067,96 +25143,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [15] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4635), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4635), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4697), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4697), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25218,96 +25294,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [16] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4714), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4714), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25369,96 +25445,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [17] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4478), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4478), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4697), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4697), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25520,96 +25596,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [18] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4489), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4489), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4707), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4707), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25671,96 +25747,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [19] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4471), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4471), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4707), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4707), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25822,96 +25898,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [20] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4678), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4678), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(287), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4692), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4692), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(296), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25973,96 +26049,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [21] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4680), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4680), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4697), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4697), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -26124,96 +26200,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [22] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4478), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4478), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4719), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4719), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -26275,96 +26351,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [23] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4539), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4539), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4571), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4571), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -26426,96 +26502,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [24] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), [sym__statement_list] = STATE(4478), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), [sym_empty_labeled_statement] = STATE(4478), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -26577,96 +26653,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [25] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4679), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4679), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4719), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4719), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(296), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -26728,96 +26804,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [26] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4714), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4714), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4613), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4613), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -26879,96 +26955,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [27] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4489), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4489), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4478), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4478), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -27030,101 +27106,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [28] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4482), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4482), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27181,101 +27257,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [29] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4483), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4483), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4717), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4717), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27332,101 +27408,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [30] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4680), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4680), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4482), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4482), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27483,101 +27559,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [31] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4588), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4588), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4692), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4692), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(257), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27634,101 +27710,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [32] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4678), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4678), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4689), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4689), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27785,101 +27861,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [33] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4635), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4635), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4571), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4571), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27936,95 +28012,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [34] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4539), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4539), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), @@ -28087,101 +28163,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [35] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4482), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4482), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(395), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -28238,101 +28314,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [36] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4635), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4635), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4637), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4637), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -28389,96 +28465,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [37] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4617), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4617), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -28540,96 +28616,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [38] = { - [sym__expression] = STATE(1610), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4635), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4635), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4717), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4717), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -28691,99 +28767,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [39] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4483), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4483), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4482), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4482), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -28840,95 +28918,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [40] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4519), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4519), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4697), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4697), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -28989,95 +29067,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [41] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4680), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4680), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4482), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4482), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -29138,95 +29216,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [42] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4478), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4478), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4571), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4571), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -29287,95 +29365,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [43] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4679), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4679), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4716), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4716), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -29436,95 +29514,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [44] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4489), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4489), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4637), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4637), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -29585,95 +29663,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [45] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4585), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4585), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4702), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4702), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -29734,95 +29812,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [46] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4647), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4647), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4719), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4719), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -29883,95 +29961,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [47] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4588), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4588), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4617), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4617), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -30032,95 +30110,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [48] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4635), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4635), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4736), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4736), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -30181,95 +30259,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [49] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4539), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4539), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -30330,95 +30408,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [50] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4500), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4500), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4613), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4613), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -30479,95 +30557,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [51] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4467), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4467), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4689), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4689), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -30628,95 +30706,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [52] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4689), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4689), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4693), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4693), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -30777,95 +30855,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [53] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4717), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4717), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -30926,95 +31004,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [54] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4471), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4471), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4707), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4707), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -31075,95 +31153,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [55] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4478), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4478), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -31224,95 +31302,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [56] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4482), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4482), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4680), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4680), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -31373,95 +31451,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [57] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4678), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4678), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4692), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4692), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -31522,95 +31600,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [58] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement_list] = STATE(4714), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4714), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4751), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4751), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -31671,94 +31749,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [59] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(3733), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4456), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement_list] = STATE(4449), + [sym__statement] = STATE(3720), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4449), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -31819,94 +31898,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [60] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(3733), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(61), - [sym_labeled_statement] = STATE(3760), - [sym_empty_labeled_statement] = STATE(4442), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(3756), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4698), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -31967,93 +32046,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [61] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(3773), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3760), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(3756), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(3809), + [sym_empty_labeled_statement] = STATE(4615), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -32114,242 +32194,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [62] = { - [sym__expression] = STATE(271), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_strictly_expression_list] = STATE(1544), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(631), - [sym_mutable_expression] = STATE(3360), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(1535), - [sym_simple_statement] = STATE(1530), - [sym_assert_statement] = STATE(1530), - [sym_append_statement] = STATE(1530), - [sym_send_statement] = STATE(1530), - [sym_var_declaration] = STATE(1544), - [sym_assignment_statement] = STATE(1544), - [sym_block] = STATE(1530), - [sym_defer_statement] = STATE(1530), - [sym_goto_statement] = STATE(1530), - [sym_break_statement] = STATE(1530), - [sym_continue_statement] = STATE(1530), - [sym_return_statement] = STATE(1530), - [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(1530), - [sym_compile_time_for_statement] = STATE(1530), - [sym_for_statement] = STATE(1530), - [sym_hash_statement] = STATE(1530), - [sym_asm_statement] = STATE(1530), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [63] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(3773), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3760), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(3863), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(3809), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(481), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -32405,94 +32340,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(385), [sym___r_single_quote] = ACTIONS(387), }, - [64] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_strictly_expression_list] = STATE(3759), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(546), - [sym_mutable_expression] = STATE(3361), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__statement] = STATE(3733), - [sym_simple_statement] = STATE(3760), - [sym_assert_statement] = STATE(3760), - [sym_append_statement] = STATE(3760), - [sym_send_statement] = STATE(3760), - [sym_var_declaration] = STATE(3759), - [sym_assignment_statement] = STATE(3759), - [sym_block] = STATE(3760), - [sym_defer_statement] = STATE(3760), - [sym_goto_statement] = STATE(3760), - [sym_break_statement] = STATE(3760), - [sym_continue_statement] = STATE(3760), - [sym_return_statement] = STATE(3760), + [63] = { + [sym__expression] = STATE(260), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_strictly_expression_list] = STATE(1578), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(591), + [sym_mutable_expression] = STATE(3392), + [sym_expression_list] = STATE(3443), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(1596), + [sym_simple_statement] = STATE(1572), + [sym_assert_statement] = STATE(1572), + [sym_append_statement] = STATE(1572), + [sym_send_statement] = STATE(1572), + [sym_var_declaration] = STATE(1578), + [sym_assignment_statement] = STATE(1578), + [sym_block] = STATE(1572), + [sym_defer_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3760), - [sym_compile_time_for_statement] = STATE(3760), - [sym_for_statement] = STATE(3760), - [sym_hash_statement] = STATE(3760), - [sym_asm_statement] = STATE(3760), - [sym_identifier] = ACTIONS(433), + [sym_labeled_statement] = STATE(1572), + [sym_compile_time_for_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_hash_statement] = STATE(1572), + [sym_asm_statement] = STATE(1572), + [sym_identifier] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), + }, + [64] = { + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(3756), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(3809), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), @@ -32552,39609 +32633,38500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [65] = { - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(478), - [sym_mutable_expression] = STATE(1430), - [sym_expression_list] = STATE(1506), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [ts_builtin_sym_end] = ACTIONS(487), - [sym_identifier] = ACTIONS(489), - [anon_sym_LF] = ACTIONS(491), - [anon_sym_CR] = ACTIONS(491), - [anon_sym_CR_LF] = ACTIONS(491), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(497), - [anon_sym_const] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym___global] = ACTIONS(491), - [anon_sym_type] = ACTIONS(491), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_union] = ACTIONS(491), - [anon_sym_pub] = ACTIONS(491), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_strictly_expression_list] = STATE(3808), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(734), + [sym_mutable_expression] = STATE(3393), + [sym_expression_list] = STATE(3438), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__statement] = STATE(3863), + [sym_simple_statement] = STATE(3809), + [sym_assert_statement] = STATE(3809), + [sym_append_statement] = STATE(3809), + [sym_send_statement] = STATE(3809), + [sym_var_declaration] = STATE(3808), + [sym_assignment_statement] = STATE(3808), + [sym_block] = STATE(3809), + [sym_defer_statement] = STATE(3809), + [sym_goto_statement] = STATE(3809), + [sym_break_statement] = STATE(3809), + [sym_continue_statement] = STATE(3809), + [sym_return_statement] = STATE(3809), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(3809), + [sym_compile_time_for_statement] = STATE(3809), + [sym_for_statement] = STATE(3809), + [sym_hash_statement] = STATE(3809), + [sym_asm_statement] = STATE(3809), + [sym_identifier] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(491), - [anon_sym_interface] = ACTIONS(491), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(517), - [anon_sym_LBRACK2] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_CARET] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_LT_DASH] = ACTIONS(523), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(525), - [sym_rune_literal] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(491), - [anon_sym_defer] = ACTIONS(491), - [anon_sym_goto] = ACTIONS(491), - [anon_sym_break] = ACTIONS(491), - [anon_sym_continue] = ACTIONS(491), - [anon_sym_return] = ACTIONS(491), - [anon_sym_DOLLARfor] = ACTIONS(491), - [anon_sym_for] = ACTIONS(491), - [anon_sym_POUND] = ACTIONS(491), - [anon_sym_asm] = ACTIONS(491), - [anon_sym_AT_LBRACK] = ACTIONS(491), - [sym___double_quote] = ACTIONS(545), - [sym___single_quote] = ACTIONS(547), - [sym___c_double_quote] = ACTIONS(549), - [sym___c_single_quote] = ACTIONS(551), - [sym___r_double_quote] = ACTIONS(553), - [sym___r_single_quote] = ACTIONS(555), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [66] = { - [sym_reference_expression] = STATE(4438), - [sym_type_reference_expression] = STATE(618), - [sym_plain_type] = STATE(928), - [sym__plain_type_without_special] = STATE(941), - [sym_anon_struct_type] = STATE(940), - [sym_multi_return_type] = STATE(941), - [sym_result_type] = STATE(941), - [sym_option_type] = STATE(941), - [sym_qualified_type] = STATE(618), - [sym_fixed_array_type] = STATE(940), - [sym_array_type] = STATE(940), - [sym_pointer_type] = STATE(940), - [sym_wrong_pointer_type] = STATE(940), - [sym_map_type] = STATE(940), - [sym_channel_type] = STATE(940), - [sym_shared_type] = STATE(940), - [sym_thread_type] = STATE(940), - [sym_atomic_type] = STATE(940), - [sym_generic_type] = STATE(940), - [sym_function_type] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(557), - [sym_identifier] = ACTIONS(559), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_const] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym___global] = ACTIONS(561), - [anon_sym_type] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(569), - [anon_sym_union] = ACTIONS(561), - [anon_sym_pub] = ACTIONS(561), - [anon_sym_mut] = ACTIONS(561), - [anon_sym_enum] = ACTIONS(561), - [anon_sym_interface] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(571), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(728), + [sym_mutable_expression] = STATE(1457), + [sym_expression_list] = STATE(1577), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [ts_builtin_sym_end] = ACTIONS(489), + [sym_identifier] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(493), + [anon_sym_CR] = ACTIONS(493), + [anon_sym_CR_LF] = ACTIONS(493), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_const] = ACTIONS(493), + [anon_sym_LPAREN] = ACTIONS(501), + [anon_sym___global] = ACTIONS(493), + [anon_sym_type] = ACTIONS(493), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_STAR] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_union] = ACTIONS(493), + [anon_sym_pub] = ACTIONS(493), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(513), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(519), + [anon_sym_LBRACK2] = ACTIONS(521), + [anon_sym_TILDE] = ACTIONS(505), + [anon_sym_CARET] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_LT_DASH] = ACTIONS(525), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(527), + [sym_rune_literal] = ACTIONS(527), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(493), + [anon_sym_defer] = ACTIONS(493), + [anon_sym_goto] = ACTIONS(493), + [anon_sym_break] = ACTIONS(493), + [anon_sym_continue] = ACTIONS(493), + [anon_sym_return] = ACTIONS(493), + [anon_sym_DOLLARfor] = ACTIONS(493), + [anon_sym_for] = ACTIONS(493), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_asm] = ACTIONS(493), + [anon_sym_AT_LBRACK] = ACTIONS(493), + [sym___double_quote] = ACTIONS(547), + [sym___single_quote] = ACTIONS(549), + [sym___c_double_quote] = ACTIONS(551), + [sym___c_single_quote] = ACTIONS(553), + [sym___r_double_quote] = ACTIONS(555), + [sym___r_single_quote] = ACTIONS(557), + }, + [67] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [ts_builtin_sym_end] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_CR] = ACTIONS(563), + [anon_sym_CR_LF] = ACTIONS(563), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym___global] = ACTIONS(563), + [anon_sym_type] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_union] = ACTIONS(563), + [anon_sym_pub] = ACTIONS(563), + [anon_sym_mut] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(511), [anon_sym_BANG] = ACTIONS(573), - [anon_sym_go] = ACTIONS(561), - [anon_sym_spawn] = ACTIONS(561), - [anon_sym_json_DOTdecode] = ACTIONS(561), + [anon_sym_go] = ACTIONS(563), + [anon_sym_spawn] = ACTIONS(563), + [anon_sym_json_DOTdecode] = ACTIONS(563), [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_CARET] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_or] = ACTIONS(561), - [sym_none] = ACTIONS(561), - [sym_true] = ACTIONS(561), - [sym_false] = ACTIONS(561), - [sym_nil] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(561), - [anon_sym_POUND_LBRACK] = ACTIONS(561), - [anon_sym_if] = ACTIONS(561), - [anon_sym_DOLLARif] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(561), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(561), - [anon_sym_match] = ACTIONS(561), - [anon_sym_select] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_PERCENT_EQ] = ACTIONS(561), - [anon_sym_LT_LT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(561), - [anon_sym_AMP_EQ] = ACTIONS(561), - [anon_sym_AMP_CARET_EQ] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_PIPE_EQ] = ACTIONS(561), - [anon_sym_CARET_EQ] = ACTIONS(561), - [anon_sym_COLON_EQ] = ACTIONS(561), - [anon_sym_lock] = ACTIONS(561), - [anon_sym_rlock] = ACTIONS(561), - [anon_sym_unsafe] = ACTIONS(561), - [anon_sym_sql] = ACTIONS(561), - [sym_int_literal] = ACTIONS(561), - [sym_float_literal] = ACTIONS(561), - [sym_rune_literal] = ACTIONS(561), - [anon_sym_AT] = ACTIONS(561), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_nil] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_DOLLARif] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_match] = ACTIONS(563), + [anon_sym_select] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_lock] = ACTIONS(563), + [anon_sym_rlock] = ACTIONS(563), + [anon_sym_unsafe] = ACTIONS(563), + [anon_sym_sql] = ACTIONS(563), + [sym_int_literal] = ACTIONS(563), + [sym_float_literal] = ACTIONS(563), + [sym_rune_literal] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(581), - [anon_sym_chan] = ACTIONS(583), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(587), - [anon_sym_assert] = ACTIONS(561), - [anon_sym_defer] = ACTIONS(561), - [anon_sym_goto] = ACTIONS(561), - [anon_sym_break] = ACTIONS(561), - [anon_sym_continue] = ACTIONS(561), - [anon_sym_return] = ACTIONS(561), - [anon_sym_DOLLARfor] = ACTIONS(561), - [anon_sym_for] = ACTIONS(561), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_asm] = ACTIONS(561), - [anon_sym_AT_LBRACK] = ACTIONS(561), - [sym___double_quote] = ACTIONS(561), - [sym___single_quote] = ACTIONS(561), - [sym___c_double_quote] = ACTIONS(561), - [sym___c_single_quote] = ACTIONS(561), - [sym___r_double_quote] = ACTIONS(561), - [sym___r_single_quote] = ACTIONS(561), - }, - [67] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [ts_builtin_sym_end] = ACTIONS(589), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym___global] = ACTIONS(593), - [anon_sym_type] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(593), - [anon_sym_pub] = ACTIONS(593), - [anon_sym_mut] = ACTIONS(593), - [anon_sym_enum] = ACTIONS(593), - [anon_sym_interface] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(593), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_DASH] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_or] = ACTIONS(593), - [sym_none] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_nil] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(593), - [anon_sym_POUND_LBRACK] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_DOLLARif] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(593), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(593), - [anon_sym_match] = ACTIONS(593), - [anon_sym_select] = ACTIONS(593), - [anon_sym_STAR_EQ] = ACTIONS(593), - [anon_sym_SLASH_EQ] = ACTIONS(593), - [anon_sym_PERCENT_EQ] = ACTIONS(593), - [anon_sym_LT_LT_EQ] = ACTIONS(593), - [anon_sym_GT_GT_EQ] = ACTIONS(593), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(593), - [anon_sym_AMP_EQ] = ACTIONS(593), - [anon_sym_AMP_CARET_EQ] = ACTIONS(593), - [anon_sym_PLUS_EQ] = ACTIONS(593), - [anon_sym_DASH_EQ] = ACTIONS(593), - [anon_sym_PIPE_EQ] = ACTIONS(593), - [anon_sym_CARET_EQ] = ACTIONS(593), - [anon_sym_COLON_EQ] = ACTIONS(593), - [anon_sym_lock] = ACTIONS(593), - [anon_sym_rlock] = ACTIONS(593), - [anon_sym_unsafe] = ACTIONS(593), - [anon_sym_sql] = ACTIONS(593), - [sym_int_literal] = ACTIONS(593), - [sym_float_literal] = ACTIONS(593), - [sym_rune_literal] = ACTIONS(593), - [anon_sym_AT] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(593), - [anon_sym_defer] = ACTIONS(593), - [anon_sym_goto] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_return] = ACTIONS(593), - [anon_sym_DOLLARfor] = ACTIONS(593), - [anon_sym_for] = ACTIONS(593), - [anon_sym_POUND] = ACTIONS(593), - [anon_sym_asm] = ACTIONS(593), - [anon_sym_AT_LBRACK] = ACTIONS(593), - [sym___double_quote] = ACTIONS(593), - [sym___single_quote] = ACTIONS(593), - [sym___c_double_quote] = ACTIONS(593), - [sym___c_single_quote] = ACTIONS(593), - [sym___r_double_quote] = ACTIONS(593), - [sym___r_single_quote] = ACTIONS(593), + [anon_sym_assert] = ACTIONS(563), + [anon_sym_defer] = ACTIONS(563), + [anon_sym_goto] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_DOLLARfor] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_asm] = ACTIONS(563), + [anon_sym_AT_LBRACK] = ACTIONS(563), + [sym___double_quote] = ACTIONS(563), + [sym___single_quote] = ACTIONS(563), + [sym___c_double_quote] = ACTIONS(563), + [sym___c_single_quote] = ACTIONS(563), + [sym___r_double_quote] = ACTIONS(563), + [sym___r_single_quote] = ACTIONS(563), }, [68] = { - [sym_reference_expression] = STATE(4438), - [sym_type_reference_expression] = STATE(618), + [sym_reference_expression] = STATE(4555), + [sym_type_reference_expression] = STATE(558), [sym_plain_type] = STATE(882), - [sym__plain_type_without_special] = STATE(941), - [sym_anon_struct_type] = STATE(940), - [sym_multi_return_type] = STATE(941), - [sym_result_type] = STATE(941), - [sym_option_type] = STATE(941), - [sym_qualified_type] = STATE(618), - [sym_fixed_array_type] = STATE(940), - [sym_array_type] = STATE(940), - [sym_pointer_type] = STATE(940), - [sym_wrong_pointer_type] = STATE(940), - [sym_map_type] = STATE(940), - [sym_channel_type] = STATE(940), - [sym_shared_type] = STATE(940), - [sym_thread_type] = STATE(940), - [sym_atomic_type] = STATE(940), - [sym_generic_type] = STATE(940), - [sym_function_type] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(611), - [sym_identifier] = ACTIONS(559), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_const] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym___global] = ACTIONS(613), - [anon_sym_type] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(569), - [anon_sym_union] = ACTIONS(613), - [anon_sym_pub] = ACTIONS(613), - [anon_sym_mut] = ACTIONS(613), - [anon_sym_enum] = ACTIONS(613), - [anon_sym_interface] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_go] = ACTIONS(613), - [anon_sym_spawn] = ACTIONS(613), - [anon_sym_json_DOTdecode] = ACTIONS(613), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(613), - [sym_none] = ACTIONS(613), - [sym_true] = ACTIONS(613), - [sym_false] = ACTIONS(613), - [sym_nil] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_if] = ACTIONS(613), - [anon_sym_DOLLARif] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_match] = ACTIONS(613), - [anon_sym_select] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_AMP_CARET_EQ] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_lock] = ACTIONS(613), - [anon_sym_rlock] = ACTIONS(613), - [anon_sym_unsafe] = ACTIONS(613), - [anon_sym_sql] = ACTIONS(613), - [sym_int_literal] = ACTIONS(613), - [sym_float_literal] = ACTIONS(613), - [sym_rune_literal] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(581), - [anon_sym_chan] = ACTIONS(583), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(587), - [anon_sym_assert] = ACTIONS(613), - [anon_sym_defer] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(613), - [anon_sym_break] = ACTIONS(613), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_return] = ACTIONS(613), - [anon_sym_DOLLARfor] = ACTIONS(613), - [anon_sym_for] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(613), - [anon_sym_asm] = ACTIONS(613), - [anon_sym_AT_LBRACK] = ACTIONS(613), - [sym___double_quote] = ACTIONS(613), - [sym___single_quote] = ACTIONS(613), - [sym___c_double_quote] = ACTIONS(613), - [sym___c_single_quote] = ACTIONS(613), - [sym___r_double_quote] = ACTIONS(613), - [sym___r_single_quote] = ACTIONS(613), + [sym__plain_type_without_special] = STATE(939), + [sym_anon_struct_type] = STATE(938), + [sym_multi_return_type] = STATE(939), + [sym_result_type] = STATE(939), + [sym_option_type] = STATE(939), + [sym_qualified_type] = STATE(558), + [sym_fixed_array_type] = STATE(938), + [sym_array_type] = STATE(938), + [sym_pointer_type] = STATE(938), + [sym_wrong_pointer_type] = STATE(938), + [sym_map_type] = STATE(938), + [sym_channel_type] = STATE(938), + [sym_shared_type] = STATE(938), + [sym_thread_type] = STATE(938), + [sym_atomic_type] = STATE(938), + [sym_generic_type] = STATE(938), + [sym_function_type] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_identifier] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym___global] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_interface] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(603), + [anon_sym_map_LBRACK] = ACTIONS(605), + [anon_sym_chan] = ACTIONS(607), + [anon_sym_thread] = ACTIONS(609), + [anon_sym_atomic] = ACTIONS(611), + [anon_sym_assert] = ACTIONS(585), + [anon_sym_defer] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_DOLLARfor] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_asm] = ACTIONS(585), + [anon_sym_AT_LBRACK] = ACTIONS(585), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, [69] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [ts_builtin_sym_end] = ACTIONS(615), - [sym_identifier] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_CR] = ACTIONS(617), - [anon_sym_CR_LF] = ACTIONS(617), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_const] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym___global] = ACTIONS(617), - [anon_sym_type] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(617), - [anon_sym_union] = ACTIONS(617), - [anon_sym_pub] = ACTIONS(617), - [anon_sym_mut] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_go] = ACTIONS(617), - [anon_sym_spawn] = ACTIONS(617), - [anon_sym_json_DOTdecode] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(617), - [sym_none] = ACTIONS(617), - [sym_true] = ACTIONS(617), - [sym_false] = ACTIONS(617), - [sym_nil] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_if] = ACTIONS(617), - [anon_sym_DOLLARif] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_match] = ACTIONS(617), - [anon_sym_select] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_AMP_CARET_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_lock] = ACTIONS(617), - [anon_sym_rlock] = ACTIONS(617), - [anon_sym_unsafe] = ACTIONS(617), - [anon_sym_sql] = ACTIONS(617), - [sym_int_literal] = ACTIONS(617), - [sym_float_literal] = ACTIONS(617), - [sym_rune_literal] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(617), - [anon_sym_map_LBRACK] = ACTIONS(617), - [anon_sym_chan] = ACTIONS(617), - [anon_sym_thread] = ACTIONS(617), - [anon_sym_atomic] = ACTIONS(617), - [anon_sym_assert] = ACTIONS(617), - [anon_sym_defer] = ACTIONS(617), - [anon_sym_goto] = ACTIONS(617), - [anon_sym_break] = ACTIONS(617), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_return] = ACTIONS(617), - [anon_sym_DOLLARfor] = ACTIONS(617), - [anon_sym_for] = ACTIONS(617), - [anon_sym_POUND] = ACTIONS(617), - [anon_sym_asm] = ACTIONS(617), - [anon_sym_AT_LBRACK] = ACTIONS(617), - [sym___double_quote] = ACTIONS(617), - [sym___single_quote] = ACTIONS(617), - [sym___c_double_quote] = ACTIONS(617), - [sym___c_single_quote] = ACTIONS(617), - [sym___r_double_quote] = ACTIONS(617), - [sym___r_single_quote] = ACTIONS(617), + [sym_reference_expression] = STATE(4555), + [sym_type_reference_expression] = STATE(558), + [sym_plain_type] = STATE(925), + [sym__plain_type_without_special] = STATE(939), + [sym_anon_struct_type] = STATE(938), + [sym_multi_return_type] = STATE(939), + [sym_result_type] = STATE(939), + [sym_option_type] = STATE(939), + [sym_qualified_type] = STATE(558), + [sym_fixed_array_type] = STATE(938), + [sym_array_type] = STATE(938), + [sym_pointer_type] = STATE(938), + [sym_wrong_pointer_type] = STATE(938), + [sym_map_type] = STATE(938), + [sym_channel_type] = STATE(938), + [sym_shared_type] = STATE(938), + [sym_thread_type] = STATE(938), + [sym_atomic_type] = STATE(938), + [sym_generic_type] = STATE(938), + [sym_function_type] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym___global] = ACTIONS(615), + [anon_sym_type] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(615), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_enum] = ACTIONS(615), + [anon_sym_interface] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(603), + [anon_sym_map_LBRACK] = ACTIONS(605), + [anon_sym_chan] = ACTIONS(607), + [anon_sym_thread] = ACTIONS(609), + [anon_sym_atomic] = ACTIONS(611), + [anon_sym_assert] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_goto] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_DOLLARfor] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(615), + [anon_sym_asm] = ACTIONS(615), + [anon_sym_AT_LBRACK] = ACTIONS(615), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), }, [70] = { - [sym_reference_expression] = STATE(4438), - [sym_type_reference_expression] = STATE(618), - [sym_plain_type] = STATE(874), - [sym__plain_type_without_special] = STATE(941), - [sym_anon_struct_type] = STATE(940), - [sym_multi_return_type] = STATE(941), - [sym_result_type] = STATE(941), - [sym_option_type] = STATE(941), - [sym_qualified_type] = STATE(618), - [sym_fixed_array_type] = STATE(940), - [sym_array_type] = STATE(940), - [sym_pointer_type] = STATE(940), - [sym_wrong_pointer_type] = STATE(940), - [sym_map_type] = STATE(940), - [sym_channel_type] = STATE(940), - [sym_shared_type] = STATE(940), - [sym_thread_type] = STATE(940), - [sym_atomic_type] = STATE(940), - [sym_generic_type] = STATE(940), - [sym_function_type] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(619), - [sym_identifier] = ACTIONS(559), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym___global] = ACTIONS(621), - [anon_sym_type] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(569), - [anon_sym_union] = ACTIONS(621), - [anon_sym_pub] = ACTIONS(621), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_interface] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_go] = ACTIONS(621), - [anon_sym_spawn] = ACTIONS(621), - [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(575), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_nil] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_if] = ACTIONS(621), - [anon_sym_DOLLARif] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_match] = ACTIONS(621), - [anon_sym_select] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_CARET_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_lock] = ACTIONS(621), - [anon_sym_rlock] = ACTIONS(621), - [anon_sym_unsafe] = ACTIONS(621), - [anon_sym_sql] = ACTIONS(621), - [sym_int_literal] = ACTIONS(621), - [sym_float_literal] = ACTIONS(621), - [sym_rune_literal] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(579), - [anon_sym_map_LBRACK] = ACTIONS(581), - [anon_sym_chan] = ACTIONS(583), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(587), - [anon_sym_assert] = ACTIONS(621), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_return] = ACTIONS(621), - [anon_sym_DOLLARfor] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_POUND] = ACTIONS(621), - [anon_sym_asm] = ACTIONS(621), - [anon_sym_AT_LBRACK] = ACTIONS(621), - [sym___double_quote] = ACTIONS(621), - [sym___single_quote] = ACTIONS(621), - [sym___c_double_quote] = ACTIONS(621), - [sym___c_single_quote] = ACTIONS(621), - [sym___r_double_quote] = ACTIONS(621), - [sym___r_single_quote] = ACTIONS(621), + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym___global] = ACTIONS(619), + [anon_sym_type] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_union] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_interface] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(619), + [anon_sym_chan] = ACTIONS(619), + [anon_sym_thread] = ACTIONS(619), + [anon_sym_atomic] = ACTIONS(619), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_defer] = ACTIONS(619), + [anon_sym_goto] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_DOLLARfor] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_asm] = ACTIONS(619), + [anon_sym_AT_LBRACK] = ACTIONS(619), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), }, [71] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4603), - [sym_short_element_list] = STATE(4604), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym_reference_expression] = STATE(4555), + [sym_type_reference_expression] = STATE(558), + [sym_plain_type] = STATE(914), + [sym__plain_type_without_special] = STATE(939), + [sym_anon_struct_type] = STATE(938), + [sym_multi_return_type] = STATE(939), + [sym_result_type] = STATE(939), + [sym_option_type] = STATE(939), + [sym_qualified_type] = STATE(558), + [sym_fixed_array_type] = STATE(938), + [sym_array_type] = STATE(938), + [sym_pointer_type] = STATE(938), + [sym_wrong_pointer_type] = STATE(938), + [sym_map_type] = STATE(938), + [sym_channel_type] = STATE(938), + [sym_shared_type] = STATE(938), + [sym_thread_type] = STATE(938), + [sym_atomic_type] = STATE(938), + [sym_generic_type] = STATE(938), + [sym_function_type] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(623), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_AMP_CARET_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(603), + [anon_sym_map_LBRACK] = ACTIONS(605), + [anon_sym_chan] = ACTIONS(607), + [anon_sym_thread] = ACTIONS(609), + [anon_sym_atomic] = ACTIONS(611), + [anon_sym_assert] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_goto] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_DOLLARfor] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(623), + [anon_sym_AT_LBRACK] = ACTIONS(623), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), }, [72] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4517), - [sym_short_element_list] = STATE(4513), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4465), + [sym_short_element_list] = STATE(4454), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [73] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4699), - [sym_short_element_list] = STATE(4698), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4711), + [sym_short_element_list] = STATE(4710), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [74] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4649), - [sym_short_element_list] = STATE(4650), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4628), + [sym_short_element_list] = STATE(4625), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [75] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4555), - [sym_short_element_list] = STATE(4554), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4477), + [sym_short_element_list] = STATE(4475), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [76] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4575), - [sym_short_element_list] = STATE(4571), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4672), + [sym_short_element_list] = STATE(4772), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [77] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4737), - [sym_short_element_list] = STATE(4736), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4559), + [sym_short_element_list] = STATE(4561), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [78] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4694), - [sym_short_element_list] = STATE(4695), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4732), + [sym_short_element_list] = STATE(4735), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [79] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4640), - [sym_short_element_list] = STATE(4637), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4563), + [sym_short_element_list] = STATE(4562), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [80] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4602), - [sym_short_element_list] = STATE(4601), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4699), + [sym_short_element_list] = STATE(4700), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [81] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4673), - [sym_short_element_list] = STATE(4672), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4519), + [sym_short_element_list] = STATE(4520), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [82] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4546), - [sym_short_element_list] = STATE(4547), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4534), + [sym_short_element_list] = STATE(4531), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [83] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3476), - [sym_embedded_definition] = STATE(3480), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4541), - [sym_short_element_list] = STATE(4540), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1159), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(3452), - [sym_function_type] = STATE(2417), - [aux_sym__struct_body_repeat1] = STATE(3368), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(623), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4601), + [sym_short_element_list] = STATE(4602), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym___global] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_pub] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [84] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(127), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4538), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(695), + [sym_struct_field_scope] = STATE(3512), + [sym_struct_field_declaration] = STATE(3512), + [sym__struct_field_definition] = STATE(3510), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4682), + [sym_short_element_list] = STATE(4681), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1174), + [sym_type_reference_expression] = STATE(3471), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3471), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(3494), + [sym_function_type] = STATE(2408), + [aux_sym__struct_body_repeat1] = STATE(3428), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_mut] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym___global] = ACTIONS(635), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_pub] = ACTIONS(647), + [anon_sym_mut] = ACTIONS(649), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [85] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(134), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4634), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(133), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4557), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(703), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [86] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(110), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4735), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(126), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4606), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [87] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(133), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(134), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4705), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [88] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(118), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4600), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(113), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4516), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [89] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(127), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4538), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(117), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4695), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [90] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(133), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(114), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4489), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [91] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(110), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4735), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(126), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4606), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [92] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(119), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4651), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(137), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4768), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [93] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(120), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4512), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(130), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4572), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [94] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(142), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4568), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(133), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4557), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [95] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4609), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(140), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4614), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [96] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4609), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(145), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4578), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [97] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4609), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(133), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4557), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [98] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(124), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4722), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(133), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4557), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [99] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(142), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4568), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(148), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4738), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [100] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4609), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(114), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4489), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [101] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(127), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4538), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(140), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4614), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [102] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(124), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4722), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(111), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4535), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [103] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(132), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4549), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(111), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4535), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [104] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(112), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4670), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(112), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(110), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4678), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [105] = { - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(140), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4526), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [aux_sym_select_expression_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(134), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4705), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(797), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [106] = { - [sym__expression] = STATE(1642), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_strictly_expression_list] = STATE(4170), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(656), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3413), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_simple_statement] = STATE(4633), - [sym_var_declaration] = STATE(4170), - [sym_var_definition_list] = STATE(4636), - [sym_var_definition] = STATE(3973), - [sym_assignment_statement] = STATE(4170), - [sym_block] = STATE(1520), - [sym_range_clause] = STATE(4226), - [sym_for_clause] = STATE(4226), - [sym_identifier] = ACTIONS(799), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(148), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4738), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(817), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [107] = { - [sym__expression] = STATE(1643), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_strictly_expression_list] = STATE(4170), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(656), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3413), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_simple_statement] = STATE(4633), - [sym_var_declaration] = STATE(4170), - [sym_var_definition_list] = STATE(4636), - [sym_var_definition] = STATE(3973), - [sym_assignment_statement] = STATE(4170), - [sym_block] = STATE(3769), - [sym_range_clause] = STATE(4186), - [sym_for_clause] = STATE(4186), - [sym_identifier] = ACTIONS(799), + [sym__expression] = STATE(2694), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(134), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4705), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [aux_sym_select_expression_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(817), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), + [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [108] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(135), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4671), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(1711), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_strictly_expression_list] = STATE(4326), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3429), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_simple_statement] = STATE(4603), + [sym_var_declaration] = STATE(4326), + [sym_var_definition_list] = STATE(4608), + [sym_var_definition] = STATE(3961), + [sym_assignment_statement] = STATE(4326), + [sym_block] = STATE(1586), + [sym_range_clause] = STATE(4313), + [sym_for_clause] = STATE(4313), + [sym_identifier] = ACTIONS(803), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_mut] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(805), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), + [anon_sym_mut] = ACTIONS(821), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [109] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4683), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(1677), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_strictly_expression_list] = STATE(4326), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3429), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_simple_statement] = STATE(4603), + [sym_var_declaration] = STATE(4326), + [sym_var_definition_list] = STATE(4608), + [sym_var_definition] = STATE(3961), + [sym_assignment_statement] = STATE(4326), + [sym_block] = STATE(3843), + [sym_range_clause] = STATE(4233), + [sym_for_clause] = STATE(4233), + [sym_identifier] = ACTIONS(803), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_mut] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(805), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), + [anon_sym_mut] = ACTIONS(821), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [110] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4724), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4652), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [111] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4449), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4575), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [112] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4659), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(122), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4494), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [113] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(116), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4658), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4495), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [114] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(143), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4525), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4515), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [115] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4551), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4660), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [116] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4654), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(115), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4665), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [117] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(144), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4622), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4666), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [118] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4593), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(120), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4511), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [119] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4669), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4588), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [120] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4505), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4521), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [121] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(126), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4592), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(119), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4579), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [122] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4719), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4490), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [123] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4504), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(124), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4635), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [124] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4708), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4609), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [125] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4624), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4659), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [126] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4590), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4517), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [127] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4412), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(128), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4649), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [128] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(138), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4711), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4661), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [129] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4621), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(125), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4538), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [130] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(122), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4723), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4641), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [131] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(125), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4626), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4518), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [132] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4576), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(131), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4523), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [133] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4685), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4524), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [134] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4627), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4721), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [135] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4674), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(136), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4722), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [136] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(137), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4580), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4727), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [137] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4533), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4759), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [138] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4715), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4530), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [139] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(138), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4539), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [140] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4436), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4556), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [141] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4435), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(142), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4756), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [142] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4560), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4755), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [143] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4521), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4646), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [144] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4623), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(143), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4651), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [145] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(109), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4684), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4640), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [146] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_select_else_arn_clause] = STATE(4503), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(695), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(147), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4770), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(731), - [anon_sym_DOLLARif] = ACTIONS(733), - [anon_sym_match] = ACTIONS(735), - [anon_sym_select] = ACTIONS(737), - [anon_sym_lock] = ACTIONS(739), - [anon_sym_rlock] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(741), - [anon_sym_sql] = ACTIONS(743), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [147] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4703), - [sym_short_element_list] = STATE(4704), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4632), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [148] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4616), - [sym_short_element_list] = STATE(4613), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_select_else_arn_clause] = STATE(4769), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(701), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(713), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(733), + [anon_sym_DOLLARif] = ACTIONS(735), + [anon_sym_match] = ACTIONS(737), + [anon_sym_select] = ACTIONS(739), + [anon_sym_lock] = ACTIONS(741), + [anon_sym_rlock] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(743), + [anon_sym_sql] = ACTIONS(745), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [149] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4484), - [sym_short_element_list] = STATE(4450), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4676), + [sym_short_element_list] = STATE(4673), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [150] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4530), - [sym_short_element_list] = STATE(4529), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4591), + [sym_short_element_list] = STATE(4599), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [151] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4563), - [sym_short_element_list] = STATE(4562), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4747), + [sym_short_element_list] = STATE(4748), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [152] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4630), - [sym_short_element_list] = STATE(4629), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4671), + [sym_short_element_list] = STATE(4670), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [153] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4656), - [sym_short_element_list] = STATE(4657), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(1957), + [sym__expression_with_blocks] = STATE(2928), + [sym_inc_expression] = STATE(1957), + [sym_dec_expression] = STATE(1957), + [sym_or_block_expression] = STATE(1957), + [sym_option_propagation_expression] = STATE(1957), + [sym_result_propagation_expression] = STATE(1957), + [sym_anon_struct_value_expression] = STATE(2927), + [sym_go_expression] = STATE(1957), + [sym_spawn_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_type_initializer] = STATE(2927), + [sym_function_literal] = STATE(1957), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1957), + [sym_receive_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_as_type_cast_expression] = STATE(1957), + [sym__max_group] = STATE(1957), + [sym_literal] = STATE(1957), + [sym_map_init_expression] = STATE(2927), + [sym_array_creation] = STATE(1957), + [sym_fixed_array_creation] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_slice_expression] = STATE(1957), + [sym_if_expression] = STATE(2927), + [sym_compile_time_if_expression] = STATE(2927), + [sym_is_expression] = STATE(1957), + [sym_not_is_expression] = STATE(1957), + [sym_in_expression] = STATE(1957), + [sym_not_in_expression] = STATE(1957), + [sym_enum_fetch] = STATE(1957), + [sym_match_expression] = STATE(2927), + [sym_select_expression] = STATE(2927), + [sym_select_arm] = STATE(153), + [sym_select_arm_statement] = STATE(4345), + [sym_select_var_declaration] = STATE(4576), + [sym_lock_expression] = STATE(2927), + [sym_unsafe_expression] = STATE(2927), + [sym_sql_expression] = STATE(2927), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(1957), + [sym_mutability_modifiers] = STATE(507), + [sym_mutable_identifier] = STATE(3984), + [sym_identifier_list] = STATE(4582), + [sym_expression_without_blocks_list] = STATE(3397), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_send_statement] = STATE(4576), + [aux_sym_select_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(959), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_fn] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_go] = ACTIONS(994), + [anon_sym_spawn] = ACTIONS(997), + [anon_sym_json_DOTdecode] = ACTIONS(1000), + [anon_sym_LBRACK2] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_LT_DASH] = ACTIONS(1009), + [sym_none] = ACTIONS(1012), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_nil] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_DOLLARif] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1023), + [anon_sym_select] = ACTIONS(1026), + [anon_sym_lock] = ACTIONS(1029), + [anon_sym_rlock] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1032), + [anon_sym_sql] = ACTIONS(1035), + [sym_int_literal] = ACTIONS(1012), + [sym_float_literal] = ACTIONS(1038), + [sym_rune_literal] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1041), + [anon_sym_shared] = ACTIONS(1044), + [anon_sym_map_LBRACK] = ACTIONS(1047), + [anon_sym_chan] = ACTIONS(1050), + [anon_sym_thread] = ACTIONS(1053), + [anon_sym_atomic] = ACTIONS(1056), + [sym___double_quote] = ACTIONS(1059), + [sym___single_quote] = ACTIONS(1062), + [sym___c_double_quote] = ACTIONS(1065), + [sym___c_single_quote] = ACTIONS(1068), + [sym___r_double_quote] = ACTIONS(1071), + [sym___r_single_quote] = ACTIONS(1074), }, [154] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4597), - [sym_short_element_list] = STATE(4596), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4626), + [sym_short_element_list] = STATE(4629), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [155] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4729), - [sym_short_element_list] = STATE(4727), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4566), + [sym_short_element_list] = STATE(4570), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [156] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4664), - [sym_short_element_list] = STATE(4663), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4593), + [sym_short_element_list] = STATE(4587), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [157] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4589), - [sym_short_element_list] = STATE(4565), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4544), + [sym_short_element_list] = STATE(4541), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [158] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(1927), - [sym__expression_with_blocks] = STATE(2891), - [sym_inc_expression] = STATE(1927), - [sym_dec_expression] = STATE(1927), - [sym_or_block_expression] = STATE(1927), - [sym_option_propagation_expression] = STATE(1927), - [sym_result_propagation_expression] = STATE(1927), - [sym_anon_struct_value_expression] = STATE(2890), - [sym_go_expression] = STATE(1927), - [sym_spawn_expression] = STATE(1927), - [sym_parenthesized_expression] = STATE(1927), - [sym_call_expression] = STATE(1927), - [sym_type_initializer] = STATE(2890), - [sym_function_literal] = STATE(1927), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1927), - [sym_receive_expression] = STATE(1927), - [sym_binary_expression] = STATE(1927), - [sym_as_type_cast_expression] = STATE(1927), - [sym__max_group] = STATE(1927), - [sym_literal] = STATE(1927), - [sym_map_init_expression] = STATE(2890), - [sym_array_creation] = STATE(1927), - [sym_fixed_array_creation] = STATE(1927), - [sym_selector_expression] = STATE(1927), - [sym_index_expression] = STATE(1927), - [sym_slice_expression] = STATE(1927), - [sym_if_expression] = STATE(2890), - [sym_compile_time_if_expression] = STATE(2890), - [sym_is_expression] = STATE(1927), - [sym_not_is_expression] = STATE(1927), - [sym_in_expression] = STATE(1927), - [sym_not_in_expression] = STATE(1927), - [sym_enum_fetch] = STATE(1927), - [sym_match_expression] = STATE(2890), - [sym_select_expression] = STATE(2890), - [sym_select_arm] = STATE(158), - [sym_select_arm_statement] = STATE(4135), - [sym_select_var_declaration] = STATE(4527), - [sym_lock_expression] = STATE(2890), - [sym_unsafe_expression] = STATE(2890), - [sym_sql_expression] = STATE(2890), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1927), - [sym_mutability_modifiers] = STATE(448), - [sym_mutable_identifier] = STATE(4076), - [sym_identifier_list] = STATE(4524), - [sym_expression_without_blocks_list] = STATE(3364), - [sym_plain_type] = STATE(4395), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_send_statement] = STATE(4527), - [aux_sym_select_expression_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(969), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4762), + [sym_short_element_list] = STATE(4761), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_fn] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_go] = ACTIONS(1004), - [anon_sym_spawn] = ACTIONS(1007), - [anon_sym_json_DOTdecode] = ACTIONS(1010), - [anon_sym_LBRACK2] = ACTIONS(1013), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_CARET] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_LT_DASH] = ACTIONS(1019), - [sym_none] = ACTIONS(1022), - [sym_true] = ACTIONS(1022), - [sym_false] = ACTIONS(1022), - [sym_nil] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_DOLLARif] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_select] = ACTIONS(1036), - [anon_sym_lock] = ACTIONS(1039), - [anon_sym_rlock] = ACTIONS(1039), - [anon_sym_unsafe] = ACTIONS(1042), - [anon_sym_sql] = ACTIONS(1045), - [sym_int_literal] = ACTIONS(1022), - [sym_float_literal] = ACTIONS(1048), - [sym_rune_literal] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_shared] = ACTIONS(1054), - [anon_sym_map_LBRACK] = ACTIONS(1057), - [anon_sym_chan] = ACTIONS(1060), - [anon_sym_thread] = ACTIONS(1063), - [anon_sym_atomic] = ACTIONS(1066), - [sym___double_quote] = ACTIONS(1069), - [sym___single_quote] = ACTIONS(1072), - [sym___c_double_quote] = ACTIONS(1075), - [sym___c_single_quote] = ACTIONS(1078), - [sym___r_double_quote] = ACTIONS(1081), - [sym___r_single_quote] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [159] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4509), - [sym_short_element_list] = STATE(4508), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4714), + [sym_short_element_list] = STATE(4715), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_RBRACE] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [160] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element_list] = STATE(4652), - [sym_short_element_list] = STATE(4687), - [sym_element] = STATE(1965), - [sym_keyed_element] = STATE(3481), - [sym_field_name] = STATE(4548), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1149), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_spread_expression] = STATE(3481), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_element_list_repeat1] = STATE(3477), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4467), + [sym_short_element_list] = STATE(4466), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_RBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [161] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4417), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4662), + [sym_short_element_list] = STATE(4663), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [162] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4528), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element_list] = STATE(4503), + [sym_short_element_list] = STATE(4502), + [sym_element] = STATE(1978), + [sym_keyed_element] = STATE(3508), + [sym_field_name] = STATE(4470), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1171), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_spread_expression] = STATE(3508), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_element_list_repeat1] = STATE(3517), + [aux_sym_short_element_list_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [163] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4661), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4514), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [164] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4594), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4497), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [165] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4507), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4718), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [166] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4707), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4760), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [167] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4726), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4668), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [168] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4686), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4528), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [169] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4668), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4565), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [170] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4569), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4633), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [171] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4620), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4644), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [172] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4561), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4574), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [173] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arms] = STATE(4628), - [sym_match_arm] = STATE(177), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(177), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4723), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [174] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arm] = STATE(174), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(174), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(1181), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1187), - [anon_sym_RBRACE] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(1192), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_mut] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_go] = ACTIONS(1216), - [anon_sym_spawn] = ACTIONS(1219), - [anon_sym_json_DOTdecode] = ACTIONS(1222), - [anon_sym_LBRACK2] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_LT_DASH] = ACTIONS(1231), - [sym_none] = ACTIONS(1234), - [sym_true] = ACTIONS(1234), - [sym_false] = ACTIONS(1234), - [sym_nil] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_DOLLARif] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_select] = ACTIONS(1249), - [anon_sym_lock] = ACTIONS(1252), - [anon_sym_rlock] = ACTIONS(1252), - [anon_sym_unsafe] = ACTIONS(1255), - [anon_sym_sql] = ACTIONS(1258), - [sym_int_literal] = ACTIONS(1234), - [sym_float_literal] = ACTIONS(1261), - [sym_rune_literal] = ACTIONS(1261), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_shared] = ACTIONS(1267), - [anon_sym_map_LBRACK] = ACTIONS(1270), - [anon_sym_chan] = ACTIONS(1273), - [anon_sym_thread] = ACTIONS(1276), - [anon_sym_atomic] = ACTIONS(1279), - [sym___double_quote] = ACTIONS(1282), - [sym___single_quote] = ACTIONS(1285), - [sym___c_double_quote] = ACTIONS(1288), - [sym___c_single_quote] = ACTIONS(1291), - [sym___r_double_quote] = ACTIONS(1294), - [sym___r_single_quote] = ACTIONS(1297), - }, - [175] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1289), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1290), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_attribute_expression] = STATE(3868), - [sym_if_attribute] = STATE(4334), - [sym__plain_attribute] = STATE(4334), - [sym_literal_attribute] = STATE(4334), - [sym_value_attribute] = STATE(3929), - [sym_key_value_attribute] = STATE(4334), - [aux_sym__array_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4658), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1344), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, - [176] = { - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2853), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2883), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4566), - [sym_attribute_expression] = STATE(3868), - [sym_if_attribute] = STATE(4334), - [sym__plain_attribute] = STATE(4334), - [sym_literal_attribute] = STATE(4334), - [sym_value_attribute] = STATE(3929), - [sym_key_value_attribute] = STATE(4334), - [sym_identifier] = ACTIONS(1366), + [175] = { + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arms] = STATE(4766), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1408), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, - [177] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2633), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2633), - [sym_dec_expression] = STATE(2633), - [sym_or_block_expression] = STATE(2633), - [sym_option_propagation_expression] = STATE(2633), - [sym_result_propagation_expression] = STATE(2633), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2633), - [sym_spawn_expression] = STATE(2633), - [sym_parenthesized_expression] = STATE(2633), - [sym_call_expression] = STATE(2633), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2633), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2633), - [sym_receive_expression] = STATE(2633), - [sym_binary_expression] = STATE(2633), - [sym_as_type_cast_expression] = STATE(2633), - [sym__max_group] = STATE(2633), - [sym_literal] = STATE(2633), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2633), - [sym_fixed_array_creation] = STATE(2633), - [sym_selector_expression] = STATE(2633), - [sym_index_expression] = STATE(2633), - [sym_slice_expression] = STATE(2633), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2633), - [sym_not_is_expression] = STATE(2633), - [sym_in_expression] = STATE(2633), - [sym_not_in_expression] = STATE(2633), - [sym_enum_fetch] = STATE(2633), - [sym_match_expression] = STATE(2757), - [sym_match_arm] = STATE(174), - [sym_match_expression_list] = STATE(4372), - [sym_match_arm_type] = STATE(3893), - [sym_match_else_arm_clause] = STATE(174), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2633), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(3897), - [aux_sym_match_arms_repeat1] = STATE(174), - [sym_identifier] = ACTIONS(1091), + [176] = { + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_else] = ACTIONS(1127), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), + }, + [177] = { + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2672), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2672), + [sym_dec_expression] = STATE(2672), + [sym_or_block_expression] = STATE(2672), + [sym_option_propagation_expression] = STATE(2672), + [sym_result_propagation_expression] = STATE(2672), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2672), + [sym_spawn_expression] = STATE(2672), + [sym_parenthesized_expression] = STATE(2672), + [sym_call_expression] = STATE(2672), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2672), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2672), + [sym_receive_expression] = STATE(2672), + [sym_binary_expression] = STATE(2672), + [sym_as_type_cast_expression] = STATE(2672), + [sym__max_group] = STATE(2672), + [sym_literal] = STATE(2672), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2672), + [sym_fixed_array_creation] = STATE(2672), + [sym_selector_expression] = STATE(2672), + [sym_index_expression] = STATE(2672), + [sym_slice_expression] = STATE(2672), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2672), + [sym_not_is_expression] = STATE(2672), + [sym_in_expression] = STATE(2672), + [sym_not_in_expression] = STATE(2672), + [sym_enum_fetch] = STATE(2672), + [sym_match_expression] = STATE(2819), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4191), + [sym_match_arm_type] = STATE(4069), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2672), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4066), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1210), + [anon_sym_mut] = ACTIONS(1213), + [anon_sym_QMARK] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_go] = ACTIONS(1222), + [anon_sym_spawn] = ACTIONS(1225), + [anon_sym_json_DOTdecode] = ACTIONS(1228), + [anon_sym_LBRACK2] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1204), + [anon_sym_CARET] = ACTIONS(1204), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_LT_DASH] = ACTIONS(1237), + [sym_none] = ACTIONS(1240), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [sym_nil] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_DOLLARif] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_select] = ACTIONS(1255), + [anon_sym_lock] = ACTIONS(1258), + [anon_sym_rlock] = ACTIONS(1258), + [anon_sym_unsafe] = ACTIONS(1261), + [anon_sym_sql] = ACTIONS(1264), + [sym_int_literal] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1267), + [sym_rune_literal] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1270), + [anon_sym_shared] = ACTIONS(1273), + [anon_sym_map_LBRACK] = ACTIONS(1276), + [anon_sym_chan] = ACTIONS(1279), + [anon_sym_thread] = ACTIONS(1282), + [anon_sym_atomic] = ACTIONS(1285), + [sym___double_quote] = ACTIONS(1288), + [sym___single_quote] = ACTIONS(1291), + [sym___c_double_quote] = ACTIONS(1294), + [sym___c_single_quote] = ACTIONS(1297), + [sym___r_double_quote] = ACTIONS(1300), + [sym___r_single_quote] = ACTIONS(1303), }, [178] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1347), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1435), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_attribute_expression] = STATE(3981), + [sym_if_attribute] = STATE(4291), + [sym__plain_attribute] = STATE(4291), + [sym_literal_attribute] = STATE(4291), + [sym_value_attribute] = STATE(3980), + [sym_key_value_attribute] = STATE(4291), + [aux_sym__array_repeat1] = STATE(327), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1350), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [179] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2788), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2896), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4558), + [sym_attribute_expression] = STATE(3981), + [sym_if_attribute] = STATE(4291), + [sym__plain_attribute] = STATE(4291), + [sym_literal_attribute] = STATE(4291), + [sym_value_attribute] = STATE(3980), + [sym_key_value_attribute] = STATE(4291), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [180] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3527), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3571), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [181] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [182] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [183] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3530), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [184] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3540), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [185] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [186] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [187] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [188] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3530), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [189] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3500), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [190] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3539), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3554), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [191] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [192] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [193] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3570), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [194] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3491), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3549), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [195] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3523), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3555), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [196] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [197] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3497), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3545), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [198] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3525), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3557), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [199] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [200] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [201] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [202] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3539), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [203] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [204] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [205] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3512), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [206] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3520), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3525), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [207] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3526), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [208] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [209] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [210] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3551), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [211] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [212] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3537), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [213] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [214] = { - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_strictly_expression_list] = STATE(4170), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(656), - [sym_mutable_expression] = STATE(3358), - [sym_expression_list] = STATE(3410), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_simple_statement] = STATE(4458), - [sym_var_declaration] = STATE(4170), - [sym_assignment_statement] = STATE(4170), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [215] = { - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_strictly_expression_list] = STATE(4170), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(656), - [sym_mutable_expression] = STATE(3358), - [sym_expression_list] = STATE(3410), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_simple_statement] = STATE(4454), - [sym_var_declaration] = STATE(4170), - [sym_assignment_statement] = STATE(4170), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1570), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [216] = { - [sym__expression] = STATE(2401), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_argument] = STATE(3605), - [sym_type_initializer] = STATE(2584), - [sym_keyed_element] = STATE(3546), - [sym_field_name] = STATE(4445), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2525), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_spread_expression] = STATE(3546), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3546), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1450), + [sym__expression] = STATE(2364), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3660), + [sym_expression_list] = STATE(3839), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [anon_sym_LF] = ACTIONS(493), + [anon_sym_CR] = ACTIONS(493), + [anon_sym_CR_LF] = ACTIONS(493), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1582), + [anon_sym_LBRACK2] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_LT_DASH] = ACTIONS(1588), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), + [sym_rune_literal] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1590), + [sym___single_quote] = ACTIONS(1592), + [sym___c_double_quote] = ACTIONS(1594), + [sym___c_single_quote] = ACTIONS(1596), + [sym___r_double_quote] = ACTIONS(1598), + [sym___r_single_quote] = ACTIONS(1600), }, [217] = { - [sym__expression] = STATE(2324), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3616), - [sym_expression_list] = STATE(3768), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), - [anon_sym_LF] = ACTIONS(491), - [anon_sym_CR] = ACTIONS(491), - [anon_sym_CR_LF] = ACTIONS(491), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(491), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1580), - [anon_sym_struct] = ACTIONS(1450), + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_argument] = STATE(3586), + [sym_type_initializer] = STATE(2619), + [sym_keyed_element] = STATE(3684), + [sym_field_name] = STATE(4620), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2547), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_spread_expression] = STATE(3684), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1584), - [anon_sym_LBRACK2] = ACTIONS(1586), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_CARET] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_LT_DASH] = ACTIONS(1590), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), - [sym_rune_literal] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1592), - [sym___single_quote] = ACTIONS(1594), - [sym___c_double_quote] = ACTIONS(1596), - [sym___c_single_quote] = ACTIONS(1598), - [sym___r_double_quote] = ACTIONS(1600), - [sym___r_single_quote] = ACTIONS(1602), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [218] = { - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_strictly_expression_list] = STATE(4170), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(656), - [sym_mutable_expression] = STATE(3358), - [sym_expression_list] = STATE(3410), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_simple_statement] = STATE(4415), - [sym_var_declaration] = STATE(4170), - [sym_assignment_statement] = STATE(4170), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_strictly_expression_list] = STATE(4326), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_simple_statement] = STATE(4598), + [sym_var_declaration] = STATE(4326), + [sym_assignment_statement] = STATE(4326), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), + [anon_sym_DOT] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [219] = { - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_strictly_expression_list] = STATE(4170), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(656), - [sym_mutable_expression] = STATE(3358), - [sym_expression_list] = STATE(3410), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_simple_statement] = STATE(4475), - [sym_var_declaration] = STATE(4170), - [sym_assignment_statement] = STATE(4170), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_strictly_expression_list] = STATE(4326), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_simple_statement] = STATE(4703), + [sym_var_declaration] = STATE(4326), + [sym_assignment_statement] = STATE(4326), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), + [anon_sym_DOT] = ACTIONS(807), [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [220] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [ts_builtin_sym_end] = ACTIONS(589), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym___global] = ACTIONS(593), - [anon_sym_type] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(593), - [anon_sym_pub] = ACTIONS(593), - [anon_sym_mut] = ACTIONS(593), - [anon_sym_enum] = ACTIONS(593), - [anon_sym_interface] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(1608), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(593), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_DASH] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_or] = ACTIONS(593), - [sym_none] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_nil] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(593), - [anon_sym_POUND_LBRACK] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_DOLLARif] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(593), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(593), - [anon_sym_match] = ACTIONS(593), - [anon_sym_select] = ACTIONS(593), - [anon_sym_lock] = ACTIONS(593), - [anon_sym_rlock] = ACTIONS(593), - [anon_sym_unsafe] = ACTIONS(593), - [anon_sym_sql] = ACTIONS(593), - [sym_int_literal] = ACTIONS(593), - [sym_float_literal] = ACTIONS(593), - [sym_rune_literal] = ACTIONS(593), - [anon_sym_AT] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(593), - [anon_sym_defer] = ACTIONS(593), - [anon_sym_goto] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_return] = ACTIONS(593), - [anon_sym_DOLLARfor] = ACTIONS(593), - [anon_sym_for] = ACTIONS(593), - [anon_sym_POUND] = ACTIONS(593), - [anon_sym_asm] = ACTIONS(593), - [anon_sym_AT_LBRACK] = ACTIONS(593), - [sym___double_quote] = ACTIONS(593), - [sym___single_quote] = ACTIONS(593), - [sym___c_double_quote] = ACTIONS(593), - [sym___c_single_quote] = ACTIONS(593), - [sym___r_double_quote] = ACTIONS(593), - [sym___r_single_quote] = ACTIONS(593), - }, - [221] = { - [sym_reference_expression] = STATE(4448), - [sym_type_reference_expression] = STATE(1002), - [sym_plain_type] = STATE(1098), - [sym__plain_type_without_special] = STATE(1084), - [sym_anon_struct_type] = STATE(1085), - [sym_multi_return_type] = STATE(1084), - [sym_result_type] = STATE(1084), - [sym_option_type] = STATE(1084), - [sym_qualified_type] = STATE(1002), - [sym_fixed_array_type] = STATE(1085), - [sym_array_type] = STATE(1085), - [sym_pointer_type] = STATE(1085), - [sym_wrong_pointer_type] = STATE(1085), - [sym_map_type] = STATE(1085), - [sym_channel_type] = STATE(1085), - [sym_shared_type] = STATE(1085), - [sym_thread_type] = STATE(1085), - [sym_atomic_type] = STATE(1085), - [sym_generic_type] = STATE(1085), - [sym_function_type] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(611), - [sym_identifier] = ACTIONS(1610), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_const] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym___global] = ACTIONS(613), - [anon_sym_type] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(613), - [anon_sym_pub] = ACTIONS(613), - [anon_sym_mut] = ACTIONS(613), - [anon_sym_enum] = ACTIONS(613), - [anon_sym_interface] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_go] = ACTIONS(613), - [anon_sym_spawn] = ACTIONS(613), - [anon_sym_json_DOTdecode] = ACTIONS(613), - [anon_sym_LBRACK2] = ACTIONS(1624), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(613), - [sym_none] = ACTIONS(613), - [sym_true] = ACTIONS(613), - [sym_false] = ACTIONS(613), - [sym_nil] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_if] = ACTIONS(613), - [anon_sym_DOLLARif] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_match] = ACTIONS(613), - [anon_sym_select] = ACTIONS(613), - [anon_sym_lock] = ACTIONS(613), - [anon_sym_rlock] = ACTIONS(613), - [anon_sym_unsafe] = ACTIONS(613), - [anon_sym_sql] = ACTIONS(613), - [sym_int_literal] = ACTIONS(613), - [sym_float_literal] = ACTIONS(613), - [sym_rune_literal] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(1628), - [anon_sym_map_LBRACK] = ACTIONS(1630), - [anon_sym_chan] = ACTIONS(1632), - [anon_sym_thread] = ACTIONS(1634), - [anon_sym_atomic] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(613), - [anon_sym_defer] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(613), - [anon_sym_break] = ACTIONS(613), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_return] = ACTIONS(613), - [anon_sym_DOLLARfor] = ACTIONS(613), - [anon_sym_for] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(613), - [anon_sym_asm] = ACTIONS(613), - [anon_sym_AT_LBRACK] = ACTIONS(613), - [sym___double_quote] = ACTIONS(613), - [sym___single_quote] = ACTIONS(613), - [sym___c_double_quote] = ACTIONS(613), - [sym___c_single_quote] = ACTIONS(613), - [sym___r_double_quote] = ACTIONS(613), - [sym___r_single_quote] = ACTIONS(613), - }, - [222] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [ts_builtin_sym_end] = ACTIONS(615), - [sym_identifier] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_CR] = ACTIONS(617), - [anon_sym_CR_LF] = ACTIONS(617), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_const] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym___global] = ACTIONS(617), - [anon_sym_type] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(617), - [anon_sym_union] = ACTIONS(617), - [anon_sym_pub] = ACTIONS(617), - [anon_sym_mut] = ACTIONS(617), - [anon_sym_enum] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_go] = ACTIONS(617), - [anon_sym_spawn] = ACTIONS(617), - [anon_sym_json_DOTdecode] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(617), - [sym_none] = ACTIONS(617), - [sym_true] = ACTIONS(617), - [sym_false] = ACTIONS(617), - [sym_nil] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_if] = ACTIONS(617), - [anon_sym_DOLLARif] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_match] = ACTIONS(617), - [anon_sym_select] = ACTIONS(617), - [anon_sym_lock] = ACTIONS(617), - [anon_sym_rlock] = ACTIONS(617), - [anon_sym_unsafe] = ACTIONS(617), - [anon_sym_sql] = ACTIONS(617), - [sym_int_literal] = ACTIONS(617), - [sym_float_literal] = ACTIONS(617), - [sym_rune_literal] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(617), - [anon_sym_map_LBRACK] = ACTIONS(617), - [anon_sym_chan] = ACTIONS(617), - [anon_sym_thread] = ACTIONS(617), - [anon_sym_atomic] = ACTIONS(617), - [anon_sym_assert] = ACTIONS(617), - [anon_sym_defer] = ACTIONS(617), - [anon_sym_goto] = ACTIONS(617), - [anon_sym_break] = ACTIONS(617), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_return] = ACTIONS(617), - [anon_sym_DOLLARfor] = ACTIONS(617), - [anon_sym_for] = ACTIONS(617), - [anon_sym_POUND] = ACTIONS(617), - [anon_sym_asm] = ACTIONS(617), - [anon_sym_AT_LBRACK] = ACTIONS(617), - [sym___double_quote] = ACTIONS(617), - [sym___single_quote] = ACTIONS(617), - [sym___c_double_quote] = ACTIONS(617), - [sym___c_single_quote] = ACTIONS(617), - [sym___r_double_quote] = ACTIONS(617), - [sym___r_single_quote] = ACTIONS(617), - }, - [223] = { - [sym_reference_expression] = STATE(4448), - [sym_type_reference_expression] = STATE(1002), - [sym_plain_type] = STATE(1088), - [sym__plain_type_without_special] = STATE(1084), - [sym_anon_struct_type] = STATE(1085), - [sym_multi_return_type] = STATE(1084), - [sym_result_type] = STATE(1084), - [sym_option_type] = STATE(1084), - [sym_qualified_type] = STATE(1002), - [sym_fixed_array_type] = STATE(1085), - [sym_array_type] = STATE(1085), - [sym_pointer_type] = STATE(1085), - [sym_wrong_pointer_type] = STATE(1085), - [sym_map_type] = STATE(1085), - [sym_channel_type] = STATE(1085), - [sym_shared_type] = STATE(1085), - [sym_thread_type] = STATE(1085), - [sym_atomic_type] = STATE(1085), - [sym_generic_type] = STATE(1085), - [sym_function_type] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(557), - [sym_identifier] = ACTIONS(1610), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_const] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym___global] = ACTIONS(561), - [anon_sym_type] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(561), - [anon_sym_pub] = ACTIONS(561), - [anon_sym_mut] = ACTIONS(561), - [anon_sym_enum] = ACTIONS(561), - [anon_sym_interface] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_go] = ACTIONS(561), - [anon_sym_spawn] = ACTIONS(561), - [anon_sym_json_DOTdecode] = ACTIONS(561), - [anon_sym_LBRACK2] = ACTIONS(1624), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_or] = ACTIONS(561), - [sym_none] = ACTIONS(561), - [sym_true] = ACTIONS(561), - [sym_false] = ACTIONS(561), - [sym_nil] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(561), - [anon_sym_POUND_LBRACK] = ACTIONS(561), - [anon_sym_if] = ACTIONS(561), - [anon_sym_DOLLARif] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(561), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(561), - [anon_sym_match] = ACTIONS(561), - [anon_sym_select] = ACTIONS(561), - [anon_sym_lock] = ACTIONS(561), - [anon_sym_rlock] = ACTIONS(561), - [anon_sym_unsafe] = ACTIONS(561), - [anon_sym_sql] = ACTIONS(561), - [sym_int_literal] = ACTIONS(561), - [sym_float_literal] = ACTIONS(561), - [sym_rune_literal] = ACTIONS(561), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(1628), - [anon_sym_map_LBRACK] = ACTIONS(1630), - [anon_sym_chan] = ACTIONS(1632), - [anon_sym_thread] = ACTIONS(1634), - [anon_sym_atomic] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(561), - [anon_sym_defer] = ACTIONS(561), - [anon_sym_goto] = ACTIONS(561), - [anon_sym_break] = ACTIONS(561), - [anon_sym_continue] = ACTIONS(561), - [anon_sym_return] = ACTIONS(561), - [anon_sym_DOLLARfor] = ACTIONS(561), - [anon_sym_for] = ACTIONS(561), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_asm] = ACTIONS(561), - [anon_sym_AT_LBRACK] = ACTIONS(561), - [sym___double_quote] = ACTIONS(561), - [sym___single_quote] = ACTIONS(561), - [sym___c_double_quote] = ACTIONS(561), - [sym___c_single_quote] = ACTIONS(561), - [sym___r_double_quote] = ACTIONS(561), - [sym___r_single_quote] = ACTIONS(561), - }, - [224] = { - [sym_reference_expression] = STATE(4448), - [sym_type_reference_expression] = STATE(1002), - [sym_plain_type] = STATE(1105), - [sym__plain_type_without_special] = STATE(1084), - [sym_anon_struct_type] = STATE(1085), - [sym_multi_return_type] = STATE(1084), - [sym_result_type] = STATE(1084), - [sym_option_type] = STATE(1084), - [sym_qualified_type] = STATE(1002), - [sym_fixed_array_type] = STATE(1085), - [sym_array_type] = STATE(1085), - [sym_pointer_type] = STATE(1085), - [sym_wrong_pointer_type] = STATE(1085), - [sym_map_type] = STATE(1085), - [sym_channel_type] = STATE(1085), - [sym_shared_type] = STATE(1085), - [sym_thread_type] = STATE(1085), - [sym_atomic_type] = STATE(1085), - [sym_generic_type] = STATE(1085), - [sym_function_type] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(619), - [sym_identifier] = ACTIONS(1610), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(1612), - [anon_sym___global] = ACTIONS(621), - [anon_sym_type] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(1618), - [anon_sym_union] = ACTIONS(621), - [anon_sym_pub] = ACTIONS(621), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_interface] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(1620), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_go] = ACTIONS(621), - [anon_sym_spawn] = ACTIONS(621), - [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(1624), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_nil] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_if] = ACTIONS(621), - [anon_sym_DOLLARif] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_match] = ACTIONS(621), - [anon_sym_select] = ACTIONS(621), - [anon_sym_lock] = ACTIONS(621), - [anon_sym_rlock] = ACTIONS(621), - [anon_sym_unsafe] = ACTIONS(621), - [anon_sym_sql] = ACTIONS(621), - [sym_int_literal] = ACTIONS(621), - [sym_float_literal] = ACTIONS(621), - [sym_rune_literal] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(1628), - [anon_sym_map_LBRACK] = ACTIONS(1630), - [anon_sym_chan] = ACTIONS(1632), - [anon_sym_thread] = ACTIONS(1634), - [anon_sym_atomic] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(621), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_return] = ACTIONS(621), - [anon_sym_DOLLARfor] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_POUND] = ACTIONS(621), - [anon_sym_asm] = ACTIONS(621), - [anon_sym_AT_LBRACK] = ACTIONS(621), - [sym___double_quote] = ACTIONS(621), - [sym___single_quote] = ACTIONS(621), - [sym___c_double_quote] = ACTIONS(621), - [sym___c_single_quote] = ACTIONS(621), - [sym___r_double_quote] = ACTIONS(621), - [sym___r_single_quote] = ACTIONS(621), - }, - [225] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_strictly_expression_list] = STATE(4326), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_simple_statement] = STATE(4476), + [sym_var_declaration] = STATE(4326), + [sym_assignment_statement] = STATE(4326), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [226] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(1366), + [221] = { + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_strictly_expression_list] = STATE(4326), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3445), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_simple_statement] = STATE(4507), + [sym_var_declaration] = STATE(4326), + [sym_assignment_statement] = STATE(4326), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), + }, + [222] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [ts_builtin_sym_end] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_CR] = ACTIONS(563), + [anon_sym_CR_LF] = ACTIONS(563), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym___global] = ACTIONS(563), + [anon_sym_type] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_union] = ACTIONS(563), + [anon_sym_pub] = ACTIONS(563), + [anon_sym_mut] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [anon_sym_interface] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_go] = ACTIONS(563), + [anon_sym_spawn] = ACTIONS(563), + [anon_sym_json_DOTdecode] = ACTIONS(563), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_nil] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_DOLLARif] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_match] = ACTIONS(563), + [anon_sym_select] = ACTIONS(563), + [anon_sym_lock] = ACTIONS(563), + [anon_sym_rlock] = ACTIONS(563), + [anon_sym_unsafe] = ACTIONS(563), + [anon_sym_sql] = ACTIONS(563), + [sym_int_literal] = ACTIONS(563), + [sym_float_literal] = ACTIONS(563), + [sym_rune_literal] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(563), + [anon_sym_defer] = ACTIONS(563), + [anon_sym_goto] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_DOLLARfor] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_asm] = ACTIONS(563), + [anon_sym_AT_LBRACK] = ACTIONS(563), + [sym___double_quote] = ACTIONS(563), + [sym___single_quote] = ACTIONS(563), + [sym___c_double_quote] = ACTIONS(563), + [sym___c_single_quote] = ACTIONS(563), + [sym___r_double_quote] = ACTIONS(563), + [sym___r_single_quote] = ACTIONS(563), + }, + [223] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym___global] = ACTIONS(619), + [anon_sym_type] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_union] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_interface] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(619), + [anon_sym_chan] = ACTIONS(619), + [anon_sym_thread] = ACTIONS(619), + [anon_sym_atomic] = ACTIONS(619), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_defer] = ACTIONS(619), + [anon_sym_goto] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_DOLLARfor] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_asm] = ACTIONS(619), + [anon_sym_AT_LBRACK] = ACTIONS(619), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), + }, + [224] = { + [sym_reference_expression] = STATE(4459), + [sym_type_reference_expression] = STATE(1019), + [sym_plain_type] = STATE(1104), + [sym__plain_type_without_special] = STATE(1075), + [sym_anon_struct_type] = STATE(1076), + [sym_multi_return_type] = STATE(1075), + [sym_result_type] = STATE(1075), + [sym_option_type] = STATE(1075), + [sym_qualified_type] = STATE(1019), + [sym_fixed_array_type] = STATE(1076), + [sym_array_type] = STATE(1076), + [sym_pointer_type] = STATE(1076), + [sym_wrong_pointer_type] = STATE(1076), + [sym_map_type] = STATE(1076), + [sym_channel_type] = STATE(1076), + [sym_shared_type] = STATE(1076), + [sym_thread_type] = STATE(1076), + [sym_atomic_type] = STATE(1076), + [sym_generic_type] = STATE(1076), + [sym_function_type] = STATE(1076), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(1614), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(623), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(1632), + [anon_sym_map_LBRACK] = ACTIONS(1634), + [anon_sym_chan] = ACTIONS(1636), + [anon_sym_thread] = ACTIONS(1638), + [anon_sym_atomic] = ACTIONS(1640), + [anon_sym_assert] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_goto] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_DOLLARfor] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(623), + [anon_sym_AT_LBRACK] = ACTIONS(623), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), + }, + [225] = { + [sym_reference_expression] = STATE(4459), + [sym_type_reference_expression] = STATE(1019), + [sym_plain_type] = STATE(1063), + [sym__plain_type_without_special] = STATE(1075), + [sym_anon_struct_type] = STATE(1076), + [sym_multi_return_type] = STATE(1075), + [sym_result_type] = STATE(1075), + [sym_option_type] = STATE(1075), + [sym_qualified_type] = STATE(1019), + [sym_fixed_array_type] = STATE(1076), + [sym_array_type] = STATE(1076), + [sym_pointer_type] = STATE(1076), + [sym_wrong_pointer_type] = STATE(1076), + [sym_map_type] = STATE(1076), + [sym_channel_type] = STATE(1076), + [sym_shared_type] = STATE(1076), + [sym_thread_type] = STATE(1076), + [sym_atomic_type] = STATE(1076), + [sym_generic_type] = STATE(1076), + [sym_function_type] = STATE(1076), + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(1614), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym___global] = ACTIONS(615), + [anon_sym_type] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(615), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_enum] = ACTIONS(615), + [anon_sym_interface] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(1632), + [anon_sym_map_LBRACK] = ACTIONS(1634), + [anon_sym_chan] = ACTIONS(1636), + [anon_sym_thread] = ACTIONS(1638), + [anon_sym_atomic] = ACTIONS(1640), + [anon_sym_assert] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_goto] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_DOLLARfor] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(615), + [anon_sym_asm] = ACTIONS(615), + [anon_sym_AT_LBRACK] = ACTIONS(615), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), + }, + [226] = { + [sym_reference_expression] = STATE(4459), + [sym_type_reference_expression] = STATE(1019), + [sym_plain_type] = STATE(1106), + [sym__plain_type_without_special] = STATE(1075), + [sym_anon_struct_type] = STATE(1076), + [sym_multi_return_type] = STATE(1075), + [sym_result_type] = STATE(1075), + [sym_option_type] = STATE(1075), + [sym_qualified_type] = STATE(1019), + [sym_fixed_array_type] = STATE(1076), + [sym_array_type] = STATE(1076), + [sym_pointer_type] = STATE(1076), + [sym_wrong_pointer_type] = STATE(1076), + [sym_map_type] = STATE(1076), + [sym_channel_type] = STATE(1076), + [sym_shared_type] = STATE(1076), + [sym_thread_type] = STATE(1076), + [sym_atomic_type] = STATE(1076), + [sym_generic_type] = STATE(1076), + [sym_function_type] = STATE(1076), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_identifier] = ACTIONS(1614), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym___global] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_interface] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(1632), + [anon_sym_map_LBRACK] = ACTIONS(1634), + [anon_sym_chan] = ACTIONS(1636), + [anon_sym_thread] = ACTIONS(1638), + [anon_sym_atomic] = ACTIONS(1640), + [anon_sym_assert] = ACTIONS(585), + [anon_sym_defer] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_DOLLARfor] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_asm] = ACTIONS(585), + [anon_sym_AT_LBRACK] = ACTIONS(585), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, [227] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4222), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1793), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [228] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4327), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(876), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2411), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4218), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [229] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4268), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2803), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [230] = { - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4382), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4328), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2415), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [231] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4192), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2527), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2483), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4340), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [232] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4374), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2362), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element] = STATE(1978), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_short_element_list_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_struct] = ACTIONS(1697), + [anon_sym_mut] = ACTIONS(1700), + [anon_sym_QMARK] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1712), + [anon_sym_json_DOTdecode] = ACTIONS(1715), + [anon_sym_LBRACK2] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1721), + [anon_sym_LT_DASH] = ACTIONS(1724), + [sym_none] = ACTIONS(1727), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_nil] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_DOLLARif] = ACTIONS(1733), + [anon_sym_match] = ACTIONS(1736), + [anon_sym_select] = ACTIONS(1739), + [anon_sym_lock] = ACTIONS(1742), + [anon_sym_rlock] = ACTIONS(1742), + [anon_sym_unsafe] = ACTIONS(1745), + [anon_sym_sql] = ACTIONS(1748), + [sym_int_literal] = ACTIONS(1727), + [sym_float_literal] = ACTIONS(1751), + [sym_rune_literal] = ACTIONS(1751), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_shared] = ACTIONS(1757), + [anon_sym_map_LBRACK] = ACTIONS(1760), + [anon_sym_chan] = ACTIONS(1763), + [anon_sym_thread] = ACTIONS(1766), + [anon_sym_atomic] = ACTIONS(1769), + [sym___double_quote] = ACTIONS(1772), + [sym___single_quote] = ACTIONS(1775), + [sym___c_double_quote] = ACTIONS(1778), + [sym___c_single_quote] = ACTIONS(1781), + [sym___r_double_quote] = ACTIONS(1784), + [sym___r_single_quote] = ACTIONS(1787), }, [233] = { - [sym__expression] = STATE(2471), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4114), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2492), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4150), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [234] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(236), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [235] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4290), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1337), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_element] = STATE(1978), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_short_element_list_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [236] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [237] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [238] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4182), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2712), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4343), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1891), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [239] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4211), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4422), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1362), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [240] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4391), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1960), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [241] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4313), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2220), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [242] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4374), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2362), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [243] = { - [sym__expression] = STATE(2444), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4407), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4328), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2415), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1808), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [244] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4309), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1268), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [245] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4182), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2712), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4338), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1111), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [246] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [247] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4313), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2220), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2489), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4219), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [248] = { - [sym__expression] = STATE(2435), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4176), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4338), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1111), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [249] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(291), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2432), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4327), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [250] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4172), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1682), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1196), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym___rcbr] = STATE(3797), + [aux_sym_string_interpolation_repeat1] = STATE(295), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [251] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4268), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2803), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [252] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [aux_sym_strictly_expression_list_repeat1] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(1708), - [sym_identifier] = ACTIONS(1710), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_CR] = ACTIONS(1710), - [anon_sym_CR_LF] = ACTIONS(1710), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(1716), - [anon_sym___global] = ACTIONS(1710), - [anon_sym_type] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_pub] = ACTIONS(1710), - [anon_sym_mut] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1710), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(1710), - [anon_sym_spawn] = ACTIONS(1710), - [anon_sym_json_DOTdecode] = ACTIONS(1710), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(1710), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_or] = ACTIONS(1742), - [sym_none] = ACTIONS(1710), - [sym_true] = ACTIONS(1710), - [sym_false] = ACTIONS(1710), - [sym_nil] = ACTIONS(1710), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_DOLLARif] = ACTIONS(1710), - [anon_sym_is] = ACTIONS(1744), - [anon_sym_BANGis] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1748), - [anon_sym_BANGin] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(1710), - [anon_sym_select] = ACTIONS(1710), - [anon_sym_STAR_EQ] = ACTIONS(1716), - [anon_sym_SLASH_EQ] = ACTIONS(1716), - [anon_sym_PERCENT_EQ] = ACTIONS(1716), - [anon_sym_LT_LT_EQ] = ACTIONS(1716), - [anon_sym_GT_GT_EQ] = ACTIONS(1716), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1716), - [anon_sym_AMP_EQ] = ACTIONS(1716), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1716), - [anon_sym_PLUS_EQ] = ACTIONS(1716), - [anon_sym_DASH_EQ] = ACTIONS(1716), - [anon_sym_PIPE_EQ] = ACTIONS(1716), - [anon_sym_CARET_EQ] = ACTIONS(1716), - [anon_sym_COLON_EQ] = ACTIONS(1716), - [anon_sym_lock] = ACTIONS(1710), - [anon_sym_rlock] = ACTIONS(1710), - [anon_sym_unsafe] = ACTIONS(1710), - [anon_sym_sql] = ACTIONS(1710), - [sym_int_literal] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), - [sym_rune_literal] = ACTIONS(1710), - [anon_sym_AT] = ACTIONS(1710), - [anon_sym_shared] = ACTIONS(1710), - [anon_sym_map_LBRACK] = ACTIONS(1710), - [anon_sym_chan] = ACTIONS(1710), - [anon_sym_thread] = ACTIONS(1710), - [anon_sym_atomic] = ACTIONS(1710), - [anon_sym_assert] = ACTIONS(1710), - [anon_sym_defer] = ACTIONS(1710), - [anon_sym_goto] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_DOLLARfor] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_asm] = ACTIONS(1710), - [anon_sym_AT_LBRACK] = ACTIONS(1710), - [sym___double_quote] = ACTIONS(1710), - [sym___single_quote] = ACTIONS(1710), - [sym___c_double_quote] = ACTIONS(1710), - [sym___c_single_quote] = ACTIONS(1710), - [sym___r_double_quote] = ACTIONS(1710), - [sym___r_single_quote] = ACTIONS(1710), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4300), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(974), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [253] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4149), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2047), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [254] = { - [sym__expression] = STATE(2461), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4125), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [255] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2466), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4275), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [256] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4174), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1017), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4328), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2415), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [257] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [258] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4374), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2362), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4396), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2235), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [259] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2417), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4298), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [260] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4133), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1825), - [sym_identifier] = ACTIONS(1648), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [aux_sym_strictly_expression_list_repeat1] = STATE(3389), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LF] = ACTIONS(1858), + [anon_sym_CR] = ACTIONS(1858), + [anon_sym_CR_LF] = ACTIONS(1858), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_COMMA] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(1868), + [anon_sym___global] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_mut] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(1858), + [anon_sym_spawn] = ACTIONS(1858), + [anon_sym_json_DOTdecode] = ACTIONS(1858), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1890), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1896), + [sym_none] = ACTIONS(1858), + [sym_true] = ACTIONS(1858), + [sym_false] = ACTIONS(1858), + [sym_nil] = ACTIONS(1858), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_DOLLARif] = ACTIONS(1858), + [anon_sym_is] = ACTIONS(1898), + [anon_sym_BANGis] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_select] = ACTIONS(1858), + [anon_sym_STAR_EQ] = ACTIONS(1868), + [anon_sym_SLASH_EQ] = ACTIONS(1868), + [anon_sym_PERCENT_EQ] = ACTIONS(1868), + [anon_sym_LT_LT_EQ] = ACTIONS(1868), + [anon_sym_GT_GT_EQ] = ACTIONS(1868), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1868), + [anon_sym_AMP_EQ] = ACTIONS(1868), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1868), + [anon_sym_PLUS_EQ] = ACTIONS(1868), + [anon_sym_DASH_EQ] = ACTIONS(1868), + [anon_sym_PIPE_EQ] = ACTIONS(1868), + [anon_sym_CARET_EQ] = ACTIONS(1868), + [anon_sym_COLON_EQ] = ACTIONS(1868), + [anon_sym_lock] = ACTIONS(1858), + [anon_sym_rlock] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_sql] = ACTIONS(1858), + [sym_int_literal] = ACTIONS(1858), + [sym_float_literal] = ACTIONS(1858), + [sym_rune_literal] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [anon_sym_shared] = ACTIONS(1858), + [anon_sym_map_LBRACK] = ACTIONS(1858), + [anon_sym_chan] = ACTIONS(1858), + [anon_sym_thread] = ACTIONS(1858), + [anon_sym_atomic] = ACTIONS(1858), + [anon_sym_assert] = ACTIONS(1858), + [anon_sym_defer] = ACTIONS(1858), + [anon_sym_goto] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_DOLLARfor] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_asm] = ACTIONS(1858), + [anon_sym_AT_LBRACK] = ACTIONS(1858), + [sym___double_quote] = ACTIONS(1858), + [sym___single_quote] = ACTIONS(1858), + [sym___c_double_quote] = ACTIONS(1858), + [sym___c_single_quote] = ACTIONS(1858), + [sym___r_double_quote] = ACTIONS(1858), + [sym___r_single_quote] = ACTIONS(1858), }, [261] = { - [sym__expression] = STATE(2444), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2655), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4407), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [262] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4187), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [263] = { - [sym__expression] = STATE(2452), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4298), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [264] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element] = STATE(1965), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_short_element_list_repeat1] = STATE(277), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4328), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2415), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [265] = { - [sym__expression] = STATE(2457), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4169), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2471), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4427), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [266] = { - [sym__expression] = STATE(2458), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2655), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4287), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4146), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2922), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [267] = { - [sym__expression] = STATE(2456), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4317), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [268] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(237), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4396), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2235), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [269] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [270] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2434), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4397), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [271] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [aux_sym_strictly_expression_list_repeat1] = STATE(3357), - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LF] = ACTIONS(1776), - [anon_sym_CR] = ACTIONS(1776), - [anon_sym_CR_LF] = ACTIONS(1776), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym___global] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_mut] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_interface] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(1776), - [anon_sym_spawn] = ACTIONS(1776), - [anon_sym_json_DOTdecode] = ACTIONS(1776), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(1782), - [anon_sym_LT_LT] = ACTIONS(1784), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_or] = ACTIONS(1742), - [sym_none] = ACTIONS(1776), - [sym_true] = ACTIONS(1776), - [sym_false] = ACTIONS(1776), - [sym_nil] = ACTIONS(1776), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_DOLLARif] = ACTIONS(1776), - [anon_sym_is] = ACTIONS(1744), - [anon_sym_BANGis] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1748), - [anon_sym_BANGin] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_select] = ACTIONS(1776), - [anon_sym_STAR_EQ] = ACTIONS(1780), - [anon_sym_SLASH_EQ] = ACTIONS(1780), - [anon_sym_PERCENT_EQ] = ACTIONS(1780), - [anon_sym_LT_LT_EQ] = ACTIONS(1780), - [anon_sym_GT_GT_EQ] = ACTIONS(1780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1780), - [anon_sym_AMP_EQ] = ACTIONS(1780), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1780), - [anon_sym_PLUS_EQ] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1780), - [anon_sym_PIPE_EQ] = ACTIONS(1780), - [anon_sym_CARET_EQ] = ACTIONS(1780), - [anon_sym_COLON_EQ] = ACTIONS(1780), - [anon_sym_lock] = ACTIONS(1776), - [anon_sym_rlock] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_sql] = ACTIONS(1776), - [sym_int_literal] = ACTIONS(1776), - [sym_float_literal] = ACTIONS(1776), - [sym_rune_literal] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_shared] = ACTIONS(1776), - [anon_sym_map_LBRACK] = ACTIONS(1776), - [anon_sym_chan] = ACTIONS(1776), - [anon_sym_thread] = ACTIONS(1776), - [anon_sym_atomic] = ACTIONS(1776), - [anon_sym_assert] = ACTIONS(1776), - [anon_sym_defer] = ACTIONS(1776), - [anon_sym_goto] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_DOLLARfor] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_asm] = ACTIONS(1776), - [anon_sym_AT_LBRACK] = ACTIONS(1776), - [sym___double_quote] = ACTIONS(1776), - [sym___single_quote] = ACTIONS(1776), - [sym___c_double_quote] = ACTIONS(1776), - [sym___c_single_quote] = ACTIONS(1776), - [sym___r_double_quote] = ACTIONS(1776), - [sym___r_single_quote] = ACTIONS(1776), - }, - [272] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4330), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2932), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [273] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4374), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2362), - [sym_identifier] = ACTIONS(1648), + [272] = { + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(271), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [273] = { + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [aux_sym_strictly_expression_list_repeat1] = STATE(1456), + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1928), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_CR] = ACTIONS(1928), + [anon_sym_CR_LF] = ACTIONS(1928), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(1930), + [anon_sym___global] = ACTIONS(1928), + [anon_sym_type] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_pub] = ACTIONS(1928), + [anon_sym_mut] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_interface] = ACTIONS(1928), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(1928), + [anon_sym_spawn] = ACTIONS(1928), + [anon_sym_json_DOTdecode] = ACTIONS(1928), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1928), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1896), + [sym_none] = ACTIONS(1928), + [sym_true] = ACTIONS(1928), + [sym_false] = ACTIONS(1928), + [sym_nil] = ACTIONS(1928), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_DOLLARif] = ACTIONS(1928), + [anon_sym_is] = ACTIONS(1898), + [anon_sym_BANGis] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1928), + [anon_sym_select] = ACTIONS(1928), + [anon_sym_STAR_EQ] = ACTIONS(1930), + [anon_sym_SLASH_EQ] = ACTIONS(1930), + [anon_sym_PERCENT_EQ] = ACTIONS(1930), + [anon_sym_LT_LT_EQ] = ACTIONS(1930), + [anon_sym_GT_GT_EQ] = ACTIONS(1930), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1930), + [anon_sym_AMP_EQ] = ACTIONS(1930), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1930), + [anon_sym_PLUS_EQ] = ACTIONS(1930), + [anon_sym_DASH_EQ] = ACTIONS(1930), + [anon_sym_PIPE_EQ] = ACTIONS(1930), + [anon_sym_CARET_EQ] = ACTIONS(1930), + [anon_sym_COLON_EQ] = ACTIONS(1930), + [anon_sym_lock] = ACTIONS(1928), + [anon_sym_rlock] = ACTIONS(1928), + [anon_sym_unsafe] = ACTIONS(1928), + [anon_sym_sql] = ACTIONS(1928), + [sym_int_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), + [sym_rune_literal] = ACTIONS(1928), + [anon_sym_AT] = ACTIONS(1928), + [anon_sym_shared] = ACTIONS(1928), + [anon_sym_map_LBRACK] = ACTIONS(1928), + [anon_sym_chan] = ACTIONS(1928), + [anon_sym_thread] = ACTIONS(1928), + [anon_sym_atomic] = ACTIONS(1928), + [anon_sym_assert] = ACTIONS(1928), + [anon_sym_defer] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_DOLLARfor] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_asm] = ACTIONS(1928), + [anon_sym_AT_LBRACK] = ACTIONS(1928), + [sym___double_quote] = ACTIONS(1928), + [sym___single_quote] = ACTIONS(1928), + [sym___c_double_quote] = ACTIONS(1928), + [sym___c_single_quote] = ACTIONS(1928), + [sym___r_double_quote] = ACTIONS(1928), + [sym___r_single_quote] = ACTIONS(1928), }, [274] = { - [sym__expression] = STATE(2439), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4393), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4256), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2613), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [275] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(281), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4256), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2613), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [276] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1223), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym___rcbr] = STATE(3868), + [aux_sym_string_interpolation_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [277] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_element] = STATE(1965), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_short_element_list_repeat1] = STATE(277), - [sym_identifier] = ACTIONS(1794), + [sym__expression] = STATE(2484), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4309), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_mut] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_go] = ACTIONS(1829), - [anon_sym_spawn] = ACTIONS(1832), - [anon_sym_json_DOTdecode] = ACTIONS(1835), - [anon_sym_LBRACK2] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_LT_DASH] = ACTIONS(1844), - [sym_none] = ACTIONS(1847), - [sym_true] = ACTIONS(1847), - [sym_false] = ACTIONS(1847), - [sym_nil] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_DOLLARif] = ACTIONS(1853), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_select] = ACTIONS(1859), - [anon_sym_lock] = ACTIONS(1862), - [anon_sym_rlock] = ACTIONS(1862), - [anon_sym_unsafe] = ACTIONS(1865), - [anon_sym_sql] = ACTIONS(1868), - [sym_int_literal] = ACTIONS(1847), - [sym_float_literal] = ACTIONS(1871), - [sym_rune_literal] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1874), - [anon_sym_shared] = ACTIONS(1877), - [anon_sym_map_LBRACK] = ACTIONS(1880), - [anon_sym_chan] = ACTIONS(1883), - [anon_sym_thread] = ACTIONS(1886), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1892), - [sym___single_quote] = ACTIONS(1895), - [sym___c_double_quote] = ACTIONS(1898), - [sym___c_single_quote] = ACTIONS(1901), - [sym___r_double_quote] = ACTIONS(1904), - [sym___r_single_quote] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [278] = { - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4340), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4212), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1969), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [279] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2419), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4440), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [280] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4192), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2527), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(262), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [281] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [282] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2389), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4342), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [283] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [284] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4174), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1017), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [285] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4115), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1955), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2471), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2698), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4427), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [286] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(255), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [287] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [288] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4182), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(2712), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4422), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1362), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [289] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4391), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_block] = STATE(1960), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [290] = { - [sym__expression] = STATE(2458), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3864), - [sym_expression_list] = STATE(4646), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_var_declaration] = STATE(4287), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1956), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_fn] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1979), + [anon_sym_mut] = ACTIONS(1982), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_go] = ACTIONS(1991), + [anon_sym_spawn] = ACTIONS(1994), + [anon_sym_json_DOTdecode] = ACTIONS(1997), + [anon_sym_LBRACK2] = ACTIONS(2000), + [anon_sym_TILDE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_LT_DASH] = ACTIONS(2006), + [sym_none] = ACTIONS(2009), + [sym_true] = ACTIONS(2009), + [sym_false] = ACTIONS(2009), + [sym_nil] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_DOLLARif] = ACTIONS(2015), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_select] = ACTIONS(2021), + [anon_sym_lock] = ACTIONS(2024), + [anon_sym_rlock] = ACTIONS(2024), + [anon_sym_unsafe] = ACTIONS(2027), + [anon_sym_sql] = ACTIONS(2030), + [sym_int_literal] = ACTIONS(2009), + [sym_float_literal] = ACTIONS(2033), + [sym_rune_literal] = ACTIONS(2033), + [anon_sym_AT] = ACTIONS(2036), + [anon_sym_shared] = ACTIONS(2039), + [anon_sym_map_LBRACK] = ACTIONS(2042), + [anon_sym_chan] = ACTIONS(2045), + [anon_sym_thread] = ACTIONS(2048), + [anon_sym_atomic] = ACTIONS(2051), + [sym___double_quote] = ACTIONS(2054), + [sym___single_quote] = ACTIONS(2057), + [sym___c_double_quote] = ACTIONS(2060), + [sym___c_single_quote] = ACTIONS(2063), + [sym___r_double_quote] = ACTIONS(2066), + [sym___r_single_quote] = ACTIONS(2069), + }, + [291] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4373), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1211), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [291] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1366), + [292] = { + [sym__expression] = STATE(2374), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4141), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [292] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_map_keyed_element] = STATE(2125), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym_map_init_expression_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_fn] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1951), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1960), - [anon_sym_QMARK] = ACTIONS(1963), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_go] = ACTIONS(1969), - [anon_sym_spawn] = ACTIONS(1972), - [anon_sym_json_DOTdecode] = ACTIONS(1975), - [anon_sym_LBRACK2] = ACTIONS(1978), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_LT_DASH] = ACTIONS(1984), - [sym_none] = ACTIONS(1987), - [sym_true] = ACTIONS(1987), - [sym_false] = ACTIONS(1987), - [sym_nil] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_DOLLARif] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_select] = ACTIONS(1999), - [anon_sym_lock] = ACTIONS(2002), - [anon_sym_rlock] = ACTIONS(2002), - [anon_sym_unsafe] = ACTIONS(2005), - [anon_sym_sql] = ACTIONS(2008), - [sym_int_literal] = ACTIONS(1987), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(2014), - [anon_sym_shared] = ACTIONS(2017), - [anon_sym_map_LBRACK] = ACTIONS(2020), - [anon_sym_chan] = ACTIONS(2023), - [anon_sym_thread] = ACTIONS(2026), - [anon_sym_atomic] = ACTIONS(2029), - [sym___double_quote] = ACTIONS(2032), - [sym___single_quote] = ACTIONS(2035), - [sym___c_double_quote] = ACTIONS(2038), - [sym___c_single_quote] = ACTIONS(2041), - [sym___r_double_quote] = ACTIONS(2044), - [sym___r_single_quote] = ACTIONS(2047), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [293] = { - [sym__expression] = STATE(2324), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3616), - [sym_expression_list] = STATE(3784), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4212), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(1969), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [294] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2052), - [anon_sym_CR] = ACTIONS(2052), - [anon_sym_CR_LF] = ACTIONS(2052), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2052), - [anon_sym___global] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_mut] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_interface] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2052), - [anon_sym_json_DOTdecode] = ACTIONS(2052), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2052), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_or] = ACTIONS(1742), - [sym_none] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_nil] = ACTIONS(2052), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_DOLLARif] = ACTIONS(2052), - [anon_sym_is] = ACTIONS(1744), - [anon_sym_BANGis] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1748), - [anon_sym_BANGin] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_select] = ACTIONS(2052), - [anon_sym_STAR_EQ] = ACTIONS(2052), - [anon_sym_SLASH_EQ] = ACTIONS(2052), - [anon_sym_PERCENT_EQ] = ACTIONS(2052), - [anon_sym_LT_LT_EQ] = ACTIONS(2052), - [anon_sym_GT_GT_EQ] = ACTIONS(2052), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2052), - [anon_sym_AMP_EQ] = ACTIONS(2052), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2052), - [anon_sym_PLUS_EQ] = ACTIONS(2052), - [anon_sym_DASH_EQ] = ACTIONS(2052), - [anon_sym_PIPE_EQ] = ACTIONS(2052), - [anon_sym_CARET_EQ] = ACTIONS(2052), - [anon_sym_COLON_EQ] = ACTIONS(2052), - [anon_sym_lock] = ACTIONS(2052), - [anon_sym_rlock] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_sql] = ACTIONS(2052), - [sym_int_literal] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), - [sym_rune_literal] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_shared] = ACTIONS(2052), - [anon_sym_map_LBRACK] = ACTIONS(2052), - [anon_sym_chan] = ACTIONS(2052), - [anon_sym_thread] = ACTIONS(2052), - [anon_sym_atomic] = ACTIONS(2052), - [anon_sym_assert] = ACTIONS(2052), - [anon_sym_defer] = ACTIONS(2052), - [anon_sym_goto] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_DOLLARfor] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_asm] = ACTIONS(2052), - [anon_sym_AT_LBRACK] = ACTIONS(2052), - [sym___double_quote] = ACTIONS(2052), - [sym___single_quote] = ACTIONS(2052), - [sym___c_double_quote] = ACTIONS(2052), - [sym___c_single_quote] = ACTIONS(2052), - [sym___r_double_quote] = ACTIONS(2052), - [sym___r_single_quote] = ACTIONS(2052), + [sym__expression] = STATE(1429), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym___rcbr] = STATE(3840), + [aux_sym_string_interpolation_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [295] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(386), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1429), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym___rcbr] = STATE(3795), + [aux_sym_string_interpolation_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2054), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [296] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(718), - [sym_mutable_expression] = STATE(3916), - [sym_expression_list] = STATE(4155), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [297] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4418), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_map_keyed_element] = STATE(2110), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [298] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4268), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_block] = STATE(2803), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2084), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [299] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2432), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2698), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3977), + [sym_expression_list] = STATE(4627), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_var_declaration] = STATE(4327), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [300] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4418), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2082), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [301] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4154), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2679), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4551), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [302] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4431), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [303] = { - [sym__expression] = STATE(2651), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4702), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [304] = { - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4653), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2696), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4679), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [305] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4498), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [306] = { - [sym__expression] = STATE(2668), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4731), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4446), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [307] = { - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(478), - [sym_mutable_expression] = STATE(1430), - [sym_expression_list] = STATE(1563), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4580), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [308] = { - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(478), - [sym_mutable_expression] = STATE(1430), - [sym_expression_list] = STATE(1572), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4580), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [309] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4536), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2696), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4679), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [310] = { - [sym__expression] = STATE(2668), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4731), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1429), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym_string_interpolation_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(2100), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_mut] = ACTIONS(2126), + [anon_sym_QMARK] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_go] = ACTIONS(2135), + [anon_sym_spawn] = ACTIONS(2138), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_LT_DASH] = ACTIONS(2150), + [sym_none] = ACTIONS(2153), + [sym_true] = ACTIONS(2153), + [sym_false] = ACTIONS(2153), + [sym_nil] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_DOLLARif] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2165), + [anon_sym_lock] = ACTIONS(2168), + [anon_sym_rlock] = ACTIONS(2168), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_sql] = ACTIONS(2174), + [sym_int_literal] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2177), + [sym_rune_literal] = ACTIONS(2177), + [anon_sym_AT] = ACTIONS(2180), + [anon_sym_shared] = ACTIONS(2183), + [anon_sym_map_LBRACK] = ACTIONS(2186), + [anon_sym_chan] = ACTIONS(2189), + [anon_sym_thread] = ACTIONS(2192), + [anon_sym_atomic] = ACTIONS(2195), + [sym___double_quote] = ACTIONS(2198), + [sym___single_quote] = ACTIONS(2201), + [sym___c_double_quote] = ACTIONS(2204), + [sym___c_single_quote] = ACTIONS(2207), + [sym___r_double_quote] = ACTIONS(2210), + [sym___r_single_quote] = ACTIONS(2213), }, [311] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4557), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4498), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [312] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4557), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_LF] = ACTIONS(2220), + [anon_sym_CR] = ACTIONS(2220), + [anon_sym_CR_LF] = ACTIONS(2220), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_COMMA] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2220), + [anon_sym___global] = ACTIONS(2220), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_pub] = ACTIONS(2220), + [anon_sym_mut] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_interface] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2220), + [anon_sym_spawn] = ACTIONS(2220), + [anon_sym_json_DOTdecode] = ACTIONS(2220), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1896), + [sym_none] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_nil] = ACTIONS(2220), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_DOLLARif] = ACTIONS(2220), + [anon_sym_is] = ACTIONS(1898), + [anon_sym_BANGis] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_select] = ACTIONS(2220), + [anon_sym_STAR_EQ] = ACTIONS(2220), + [anon_sym_SLASH_EQ] = ACTIONS(2220), + [anon_sym_PERCENT_EQ] = ACTIONS(2220), + [anon_sym_LT_LT_EQ] = ACTIONS(2220), + [anon_sym_GT_GT_EQ] = ACTIONS(2220), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2220), + [anon_sym_AMP_EQ] = ACTIONS(2220), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2220), + [anon_sym_PLUS_EQ] = ACTIONS(2220), + [anon_sym_DASH_EQ] = ACTIONS(2220), + [anon_sym_PIPE_EQ] = ACTIONS(2220), + [anon_sym_CARET_EQ] = ACTIONS(2220), + [anon_sym_COLON_EQ] = ACTIONS(2220), + [anon_sym_lock] = ACTIONS(2220), + [anon_sym_rlock] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_sql] = ACTIONS(2220), + [sym_int_literal] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), + [sym_rune_literal] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2220), + [anon_sym_shared] = ACTIONS(2220), + [anon_sym_map_LBRACK] = ACTIONS(2220), + [anon_sym_chan] = ACTIONS(2220), + [anon_sym_thread] = ACTIONS(2220), + [anon_sym_atomic] = ACTIONS(2220), + [anon_sym_assert] = ACTIONS(2220), + [anon_sym_defer] = ACTIONS(2220), + [anon_sym_goto] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_DOLLARfor] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_asm] = ACTIONS(2220), + [anon_sym_AT_LBRACK] = ACTIONS(2220), + [sym___double_quote] = ACTIONS(2220), + [sym___single_quote] = ACTIONS(2220), + [sym___c_double_quote] = ACTIONS(2220), + [sym___c_single_quote] = ACTIONS(2220), + [sym___r_double_quote] = ACTIONS(2220), + [sym___r_single_quote] = ACTIONS(2220), + }, + [313] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(394), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, - [313] = { - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4631), - [sym_identifier] = ACTIONS(2092), + [314] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2224), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, - [314] = { - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4631), - [sym_identifier] = ACTIONS(1366), + [315] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, - [315] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [316] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2228), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, - [316] = { - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4653), - [sym_identifier] = ACTIONS(2092), + [317] = { + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4674), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [317] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4573), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [318] = { + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4674), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [318] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LF] = ACTIONS(2144), - [anon_sym_CR] = ACTIONS(2144), - [anon_sym_CR_LF] = ACTIONS(2144), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2144), - [anon_sym___global] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_interface] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2144), - [anon_sym_spawn] = ACTIONS(2144), - [anon_sym_json_DOTdecode] = ACTIONS(2144), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_or] = ACTIONS(2144), - [sym_none] = ACTIONS(2144), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_nil] = ACTIONS(2144), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_DOLLARif] = ACTIONS(2144), - [anon_sym_is] = ACTIONS(2144), - [anon_sym_BANGis] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_BANGin] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_select] = ACTIONS(2144), - [anon_sym_STAR_EQ] = ACTIONS(2144), - [anon_sym_SLASH_EQ] = ACTIONS(2144), - [anon_sym_PERCENT_EQ] = ACTIONS(2144), - [anon_sym_LT_LT_EQ] = ACTIONS(2144), - [anon_sym_GT_GT_EQ] = ACTIONS(2144), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2144), - [anon_sym_AMP_EQ] = ACTIONS(2144), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2144), - [anon_sym_PLUS_EQ] = ACTIONS(2144), - [anon_sym_DASH_EQ] = ACTIONS(2144), - [anon_sym_PIPE_EQ] = ACTIONS(2144), - [anon_sym_CARET_EQ] = ACTIONS(2144), - [anon_sym_COLON_EQ] = ACTIONS(2144), - [anon_sym_lock] = ACTIONS(2144), - [anon_sym_rlock] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_sql] = ACTIONS(2144), - [sym_int_literal] = ACTIONS(2144), - [sym_float_literal] = ACTIONS(2144), - [sym_rune_literal] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_shared] = ACTIONS(2144), - [anon_sym_map_LBRACK] = ACTIONS(2144), - [anon_sym_chan] = ACTIONS(2144), - [anon_sym_thread] = ACTIONS(2144), - [anon_sym_atomic] = ACTIONS(2144), - [anon_sym_assert] = ACTIONS(2144), - [anon_sym_defer] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_DOLLARfor] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym_AT_LBRACK] = ACTIONS(2144), - [sym___double_quote] = ACTIONS(2144), - [sym___single_quote] = ACTIONS(2144), - [sym___c_double_quote] = ACTIONS(2144), - [sym___c_single_quote] = ACTIONS(2144), - [sym___r_double_quote] = ACTIONS(2144), - [sym___r_single_quote] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [319] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2230), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [320] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4421), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4595), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [321] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4557), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4595), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [322] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4536), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_CR] = ACTIONS(2234), + [anon_sym_CR_LF] = ACTIONS(2234), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym___global] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1896), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(1898), + [anon_sym_BANGis] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_STAR_EQ] = ACTIONS(2234), + [anon_sym_SLASH_EQ] = ACTIONS(2234), + [anon_sym_PERCENT_EQ] = ACTIONS(2234), + [anon_sym_LT_LT_EQ] = ACTIONS(2234), + [anon_sym_GT_GT_EQ] = ACTIONS(2234), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2234), + [anon_sym_AMP_EQ] = ACTIONS(2234), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2234), + [anon_sym_PLUS_EQ] = ACTIONS(2234), + [anon_sym_DASH_EQ] = ACTIONS(2234), + [anon_sym_PIPE_EQ] = ACTIONS(2234), + [anon_sym_CARET_EQ] = ACTIONS(2234), + [anon_sym_COLON_EQ] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + [sym_rune_literal] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2234), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [anon_sym_assert] = ACTIONS(2234), + [anon_sym_defer] = ACTIONS(2234), + [anon_sym_goto] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_DOLLARfor] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_asm] = ACTIONS(2234), + [anon_sym_AT_LBRACK] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2234), + [sym___single_quote] = ACTIONS(2234), + [sym___c_double_quote] = ACTIONS(2234), + [sym___c_single_quote] = ACTIONS(2234), + [sym___r_double_quote] = ACTIONS(2234), + [sym___r_single_quote] = ACTIONS(2234), + }, + [323] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4456), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [323] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(1300), + [324] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [324] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_LF] = ACTIONS(2156), - [anon_sym_CR] = ACTIONS(2156), - [anon_sym_CR_LF] = ACTIONS(2156), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2156), - [anon_sym___global] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2156), - [anon_sym_GT_EQ] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_mut] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2156), - [anon_sym_spawn] = ACTIONS(2156), - [anon_sym_json_DOTdecode] = ACTIONS(2156), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [anon_sym_or] = ACTIONS(2156), - [sym_none] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nil] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_DOLLARif] = ACTIONS(2156), - [anon_sym_is] = ACTIONS(2156), - [anon_sym_BANGis] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_BANGin] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_select] = ACTIONS(2156), - [anon_sym_STAR_EQ] = ACTIONS(2156), - [anon_sym_SLASH_EQ] = ACTIONS(2156), - [anon_sym_PERCENT_EQ] = ACTIONS(2156), - [anon_sym_LT_LT_EQ] = ACTIONS(2156), - [anon_sym_GT_GT_EQ] = ACTIONS(2156), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2156), - [anon_sym_AMP_EQ] = ACTIONS(2156), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2156), - [anon_sym_PLUS_EQ] = ACTIONS(2156), - [anon_sym_DASH_EQ] = ACTIONS(2156), - [anon_sym_PIPE_EQ] = ACTIONS(2156), - [anon_sym_CARET_EQ] = ACTIONS(2156), - [anon_sym_COLON_EQ] = ACTIONS(2156), - [anon_sym_lock] = ACTIONS(2156), - [anon_sym_rlock] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_sql] = ACTIONS(2156), - [sym_int_literal] = ACTIONS(2156), - [sym_float_literal] = ACTIONS(2156), - [sym_rune_literal] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_shared] = ACTIONS(2156), - [anon_sym_map_LBRACK] = ACTIONS(2156), - [anon_sym_chan] = ACTIONS(2156), - [anon_sym_thread] = ACTIONS(2156), - [anon_sym_atomic] = ACTIONS(2156), - [anon_sym_assert] = ACTIONS(2156), - [anon_sym_defer] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_DOLLARfor] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_asm] = ACTIONS(2156), - [anon_sym_AT_LBRACK] = ACTIONS(2156), - [sym___double_quote] = ACTIONS(2156), - [sym___single_quote] = ACTIONS(2156), - [sym___c_double_quote] = ACTIONS(2156), - [sym___c_single_quote] = ACTIONS(2156), - [sym___r_double_quote] = ACTIONS(2156), - [sym___r_single_quote] = ACTIONS(2156), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [325] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4452), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4208), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [326] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(1748), - [anon_sym_BANGin] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_COLON_EQ] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4463), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [327] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4515), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [328] = { - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4502), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2646), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(471), + [sym_mutable_expression] = STATE(4115), + [sym_expression_list] = STATE(4196), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [329] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4433), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4744), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [330] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4744), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [331] = { - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4502), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2668), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4510), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [332] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_LF] = ACTIONS(2172), - [anon_sym_CR] = ACTIONS(2172), - [anon_sym_CR_LF] = ACTIONS(2172), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym___global] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_mut] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2172), - [anon_sym_spawn] = ACTIONS(2172), - [anon_sym_json_DOTdecode] = ACTIONS(2172), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_or] = ACTIONS(1742), - [sym_none] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_nil] = ACTIONS(2172), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_DOLLARif] = ACTIONS(2172), - [anon_sym_is] = ACTIONS(2174), - [anon_sym_BANGis] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(1748), - [anon_sym_BANGin] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_select] = ACTIONS(2172), - [anon_sym_STAR_EQ] = ACTIONS(2172), - [anon_sym_SLASH_EQ] = ACTIONS(2172), - [anon_sym_PERCENT_EQ] = ACTIONS(2172), - [anon_sym_LT_LT_EQ] = ACTIONS(2172), - [anon_sym_GT_GT_EQ] = ACTIONS(2172), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2172), - [anon_sym_AMP_EQ] = ACTIONS(2172), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2172), - [anon_sym_PLUS_EQ] = ACTIONS(2172), - [anon_sym_DASH_EQ] = ACTIONS(2172), - [anon_sym_PIPE_EQ] = ACTIONS(2172), - [anon_sym_CARET_EQ] = ACTIONS(2172), - [anon_sym_COLON_EQ] = ACTIONS(2172), - [anon_sym_lock] = ACTIONS(2172), - [anon_sym_rlock] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_sql] = ACTIONS(2172), - [sym_int_literal] = ACTIONS(2172), - [sym_float_literal] = ACTIONS(2172), - [sym_rune_literal] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_shared] = ACTIONS(2172), - [anon_sym_map_LBRACK] = ACTIONS(2172), - [anon_sym_chan] = ACTIONS(2172), - [anon_sym_thread] = ACTIONS(2172), - [anon_sym_atomic] = ACTIONS(2172), - [anon_sym_assert] = ACTIONS(2172), - [anon_sym_defer] = ACTIONS(2172), - [anon_sym_goto] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_DOLLARfor] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2172), - [anon_sym_AT_LBRACK] = ACTIONS(2172), - [sym___double_quote] = ACTIONS(2172), - [sym___single_quote] = ACTIONS(2172), - [sym___c_double_quote] = ACTIONS(2172), - [sym___c_single_quote] = ACTIONS(2172), - [sym___r_double_quote] = ACTIONS(2172), - [sym___r_single_quote] = ACTIONS(2172), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4545), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [333] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(1748), - [anon_sym_BANGin] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_COLON_EQ] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), - }, - [334] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(298), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2668), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4510), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [334] = { + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2268), + [sym_identifier] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_CR] = ACTIONS(2270), + [anon_sym_CR_LF] = ACTIONS(2270), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2270), + [anon_sym___global] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_pub] = ACTIONS(2270), + [anon_sym_mut] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1880), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2270), + [anon_sym_spawn] = ACTIONS(2270), + [anon_sym_json_DOTdecode] = ACTIONS(2270), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1894), + [anon_sym_or] = ACTIONS(1896), + [sym_none] = ACTIONS(2270), + [sym_true] = ACTIONS(2270), + [sym_false] = ACTIONS(2270), + [sym_nil] = ACTIONS(2270), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_DOLLARif] = ACTIONS(2270), + [anon_sym_is] = ACTIONS(2272), + [anon_sym_BANGis] = ACTIONS(2274), + [anon_sym_in] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_select] = ACTIONS(2270), + [anon_sym_STAR_EQ] = ACTIONS(2270), + [anon_sym_SLASH_EQ] = ACTIONS(2270), + [anon_sym_PERCENT_EQ] = ACTIONS(2270), + [anon_sym_LT_LT_EQ] = ACTIONS(2270), + [anon_sym_GT_GT_EQ] = ACTIONS(2270), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2270), + [anon_sym_AMP_EQ] = ACTIONS(2270), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2270), + [anon_sym_PLUS_EQ] = ACTIONS(2270), + [anon_sym_DASH_EQ] = ACTIONS(2270), + [anon_sym_PIPE_EQ] = ACTIONS(2270), + [anon_sym_CARET_EQ] = ACTIONS(2270), + [anon_sym_COLON_EQ] = ACTIONS(2270), + [anon_sym_lock] = ACTIONS(2270), + [anon_sym_rlock] = ACTIONS(2270), + [anon_sym_unsafe] = ACTIONS(2270), + [anon_sym_sql] = ACTIONS(2270), + [sym_int_literal] = ACTIONS(2270), + [sym_float_literal] = ACTIONS(2270), + [sym_rune_literal] = ACTIONS(2270), + [anon_sym_AT] = ACTIONS(2270), + [anon_sym_shared] = ACTIONS(2270), + [anon_sym_map_LBRACK] = ACTIONS(2270), + [anon_sym_chan] = ACTIONS(2270), + [anon_sym_thread] = ACTIONS(2270), + [anon_sym_atomic] = ACTIONS(2270), + [anon_sym_assert] = ACTIONS(2270), + [anon_sym_defer] = ACTIONS(2270), + [anon_sym_goto] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_DOLLARfor] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(2270), + [anon_sym_asm] = ACTIONS(2270), + [anon_sym_AT_LBRACK] = ACTIONS(2270), + [sym___double_quote] = ACTIONS(2270), + [sym___single_quote] = ACTIONS(2270), + [sym___c_double_quote] = ACTIONS(2270), + [sym___c_single_quote] = ACTIONS(2270), + [sym___r_double_quote] = ACTIONS(2270), + [sym___r_single_quote] = ACTIONS(2270), }, [335] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4615), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2276), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [336] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4494), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(728), + [sym_mutable_expression] = STATE(1457), + [sym_expression_list] = STATE(1537), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [337] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4615), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4196), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [338] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2184), - [anon_sym_LF] = ACTIONS(2184), - [anon_sym_CR] = ACTIONS(2184), - [anon_sym_CR_LF] = ACTIONS(2184), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym___global] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2184), - [anon_sym_union] = ACTIONS(2184), - [anon_sym_pub] = ACTIONS(2184), - [anon_sym_mut] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2184), - [anon_sym_spawn] = ACTIONS(2184), - [anon_sym_json_DOTdecode] = ACTIONS(2184), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_LT_DASH] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2184), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_nil] = ACTIONS(2184), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_DOLLARif] = ACTIONS(2184), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_select] = ACTIONS(2184), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_COLON_EQ] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2184), - [anon_sym_rlock] = ACTIONS(2184), - [anon_sym_unsafe] = ACTIONS(2184), - [anon_sym_sql] = ACTIONS(2184), - [sym_int_literal] = ACTIONS(2184), - [sym_float_literal] = ACTIONS(2184), - [sym_rune_literal] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_shared] = ACTIONS(2184), - [anon_sym_map_LBRACK] = ACTIONS(2184), - [anon_sym_chan] = ACTIONS(2184), - [anon_sym_thread] = ACTIONS(2184), - [anon_sym_atomic] = ACTIONS(2184), - [anon_sym_assert] = ACTIONS(2184), - [anon_sym_defer] = ACTIONS(2184), - [anon_sym_goto] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_DOLLARfor] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2184), - [anon_sym_asm] = ACTIONS(2184), - [anon_sym_AT_LBRACK] = ACTIONS(2184), - [sym___double_quote] = ACTIONS(2184), - [sym___single_quote] = ACTIONS(2184), - [sym___c_double_quote] = ACTIONS(2184), - [sym___c_single_quote] = ACTIONS(2184), - [sym___r_double_quote] = ACTIONS(2184), - [sym___r_single_quote] = ACTIONS(2184), + [sym__expression] = STATE(2646), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(471), + [sym_mutable_expression] = STATE(4115), + [sym_expression_list] = STATE(4208), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [339] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(728), + [sym_mutable_expression] = STATE(1457), + [sym_expression_list] = STATE(1536), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [340] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_COLON_EQ] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4484), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [341] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4433), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4611), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [342] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_COLON_EQ] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4611), + [sym_identifier] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [343] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_STAR_EQ] = ACTIONS(2162), - [anon_sym_SLASH_EQ] = ACTIONS(2162), - [anon_sym_PERCENT_EQ] = ACTIONS(2162), - [anon_sym_LT_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), - [anon_sym_AMP_EQ] = ACTIONS(2162), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), - [anon_sym_PLUS_EQ] = ACTIONS(2162), - [anon_sym_DASH_EQ] = ACTIONS(2162), - [anon_sym_PIPE_EQ] = ACTIONS(2162), - [anon_sym_CARET_EQ] = ACTIONS(2162), - [anon_sym_COLON_EQ] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2314), + [anon_sym_LF] = ACTIONS(2314), + [anon_sym_CR] = ACTIONS(2314), + [anon_sym_CR_LF] = ACTIONS(2314), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2314), + [anon_sym___global] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_fn] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2314), + [anon_sym_GT_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2314), + [anon_sym_union] = ACTIONS(2314), + [anon_sym_pub] = ACTIONS(2314), + [anon_sym_mut] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2314), + [anon_sym_spawn] = ACTIONS(2314), + [anon_sym_json_DOTdecode] = ACTIONS(2314), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_LT_DASH] = ACTIONS(2314), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2314), + [anon_sym_AMP_CARET] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_or] = ACTIONS(2314), + [sym_none] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_nil] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_DOLLARif] = ACTIONS(2314), + [anon_sym_is] = ACTIONS(2314), + [anon_sym_BANGis] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_BANGin] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_select] = ACTIONS(2314), + [anon_sym_STAR_EQ] = ACTIONS(2314), + [anon_sym_SLASH_EQ] = ACTIONS(2314), + [anon_sym_PERCENT_EQ] = ACTIONS(2314), + [anon_sym_LT_LT_EQ] = ACTIONS(2314), + [anon_sym_GT_GT_EQ] = ACTIONS(2314), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2314), + [anon_sym_AMP_EQ] = ACTIONS(2314), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(2314), + [anon_sym_DASH_EQ] = ACTIONS(2314), + [anon_sym_PIPE_EQ] = ACTIONS(2314), + [anon_sym_CARET_EQ] = ACTIONS(2314), + [anon_sym_COLON_EQ] = ACTIONS(2314), + [anon_sym_lock] = ACTIONS(2314), + [anon_sym_rlock] = ACTIONS(2314), + [anon_sym_unsafe] = ACTIONS(2314), + [anon_sym_sql] = ACTIONS(2314), + [sym_int_literal] = ACTIONS(2314), + [sym_float_literal] = ACTIONS(2314), + [sym_rune_literal] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_shared] = ACTIONS(2314), + [anon_sym_map_LBRACK] = ACTIONS(2314), + [anon_sym_chan] = ACTIONS(2314), + [anon_sym_thread] = ACTIONS(2314), + [anon_sym_atomic] = ACTIONS(2314), + [anon_sym_assert] = ACTIONS(2314), + [anon_sym_defer] = ACTIONS(2314), + [anon_sym_goto] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_DOLLARfor] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [anon_sym_asm] = ACTIONS(2314), + [anon_sym_AT_LBRACK] = ACTIONS(2314), + [sym___double_quote] = ACTIONS(2314), + [sym___single_quote] = ACTIONS(2314), + [sym___c_double_quote] = ACTIONS(2314), + [sym___c_single_quote] = ACTIONS(2314), + [sym___r_double_quote] = ACTIONS(2314), + [sym___r_single_quote] = ACTIONS(2314), }, [344] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4558), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [345] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4418), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4545), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [346] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2206), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [347] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4558), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2208), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [348] = { - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4531), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2320), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [349] = { - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4531), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4545), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [350] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2695), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4708), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2210), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [351] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4452), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2695), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4708), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [352] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2832), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2832), - [sym_dec_expression] = STATE(2832), - [sym_or_block_expression] = STATE(2832), - [sym_option_propagation_expression] = STATE(2832), - [sym_result_propagation_expression] = STATE(2832), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2832), - [sym_spawn_expression] = STATE(2832), - [sym_parenthesized_expression] = STATE(2832), - [sym_call_expression] = STATE(2832), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2832), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2832), - [sym_receive_expression] = STATE(2832), - [sym_binary_expression] = STATE(2832), - [sym_as_type_cast_expression] = STATE(2832), - [sym__max_group] = STATE(2832), - [sym_literal] = STATE(2832), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2832), - [sym_fixed_array_creation] = STATE(2832), - [sym_selector_expression] = STATE(2832), - [sym_index_expression] = STATE(2832), - [sym_slice_expression] = STATE(2832), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2832), - [sym_not_is_expression] = STATE(2832), - [sym_in_expression] = STATE(2832), - [sym_not_in_expression] = STATE(2832), - [sym_enum_fetch] = STATE(2832), - [sym_match_expression] = STATE(2757), - [sym_match_arm_type] = STATE(4239), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2832), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(3896), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(4237), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2324), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(1133), - [anon_sym_lock] = ACTIONS(1135), - [anon_sym_rlock] = ACTIONS(1135), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [353] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4643), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2326), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [354] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(300), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2216), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2328), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [355] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4552), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2330), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [356] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4418), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2682), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4604), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [357] = { - [sym__expression] = STATE(2657), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4690), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2332), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [358] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4552), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2678), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4473), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [359] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2678), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4473), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2220), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [360] = { - [sym__expression] = STATE(2657), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4690), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(370), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2334), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [361] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_LF] = ACTIONS(2224), - [anon_sym_CR] = ACTIONS(2224), - [anon_sym_CR_LF] = ACTIONS(2224), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2224), - [anon_sym___global] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_SLASH] = ACTIONS(2224), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_pub] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2224), - [anon_sym_spawn] = ACTIONS(2224), - [anon_sym_json_DOTdecode] = ACTIONS(2224), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_LT_DASH] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_AMP_CARET] = ACTIONS(2224), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_or] = ACTIONS(2224), - [sym_none] = ACTIONS(2224), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [sym_nil] = ACTIONS(2224), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_DOLLARif] = ACTIONS(2224), - [anon_sym_is] = ACTIONS(2224), - [anon_sym_BANGis] = ACTIONS(2224), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_BANGin] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_select] = ACTIONS(2224), - [anon_sym_STAR_EQ] = ACTIONS(2224), - [anon_sym_SLASH_EQ] = ACTIONS(2224), - [anon_sym_PERCENT_EQ] = ACTIONS(2224), - [anon_sym_LT_LT_EQ] = ACTIONS(2224), - [anon_sym_GT_GT_EQ] = ACTIONS(2224), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2224), - [anon_sym_AMP_EQ] = ACTIONS(2224), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2224), - [anon_sym_PLUS_EQ] = ACTIONS(2224), - [anon_sym_DASH_EQ] = ACTIONS(2224), - [anon_sym_PIPE_EQ] = ACTIONS(2224), - [anon_sym_CARET_EQ] = ACTIONS(2224), - [anon_sym_COLON_EQ] = ACTIONS(2224), - [anon_sym_lock] = ACTIONS(2224), - [anon_sym_rlock] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_sql] = ACTIONS(2224), - [sym_int_literal] = ACTIONS(2224), - [sym_float_literal] = ACTIONS(2224), - [sym_rune_literal] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(2224), - [anon_sym_shared] = ACTIONS(2224), - [anon_sym_map_LBRACK] = ACTIONS(2224), - [anon_sym_chan] = ACTIONS(2224), - [anon_sym_thread] = ACTIONS(2224), - [anon_sym_atomic] = ACTIONS(2224), - [anon_sym_assert] = ACTIONS(2224), - [anon_sym_defer] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_DOLLARfor] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_POUND] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym_AT_LBRACK] = ACTIONS(2224), - [sym___double_quote] = ACTIONS(2224), - [sym___single_quote] = ACTIONS(2224), - [sym___c_double_quote] = ACTIONS(2224), - [sym___c_single_quote] = ACTIONS(2224), - [sym___r_double_quote] = ACTIONS(2224), - [sym___r_single_quote] = ACTIONS(2224), - }, - [362] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4509), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2226), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [363] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4457), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [362] = { + [sym__expression] = STATE(2682), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3700), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4604), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [364] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4431), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [363] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2338), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, - [365] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_identifier] = ACTIONS(2234), - [anon_sym_LF] = ACTIONS(2234), - [anon_sym_CR] = ACTIONS(2234), - [anon_sym_CR_LF] = ACTIONS(2234), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym___global] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_EQ_EQ] = ACTIONS(1724), - [anon_sym_BANG_EQ] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [anon_sym_pub] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2234), - [anon_sym_spawn] = ACTIONS(2234), - [anon_sym_json_DOTdecode] = ACTIONS(2234), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_CARET] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_LT_DASH] = ACTIONS(2234), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1722), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(1740), - [anon_sym_or] = ACTIONS(1742), - [sym_none] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_nil] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_DOLLARif] = ACTIONS(2234), - [anon_sym_is] = ACTIONS(1744), - [anon_sym_BANGis] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1748), - [anon_sym_BANGin] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_select] = ACTIONS(2234), - [anon_sym_STAR_EQ] = ACTIONS(2234), - [anon_sym_SLASH_EQ] = ACTIONS(2234), - [anon_sym_PERCENT_EQ] = ACTIONS(2234), - [anon_sym_LT_LT_EQ] = ACTIONS(2234), - [anon_sym_GT_GT_EQ] = ACTIONS(2234), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2234), - [anon_sym_AMP_EQ] = ACTIONS(2234), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2234), - [anon_sym_PLUS_EQ] = ACTIONS(2234), - [anon_sym_DASH_EQ] = ACTIONS(2234), - [anon_sym_PIPE_EQ] = ACTIONS(2234), - [anon_sym_CARET_EQ] = ACTIONS(2234), - [anon_sym_COLON_EQ] = ACTIONS(2234), - [anon_sym_lock] = ACTIONS(2234), - [anon_sym_rlock] = ACTIONS(2234), - [anon_sym_unsafe] = ACTIONS(2234), - [anon_sym_sql] = ACTIONS(2234), - [sym_int_literal] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), - [sym_rune_literal] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_shared] = ACTIONS(2234), - [anon_sym_map_LBRACK] = ACTIONS(2234), - [anon_sym_chan] = ACTIONS(2234), - [anon_sym_thread] = ACTIONS(2234), - [anon_sym_atomic] = ACTIONS(2234), - [anon_sym_assert] = ACTIONS(2234), - [anon_sym_defer] = ACTIONS(2234), - [anon_sym_goto] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_DOLLARfor] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_asm] = ACTIONS(2234), - [anon_sym_AT_LBRACK] = ACTIONS(2234), - [sym___double_quote] = ACTIONS(2234), - [sym___single_quote] = ACTIONS(2234), - [sym___c_double_quote] = ACTIONS(2234), - [sym___c_single_quote] = ACTIONS(2234), - [sym___r_double_quote] = ACTIONS(2234), - [sym___r_single_quote] = ACTIONS(2234), + [364] = { + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_CR] = ACTIONS(2342), + [anon_sym_CR_LF] = ACTIONS(2342), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2342), + [anon_sym___global] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_pub] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2342), + [anon_sym_spawn] = ACTIONS(2342), + [anon_sym_json_DOTdecode] = ACTIONS(2342), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_or] = ACTIONS(2342), + [sym_none] = ACTIONS(2342), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_nil] = ACTIONS(2342), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_DOLLARif] = ACTIONS(2342), + [anon_sym_is] = ACTIONS(2342), + [anon_sym_BANGis] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_BANGin] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_select] = ACTIONS(2342), + [anon_sym_STAR_EQ] = ACTIONS(2342), + [anon_sym_SLASH_EQ] = ACTIONS(2342), + [anon_sym_PERCENT_EQ] = ACTIONS(2342), + [anon_sym_LT_LT_EQ] = ACTIONS(2342), + [anon_sym_GT_GT_EQ] = ACTIONS(2342), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2342), + [anon_sym_AMP_EQ] = ACTIONS(2342), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2342), + [anon_sym_PLUS_EQ] = ACTIONS(2342), + [anon_sym_DASH_EQ] = ACTIONS(2342), + [anon_sym_PIPE_EQ] = ACTIONS(2342), + [anon_sym_CARET_EQ] = ACTIONS(2342), + [anon_sym_COLON_EQ] = ACTIONS(2342), + [anon_sym_lock] = ACTIONS(2342), + [anon_sym_rlock] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_sql] = ACTIONS(2342), + [sym_int_literal] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2342), + [sym_rune_literal] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_shared] = ACTIONS(2342), + [anon_sym_map_LBRACK] = ACTIONS(2342), + [anon_sym_chan] = ACTIONS(2342), + [anon_sym_thread] = ACTIONS(2342), + [anon_sym_atomic] = ACTIONS(2342), + [anon_sym_assert] = ACTIONS(2342), + [anon_sym_defer] = ACTIONS(2342), + [anon_sym_goto] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_DOLLARfor] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_asm] = ACTIONS(2342), + [anon_sym_AT_LBRACK] = ACTIONS(2342), + [sym___double_quote] = ACTIONS(2342), + [sym___single_quote] = ACTIONS(2342), + [sym___c_double_quote] = ACTIONS(2342), + [sym___c_single_quote] = ACTIONS(2342), + [sym___r_double_quote] = ACTIONS(2342), + [sym___r_single_quote] = ACTIONS(2342), }, - [366] = { - [sym__expression] = STATE(2651), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4702), - [sym_identifier] = ACTIONS(1366), + [365] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(327), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), + }, + [366] = { + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2346), + [anon_sym_LF] = ACTIONS(2346), + [anon_sym_CR] = ACTIONS(2346), + [anon_sym_CR_LF] = ACTIONS(2346), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_COMMA] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2346), + [anon_sym___global] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2346), + [anon_sym_BANG_EQ] = ACTIONS(2346), + [anon_sym_LT_EQ] = ACTIONS(2346), + [anon_sym_GT_EQ] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_pub] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_interface] = ACTIONS(2346), + [anon_sym_PLUS_PLUS] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2346), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2346), + [anon_sym_spawn] = ACTIONS(2346), + [anon_sym_json_DOTdecode] = ACTIONS(2346), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(2346), + [anon_sym_PIPE_PIPE] = ACTIONS(2346), + [anon_sym_or] = ACTIONS(2346), + [sym_none] = ACTIONS(2346), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_nil] = ACTIONS(2346), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_DOLLARif] = ACTIONS(2346), + [anon_sym_is] = ACTIONS(2346), + [anon_sym_BANGis] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_BANGin] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_select] = ACTIONS(2346), + [anon_sym_STAR_EQ] = ACTIONS(2346), + [anon_sym_SLASH_EQ] = ACTIONS(2346), + [anon_sym_PERCENT_EQ] = ACTIONS(2346), + [anon_sym_LT_LT_EQ] = ACTIONS(2346), + [anon_sym_GT_GT_EQ] = ACTIONS(2346), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2346), + [anon_sym_AMP_EQ] = ACTIONS(2346), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2346), + [anon_sym_PLUS_EQ] = ACTIONS(2346), + [anon_sym_DASH_EQ] = ACTIONS(2346), + [anon_sym_PIPE_EQ] = ACTIONS(2346), + [anon_sym_CARET_EQ] = ACTIONS(2346), + [anon_sym_COLON_EQ] = ACTIONS(2346), + [anon_sym_lock] = ACTIONS(2346), + [anon_sym_rlock] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2346), + [sym_int_literal] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2346), + [sym_rune_literal] = ACTIONS(2346), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_shared] = ACTIONS(2346), + [anon_sym_map_LBRACK] = ACTIONS(2346), + [anon_sym_chan] = ACTIONS(2346), + [anon_sym_thread] = ACTIONS(2346), + [anon_sym_atomic] = ACTIONS(2346), + [anon_sym_assert] = ACTIONS(2346), + [anon_sym_defer] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_DOLLARfor] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym_AT_LBRACK] = ACTIONS(2346), + [sym___double_quote] = ACTIONS(2346), + [sym___single_quote] = ACTIONS(2346), + [sym___c_double_quote] = ACTIONS(2346), + [sym___c_single_quote] = ACTIONS(2346), + [sym___r_double_quote] = ACTIONS(2346), + [sym___r_single_quote] = ACTIONS(2346), }, [367] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4505), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2236), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [368] = { - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4665), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4509), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [369] = { - [sym__expression] = STATE(2664), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4598), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4456), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [370] = { - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4665), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [371] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2238), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2356), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [372] = { - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4566), - [sym_identifier] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_COLON_EQ] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, [373] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(298), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3695), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2240), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [374] = { - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3688), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4566), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2823), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2823), + [sym_dec_expression] = STATE(2823), + [sym_or_block_expression] = STATE(2823), + [sym_option_propagation_expression] = STATE(2823), + [sym_result_propagation_expression] = STATE(2823), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2823), + [sym_spawn_expression] = STATE(2823), + [sym_parenthesized_expression] = STATE(2823), + [sym_call_expression] = STATE(2823), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2823), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2823), + [sym_receive_expression] = STATE(2823), + [sym_binary_expression] = STATE(2823), + [sym_as_type_cast_expression] = STATE(2823), + [sym__max_group] = STATE(2823), + [sym_literal] = STATE(2823), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2823), + [sym_fixed_array_creation] = STATE(2823), + [sym_selector_expression] = STATE(2823), + [sym_index_expression] = STATE(2823), + [sym_slice_expression] = STATE(2823), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2823), + [sym_not_is_expression] = STATE(2823), + [sym_in_expression] = STATE(2823), + [sym_not_in_expression] = STATE(2823), + [sym_enum_fetch] = STATE(2823), + [sym_match_expression] = STATE(2819), + [sym_match_arm_type] = STATE(4203), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2823), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4068), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4211), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(1137), + [anon_sym_lock] = ACTIONS(1139), + [anon_sym_rlock] = ACTIONS(1139), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [375] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(718), - [sym_mutable_expression] = STATE(3916), - [sym_expression_list] = STATE(4154), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2679), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_range] = STATE(4551), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [376] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4155), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_EQ_EQ] = ACTIONS(1874), + [anon_sym_BANG_EQ] = ACTIONS(1874), + [anon_sym_LT_EQ] = ACTIONS(1874), + [anon_sym_GT_EQ] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_COLON_EQ] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, [377] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1300), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2378), + [anon_sym_LF] = ACTIONS(2378), + [anon_sym_CR] = ACTIONS(2378), + [anon_sym_CR_LF] = ACTIONS(2378), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym___global] = ACTIONS(2378), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2378), + [anon_sym_union] = ACTIONS(2378), + [anon_sym_pub] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_enum] = ACTIONS(2378), + [anon_sym_interface] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2378), + [anon_sym_spawn] = ACTIONS(2378), + [anon_sym_json_DOTdecode] = ACTIONS(2378), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_LT_DASH] = ACTIONS(2378), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_CARET] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2378), + [sym_true] = ACTIONS(2378), + [sym_false] = ACTIONS(2378), + [sym_nil] = ACTIONS(2378), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_DOLLARif] = ACTIONS(2378), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_select] = ACTIONS(2378), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_COLON_EQ] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2378), + [anon_sym_rlock] = ACTIONS(2378), + [anon_sym_unsafe] = ACTIONS(2378), + [anon_sym_sql] = ACTIONS(2378), + [sym_int_literal] = ACTIONS(2378), + [sym_float_literal] = ACTIONS(2378), + [sym_rune_literal] = ACTIONS(2378), + [anon_sym_AT] = ACTIONS(2378), + [anon_sym_shared] = ACTIONS(2378), + [anon_sym_map_LBRACK] = ACTIONS(2378), + [anon_sym_chan] = ACTIONS(2378), + [anon_sym_thread] = ACTIONS(2378), + [anon_sym_atomic] = ACTIONS(2378), + [anon_sym_assert] = ACTIONS(2378), + [anon_sym_defer] = ACTIONS(2378), + [anon_sym_goto] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_DOLLARfor] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_asm] = ACTIONS(2378), + [anon_sym_AT_LBRACK] = ACTIONS(2378), + [sym___double_quote] = ACTIONS(2378), + [sym___single_quote] = ACTIONS(2378), + [sym___c_double_quote] = ACTIONS(2378), + [sym___c_single_quote] = ACTIONS(2378), + [sym___r_double_quote] = ACTIONS(2378), + [sym___r_single_quote] = ACTIONS(2378), + }, + [378] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4545), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2242), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [378] = { - [sym_type_parameters] = STATE(4151), - [sym_argument_list] = STATE(943), - [sym_or_block] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(2244), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LF] = ACTIONS(2246), - [anon_sym_CR] = ACTIONS(2246), - [anon_sym_CR_LF] = ACTIONS(2246), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1712), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(2246), - [anon_sym___global] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(2246), - [anon_sym_union] = ACTIONS(2246), - [anon_sym_pub] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_QMARK] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_go] = ACTIONS(2246), - [anon_sym_spawn] = ACTIONS(2246), - [anon_sym_json_DOTdecode] = ACTIONS(2246), - [anon_sym_LBRACK2] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_LT_DASH] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_AMP_CARET] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_or] = ACTIONS(2246), - [sym_none] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_nil] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(1712), - [anon_sym_POUND_LBRACK] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_DOLLARif] = ACTIONS(2246), - [anon_sym_is] = ACTIONS(2246), - [anon_sym_BANGis] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_BANGin] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_select] = ACTIONS(2246), - [anon_sym_STAR_EQ] = ACTIONS(2246), - [anon_sym_SLASH_EQ] = ACTIONS(2246), - [anon_sym_PERCENT_EQ] = ACTIONS(2246), - [anon_sym_LT_LT_EQ] = ACTIONS(2246), - [anon_sym_GT_GT_EQ] = ACTIONS(2246), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2246), - [anon_sym_AMP_EQ] = ACTIONS(2246), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2246), - [anon_sym_PLUS_EQ] = ACTIONS(2246), - [anon_sym_DASH_EQ] = ACTIONS(2246), - [anon_sym_PIPE_EQ] = ACTIONS(2246), - [anon_sym_CARET_EQ] = ACTIONS(2246), - [anon_sym_COLON_EQ] = ACTIONS(2246), - [anon_sym_lock] = ACTIONS(2246), - [anon_sym_rlock] = ACTIONS(2246), - [anon_sym_unsafe] = ACTIONS(2246), - [anon_sym_sql] = ACTIONS(2246), - [sym_int_literal] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), - [sym_rune_literal] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_shared] = ACTIONS(2246), - [anon_sym_map_LBRACK] = ACTIONS(2246), - [anon_sym_chan] = ACTIONS(2246), - [anon_sym_thread] = ACTIONS(2246), - [anon_sym_atomic] = ACTIONS(2246), - [anon_sym_assert] = ACTIONS(2246), - [anon_sym_defer] = ACTIONS(2246), - [anon_sym_goto] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_DOLLARfor] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_asm] = ACTIONS(2246), - [anon_sym_AT_LBRACK] = ACTIONS(2246), - [sym___double_quote] = ACTIONS(2246), - [sym___single_quote] = ACTIONS(2246), - [sym___c_double_quote] = ACTIONS(2246), - [sym___c_single_quote] = ACTIONS(2246), - [sym___r_double_quote] = ACTIONS(2246), - [sym___r_single_quote] = ACTIONS(2246), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [379] = { - [sym__expression] = STATE(2664), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_range] = STATE(4598), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2382), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [380] = { - [sym__expression] = STATE(2324), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3616), - [sym_expression_list] = STATE(3786), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4526), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [381] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(389), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3695), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2248), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_RBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [382] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3957), - [sym_expression_list] = STATE(4473), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4463), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [383] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(324), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2252), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [384] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2254), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [385] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(346), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [386] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2258), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [387] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(383), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [388] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(2262), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_RBRACK] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_mut] = ACTIONS(2288), - [anon_sym_QMARK] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2294), - [anon_sym_go] = ACTIONS(2297), - [anon_sym_spawn] = ACTIONS(2300), - [anon_sym_json_DOTdecode] = ACTIONS(2303), - [anon_sym_LBRACK2] = ACTIONS(2306), - [anon_sym_TILDE] = ACTIONS(2277), - [anon_sym_CARET] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_LT_DASH] = ACTIONS(2312), - [sym_none] = ACTIONS(2315), - [sym_true] = ACTIONS(2315), - [sym_false] = ACTIONS(2315), - [sym_nil] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_DOLLARif] = ACTIONS(2321), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_select] = ACTIONS(2327), - [anon_sym_lock] = ACTIONS(2330), - [anon_sym_rlock] = ACTIONS(2330), - [anon_sym_unsafe] = ACTIONS(2333), - [anon_sym_sql] = ACTIONS(2336), - [sym_int_literal] = ACTIONS(2315), - [sym_float_literal] = ACTIONS(2339), - [sym_rune_literal] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_shared] = ACTIONS(2345), - [anon_sym_map_LBRACK] = ACTIONS(2348), - [anon_sym_chan] = ACTIONS(2351), - [anon_sym_thread] = ACTIONS(2354), - [anon_sym_atomic] = ACTIONS(2357), - [sym___double_quote] = ACTIONS(2360), - [sym___single_quote] = ACTIONS(2363), - [sym___c_double_quote] = ACTIONS(2366), - [sym___c_single_quote] = ACTIONS(2369), - [sym___r_double_quote] = ACTIONS(2372), - [sym___r_single_quote] = ACTIONS(2375), - }, - [389] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2378), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [390] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1365), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1320), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [aux_sym__array_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(2380), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), - }, - [391] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2990), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2966), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2384), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [392] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2986), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2971), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2386), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2388), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [393] = { - [sym__expression] = STATE(2627), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(449), - [sym_mutable_expression] = STATE(3352), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [394] = { - [sym_else_branch] = STATE(949), + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), [ts_builtin_sym_end] = ACTIONS(2390), [sym_identifier] = ACTIONS(2392), [anon_sym_LF] = ACTIONS(2392), [anon_sym_CR] = ACTIONS(2392), [anon_sym_CR_LF] = ACTIONS(2392), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2392), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), [anon_sym_as] = ACTIONS(2392), [anon_sym_LBRACE] = ACTIONS(2392), [anon_sym_COMMA] = ACTIONS(2392), [anon_sym_const] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(1866), [anon_sym_EQ] = ACTIONS(2392), [anon_sym___global] = ACTIONS(2392), [anon_sym_type] = ACTIONS(2392), @@ -72171,7 +71143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2392), [anon_sym_LT_EQ] = ACTIONS(2392), [anon_sym_GT_EQ] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(1876), [anon_sym_struct] = ACTIONS(2392), [anon_sym_union] = ACTIONS(2392), [anon_sym_pub] = ACTIONS(2392), @@ -72180,12 +71152,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2392), [anon_sym_PLUS_PLUS] = ACTIONS(2392), [anon_sym_DASH_DASH] = ACTIONS(2392), - [anon_sym_QMARK] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), [anon_sym_go] = ACTIONS(2392), [anon_sym_spawn] = ACTIONS(2392), [anon_sym_json_DOTdecode] = ACTIONS(2392), - [anon_sym_LBRACK2] = ACTIONS(2392), + [anon_sym_LBRACK2] = ACTIONS(1886), [anon_sym_TILDE] = ACTIONS(2392), [anon_sym_CARET] = ACTIONS(2392), [anon_sym_AMP] = ACTIONS(2392), @@ -72201,10 +71173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(2392), [sym_false] = ACTIONS(2392), [sym_nil] = ACTIONS(2392), - [anon_sym_QMARK_DOT] = ACTIONS(2392), - [anon_sym_POUND_LBRACK] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2394), [anon_sym_DOLLARif] = ACTIONS(2392), [anon_sym_is] = ACTIONS(2392), [anon_sym_BANGis] = ACTIONS(2392), @@ -72256,24871 +71227,26045 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2392), [sym___r_single_quote] = ACTIONS(2392), }, - [395] = { - [sym_else_branch] = STATE(948), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_CR] = ACTIONS(2398), - [anon_sym_CR_LF] = ACTIONS(2398), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), + [385] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4547), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [386] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1437), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1443), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(319), + [sym_identifier] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), + }, + [387] = { + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_COLON_EQ] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), + }, + [388] = { + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_CARET] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_COLON_EQ] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), + }, + [389] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4568), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_EQ] = ACTIONS(2398), - [anon_sym___global] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2398), - [anon_sym_PERCENT] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_interface] = ACTIONS(2398), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2398), - [anon_sym_go] = ACTIONS(2398), - [anon_sym_spawn] = ACTIONS(2398), - [anon_sym_json_DOTdecode] = ACTIONS(2398), - [anon_sym_LBRACK2] = ACTIONS(2398), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_CARET] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - [anon_sym_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_GT_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_CARET] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_or] = ACTIONS(2398), - [sym_none] = ACTIONS(2398), - [sym_true] = ACTIONS(2398), - [sym_false] = ACTIONS(2398), - [sym_nil] = ACTIONS(2398), - [anon_sym_QMARK_DOT] = ACTIONS(2398), - [anon_sym_POUND_LBRACK] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_DOLLARif] = ACTIONS(2398), - [anon_sym_is] = ACTIONS(2398), - [anon_sym_BANGis] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2398), - [anon_sym_BANGin] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_select] = ACTIONS(2398), - [anon_sym_STAR_EQ] = ACTIONS(2398), - [anon_sym_SLASH_EQ] = ACTIONS(2398), - [anon_sym_PERCENT_EQ] = ACTIONS(2398), - [anon_sym_LT_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_GT_EQ] = ACTIONS(2398), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2398), - [anon_sym_AMP_EQ] = ACTIONS(2398), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2398), - [anon_sym_PLUS_EQ] = ACTIONS(2398), - [anon_sym_DASH_EQ] = ACTIONS(2398), - [anon_sym_PIPE_EQ] = ACTIONS(2398), - [anon_sym_CARET_EQ] = ACTIONS(2398), - [anon_sym_COLON_EQ] = ACTIONS(2398), - [anon_sym_lock] = ACTIONS(2398), - [anon_sym_rlock] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_sql] = ACTIONS(2398), - [sym_int_literal] = ACTIONS(2398), - [sym_float_literal] = ACTIONS(2398), - [sym_rune_literal] = ACTIONS(2398), - [anon_sym_AT] = ACTIONS(2398), - [anon_sym_shared] = ACTIONS(2398), - [anon_sym_map_LBRACK] = ACTIONS(2398), - [anon_sym_chan] = ACTIONS(2398), - [anon_sym_thread] = ACTIONS(2398), - [anon_sym_atomic] = ACTIONS(2398), - [anon_sym_assert] = ACTIONS(2398), - [anon_sym_defer] = ACTIONS(2398), - [anon_sym_goto] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_DOLLARfor] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(2398), - [anon_sym_asm] = ACTIONS(2398), - [anon_sym_AT_LBRACK] = ACTIONS(2398), - [sym___double_quote] = ACTIONS(2398), - [sym___single_quote] = ACTIONS(2398), - [sym___c_double_quote] = ACTIONS(2398), - [sym___c_single_quote] = ACTIONS(2398), - [sym___r_double_quote] = ACTIONS(2398), - [sym___r_single_quote] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [396] = { - [sym__expression] = STATE(2674), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4426), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [390] = { + [sym_type_parameters] = STATE(4355), + [sym_argument_list] = STATE(879), + [sym_or_block] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(2360), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_SLASH] = ACTIONS(1872), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_CARET] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(1860), + [anon_sym_POUND_LBRACK] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_STAR_EQ] = ACTIONS(2360), + [anon_sym_SLASH_EQ] = ACTIONS(2360), + [anon_sym_PERCENT_EQ] = ACTIONS(2360), + [anon_sym_LT_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2360), + [anon_sym_AMP_EQ] = ACTIONS(2360), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2360), + [anon_sym_PLUS_EQ] = ACTIONS(2360), + [anon_sym_DASH_EQ] = ACTIONS(2360), + [anon_sym_PIPE_EQ] = ACTIONS(2360), + [anon_sym_CARET_EQ] = ACTIONS(2360), + [anon_sym_COLON_EQ] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), + }, + [391] = { + [sym__expression] = STATE(2364), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3660), + [sym_expression_list] = STATE(3862), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, - [397] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2951), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2952), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [392] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(2400), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2418), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2415), + [anon_sym_DASH] = ACTIONS(2415), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_RBRACK] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_mut] = ACTIONS(2426), + [anon_sym_QMARK] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_go] = ACTIONS(2435), + [anon_sym_spawn] = ACTIONS(2438), + [anon_sym_json_DOTdecode] = ACTIONS(2441), + [anon_sym_LBRACK2] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2415), + [anon_sym_CARET] = ACTIONS(2415), + [anon_sym_AMP] = ACTIONS(2447), + [anon_sym_LT_DASH] = ACTIONS(2450), + [sym_none] = ACTIONS(2453), + [sym_true] = ACTIONS(2453), + [sym_false] = ACTIONS(2453), + [sym_nil] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_DOLLARif] = ACTIONS(2459), + [anon_sym_match] = ACTIONS(2462), + [anon_sym_select] = ACTIONS(2465), + [anon_sym_lock] = ACTIONS(2468), + [anon_sym_rlock] = ACTIONS(2468), + [anon_sym_unsafe] = ACTIONS(2471), + [anon_sym_sql] = ACTIONS(2474), + [sym_int_literal] = ACTIONS(2453), + [sym_float_literal] = ACTIONS(2477), + [sym_rune_literal] = ACTIONS(2477), + [anon_sym_AT] = ACTIONS(2480), + [anon_sym_shared] = ACTIONS(2483), + [anon_sym_map_LBRACK] = ACTIONS(2486), + [anon_sym_chan] = ACTIONS(2489), + [anon_sym_thread] = ACTIONS(2492), + [anon_sym_atomic] = ACTIONS(2495), + [sym___double_quote] = ACTIONS(2498), + [sym___single_quote] = ACTIONS(2501), + [sym___c_double_quote] = ACTIONS(2504), + [sym___c_single_quote] = ACTIONS(2507), + [sym___r_double_quote] = ACTIONS(2510), + [sym___r_single_quote] = ACTIONS(2513), + }, + [393] = { + [sym__expression] = STATE(2364), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3660), + [sym_expression_list] = STATE(3830), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2420), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, - [398] = { - [sym__expression] = STATE(2682), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4420), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [394] = { + [sym__expression] = STATE(1322), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [aux_sym__array_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, - [399] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2963), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2968), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [395] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4547), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2424), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [400] = { - [sym__expression] = STATE(2695), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4429), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [396] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4584), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [401] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4019), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1091), + [397] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4568), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [402] = { - [sym__expression] = STATE(2719), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4430), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [398] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4568), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [403] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2962), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2996), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [399] = { + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(4017), + [sym_expression_list] = STATE(4621), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [404] = { - [sym__expression] = STATE(2799), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4451), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [400] = { + [sym__expression] = STATE(2476), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(815), + [sym_mutable_expression] = STATE(3713), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), + }, + [401] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4623), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [402] = { + [sym_else_branch] = STATE(937), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_LF] = ACTIONS(2548), + [anon_sym_CR] = ACTIONS(2548), + [anon_sym_CR_LF] = ACTIONS(2548), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2548), + [anon_sym_as] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_EQ] = ACTIONS(2548), + [anon_sym___global] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_GT] = ACTIONS(2548), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_EQ] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2548), + [anon_sym_mut] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_interface] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2548), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_go] = ACTIONS(2548), + [anon_sym_spawn] = ACTIONS(2548), + [anon_sym_json_DOTdecode] = ACTIONS(2548), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_LT_DASH] = ACTIONS(2548), + [anon_sym_LT_LT] = ACTIONS(2548), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2548), + [anon_sym_AMP_CARET] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_or] = ACTIONS(2548), + [sym_none] = ACTIONS(2548), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [sym_nil] = ACTIONS(2548), + [anon_sym_QMARK_DOT] = ACTIONS(2548), + [anon_sym_POUND_LBRACK] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(2550), + [anon_sym_DOLLARif] = ACTIONS(2548), + [anon_sym_is] = ACTIONS(2548), + [anon_sym_BANGis] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_BANGin] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_select] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_COLON_EQ] = ACTIONS(2548), + [anon_sym_lock] = ACTIONS(2548), + [anon_sym_rlock] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_sql] = ACTIONS(2548), + [sym_int_literal] = ACTIONS(2548), + [sym_float_literal] = ACTIONS(2548), + [sym_rune_literal] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_shared] = ACTIONS(2548), + [anon_sym_map_LBRACK] = ACTIONS(2548), + [anon_sym_chan] = ACTIONS(2548), + [anon_sym_thread] = ACTIONS(2548), + [anon_sym_atomic] = ACTIONS(2548), + [anon_sym_assert] = ACTIONS(2548), + [anon_sym_defer] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_DOLLARfor] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym_AT_LBRACK] = ACTIONS(2548), + [sym___double_quote] = ACTIONS(2548), + [sym___single_quote] = ACTIONS(2548), + [sym___c_double_quote] = ACTIONS(2548), + [sym___c_single_quote] = ACTIONS(2548), + [sym___r_double_quote] = ACTIONS(2548), + [sym___r_single_quote] = ACTIONS(2548), + }, + [403] = { + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4028), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), + }, + [404] = { + [sym_else_branch] = STATE(895), + [ts_builtin_sym_end] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2558), + [anon_sym_LF] = ACTIONS(2558), + [anon_sym_CR] = ACTIONS(2558), + [anon_sym_CR_LF] = ACTIONS(2558), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_as] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym___global] = ACTIONS(2558), + [anon_sym_type] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_fn] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2558), + [anon_sym_union] = ACTIONS(2558), + [anon_sym_pub] = ACTIONS(2558), + [anon_sym_mut] = ACTIONS(2558), + [anon_sym_enum] = ACTIONS(2558), + [anon_sym_interface] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_go] = ACTIONS(2558), + [anon_sym_spawn] = ACTIONS(2558), + [anon_sym_json_DOTdecode] = ACTIONS(2558), + [anon_sym_LBRACK2] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2558), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_AMP_CARET] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_or] = ACTIONS(2558), + [sym_none] = ACTIONS(2558), + [sym_true] = ACTIONS(2558), + [sym_false] = ACTIONS(2558), + [sym_nil] = ACTIONS(2558), + [anon_sym_QMARK_DOT] = ACTIONS(2558), + [anon_sym_POUND_LBRACK] = ACTIONS(2558), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(2550), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_is] = ACTIONS(2558), + [anon_sym_BANGis] = ACTIONS(2558), + [anon_sym_in] = ACTIONS(2558), + [anon_sym_BANGin] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2558), + [anon_sym_select] = ACTIONS(2558), + [anon_sym_STAR_EQ] = ACTIONS(2558), + [anon_sym_SLASH_EQ] = ACTIONS(2558), + [anon_sym_PERCENT_EQ] = ACTIONS(2558), + [anon_sym_LT_LT_EQ] = ACTIONS(2558), + [anon_sym_GT_GT_EQ] = ACTIONS(2558), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2558), + [anon_sym_AMP_EQ] = ACTIONS(2558), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2558), + [anon_sym_PLUS_EQ] = ACTIONS(2558), + [anon_sym_DASH_EQ] = ACTIONS(2558), + [anon_sym_PIPE_EQ] = ACTIONS(2558), + [anon_sym_CARET_EQ] = ACTIONS(2558), + [anon_sym_COLON_EQ] = ACTIONS(2558), + [anon_sym_lock] = ACTIONS(2558), + [anon_sym_rlock] = ACTIONS(2558), + [anon_sym_unsafe] = ACTIONS(2558), + [anon_sym_sql] = ACTIONS(2558), + [sym_int_literal] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), + [sym_rune_literal] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_shared] = ACTIONS(2558), + [anon_sym_map_LBRACK] = ACTIONS(2558), + [anon_sym_chan] = ACTIONS(2558), + [anon_sym_thread] = ACTIONS(2558), + [anon_sym_atomic] = ACTIONS(2558), + [anon_sym_assert] = ACTIONS(2558), + [anon_sym_defer] = ACTIONS(2558), + [anon_sym_goto] = ACTIONS(2558), + [anon_sym_break] = ACTIONS(2558), + [anon_sym_continue] = ACTIONS(2558), + [anon_sym_return] = ACTIONS(2558), + [anon_sym_DOLLARfor] = ACTIONS(2558), + [anon_sym_for] = ACTIONS(2558), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_asm] = ACTIONS(2558), + [anon_sym_AT_LBRACK] = ACTIONS(2558), + [sym___double_quote] = ACTIONS(2558), + [sym___single_quote] = ACTIONS(2558), + [sym___c_double_quote] = ACTIONS(2558), + [sym___c_single_quote] = ACTIONS(2558), + [sym___r_double_quote] = ACTIONS(2558), + [sym___r_single_quote] = ACTIONS(2558), }, [405] = { - [sym__expression] = STATE(2815), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4472), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(648), + [sym_mutable_expression] = STATE(3381), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [406] = { - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym__definite_range] = STATE(4428), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2675), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(3381), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [407] = { - [sym__expression] = STATE(2822), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4493), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2804), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4636), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [408] = { - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(826), - [sym_mutable_expression] = STATE(3352), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2996), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2997), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2562), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [409] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2959), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2970), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2791), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4504), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2452), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2454), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [410] = { - [sym__expression] = STATE(2846), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4514), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2983), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2985), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2566), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [411] = { - [sym__expression] = STATE(2814), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2742), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2456), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [412] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2988), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2994), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2800), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4525), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2458), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2460), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [413] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(3006), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2954), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2773), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4483), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2462), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [414] = { - [sym__expression] = STATE(2448), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(606), - [sym_mutable_expression] = STATE(3687), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2831), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2570), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [415] = { - [sym__expression] = STATE(2786), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4535), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2761), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4462), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [416] = { - [sym__expression] = STATE(2852), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4556), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(471), + [sym_mutable_expression] = STATE(3381), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [417] = { - [sym__expression] = STATE(1772), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(629), - [sym_mutable_expression] = STATE(3347), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3038), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2970), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2574), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [418] = { - [sym__expression] = STATE(2854), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2753), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4496), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [419] = { - [sym__expression] = STATE(2696), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4644), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2802), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4546), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [420] = { - [sym__expression] = STATE(1921), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(656), - [sym_mutable_expression] = STATE(3352), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2629), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym__definite_range] = STATE(4596), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [421] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2992), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2992), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3037), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2594), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2494), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2596), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [422] = { - [sym__expression] = STATE(2792), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1829), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(516), + [sym_mutable_expression] = STATE(3379), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [423] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2943), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2964), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2855), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2498), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2622), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2500), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [424] = { - [sym__expression] = STATE(2858), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2741), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4455), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2502), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [425] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2989), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2987), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3000), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3003), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2506), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2626), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [426] = { - [sym__expression] = STATE(252), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(630), - [sym_mutable_expression] = STATE(1122), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2736), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4500), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [427] = { - [sym__expression] = STATE(2880), - [sym__expression_without_blocks] = STATE(2872), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2872), - [sym_dec_expression] = STATE(2872), - [sym_or_block_expression] = STATE(2872), - [sym_option_propagation_expression] = STATE(2872), - [sym_result_propagation_expression] = STATE(2872), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2872), - [sym_spawn_expression] = STATE(2872), - [sym_parenthesized_expression] = STATE(2872), - [sym_call_expression] = STATE(2872), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2872), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2872), - [sym_receive_expression] = STATE(2872), - [sym_binary_expression] = STATE(2872), - [sym_as_type_cast_expression] = STATE(2872), - [sym__max_group] = STATE(2872), - [sym_literal] = STATE(2872), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2872), - [sym_fixed_array_creation] = STATE(2872), - [sym_selector_expression] = STATE(2872), - [sym_index_expression] = STATE(2872), - [sym_slice_expression] = STATE(2872), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2872), - [sym_not_is_expression] = STATE(2872), - [sym_in_expression] = STATE(2872), - [sym_not_in_expression] = STATE(2872), - [sym_enum_fetch] = STATE(2872), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2872), - [sym_mutability_modifiers] = STATE(587), - [sym_expression_without_blocks_list] = STATE(4481), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2891), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [428] = { - [sym__expression] = STATE(2880), - [sym__expression_without_blocks] = STATE(2872), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2872), - [sym_dec_expression] = STATE(2872), - [sym_or_block_expression] = STATE(2872), - [sym_option_propagation_expression] = STATE(2872), - [sym_result_propagation_expression] = STATE(2872), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2872), - [sym_spawn_expression] = STATE(2872), - [sym_parenthesized_expression] = STATE(2872), - [sym_call_expression] = STATE(2872), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2872), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2872), - [sym_receive_expression] = STATE(2872), - [sym_binary_expression] = STATE(2872), - [sym_as_type_cast_expression] = STATE(2872), - [sym__max_group] = STATE(2872), - [sym_literal] = STATE(2872), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2872), - [sym_fixed_array_creation] = STATE(2872), - [sym_selector_expression] = STATE(2872), - [sym_index_expression] = STATE(2872), - [sym_slice_expression] = STATE(2872), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2872), - [sym_not_is_expression] = STATE(2872), - [sym_in_expression] = STATE(2872), - [sym_not_in_expression] = STATE(2872), - [sym_enum_fetch] = STATE(2872), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2872), - [sym_mutability_modifiers] = STATE(587), - [sym_expression_without_blocks_list] = STATE(4447), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2811), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4567), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [429] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2999), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2958), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3006), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3012), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2630), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2632), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [430] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(3002), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(3001), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2717), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4552), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [431] = { - [sym__expression] = STATE(980), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(478), - [sym_mutable_expression] = STATE(1433), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3027), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3026), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2636), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [432] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2979), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2967), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2843), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(557), + [sym_mutable_expression] = STATE(4583), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [433] = { - [sym__expression] = STATE(1767), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym__expression] = STATE(273), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), [sym_mutability_modifiers] = STATE(817), - [sym_mutable_expression] = STATE(3349), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym_mutable_expression] = STATE(1147), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [434] = { - [sym__expression] = STATE(1633), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(552), - [sym_mutable_expression] = STATE(3337), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2982), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2984), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2642), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2644), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [435] = { - [sym__expression] = STATE(2759), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4572), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2978), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2977), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2646), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2648), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [436] = { - [sym__expression] = STATE(2782), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(616), - [sym_mutable_expression] = STATE(4459), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2971), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3034), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2650), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2652), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [437] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(3003), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2978), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2995), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3031), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2586), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2654), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2588), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2656), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [438] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(3009), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2983), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2991), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3015), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(2590), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2658), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(2592), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2660), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [439] = { - [sym__expression] = STATE(2627), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(718), - [sym_mutable_expression] = STATE(3352), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1955), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3381), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [440] = { - [sym__expression] = STATE(2434), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2987), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2999), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2662), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2664), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [441] = { - [sym__expression] = STATE(1278), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1001), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(728), + [sym_mutable_expression] = STATE(1519), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [442] = { - [sym__expression] = STATE(1799), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3019), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3017), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [443] = { - [sym__expression] = STATE(378), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2914), + [sym__expression_without_blocks] = STATE(2905), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2905), + [sym_dec_expression] = STATE(2905), + [sym_or_block_expression] = STATE(2905), + [sym_option_propagation_expression] = STATE(2905), + [sym_result_propagation_expression] = STATE(2905), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2905), + [sym_spawn_expression] = STATE(2905), + [sym_parenthesized_expression] = STATE(2905), + [sym_call_expression] = STATE(2905), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2905), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2905), + [sym_receive_expression] = STATE(2905), + [sym_binary_expression] = STATE(2905), + [sym_as_type_cast_expression] = STATE(2905), + [sym__max_group] = STATE(2905), + [sym_literal] = STATE(2905), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2905), + [sym_fixed_array_creation] = STATE(2905), + [sym_selector_expression] = STATE(2905), + [sym_index_expression] = STATE(2905), + [sym_slice_expression] = STATE(2905), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2905), + [sym_not_is_expression] = STATE(2905), + [sym_in_expression] = STATE(2905), + [sym_not_in_expression] = STATE(2905), + [sym_enum_fetch] = STATE(2905), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2905), + [sym_mutability_modifiers] = STATE(606), + [sym_expression_without_blocks_list] = STATE(4487), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [444] = { - [sym__expression] = STATE(1277), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3030), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3029), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2672), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [445] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2914), + [sym__expression_without_blocks] = STATE(2905), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2905), + [sym_dec_expression] = STATE(2905), + [sym_or_block_expression] = STATE(2905), + [sym_option_propagation_expression] = STATE(2905), + [sym_result_propagation_expression] = STATE(2905), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2905), + [sym_spawn_expression] = STATE(2905), + [sym_parenthesized_expression] = STATE(2905), + [sym_call_expression] = STATE(2905), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2905), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2905), + [sym_receive_expression] = STATE(2905), + [sym_binary_expression] = STATE(2905), + [sym_as_type_cast_expression] = STATE(2905), + [sym__max_group] = STATE(2905), + [sym_literal] = STATE(2905), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2905), + [sym_fixed_array_creation] = STATE(2905), + [sym_selector_expression] = STATE(2905), + [sym_index_expression] = STATE(2905), + [sym_slice_expression] = STATE(2905), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2905), + [sym_not_is_expression] = STATE(2905), + [sym_in_expression] = STATE(2905), + [sym_not_in_expression] = STATE(2905), + [sym_enum_fetch] = STATE(2905), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2905), + [sym_mutability_modifiers] = STATE(606), + [sym_expression_without_blocks_list] = STATE(4471), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [446] = { - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1669), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(862), + [sym_mutable_expression] = STATE(3369), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [447] = { - [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4158), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3008), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2990), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(2738), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [448] = { - [sym__expression] = STATE(2863), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2612), + [sym__expression] = STATE(1828), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(825), + [sym_mutable_expression] = STATE(3380), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [449] = { - [sym__expression] = STATE(2659), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2854), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [450] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_EQ] = ACTIONS(2750), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2750), + [anon_sym_POUND_LBRACK] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_STAR_EQ] = ACTIONS(2750), + [anon_sym_SLASH_EQ] = ACTIONS(2750), + [anon_sym_PERCENT_EQ] = ACTIONS(2750), + [anon_sym_LT_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_GT_EQ] = ACTIONS(2750), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2750), + [anon_sym_AMP_EQ] = ACTIONS(2750), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2750), + [anon_sym_PLUS_EQ] = ACTIONS(2750), + [anon_sym_DASH_EQ] = ACTIONS(2750), + [anon_sym_PIPE_EQ] = ACTIONS(2750), + [anon_sym_CARET_EQ] = ACTIONS(2750), + [anon_sym_COLON_EQ] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, [451] = { - [sym__expression] = STATE(2746), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [452] = { - [sym__expression] = STATE(1284), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [453] = { - [sym__expression] = STATE(2787), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2650), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [454] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2957), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2956), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_EQ] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_STAR_EQ] = ACTIONS(2748), + [anon_sym_SLASH_EQ] = ACTIONS(2748), + [anon_sym_PERCENT_EQ] = ACTIONS(2748), + [anon_sym_LT_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_GT_EQ] = ACTIONS(2748), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2748), + [anon_sym_AMP_EQ] = ACTIONS(2748), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2748), + [anon_sym_PLUS_EQ] = ACTIONS(2748), + [anon_sym_DASH_EQ] = ACTIONS(2748), + [anon_sym_PIPE_EQ] = ACTIONS(2748), + [anon_sym_CARET_EQ] = ACTIONS(2748), + [anon_sym_COLON_EQ] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), + }, + [455] = { + [sym__expression] = STATE(2330), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [455] = { - [sym__expression] = STATE(378), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4178), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [456] = { + [sym__expression] = STATE(1006), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, - [456] = { - [sym__expression] = STATE(1790), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [457] = { + [sym__expression] = STATE(992), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, - [457] = { - [sym__expression] = STATE(1793), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [458] = { + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), - }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(2614), - [sym_identifier] = ACTIONS(2616), - [anon_sym_LF] = ACTIONS(2616), - [anon_sym_CR] = ACTIONS(2616), - [anon_sym_CR_LF] = ACTIONS(2616), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_as] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_COMMA] = ACTIONS(2616), - [anon_sym_const] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym___global] = ACTIONS(2616), - [anon_sym_type] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_fn] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_SLASH] = ACTIONS(2616), - [anon_sym_PERCENT] = ACTIONS(2616), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2616), - [anon_sym_BANG_EQ] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2616), - [anon_sym_GT_EQ] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2616), - [anon_sym_union] = ACTIONS(2616), - [anon_sym_pub] = ACTIONS(2616), - [anon_sym_mut] = ACTIONS(2616), - [anon_sym_enum] = ACTIONS(2616), - [anon_sym_interface] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_go] = ACTIONS(2616), - [anon_sym_spawn] = ACTIONS(2616), - [anon_sym_json_DOTdecode] = ACTIONS(2616), - [anon_sym_LBRACK2] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2616), - [anon_sym_LT_LT] = ACTIONS(2616), - [anon_sym_GT_GT] = ACTIONS(2616), - [anon_sym_GT_GT_GT] = ACTIONS(2616), - [anon_sym_AMP_CARET] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2616), - [anon_sym_or] = ACTIONS(2616), - [sym_none] = ACTIONS(2616), - [sym_true] = ACTIONS(2616), - [sym_false] = ACTIONS(2616), - [sym_nil] = ACTIONS(2616), - [anon_sym_QMARK_DOT] = ACTIONS(2616), - [anon_sym_POUND_LBRACK] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_DOLLARif] = ACTIONS(2616), - [anon_sym_DOLLARelse] = ACTIONS(2618), - [anon_sym_is] = ACTIONS(2616), - [anon_sym_BANGis] = ACTIONS(2616), - [anon_sym_in] = ACTIONS(2616), - [anon_sym_BANGin] = ACTIONS(2616), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_select] = ACTIONS(2616), - [anon_sym_STAR_EQ] = ACTIONS(2616), - [anon_sym_SLASH_EQ] = ACTIONS(2616), - [anon_sym_PERCENT_EQ] = ACTIONS(2616), - [anon_sym_LT_LT_EQ] = ACTIONS(2616), - [anon_sym_GT_GT_EQ] = ACTIONS(2616), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2616), - [anon_sym_AMP_EQ] = ACTIONS(2616), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2616), - [anon_sym_PLUS_EQ] = ACTIONS(2616), - [anon_sym_DASH_EQ] = ACTIONS(2616), - [anon_sym_PIPE_EQ] = ACTIONS(2616), - [anon_sym_CARET_EQ] = ACTIONS(2616), - [anon_sym_COLON_EQ] = ACTIONS(2616), - [anon_sym_lock] = ACTIONS(2616), - [anon_sym_rlock] = ACTIONS(2616), - [anon_sym_unsafe] = ACTIONS(2616), - [anon_sym_sql] = ACTIONS(2616), - [sym_int_literal] = ACTIONS(2616), - [sym_float_literal] = ACTIONS(2616), - [sym_rune_literal] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_shared] = ACTIONS(2616), - [anon_sym_map_LBRACK] = ACTIONS(2616), - [anon_sym_chan] = ACTIONS(2616), - [anon_sym_thread] = ACTIONS(2616), - [anon_sym_atomic] = ACTIONS(2616), - [anon_sym_assert] = ACTIONS(2616), - [anon_sym_defer] = ACTIONS(2616), - [anon_sym_goto] = ACTIONS(2616), - [anon_sym_break] = ACTIONS(2616), - [anon_sym_continue] = ACTIONS(2616), - [anon_sym_return] = ACTIONS(2616), - [anon_sym_DOLLARfor] = ACTIONS(2616), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_POUND] = ACTIONS(2616), - [anon_sym_asm] = ACTIONS(2616), - [anon_sym_AT_LBRACK] = ACTIONS(2616), - [sym___double_quote] = ACTIONS(2616), - [sym___single_quote] = ACTIONS(2616), - [sym___c_double_quote] = ACTIONS(2616), - [sym___c_single_quote] = ACTIONS(2616), - [sym___r_double_quote] = ACTIONS(2616), - [sym___r_single_quote] = ACTIONS(2616), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [459] = { - [sym__expression] = STATE(2454), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1014), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [460] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(2519), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [461] = { - [sym__expression] = STATE(2148), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1009), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [462] = { - [sym__expression] = STATE(1796), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2569), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [463] = { - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2652), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [464] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4348), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [465] = { - [sym__expression] = STATE(1283), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4352), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [466] = { - [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4274), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2653), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [467] = { - [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4251), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [468] = { - [sym__expression] = STATE(2828), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2659), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [469] = { - [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_EQ] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_else] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_STAR_EQ] = ACTIONS(2798), + [anon_sym_SLASH_EQ] = ACTIONS(2798), + [anon_sym_PERCENT_EQ] = ACTIONS(2798), + [anon_sym_LT_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_GT_EQ] = ACTIONS(2798), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2798), + [anon_sym_AMP_EQ] = ACTIONS(2798), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2798), + [anon_sym_PLUS_EQ] = ACTIONS(2798), + [anon_sym_DASH_EQ] = ACTIONS(2798), + [anon_sym_PIPE_EQ] = ACTIONS(2798), + [anon_sym_CARET_EQ] = ACTIONS(2798), + [anon_sym_COLON_EQ] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), + }, + [470] = { + [sym__expression] = STATE(2661), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [470] = { - [sym__expression] = STATE(1618), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [471] = { + [sym__expression] = STATE(2683), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [471] = { - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [472] = { + [sym__expression] = STATE(2660), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), - }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_STAR_EQ] = ACTIONS(2694), - [anon_sym_SLASH_EQ] = ACTIONS(2694), - [anon_sym_PERCENT_EQ] = ACTIONS(2694), - [anon_sym_LT_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_GT_EQ] = ACTIONS(2694), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2694), - [anon_sym_AMP_EQ] = ACTIONS(2694), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2694), - [anon_sym_PLUS_EQ] = ACTIONS(2694), - [anon_sym_DASH_EQ] = ACTIONS(2694), - [anon_sym_PIPE_EQ] = ACTIONS(2694), - [anon_sym_CARET_EQ] = ACTIONS(2694), - [anon_sym_COLON_EQ] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [473] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1950), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [474] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(3008), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2977), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1802), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [475] = { - [sym__expression] = STATE(1629), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2888), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [476] = { - [sym__expression] = STATE(1626), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2875), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [477] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), + [sym__expression] = STATE(2518), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [478] = { - [sym__expression] = STATE(966), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2860), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [479] = { - [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1702), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [480] = { - [sym__expression] = STATE(1792), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2645), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [481] = { - [sym__expression] = STATE(378), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4205), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2649), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [482] = { - [sym__expression] = STATE(294), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [483] = { - [sym__expression] = STATE(2647), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [484] = { - [sym__expression] = STATE(365), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(1951), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [485] = { - [sym__expression] = STATE(1628), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(1953), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [486] = { - [sym__expression] = STATE(2767), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1933), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [487] = { - [sym__expression] = STATE(1800), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(1927), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [488] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2997), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2941), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2821), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [489] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [490] = { - [sym__expression] = STATE(2796), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2330), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [491] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2658), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [492] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3671), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2974), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2975), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [493] = { - [sym__expression] = STATE(1627), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2731), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [494] = { - [sym__expression] = STATE(2863), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2330), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [495] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2670), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [496] = { - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2881), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [497] = { - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2512), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [498] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2812), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [499] = { - [sym__expression] = STATE(2467), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1859), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2736), - [anon_sym___global] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_DOLLARelse] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_STAR_EQ] = ACTIONS(2736), - [anon_sym_SLASH_EQ] = ACTIONS(2736), - [anon_sym_PERCENT_EQ] = ACTIONS(2736), - [anon_sym_LT_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_GT_EQ] = ACTIONS(2736), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2736), - [anon_sym_AMP_EQ] = ACTIONS(2736), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2736), - [anon_sym_PLUS_EQ] = ACTIONS(2736), - [anon_sym_DASH_EQ] = ACTIONS(2736), - [anon_sym_PIPE_EQ] = ACTIONS(2736), - [anon_sym_CARET_EQ] = ACTIONS(2736), - [anon_sym_COLON_EQ] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [anon_sym_assert] = ACTIONS(2736), - [anon_sym_defer] = ACTIONS(2736), - [anon_sym_goto] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_DOLLARfor] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_asm] = ACTIONS(2736), - [anon_sym_AT_LBRACK] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), - }, - [501] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2942), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2940), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [502] = { - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2898), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [503] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [501] = { + [sym__expression] = STATE(2509), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, - [504] = { - [sym__expression] = STATE(2824), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [502] = { + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [505] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(3005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(3007), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [503] = { + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4030), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, - [506] = { - [sym__expression] = STATE(2679), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [504] = { + [sym__expression] = STATE(2185), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, - [507] = { - [sym__expression] = STATE(2465), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [505] = { + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4028), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, - [508] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [506] = { + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4023), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, - [509] = { - [sym__expression] = STATE(378), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4307), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [507] = { + [sym__expression] = STATE(2909), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2862), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [510] = { - [sym__expression] = STATE(2219), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [508] = { + [sym__expression] = STATE(2482), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, - [511] = { - [sym__expression] = STATE(2820), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [509] = { + [sym__expression] = STATE(2487), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, - [512] = { - [sym__expression] = STATE(2323), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [510] = { + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4030), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, - [513] = { - [sym__expression] = STATE(2635), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [511] = { + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4246), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, - [514] = { - [sym__expression] = STATE(1794), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [512] = { + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3718), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [513] = { + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4023), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), + }, + [514] = { + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_EQ] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_DOLLARelse] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_STAR_EQ] = ACTIONS(2798), + [anon_sym_SLASH_EQ] = ACTIONS(2798), + [anon_sym_PERCENT_EQ] = ACTIONS(2798), + [anon_sym_LT_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_GT_EQ] = ACTIONS(2798), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2798), + [anon_sym_AMP_EQ] = ACTIONS(2798), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2798), + [anon_sym_PLUS_EQ] = ACTIONS(2798), + [anon_sym_DASH_EQ] = ACTIONS(2798), + [anon_sym_PIPE_EQ] = ACTIONS(2798), + [anon_sym_CARET_EQ] = ACTIONS(2798), + [anon_sym_COLON_EQ] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), }, [515] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2345), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [516] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4222), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1926), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [517] = { - [sym__expression] = STATE(2294), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2713), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [518] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4229), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2507), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [519] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4402), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [520] = { - [sym__expression] = STATE(361), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2897), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [521] = { - [sym__expression] = STATE(2293), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4406), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [522] = { - [sym__expression] = STATE(2856), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4408), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [523] = { - [sym__expression] = STATE(2653), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_LF] = ACTIONS(2884), + [anon_sym_CR] = ACTIONS(2884), + [anon_sym_CR_LF] = ACTIONS(2884), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_as] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_EQ] = ACTIONS(2884), + [anon_sym___global] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_fn] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_GT] = ACTIONS(2884), + [anon_sym_EQ_EQ] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2884), + [anon_sym_LT_EQ] = ACTIONS(2884), + [anon_sym_GT_EQ] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_pub] = ACTIONS(2884), + [anon_sym_mut] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_go] = ACTIONS(2884), + [anon_sym_spawn] = ACTIONS(2884), + [anon_sym_json_DOTdecode] = ACTIONS(2884), + [anon_sym_LBRACK2] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_CARET] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_LT_LT] = ACTIONS(2884), + [anon_sym_GT_GT] = ACTIONS(2884), + [anon_sym_GT_GT_GT] = ACTIONS(2884), + [anon_sym_AMP_CARET] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_or] = ACTIONS(2884), + [sym_none] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_nil] = ACTIONS(2884), + [anon_sym_QMARK_DOT] = ACTIONS(2884), + [anon_sym_POUND_LBRACK] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_DOLLARif] = ACTIONS(2884), + [anon_sym_DOLLARelse] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2884), + [anon_sym_BANGis] = ACTIONS(2884), + [anon_sym_in] = ACTIONS(2884), + [anon_sym_BANGin] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_select] = ACTIONS(2884), + [anon_sym_STAR_EQ] = ACTIONS(2884), + [anon_sym_SLASH_EQ] = ACTIONS(2884), + [anon_sym_PERCENT_EQ] = ACTIONS(2884), + [anon_sym_LT_LT_EQ] = ACTIONS(2884), + [anon_sym_GT_GT_EQ] = ACTIONS(2884), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2884), + [anon_sym_AMP_EQ] = ACTIONS(2884), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2884), + [anon_sym_PLUS_EQ] = ACTIONS(2884), + [anon_sym_DASH_EQ] = ACTIONS(2884), + [anon_sym_PIPE_EQ] = ACTIONS(2884), + [anon_sym_CARET_EQ] = ACTIONS(2884), + [anon_sym_COLON_EQ] = ACTIONS(2884), + [anon_sym_lock] = ACTIONS(2884), + [anon_sym_rlock] = ACTIONS(2884), + [anon_sym_unsafe] = ACTIONS(2884), + [anon_sym_sql] = ACTIONS(2884), + [sym_int_literal] = ACTIONS(2884), + [sym_float_literal] = ACTIONS(2884), + [sym_rune_literal] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_shared] = ACTIONS(2884), + [anon_sym_map_LBRACK] = ACTIONS(2884), + [anon_sym_chan] = ACTIONS(2884), + [anon_sym_thread] = ACTIONS(2884), + [anon_sym_atomic] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_defer] = ACTIONS(2884), + [anon_sym_goto] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_DOLLARfor] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2884), + [anon_sym_asm] = ACTIONS(2884), + [anon_sym_AT_LBRACK] = ACTIONS(2884), + [sym___double_quote] = ACTIONS(2884), + [sym___single_quote] = ACTIONS(2884), + [sym___c_double_quote] = ACTIONS(2884), + [sym___c_single_quote] = ACTIONS(2884), + [sym___r_double_quote] = ACTIONS(2884), + [sym___r_single_quote] = ACTIONS(2884), + }, + [524] = { + [sym__expression] = STATE(2887), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [524] = { - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [525] = { + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, - [525] = { - [sym__expression] = STATE(2864), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [526] = { + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3697), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_LT_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_AMP_EQ] = ACTIONS(2740), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_PIPE_EQ] = ACTIONS(2740), - [anon_sym_CARET_EQ] = ACTIONS(2740), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [527] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2304), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [528] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2985), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2984), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [529] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1824), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [530] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4111), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(1822), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [531] = { - [sym__expression] = STATE(2797), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [532] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(3004), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2955), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1709), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4333), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [533] = { - [sym__expression] = STATE(2681), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2504), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [534] = { - [sym__expression] = STATE(1777), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2503), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [535] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1709), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4332), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [536] = { - [sym__expression] = STATE(1779), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(1709), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4308), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [537] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_DOLLARelse] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_STAR_EQ] = ACTIONS(2694), - [anon_sym_SLASH_EQ] = ACTIONS(2694), - [anon_sym_PERCENT_EQ] = ACTIONS(2694), - [anon_sym_LT_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_GT_EQ] = ACTIONS(2694), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2694), - [anon_sym_AMP_EQ] = ACTIONS(2694), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2694), - [anon_sym_PLUS_EQ] = ACTIONS(2694), - [anon_sym_DASH_EQ] = ACTIONS(2694), - [anon_sym_PIPE_EQ] = ACTIONS(2694), - [anon_sym_CARET_EQ] = ACTIONS(2694), - [anon_sym_COLON_EQ] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [538] = { - [sym__expression] = STATE(988), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2300), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [539] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2740), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [540] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(3671), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1801), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [541] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4408), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [542] = { - [sym__expression] = STATE(2628), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4406), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [543] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2185), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [544] = { - [sym__expression] = STATE(2626), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3697), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [545] = { - [sym__expression] = STATE(986), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [546] = { - [sym__expression] = STATE(1920), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [547] = { - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4402), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [548] = { - [sym__expression] = STATE(1782), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3718), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [549] = { - [sym__expression] = STATE(2683), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2184), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [550] = { - [sym__expression] = STATE(2503), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2865), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [551] = { - [sym__expression] = STATE(2446), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2685), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [552] = { - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(1958), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [553] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2995), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2949), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [554] = { - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(1800), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [555] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3671), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2092), + [sym__expression] = STATE(1802), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [556] = { - [sym__expression] = STATE(2843), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [557] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2794), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [558] = { - [sym__expression] = STATE(2755), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym_type_parameters] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_STAR_EQ] = ACTIONS(2890), + [anon_sym_SLASH_EQ] = ACTIONS(2890), + [anon_sym_PERCENT_EQ] = ACTIONS(2890), + [anon_sym_LT_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_AMP_EQ] = ACTIONS(2890), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2890), + [anon_sym_PLUS_EQ] = ACTIONS(2890), + [anon_sym_DASH_EQ] = ACTIONS(2890), + [anon_sym_PIPE_EQ] = ACTIONS(2890), + [anon_sym_CARET_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, [559] = { - [sym__expression] = STATE(1630), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4164), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2797), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [560] = { - [sym__expression] = STATE(2879), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1712), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [561] = { - [sym__expression] = STATE(1785), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4028), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [562] = { - [sym__expression] = STATE(981), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4140), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [563] = { - [sym__expression] = STATE(1622), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(1707), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [564] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1708), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [565] = { - [sym__expression] = STATE(1139), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4023), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [566] = { - [sym__expression] = STATE(2290), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [567] = { - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2899), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [568] = { - [sym__expression] = STATE(2219), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4139), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [569] = { - [sym__expression] = STATE(2735), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [570] = { - [sym__expression] = STATE(991), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2337), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), + }, + [570] = { + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4135), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [571] = { - [sym__expression] = STATE(969), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1709), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [572] = { - [sym__expression] = STATE(1786), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2979), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2981), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [573] = { - [sym__expression] = STATE(990), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2636), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [574] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2772), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [575] = { - [sym__expression] = STATE(2646), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2842), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [576] = { - [sym__expression] = STATE(1795), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2506), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [577] = { - [sym__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(993), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [578] = { - [sym__expression] = STATE(2730), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2666), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [579] = { - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2900), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [580] = { - [sym__expression] = STATE(987), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2914), + [sym__expression_without_blocks] = STATE(2921), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2921), + [sym_dec_expression] = STATE(2921), + [sym_or_block_expression] = STATE(2921), + [sym_option_propagation_expression] = STATE(2921), + [sym_result_propagation_expression] = STATE(2921), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2921), + [sym_spawn_expression] = STATE(2921), + [sym_parenthesized_expression] = STATE(2921), + [sym_call_expression] = STATE(2921), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2921), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2921), + [sym_receive_expression] = STATE(2921), + [sym_binary_expression] = STATE(2921), + [sym_as_type_cast_expression] = STATE(2921), + [sym__max_group] = STATE(2921), + [sym_literal] = STATE(2921), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2921), + [sym_fixed_array_creation] = STATE(2921), + [sym_selector_expression] = STATE(2921), + [sym_index_expression] = STATE(2921), + [sym_slice_expression] = STATE(2921), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2921), + [sym_not_is_expression] = STATE(2921), + [sym_in_expression] = STATE(2921), + [sym_not_in_expression] = STATE(2921), + [sym_enum_fetch] = STATE(2921), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2921), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [581] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2358), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [582] = { - [sym__expression] = STATE(2873), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2730), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [583] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2980), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2981), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2584), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [584] = { - [sym__expression] = STATE(2186), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2648), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [585] = { - [sym__expression] = STATE(2449), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1710), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [586] = { - [sym__expression] = STATE(2739), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1701), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [587] = { - [sym__expression] = STATE(2865), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3009), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3014), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [588] = { - [sym__expression] = STATE(2736), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2901), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [589] = { - [sym__expression] = STATE(1630), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4159), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2743), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [590] = { - [sym__expression] = STATE(1142), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_STAR_EQ] = ACTIONS(2914), + [anon_sym_SLASH_EQ] = ACTIONS(2914), + [anon_sym_PERCENT_EQ] = ACTIONS(2914), + [anon_sym_LT_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_AMP_EQ] = ACTIONS(2914), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), + [anon_sym_PLUS_EQ] = ACTIONS(2914), + [anon_sym_DASH_EQ] = ACTIONS(2914), + [anon_sym_PIPE_EQ] = ACTIONS(2914), + [anon_sym_CARET_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [591] = { - [sym__expression] = STATE(2464), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1954), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [592] = { - [sym__expression] = STATE(1140), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2718), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [593] = { - [sym__expression] = STATE(1630), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4143), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [594] = { - [sym__expression] = STATE(1630), - [sym__expression_without_blocks] = STATE(1712), - [sym__expression_with_blocks] = STATE(1712), - [sym_inc_expression] = STATE(1712), - [sym_dec_expression] = STATE(1712), - [sym_or_block_expression] = STATE(1712), - [sym_option_propagation_expression] = STATE(1712), - [sym_result_propagation_expression] = STATE(1712), - [sym_anon_struct_value_expression] = STATE(1713), - [sym_go_expression] = STATE(1712), - [sym_spawn_expression] = STATE(1712), - [sym_parenthesized_expression] = STATE(1712), - [sym_call_expression] = STATE(1712), - [sym_type_initializer] = STATE(1713), - [sym_function_literal] = STATE(1712), - [sym_reference_expression] = STATE(1715), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1712), - [sym_receive_expression] = STATE(1712), - [sym_binary_expression] = STATE(1712), - [sym_as_type_cast_expression] = STATE(1712), - [sym__max_group] = STATE(1712), - [sym_literal] = STATE(1712), - [sym_map_init_expression] = STATE(1713), - [sym_array_creation] = STATE(1712), - [sym_fixed_array_creation] = STATE(1712), - [sym_selector_expression] = STATE(1712), - [sym_index_expression] = STATE(1712), - [sym_slice_expression] = STATE(1712), - [sym_if_expression] = STATE(1713), - [sym_compile_time_if_expression] = STATE(1713), - [sym_is_expression] = STATE(1712), - [sym_not_is_expression] = STATE(1712), - [sym_in_expression] = STATE(1712), - [sym_not_in_expression] = STATE(1712), - [sym_enum_fetch] = STATE(1712), - [sym_match_expression] = STATE(1713), - [sym_select_expression] = STATE(1713), - [sym_lock_expression] = STATE(1713), - [sym_unsafe_expression] = STATE(1713), - [sym_sql_expression] = STATE(1713), - [sym_c_string_literal] = STATE(1705), - [sym_raw_string_literal] = STATE(1705), - [sym_interpreted_string_literal] = STATE(1705), - [sym_pseudo_compile_time_identifier] = STATE(1712), - [sym_mutability_modifiers] = STATE(602), - [sym_plain_type] = STATE(4136), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2688), + [sym__expression] = STATE(1827), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [595] = { - [sym__expression] = STATE(2869), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(3697), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [596] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1821), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [597] = { - [sym__expression] = STATE(2470), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2893), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [598] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(1820), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [599] = { - [sym__expression] = STATE(2861), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(3695), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [600] = { - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2758), - [anon_sym_CR] = ACTIONS(2758), - [anon_sym_CR_LF] = ACTIONS(2758), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_as] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym___global] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_fn] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_pub] = ACTIONS(2758), - [anon_sym_mut] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_interface] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_go] = ACTIONS(2758), - [anon_sym_spawn] = ACTIONS(2758), - [anon_sym_json_DOTdecode] = ACTIONS(2758), - [anon_sym_LBRACK2] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_LT_DASH] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_GT_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_CARET] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2758), - [sym_none] = ACTIONS(2758), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_nil] = ACTIONS(2758), - [anon_sym_QMARK_DOT] = ACTIONS(2758), - [anon_sym_POUND_LBRACK] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_DOLLARif] = ACTIONS(2758), - [anon_sym_DOLLARelse] = ACTIONS(2760), - [anon_sym_is] = ACTIONS(2758), - [anon_sym_BANGis] = ACTIONS(2758), - [anon_sym_in] = ACTIONS(2758), - [anon_sym_BANGin] = ACTIONS(2758), - [anon_sym_match] = ACTIONS(2758), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_STAR_EQ] = ACTIONS(2758), - [anon_sym_SLASH_EQ] = ACTIONS(2758), - [anon_sym_PERCENT_EQ] = ACTIONS(2758), - [anon_sym_LT_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2758), - [anon_sym_AMP_EQ] = ACTIONS(2758), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2758), - [anon_sym_PLUS_EQ] = ACTIONS(2758), - [anon_sym_DASH_EQ] = ACTIONS(2758), - [anon_sym_PIPE_EQ] = ACTIONS(2758), - [anon_sym_CARET_EQ] = ACTIONS(2758), - [anon_sym_COLON_EQ] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2758), - [anon_sym_rlock] = ACTIONS(2758), - [anon_sym_unsafe] = ACTIONS(2758), - [anon_sym_sql] = ACTIONS(2758), - [sym_int_literal] = ACTIONS(2758), - [sym_float_literal] = ACTIONS(2758), - [sym_rune_literal] = ACTIONS(2758), - [anon_sym_AT] = ACTIONS(2758), - [anon_sym_shared] = ACTIONS(2758), - [anon_sym_map_LBRACK] = ACTIONS(2758), - [anon_sym_chan] = ACTIONS(2758), - [anon_sym_thread] = ACTIONS(2758), - [anon_sym_atomic] = ACTIONS(2758), - [anon_sym_assert] = ACTIONS(2758), - [anon_sym_defer] = ACTIONS(2758), - [anon_sym_goto] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_DOLLARfor] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2758), - [anon_sym_AT_LBRACK] = ACTIONS(2758), - [sym___double_quote] = ACTIONS(2758), - [sym___single_quote] = ACTIONS(2758), - [sym___c_double_quote] = ACTIONS(2758), - [sym___c_single_quote] = ACTIONS(2758), - [sym___r_double_quote] = ACTIONS(2758), - [sym___r_single_quote] = ACTIONS(2758), - }, - [601] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3671), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(3718), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, - [602] = { - [sym__expression] = STATE(2876), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [601] = { + [sym__expression] = STATE(2360), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, - [603] = { - [sym__expression] = STATE(2317), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [602] = { + [sym__expression] = STATE(2573), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_CR] = ACTIONS(2926), + [anon_sym_CR_LF] = ACTIONS(2926), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_COMMA] = ACTIONS(2926), + [anon_sym_const] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(2926), + [anon_sym___global] = ACTIONS(2926), + [anon_sym_type] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PERCENT] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_union] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2926), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2926), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2926), + [anon_sym_AMP_CARET] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_or] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_QMARK_DOT] = ACTIONS(2926), + [anon_sym_POUND_LBRACK] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_DOLLARelse] = ACTIONS(2928), + [anon_sym_is] = ACTIONS(2926), + [anon_sym_BANGis] = ACTIONS(2926), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_BANGin] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_STAR_EQ] = ACTIONS(2926), + [anon_sym_SLASH_EQ] = ACTIONS(2926), + [anon_sym_PERCENT_EQ] = ACTIONS(2926), + [anon_sym_LT_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_GT_EQ] = ACTIONS(2926), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2926), + [anon_sym_AMP_EQ] = ACTIONS(2926), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2926), + [anon_sym_PLUS_EQ] = ACTIONS(2926), + [anon_sym_DASH_EQ] = ACTIONS(2926), + [anon_sym_PIPE_EQ] = ACTIONS(2926), + [anon_sym_CARET_EQ] = ACTIONS(2926), + [anon_sym_COLON_EQ] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + [sym_rune_literal] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2926), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [anon_sym_assert] = ACTIONS(2926), + [anon_sym_defer] = ACTIONS(2926), + [anon_sym_goto] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_DOLLARfor] = ACTIONS(2926), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_asm] = ACTIONS(2926), + [anon_sym_AT_LBRACK] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2926), + [sym___single_quote] = ACTIONS(2926), + [sym___c_double_quote] = ACTIONS(2926), + [sym___c_single_quote] = ACTIONS(2926), + [sym___r_double_quote] = ACTIONS(2926), + [sym___r_single_quote] = ACTIONS(2926), }, [604] = { - [sym__expression] = STATE(2468), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [605] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2572), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [606] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2907), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [607] = { - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2677), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [608] = { - [sym__expression] = STATE(1144), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2338), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [609] = { - [sym__expression] = STATE(2882), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2566), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [610] = { - [sym__expression] = STATE(2645), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2806), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [611] = { - [sym__expression] = STATE(2445), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3039), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3041), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [612] = { - [sym__expression] = STATE(318), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(343), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2640), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), [anon_sym_DASH] = ACTIONS(29), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(47), [anon_sym_go] = ACTIONS(49), [anon_sym_spawn] = ACTIONS(51), [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_LBRACK2] = ACTIONS(487), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_CARET] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(57), @@ -97154,201 +97299,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [613] = { - [sym__expression] = STATE(2860), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2808), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [614] = { - [sym__expression] = STATE(324), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(384), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4293), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2640), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), [anon_sym_DASH] = ACTIONS(29), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(47), [anon_sym_go] = ACTIONS(49), [anon_sym_spawn] = ACTIONS(51), [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_LBRACK2] = ACTIONS(487), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_CARET] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(57), @@ -97382,771 +97527,771 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [615] = { - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2150), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2150), - [sym_dec_expression] = STATE(2150), - [sym_or_block_expression] = STATE(2150), - [sym_option_propagation_expression] = STATE(2150), - [sym_result_propagation_expression] = STATE(2150), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2150), - [sym_spawn_expression] = STATE(2150), - [sym_parenthesized_expression] = STATE(2150), - [sym_call_expression] = STATE(2150), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2150), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2150), - [sym_receive_expression] = STATE(2150), - [sym_binary_expression] = STATE(2150), - [sym_as_type_cast_expression] = STATE(2150), - [sym__max_group] = STATE(2150), - [sym_literal] = STATE(2150), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2150), - [sym_fixed_array_creation] = STATE(2150), - [sym_selector_expression] = STATE(2150), - [sym_index_expression] = STATE(2150), - [sym_slice_expression] = STATE(2150), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2150), - [sym_not_is_expression] = STATE(2150), - [sym_in_expression] = STATE(2150), - [sym_not_in_expression] = STATE(2150), - [sym_enum_fetch] = STATE(2150), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(2150), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2691), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [616] = { - [sym__expression] = STATE(2734), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2859), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [617] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3024), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3023), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [618] = { - [sym_type_parameters] = STATE(893), - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_EQ] = ACTIONS(2764), - [anon_sym___global] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2764), - [anon_sym_BANG_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_CARET] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2764), - [anon_sym_POUND_LBRACK] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2764), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_STAR_EQ] = ACTIONS(2764), - [anon_sym_SLASH_EQ] = ACTIONS(2764), - [anon_sym_PERCENT_EQ] = ACTIONS(2764), - [anon_sym_LT_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_GT_EQ] = ACTIONS(2764), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2764), - [anon_sym_AMP_EQ] = ACTIONS(2764), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2764), - [anon_sym_PLUS_EQ] = ACTIONS(2764), - [anon_sym_DASH_EQ] = ACTIONS(2764), - [anon_sym_PIPE_EQ] = ACTIONS(2764), - [anon_sym_CARET_EQ] = ACTIONS(2764), - [anon_sym_COLON_EQ] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [anon_sym_assert] = ACTIONS(2764), - [anon_sym_defer] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_DOLLARfor] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [anon_sym_asm] = ACTIONS(2764), - [anon_sym_AT_LBRACK] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), + [sym__expression] = STATE(2917), + [sym__expression_without_blocks] = STATE(2183), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2183), + [sym_dec_expression] = STATE(2183), + [sym_or_block_expression] = STATE(2183), + [sym_option_propagation_expression] = STATE(2183), + [sym_result_propagation_expression] = STATE(2183), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2183), + [sym_spawn_expression] = STATE(2183), + [sym_parenthesized_expression] = STATE(2183), + [sym_call_expression] = STATE(2183), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2183), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2183), + [sym_receive_expression] = STATE(2183), + [sym_binary_expression] = STATE(2183), + [sym_as_type_cast_expression] = STATE(2183), + [sym__max_group] = STATE(2183), + [sym_literal] = STATE(2183), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2183), + [sym_fixed_array_creation] = STATE(2183), + [sym_selector_expression] = STATE(2183), + [sym_index_expression] = STATE(2183), + [sym_slice_expression] = STATE(2183), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2183), + [sym_not_is_expression] = STATE(2183), + [sym_in_expression] = STATE(2183), + [sym_not_in_expression] = STATE(2183), + [sym_enum_fetch] = STATE(2183), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2183), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [619] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2763), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [620] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1700), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [621] = { - [sym__expression] = STATE(326), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(312), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2640), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), [anon_sym_DASH] = ACTIONS(29), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(47), [anon_sym_go] = ACTIONS(49), [anon_sym_spawn] = ACTIONS(51), [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_LBRACK2] = ACTIONS(487), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_CARET] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(57), @@ -98180,87 +98325,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [622] = { - [sym__expression] = STATE(333), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2701), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [623] = { + [sym__expression] = STATE(2853), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [624] = { + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3005), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3004), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [625] = { + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), + }, + [626] = { + [sym__expression] = STATE(322), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2640), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), [anon_sym_DASH] = ACTIONS(29), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(47), [anon_sym_go] = ACTIONS(49), [anon_sym_spawn] = ACTIONS(51), [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_LBRACK2] = ACTIONS(487), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_CARET] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(57), @@ -98293,202 +98894,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [623] = { - [sym__expression] = STATE(1141), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), - }, - [624] = { - [sym__expression] = STATE(338), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [627] = { + [sym__expression] = STATE(384), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4288), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2640), [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), + [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), [anon_sym_DASH] = ACTIONS(29), [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(47), [anon_sym_go] = ACTIONS(49), [anon_sym_spawn] = ACTIONS(51), [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_LBRACK2] = ACTIONS(487), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_CARET] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(57), @@ -98521,31325 +99008,29196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [625] = { - [sym__expression] = STATE(995), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), - }, - [626] = { - [sym__expression] = STATE(2887), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, - [627] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2975), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2948), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), - }, [628] = { - [sym__expression] = STATE(2504), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1010), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [629] = { - [sym__expression] = STATE(1899), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2910), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [630] = { - [sym__expression] = STATE(332), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2673), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [631] = { - [sym__expression] = STATE(1926), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [632] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [633] = { - [sym__expression] = STATE(2818), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [634] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4123), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3697), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [635] = { - [sym__expression] = STATE(340), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(1161), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4439), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [636] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2644), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [637] = { - [sym__expression] = STATE(342), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(2643), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [638] = { - [sym__expression] = STATE(343), - [sym__expression_without_blocks] = STATE(852), - [sym__expression_with_blocks] = STATE(852), - [sym_inc_expression] = STATE(852), - [sym_dec_expression] = STATE(852), - [sym_or_block_expression] = STATE(852), - [sym_option_propagation_expression] = STATE(852), - [sym_result_propagation_expression] = STATE(852), - [sym_anon_struct_value_expression] = STATE(937), - [sym_go_expression] = STATE(852), - [sym_spawn_expression] = STATE(852), - [sym_parenthesized_expression] = STATE(852), - [sym_call_expression] = STATE(852), - [sym_type_initializer] = STATE(937), - [sym_function_literal] = STATE(852), - [sym_reference_expression] = STATE(936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(852), - [sym_receive_expression] = STATE(852), - [sym_binary_expression] = STATE(852), - [sym_as_type_cast_expression] = STATE(852), - [sym__max_group] = STATE(852), - [sym_literal] = STATE(852), - [sym_map_init_expression] = STATE(937), - [sym_array_creation] = STATE(852), - [sym_fixed_array_creation] = STATE(852), - [sym_selector_expression] = STATE(852), - [sym_index_expression] = STATE(852), - [sym_slice_expression] = STATE(852), - [sym_if_expression] = STATE(937), - [sym_compile_time_if_expression] = STATE(937), - [sym_is_expression] = STATE(852), - [sym_not_is_expression] = STATE(852), - [sym_in_expression] = STATE(852), - [sym_not_in_expression] = STATE(852), - [sym_enum_fetch] = STATE(852), - [sym_match_expression] = STATE(937), - [sym_select_expression] = STATE(937), - [sym_lock_expression] = STATE(937), - [sym_unsafe_expression] = STATE(937), - [sym_sql_expression] = STATE(937), - [sym_c_string_literal] = STATE(952), - [sym_raw_string_literal] = STATE(952), - [sym_interpreted_string_literal] = STATE(952), - [sym_pseudo_compile_time_identifier] = STATE(852), - [sym_mutability_modifiers] = STATE(560), - [sym_plain_type] = STATE(4117), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2508), + [sym__expression] = STATE(1161), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4430), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [anon_sym_AT] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [639] = { - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2883), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [640] = { - [sym__expression] = STATE(2219), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1161), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4419), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [641] = { - [sym__expression] = STATE(1132), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1699), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [642] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4403), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2915), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [643] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [644] = { - [sym__expression] = STATE(1765), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2973), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2972), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [645] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2947), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2946), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1011), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [646] = { - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2909), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [647] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4394), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2712), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [648] = { - [sym__expression] = STATE(2508), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2669), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_go] = ACTIONS(2252), + [anon_sym_spawn] = ACTIONS(2254), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(2256), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_LT_DASH] = ACTIONS(2260), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2262), + [anon_sym_lock] = ACTIONS(2264), + [anon_sym_rlock] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [649] = { - [sym__expression] = STATE(2443), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3001), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3002), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [650] = { - [sym__expression] = STATE(2789), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(384), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [651] = { - [sym__expression] = STATE(2874), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2697), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [652] = { - [sym__expression] = STATE(2218), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2478), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [653] = { - [sym__expression] = STATE(2791), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(384), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [654] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4399), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [655] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3671), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [656] = { - [sym__expression] = STATE(1922), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(1697), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [657] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1160), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [658] = { - [sym__expression] = STATE(2529), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1656), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [659] = { - [sym__expression] = STATE(2151), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2737), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [660] = { - [sym__expression] = STATE(2189), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1655), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [661] = { - [sym__expression] = STATE(2666), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3025), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2980), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [662] = { - [sym__expression] = STATE(975), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2790), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [663] = { - [sym__expression] = STATE(973), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [664] = { - [sym__expression] = STATE(2190), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2686), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [665] = { - [sym__expression] = STATE(2688), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4201), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [666] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4328), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2872), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [667] = { - [sym__expression] = STATE(972), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [668] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4338), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2993), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2994), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [669] = { - [sym__expression] = STATE(969), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [670] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4345), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2680), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [671] = { - [sym__expression] = STATE(968), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2884), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [672] = { - [sym__expression] = STATE(2442), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1157), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [673] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2894), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [674] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4177), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3697), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [675] = { - [sym__expression] = STATE(2819), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3695), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [676] = { - [sym__expression] = STATE(2186), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3718), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [677] = { - [sym__expression] = STATE(2148), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2498), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [678] = { - [sym__expression] = STATE(2193), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2595), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [679] = { - [sym__expression] = STATE(2268), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2601), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [680] = { - [sym__expression] = STATE(2703), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2602), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_STAR_EQ] = ACTIONS(2784), - [anon_sym_SLASH_EQ] = ACTIONS(2784), - [anon_sym_PERCENT_EQ] = ACTIONS(2784), - [anon_sym_LT_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_AMP_EQ] = ACTIONS(2784), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2784), - [anon_sym_PLUS_EQ] = ACTIONS(2784), - [anon_sym_DASH_EQ] = ACTIONS(2784), - [anon_sym_PIPE_EQ] = ACTIONS(2784), - [anon_sym_CARET_EQ] = ACTIONS(2784), - [anon_sym_COLON_EQ] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [sym__expression] = STATE(1156), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [682] = { - [sym__expression] = STATE(2289), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [683] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1155), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [684] = { - [sym__expression] = STATE(2199), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3695), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [685] = { - [sym__expression] = STATE(1136), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2330), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [686] = { - [sym__expression] = STATE(2200), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3718), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [687] = { - [sym__expression] = STATE(1135), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1161), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [688] = { - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [689] = { - [sym__expression] = STATE(2556), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_EQ] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_DOLLARelse] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_STAR_EQ] = ACTIONS(2748), + [anon_sym_SLASH_EQ] = ACTIONS(2748), + [anon_sym_PERCENT_EQ] = ACTIONS(2748), + [anon_sym_LT_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_GT_EQ] = ACTIONS(2748), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2748), + [anon_sym_AMP_EQ] = ACTIONS(2748), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2748), + [anon_sym_PLUS_EQ] = ACTIONS(2748), + [anon_sym_DASH_EQ] = ACTIONS(2748), + [anon_sym_PIPE_EQ] = ACTIONS(2748), + [anon_sym_CARET_EQ] = ACTIONS(2748), + [anon_sym_COLON_EQ] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, [690] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4215), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [691] = { - [sym__expression] = STATE(2447), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [692] = { - [sym__expression] = STATE(2451), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4434), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [693] = { - [sym__expression] = STATE(1836), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4429), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [694] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4222), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2827), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [695] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4229), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3010), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3011), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [696] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2816), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [697] = { - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2702), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [698] = { - [sym__expression] = STATE(1823), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(1319), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [699] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1320), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [700] = { - [sym__expression] = STATE(2837), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(364), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [701] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4177), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(366), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [702] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4399), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2765), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [703] = { - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(372), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [704] = { - [sym__expression] = STATE(994), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(376), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [705] = { - [sym__expression] = STATE(2809), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(377), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [706] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4021), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1008), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [707] = { - [sym__expression] = STATE(2783), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [708] = { - [sym__expression] = STATE(993), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1308), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [709] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4190), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [710] = { - [sym__expression] = STATE(1667), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(1185), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [711] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4138), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1183), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [712] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3697), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2702), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_CARET] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_LT_DASH] = ACTIONS(2708), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(2710), - [anon_sym_lock] = ACTIONS(2712), - [anon_sym_rlock] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [713] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4019), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [714] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4403), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2521), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [715] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3695), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [716] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_EQ] = ACTIONS(2736), - [anon_sym___global] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_STAR_EQ] = ACTIONS(2736), - [anon_sym_SLASH_EQ] = ACTIONS(2736), - [anon_sym_PERCENT_EQ] = ACTIONS(2736), - [anon_sym_LT_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_GT_EQ] = ACTIONS(2736), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2736), - [anon_sym_AMP_EQ] = ACTIONS(2736), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2736), - [anon_sym_PLUS_EQ] = ACTIONS(2736), - [anon_sym_DASH_EQ] = ACTIONS(2736), - [anon_sym_PIPE_EQ] = ACTIONS(2736), - [anon_sym_CARET_EQ] = ACTIONS(2736), - [anon_sym_COLON_EQ] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [anon_sym_assert] = ACTIONS(2736), - [anon_sym_defer] = ACTIONS(2736), - [anon_sym_goto] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_DOLLARfor] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_asm] = ACTIONS(2736), - [anon_sym_AT_LBRACK] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3718), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [717] = { - [sym__expression] = STATE(2490), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [718] = { - [sym__expression] = STATE(2652), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1309), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [719] = { - [sym__expression] = STATE(2492), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1185), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [720] = { - [sym__expression] = STATE(1900), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(387), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [721] = { - [sym__expression] = STATE(2676), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(388), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [722] = { - [sym__expression] = STATE(1890), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(390), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [723] = { - [sym__expression] = STATE(1884), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(3020), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(3021), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [724] = { - [sym__expression] = STATE(1883), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(1311), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [725] = { - [sym__expression] = STATE(1866), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [726] = { - [sym__expression] = STATE(1796), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [727] = { - [sym__expression] = STATE(1848), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2466), + [sym__expression] = STATE(1313), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_go] = ACTIONS(2476), - [anon_sym_spawn] = ACTIONS(2478), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2470), - [anon_sym_CARET] = ACTIONS(2470), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_LT_DASH] = ACTIONS(2484), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(2486), - [anon_sym_lock] = ACTIONS(2488), - [anon_sym_rlock] = ACTIONS(2488), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [728] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [729] = { - [sym__expression] = STATE(1282), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [730] = { - [sym__expression] = STATE(2600), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1317), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [731] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1696), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [732] = { - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1826), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [733] = { - [sym__expression] = STATE(1280), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1823), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [734] = { - [sym__expression] = STATE(1275), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(1956), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [735] = { - [sym__expression] = STATE(1285), - [sym__expression_without_blocks] = STATE(1322), - [sym__expression_with_blocks] = STATE(1322), - [sym_inc_expression] = STATE(1322), - [sym_dec_expression] = STATE(1322), - [sym_or_block_expression] = STATE(1322), - [sym_option_propagation_expression] = STATE(1322), - [sym_result_propagation_expression] = STATE(1322), - [sym_anon_struct_value_expression] = STATE(1323), - [sym_go_expression] = STATE(1322), - [sym_spawn_expression] = STATE(1322), - [sym_parenthesized_expression] = STATE(1322), - [sym_call_expression] = STATE(1322), - [sym_type_initializer] = STATE(1323), - [sym_function_literal] = STATE(1322), - [sym_reference_expression] = STATE(1328), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1322), - [sym_receive_expression] = STATE(1322), - [sym_binary_expression] = STATE(1322), - [sym_as_type_cast_expression] = STATE(1322), - [sym__max_group] = STATE(1322), - [sym_literal] = STATE(1322), - [sym_map_init_expression] = STATE(1323), - [sym_array_creation] = STATE(1322), - [sym_fixed_array_creation] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym_index_expression] = STATE(1322), - [sym_slice_expression] = STATE(1322), - [sym_if_expression] = STATE(1323), - [sym_compile_time_if_expression] = STATE(1323), - [sym_is_expression] = STATE(1322), - [sym_not_is_expression] = STATE(1322), - [sym_in_expression] = STATE(1322), - [sym_not_in_expression] = STATE(1322), - [sym_enum_fetch] = STATE(1322), - [sym_match_expression] = STATE(1323), - [sym_select_expression] = STATE(1323), - [sym_lock_expression] = STATE(1323), - [sym_unsafe_expression] = STATE(1323), - [sym_sql_expression] = STATE(1323), - [sym_c_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_interpreted_string_literal] = STATE(1294), - [sym_pseudo_compile_time_identifier] = STATE(1322), - [sym_mutability_modifiers] = STATE(651), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1300), + [sym__expression] = STATE(2525), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4030), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1316), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_go] = ACTIONS(1320), - [anon_sym_spawn] = ACTIONS(1322), - [anon_sym_json_DOTdecode] = ACTIONS(1324), - [anon_sym_LBRACK2] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_LT_DASH] = ACTIONS(1330), - [sym_none] = ACTIONS(1332), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [sym_nil] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_DOLLARif] = ACTIONS(1336), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_select] = ACTIONS(1340), - [anon_sym_lock] = ACTIONS(1342), - [anon_sym_rlock] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(2058), - [anon_sym_sql] = ACTIONS(1346), - [sym_int_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1350), - [sym_rune_literal] = ACTIONS(1350), - [anon_sym_AT] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_go] = ACTIONS(1115), + [anon_sym_spawn] = ACTIONS(1117), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(1125), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2552), + [anon_sym_lock] = ACTIONS(2554), + [anon_sym_rlock] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1354), - [sym___single_quote] = ACTIONS(1356), - [sym___c_double_quote] = ACTIONS(1358), - [sym___c_single_quote] = ACTIONS(1360), - [sym___r_double_quote] = ACTIONS(1362), - [sym___r_single_quote] = ACTIONS(1364), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [736] = { - [sym__expression] = STATE(1783), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2345), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [737] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1314), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_go] = ACTIONS(1326), + [anon_sym_spawn] = ACTIONS(1328), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_LT_DASH] = ACTIONS(1336), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1346), + [anon_sym_lock] = ACTIONS(1348), + [anon_sym_rlock] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [738] = { - [sym__expression] = STATE(2168), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1162), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [739] = { - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1159), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [740] = { - [sym__expression] = STATE(2614), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [741] = { - [sym__expression] = STATE(2318), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4246), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2774), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_LT_DASH] = ACTIONS(2778), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2780), - [anon_sym_lock] = ACTIONS(2782), - [anon_sym_rlock] = ACTIONS(2782), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [742] = { - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2200), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [743] = { - [sym__expression] = STATE(2186), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2347), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [744] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(1819), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [745] = { - [sym__expression] = STATE(2611), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [746] = { - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2349), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [747] = { - [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4230), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [748] = { - [sym__expression] = STATE(2620), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1153), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [749] = { - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [750] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [751] = { - [sym__expression] = STATE(2186), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2908), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [752] = { - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2849), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [753] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4345), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1331), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [754] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4338), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4429), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [755] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2960), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2961), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1164), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [756] = { - [sym__expression] = STATE(2149), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4328), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4434), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [757] = { - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [758] = { - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1213), + [sym__expression_with_blocks] = STATE(1213), + [sym_inc_expression] = STATE(1213), + [sym_dec_expression] = STATE(1213), + [sym_or_block_expression] = STATE(1213), + [sym_option_propagation_expression] = STATE(1213), + [sym_result_propagation_expression] = STATE(1213), + [sym_anon_struct_value_expression] = STATE(1212), + [sym_go_expression] = STATE(1213), + [sym_spawn_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_type_initializer] = STATE(1212), + [sym_function_literal] = STATE(1213), + [sym_reference_expression] = STATE(1236), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1213), + [sym_receive_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_as_type_cast_expression] = STATE(1213), + [sym__max_group] = STATE(1213), + [sym_literal] = STATE(1213), + [sym_map_init_expression] = STATE(1212), + [sym_array_creation] = STATE(1213), + [sym_fixed_array_creation] = STATE(1213), + [sym_selector_expression] = STATE(1213), + [sym_index_expression] = STATE(1213), + [sym_slice_expression] = STATE(1213), + [sym_if_expression] = STATE(1212), + [sym_compile_time_if_expression] = STATE(1212), + [sym_is_expression] = STATE(1213), + [sym_not_is_expression] = STATE(1213), + [sym_in_expression] = STATE(1213), + [sym_not_in_expression] = STATE(1213), + [sym_enum_fetch] = STATE(1213), + [sym_match_expression] = STATE(1212), + [sym_select_expression] = STATE(1212), + [sym_lock_expression] = STATE(1212), + [sym_unsafe_expression] = STATE(1212), + [sym_sql_expression] = STATE(1212), + [sym_c_string_literal] = STATE(1296), + [sym_raw_string_literal] = STATE(1296), + [sym_interpreted_string_literal] = STATE(1296), + [sym_pseudo_compile_time_identifier] = STATE(1213), + [sym_mutability_modifiers] = STATE(597), + [sym_plain_type] = STATE(4400), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [anon_sym_AT] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [759] = { - [sym__expression] = STATE(2823), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [760] = { - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1664), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [761] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1818), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [762] = { - [sym__expression] = STATE(2317), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2692), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [763] = { - [sym__expression] = STATE(2749), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [764] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1663), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [765] = { - [sym__expression] = STATE(2312), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1662), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [766] = { - [sym__expression] = STATE(1638), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(1808), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [767] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2352), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [768] = { - [sym__expression] = STATE(2508), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [769] = { - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1183), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [770] = { - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1330), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [771] = { - [sym__expression] = STATE(2803), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1326), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [772] = { - [sym__expression] = STATE(2495), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1814), + [sym__expression_without_blocks] = STATE(2032), + [sym__expression_with_blocks] = STATE(2032), + [sym_inc_expression] = STATE(2032), + [sym_dec_expression] = STATE(2032), + [sym_or_block_expression] = STATE(2032), + [sym_option_propagation_expression] = STATE(2032), + [sym_result_propagation_expression] = STATE(2032), + [sym_anon_struct_value_expression] = STATE(2033), + [sym_go_expression] = STATE(2032), + [sym_spawn_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_call_expression] = STATE(2032), + [sym_type_initializer] = STATE(2033), + [sym_function_literal] = STATE(2032), + [sym_reference_expression] = STATE(2013), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2032), + [sym_receive_expression] = STATE(2032), + [sym_binary_expression] = STATE(2032), + [sym_as_type_cast_expression] = STATE(2032), + [sym__max_group] = STATE(2032), + [sym_literal] = STATE(2032), + [sym_map_init_expression] = STATE(2033), + [sym_array_creation] = STATE(2032), + [sym_fixed_array_creation] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym_index_expression] = STATE(2032), + [sym_slice_expression] = STATE(2032), + [sym_if_expression] = STATE(2033), + [sym_compile_time_if_expression] = STATE(2033), + [sym_is_expression] = STATE(2032), + [sym_not_is_expression] = STATE(2032), + [sym_in_expression] = STATE(2032), + [sym_not_in_expression] = STATE(2032), + [sym_enum_fetch] = STATE(2032), + [sym_match_expression] = STATE(2033), + [sym_select_expression] = STATE(2033), + [sym_lock_expression] = STATE(2033), + [sym_unsafe_expression] = STATE(2033), + [sym_sql_expression] = STATE(2033), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_pseudo_compile_time_identifier] = STATE(2032), + [sym_mutability_modifiers] = STATE(646), + [sym_plain_type] = STATE(4294), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2892), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(2896), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2904), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2908), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(749), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [773] = { - [sym__expression] = STATE(2219), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1325), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [774] = { - [sym__expression] = STATE(2520), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(1324), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [775] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4346), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(1660), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [776] = { - [sym__expression] = STATE(2563), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [777] = { - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1778), + [sym__expression_with_blocks] = STATE(1778), + [sym_inc_expression] = STATE(1778), + [sym_dec_expression] = STATE(1778), + [sym_or_block_expression] = STATE(1778), + [sym_option_propagation_expression] = STATE(1778), + [sym_result_propagation_expression] = STATE(1778), + [sym_anon_struct_value_expression] = STATE(1779), + [sym_go_expression] = STATE(1778), + [sym_spawn_expression] = STATE(1778), + [sym_parenthesized_expression] = STATE(1778), + [sym_call_expression] = STATE(1778), + [sym_type_initializer] = STATE(1779), + [sym_function_literal] = STATE(1778), + [sym_reference_expression] = STATE(1780), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1778), + [sym_receive_expression] = STATE(1778), + [sym_binary_expression] = STATE(1778), + [sym_as_type_cast_expression] = STATE(1778), + [sym__max_group] = STATE(1778), + [sym_literal] = STATE(1778), + [sym_map_init_expression] = STATE(1779), + [sym_array_creation] = STATE(1778), + [sym_fixed_array_creation] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym_index_expression] = STATE(1778), + [sym_slice_expression] = STATE(1778), + [sym_if_expression] = STATE(1779), + [sym_compile_time_if_expression] = STATE(1779), + [sym_is_expression] = STATE(1778), + [sym_not_is_expression] = STATE(1778), + [sym_in_expression] = STATE(1778), + [sym_not_in_expression] = STATE(1778), + [sym_enum_fetch] = STATE(1778), + [sym_match_expression] = STATE(1779), + [sym_select_expression] = STATE(1779), + [sym_lock_expression] = STATE(1779), + [sym_unsafe_expression] = STATE(1779), + [sym_sql_expression] = STATE(1779), + [sym_c_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_interpreted_string_literal] = STATE(1715), + [sym_pseudo_compile_time_identifier] = STATE(1778), + [sym_mutability_modifiers] = STATE(579), + [sym_plain_type] = STATE(4281), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [778] = { - [sym__expression] = STATE(1664), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(1190), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [779] = { - [sym__expression] = STATE(2880), - [sym__expression_without_blocks] = STATE(2926), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2926), - [sym_dec_expression] = STATE(2926), - [sym_or_block_expression] = STATE(2926), - [sym_option_propagation_expression] = STATE(2926), - [sym_result_propagation_expression] = STATE(2926), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2926), - [sym_spawn_expression] = STATE(2926), - [sym_parenthesized_expression] = STATE(2926), - [sym_call_expression] = STATE(2926), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2926), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2926), - [sym_receive_expression] = STATE(2926), - [sym_binary_expression] = STATE(2926), - [sym_as_type_cast_expression] = STATE(2926), - [sym__max_group] = STATE(2926), - [sym_literal] = STATE(2926), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2926), - [sym_fixed_array_creation] = STATE(2926), - [sym_selector_expression] = STATE(2926), - [sym_index_expression] = STATE(2926), - [sym_slice_expression] = STATE(2926), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2926), - [sym_not_is_expression] = STATE(2926), - [sym_in_expression] = STATE(2926), - [sym_not_in_expression] = STATE(2926), - [sym_enum_fetch] = STATE(2926), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2926), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2676), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [780] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4288), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1323), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [781] = { - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2862), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [782] = { - [sym__expression] = STATE(2613), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1833), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [783] = { - [sym__expression] = STATE(2616), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4223), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [784] = { - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1924), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [785] = { - [sym__expression] = STATE(2475), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1840), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [786] = { - [sym__expression] = STATE(2623), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4226), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [787] = { - [sym__expression] = STATE(2313), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4237), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [788] = { - [sym__expression] = STATE(2648), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2598), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_go] = ACTIONS(2608), + [anon_sym_spawn] = ACTIONS(2610), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_LT_DASH] = ACTIONS(2616), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2618), + [anon_sym_lock] = ACTIONS(2620), + [anon_sym_rlock] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [789] = { - [sym__expression] = STATE(2602), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2861), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [790] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2850), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [791] = { - [sym__expression] = STATE(1647), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2835), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [792] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2904), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_go] = ACTIONS(1390), + [anon_sym_spawn] = ACTIONS(1392), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_LT_DASH] = ACTIONS(1400), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [793] = { - [sym__expression] = STATE(2560), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [794] = { - [sym__expression] = STATE(2476), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2330), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [795] = { - [sym__expression] = STATE(2692), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [796] = { - [sym__expression] = STATE(2805), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3659), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(3718), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_go] = ACTIONS(2196), - [anon_sym_spawn] = ACTIONS(2198), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_LT_DASH] = ACTIONS(2202), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [797] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(3695), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [798] = { - [sym__expression] = STATE(2563), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [799] = { - [sym__expression] = STATE(2478), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1007), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [800] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(999), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [801] = { - [sym__expression] = STATE(2441), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [802] = { - [sym__expression] = STATE(2186), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2657), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [803] = { - [sym__expression] = STATE(2673), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(3697), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [804] = { - [sym__expression] = STATE(976), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1005), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [805] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2336), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(606), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_go] = ACTIONS(1652), + [anon_sym_spawn] = ACTIONS(1654), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LT_DASH] = ACTIONS(1660), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1664), + [anon_sym_lock] = ACTIONS(1666), + [anon_sym_rlock] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [806] = { - [sym__expression] = STATE(2680), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [807] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4021), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1091), + [sym__expression] = STATE(2182), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_go] = ACTIONS(1111), - [anon_sym_spawn] = ACTIONS(1113), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1103), - [anon_sym_AMP] = ACTIONS(1119), - [anon_sym_LT_DASH] = ACTIONS(1121), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2426), - [anon_sym_lock] = ACTIONS(2428), - [anon_sym_rlock] = ACTIONS(2428), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [808] = { - [sym__expression] = STATE(974), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [809] = { - [sym__expression] = STATE(2881), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1366), + [sym__expression] = STATE(2353), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_go] = ACTIONS(1384), - [anon_sym_spawn] = ACTIONS(1386), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_LT_DASH] = ACTIONS(1394), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1404), - [anon_sym_lock] = ACTIONS(1406), - [anon_sym_rlock] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [810] = { - [sym__expression] = STATE(2684), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1015), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [811] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2829), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(4438), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_go] = ACTIONS(2534), + [anon_sym_spawn] = ACTIONS(2536), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_LT_DASH] = ACTIONS(2540), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(2542), + [anon_sym_lock] = ACTIONS(2544), + [anon_sym_rlock] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [812] = { - [sym__expression] = STATE(2219), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2343), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [813] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4362), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2348), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [814] = { - [sym__expression] = STATE(2737), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1003), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [815] = { - [sym__expression] = STATE(2630), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2340), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [816] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(1940), - [sym__expression_with_blocks] = STATE(1940), - [sym_inc_expression] = STATE(1940), - [sym_dec_expression] = STATE(1940), - [sym_or_block_expression] = STATE(1940), - [sym_option_propagation_expression] = STATE(1940), - [sym_result_propagation_expression] = STATE(1940), - [sym_anon_struct_value_expression] = STATE(1944), - [sym_go_expression] = STATE(1940), - [sym_spawn_expression] = STATE(1940), - [sym_parenthesized_expression] = STATE(1940), - [sym_call_expression] = STATE(1940), - [sym_type_initializer] = STATE(1944), - [sym_function_literal] = STATE(1940), - [sym_reference_expression] = STATE(1939), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1940), - [sym_receive_expression] = STATE(1940), - [sym_binary_expression] = STATE(1940), - [sym_as_type_cast_expression] = STATE(1940), - [sym__max_group] = STATE(1940), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1944), - [sym_array_creation] = STATE(1940), - [sym_fixed_array_creation] = STATE(1940), - [sym_selector_expression] = STATE(1940), - [sym_index_expression] = STATE(1940), - [sym_slice_expression] = STATE(1940), - [sym_if_expression] = STATE(1944), - [sym_compile_time_if_expression] = STATE(1944), - [sym_is_expression] = STATE(1940), - [sym_not_is_expression] = STATE(1940), - [sym_in_expression] = STATE(1940), - [sym_not_in_expression] = STATE(1940), - [sym_enum_fetch] = STATE(1940), - [sym_match_expression] = STATE(1944), - [sym_select_expression] = STATE(1944), - [sym_lock_expression] = STATE(1944), - [sym_unsafe_expression] = STATE(1944), - [sym_sql_expression] = STATE(1944), - [sym_c_string_literal] = STATE(2034), - [sym_raw_string_literal] = STATE(2034), - [sym_interpreted_string_literal] = STATE(2034), - [sym_pseudo_compile_time_identifier] = STATE(1940), - [sym_mutability_modifiers] = STATE(494), - [sym_plain_type] = STATE(4351), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2714), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(697), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_fn] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_struct] = ACTIONS(2718), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_go] = ACTIONS(715), - [anon_sym_spawn] = ACTIONS(717), - [anon_sym_json_DOTdecode] = ACTIONS(719), - [anon_sym_LBRACK2] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_CARET] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_LT_DASH] = ACTIONS(725), - [sym_none] = ACTIONS(727), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_nil] = ACTIONS(727), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_DOLLARif] = ACTIONS(2722), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_select] = ACTIONS(2726), - [anon_sym_lock] = ACTIONS(2728), - [anon_sym_rlock] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2732), - [sym_int_literal] = ACTIONS(727), - [sym_float_literal] = ACTIONS(745), - [sym_rune_literal] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(747), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(749), - [sym___single_quote] = ACTIONS(751), - [sym___c_double_quote] = ACTIONS(753), - [sym___c_single_quote] = ACTIONS(755), - [sym___r_double_quote] = ACTIONS(757), - [sym___r_single_quote] = ACTIONS(759), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [817] = { - [sym__expression] = STATE(1893), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(334), + [sym__expression_without_blocks] = STATE(945), + [sym__expression_with_blocks] = STATE(945), + [sym_inc_expression] = STATE(945), + [sym_dec_expression] = STATE(945), + [sym_or_block_expression] = STATE(945), + [sym_option_propagation_expression] = STATE(945), + [sym_result_propagation_expression] = STATE(945), + [sym_anon_struct_value_expression] = STATE(947), + [sym_go_expression] = STATE(945), + [sym_spawn_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_type_initializer] = STATE(947), + [sym_function_literal] = STATE(945), + [sym_reference_expression] = STATE(948), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(945), + [sym_receive_expression] = STATE(945), + [sym_binary_expression] = STATE(945), + [sym_as_type_cast_expression] = STATE(945), + [sym__max_group] = STATE(945), + [sym_literal] = STATE(945), + [sym_map_init_expression] = STATE(947), + [sym_array_creation] = STATE(945), + [sym_fixed_array_creation] = STATE(945), + [sym_selector_expression] = STATE(945), + [sym_index_expression] = STATE(945), + [sym_slice_expression] = STATE(945), + [sym_if_expression] = STATE(947), + [sym_compile_time_if_expression] = STATE(947), + [sym_is_expression] = STATE(945), + [sym_not_is_expression] = STATE(945), + [sym_in_expression] = STATE(945), + [sym_not_in_expression] = STATE(945), + [sym_enum_fetch] = STATE(945), + [sym_match_expression] = STATE(947), + [sym_select_expression] = STATE(947), + [sym_lock_expression] = STATE(947), + [sym_unsafe_expression] = STATE(947), + [sym_sql_expression] = STATE(947), + [sym_c_string_literal] = STATE(957), + [sym_raw_string_literal] = STATE(957), + [sym_interpreted_string_literal] = STATE(957), + [sym_pseudo_compile_time_identifier] = STATE(945), + [sym_mutability_modifiers] = STATE(751), + [sym_plain_type] = STATE(4220), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2638), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [818] = { - [sym__expression] = STATE(1765), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(1013), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [819] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4394), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(1012), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_go] = ACTIONS(2778), + [anon_sym_spawn] = ACTIONS(2780), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_CARET] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2782), + [anon_sym_LT_DASH] = ACTIONS(2784), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(2786), + [anon_sym_lock] = ACTIONS(2788), + [anon_sym_rlock] = ACTIONS(2788), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [820] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(3671), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2329), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [821] = { - [sym__expression] = STATE(1784), - [sym__expression_without_blocks] = STATE(1948), - [sym__expression_with_blocks] = STATE(1948), - [sym_inc_expression] = STATE(1948), - [sym_dec_expression] = STATE(1948), - [sym_or_block_expression] = STATE(1948), - [sym_option_propagation_expression] = STATE(1948), - [sym_result_propagation_expression] = STATE(1948), - [sym_anon_struct_value_expression] = STATE(1949), - [sym_go_expression] = STATE(1948), - [sym_spawn_expression] = STATE(1948), - [sym_parenthesized_expression] = STATE(1948), - [sym_call_expression] = STATE(1948), - [sym_type_initializer] = STATE(1949), - [sym_function_literal] = STATE(1948), - [sym_reference_expression] = STATE(1936), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1948), - [sym_receive_expression] = STATE(1948), - [sym_binary_expression] = STATE(1948), - [sym_as_type_cast_expression] = STATE(1948), - [sym__max_group] = STATE(1948), - [sym_literal] = STATE(1948), - [sym_map_init_expression] = STATE(1949), - [sym_array_creation] = STATE(1948), - [sym_fixed_array_creation] = STATE(1948), - [sym_selector_expression] = STATE(1948), - [sym_index_expression] = STATE(1948), - [sym_slice_expression] = STATE(1948), - [sym_if_expression] = STATE(1949), - [sym_compile_time_if_expression] = STATE(1949), - [sym_is_expression] = STATE(1948), - [sym_not_is_expression] = STATE(1948), - [sym_in_expression] = STATE(1948), - [sym_not_in_expression] = STATE(1948), - [sym_enum_fetch] = STATE(1948), - [sym_match_expression] = STATE(1949), - [sym_select_expression] = STATE(1949), - [sym_lock_expression] = STATE(1949), - [sym_unsafe_expression] = STATE(1949), - [sym_sql_expression] = STATE(1949), - [sym_c_string_literal] = STATE(1945), - [sym_raw_string_literal] = STATE(1945), - [sym_interpreted_string_literal] = STATE(1945), - [sym_pseudo_compile_time_identifier] = STATE(1948), - [sym_mutability_modifiers] = STATE(609), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1568), + [sym__expression] = STATE(2326), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(811), - [anon_sym_DASH] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(815), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_go] = ACTIONS(821), - [anon_sym_spawn] = ACTIONS(823), - [anon_sym_json_DOTdecode] = ACTIONS(825), - [anon_sym_LBRACK2] = ACTIONS(827), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_CARET] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_LT_DASH] = ACTIONS(831), - [sym_none] = ACTIONS(833), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_nil] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_DOLLARif] = ACTIONS(837), - [anon_sym_match] = ACTIONS(839), - [anon_sym_select] = ACTIONS(841), - [anon_sym_lock] = ACTIONS(843), - [anon_sym_rlock] = ACTIONS(843), - [anon_sym_unsafe] = ACTIONS(845), - [anon_sym_sql] = ACTIONS(847), - [sym_int_literal] = ACTIONS(833), - [sym_float_literal] = ACTIONS(849), - [sym_rune_literal] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(853), - [sym___single_quote] = ACTIONS(855), - [sym___c_double_quote] = ACTIONS(857), - [sym___c_single_quote] = ACTIONS(859), - [sym___r_double_quote] = ACTIONS(861), - [sym___r_single_quote] = ACTIONS(863), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [822] = { - [sym__expression] = STATE(1663), - [sym__expression_without_blocks] = STATE(1820), - [sym__expression_with_blocks] = STATE(1820), - [sym_inc_expression] = STATE(1820), - [sym_dec_expression] = STATE(1820), - [sym_or_block_expression] = STATE(1820), - [sym_option_propagation_expression] = STATE(1820), - [sym_result_propagation_expression] = STATE(1820), - [sym_anon_struct_value_expression] = STATE(1814), - [sym_go_expression] = STATE(1820), - [sym_spawn_expression] = STATE(1820), - [sym_parenthesized_expression] = STATE(1820), - [sym_call_expression] = STATE(1820), - [sym_type_initializer] = STATE(1814), - [sym_function_literal] = STATE(1820), - [sym_reference_expression] = STATE(1813), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1820), - [sym_receive_expression] = STATE(1820), - [sym_binary_expression] = STATE(1820), - [sym_as_type_cast_expression] = STATE(1820), - [sym__max_group] = STATE(1820), - [sym_literal] = STATE(1820), - [sym_map_init_expression] = STATE(1814), - [sym_array_creation] = STATE(1820), - [sym_fixed_array_creation] = STATE(1820), - [sym_selector_expression] = STATE(1820), - [sym_index_expression] = STATE(1820), - [sym_slice_expression] = STATE(1820), - [sym_if_expression] = STATE(1814), - [sym_compile_time_if_expression] = STATE(1814), - [sym_is_expression] = STATE(1820), - [sym_not_is_expression] = STATE(1820), - [sym_in_expression] = STATE(1820), - [sym_not_in_expression] = STATE(1820), - [sym_enum_fetch] = STATE(1820), - [sym_match_expression] = STATE(1814), - [sym_select_expression] = STATE(1814), - [sym_lock_expression] = STATE(1814), - [sym_unsafe_expression] = STATE(1814), - [sym_sql_expression] = STATE(1814), - [sym_c_string_literal] = STATE(1819), - [sym_raw_string_literal] = STATE(1819), - [sym_interpreted_string_literal] = STATE(1819), - [sym_pseudo_compile_time_identifier] = STATE(1820), - [sym_mutability_modifiers] = STATE(464), - [sym_plain_type] = STATE(4130), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2524), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2538), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_go] = ACTIONS(2542), - [anon_sym_spawn] = ACTIONS(2544), - [anon_sym_json_DOTdecode] = ACTIONS(2546), - [anon_sym_LBRACK2] = ACTIONS(2548), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_LT_DASH] = ACTIONS(2552), - [sym_none] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_nil] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_DOLLARif] = ACTIONS(2558), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_select] = ACTIONS(2562), - [anon_sym_lock] = ACTIONS(2564), - [anon_sym_rlock] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_sql] = ACTIONS(2568), - [sym_int_literal] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2570), - [sym_rune_literal] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2574), - [sym___single_quote] = ACTIONS(2576), - [sym___c_double_quote] = ACTIONS(2578), - [sym___c_single_quote] = ACTIONS(2580), - [sym___r_double_quote] = ACTIONS(2582), - [sym___r_single_quote] = ACTIONS(2584), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [823] = { - [sym__expression] = STATE(2306), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2354), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4230), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [824] = { - [sym__expression] = STATE(2151), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [825] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(1921), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [826] = { - [sym__expression] = STATE(2669), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2638), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_go] = ACTIONS(1658), - [anon_sym_spawn] = ACTIONS(1660), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT_DASH] = ACTIONS(1666), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(1668), - [anon_sym_lock] = ACTIONS(1670), - [anon_sym_rlock] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [827] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2637), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [828] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3671), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [829] = { - [sym__expression] = STATE(2305), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1833), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [830] = { - [sym__expression] = STATE(2304), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4223), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [831] = { - [sym__expression] = STATE(2326), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(1830), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_go] = ACTIONS(1454), - [anon_sym_spawn] = ACTIONS(1456), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_LT_DASH] = ACTIONS(1464), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(1474), - [anon_sym_lock] = ACTIONS(1476), - [anon_sym_rlock] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [832] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(1834), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [833] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(2569), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [834] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2630), + [sym__expression_without_blocks] = STATE(2820), + [sym__expression_with_blocks] = STATE(2820), + [sym_inc_expression] = STATE(2820), + [sym_dec_expression] = STATE(2820), + [sym_or_block_expression] = STATE(2820), + [sym_option_propagation_expression] = STATE(2820), + [sym_result_propagation_expression] = STATE(2820), + [sym_anon_struct_value_expression] = STATE(2819), + [sym_go_expression] = STATE(2820), + [sym_spawn_expression] = STATE(2820), + [sym_parenthesized_expression] = STATE(2820), + [sym_call_expression] = STATE(2820), + [sym_type_initializer] = STATE(2819), + [sym_function_literal] = STATE(2820), + [sym_reference_expression] = STATE(2783), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2820), + [sym_receive_expression] = STATE(2820), + [sym_binary_expression] = STATE(2820), + [sym_as_type_cast_expression] = STATE(2820), + [sym__max_group] = STATE(2820), + [sym_literal] = STATE(2820), + [sym_map_init_expression] = STATE(2819), + [sym_array_creation] = STATE(2820), + [sym_fixed_array_creation] = STATE(2820), + [sym_selector_expression] = STATE(2820), + [sym_index_expression] = STATE(2820), + [sym_slice_expression] = STATE(2820), + [sym_if_expression] = STATE(2819), + [sym_compile_time_if_expression] = STATE(2819), + [sym_is_expression] = STATE(2820), + [sym_not_is_expression] = STATE(2820), + [sym_in_expression] = STATE(2820), + [sym_not_in_expression] = STATE(2820), + [sym_enum_fetch] = STATE(2820), + [sym_match_expression] = STATE(2819), + [sym_select_expression] = STATE(2819), + [sym_lock_expression] = STATE(2819), + [sym_unsafe_expression] = STATE(2819), + [sym_sql_expression] = STATE(2819), + [sym_c_string_literal] = STATE(2711), + [sym_raw_string_literal] = STATE(2711), + [sym_interpreted_string_literal] = STATE(2711), + [sym_pseudo_compile_time_identifier] = STATE(2820), + [sym_mutability_modifiers] = STATE(642), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1642), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_fn] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(1111), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_go] = ACTIONS(2582), + [anon_sym_spawn] = ACTIONS(2584), + [anon_sym_json_DOTdecode] = ACTIONS(1119), + [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(2576), + [anon_sym_CARET] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_LT_DASH] = ACTIONS(2588), + [sym_none] = ACTIONS(1127), + [sym_true] = ACTIONS(1127), + [sym_false] = ACTIONS(1127), + [sym_nil] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1129), + [anon_sym_DOLLARif] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_select] = ACTIONS(2590), + [anon_sym_lock] = ACTIONS(2592), + [anon_sym_rlock] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_sql] = ACTIONS(1143), + [sym_int_literal] = ACTIONS(1127), + [sym_float_literal] = ACTIONS(1145), + [sym_rune_literal] = ACTIONS(1145), + [anon_sym_AT] = ACTIONS(1147), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1149), + [sym___single_quote] = ACTIONS(1151), + [sym___c_double_quote] = ACTIONS(1153), + [sym___c_single_quote] = ACTIONS(1155), + [sym___r_double_quote] = ACTIONS(1157), + [sym___r_single_quote] = ACTIONS(1159), }, [835] = { - [sym__expression] = STATE(2779), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4226), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [836] = { - [sym__expression] = STATE(2777), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4237), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [837] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1249), - [sym__expression_with_blocks] = STATE(1249), - [sym_inc_expression] = STATE(1249), - [sym_dec_expression] = STATE(1249), - [sym_or_block_expression] = STATE(1249), - [sym_option_propagation_expression] = STATE(1249), - [sym_result_propagation_expression] = STATE(1249), - [sym_anon_struct_value_expression] = STATE(1251), - [sym_go_expression] = STATE(1249), - [sym_spawn_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_type_initializer] = STATE(1251), - [sym_function_literal] = STATE(1249), - [sym_reference_expression] = STATE(1242), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1249), - [sym_receive_expression] = STATE(1249), - [sym_binary_expression] = STATE(1249), - [sym_as_type_cast_expression] = STATE(1249), - [sym__max_group] = STATE(1249), - [sym_literal] = STATE(1249), - [sym_map_init_expression] = STATE(1251), - [sym_array_creation] = STATE(1249), - [sym_fixed_array_creation] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym_index_expression] = STATE(1249), - [sym_slice_expression] = STATE(1249), - [sym_if_expression] = STATE(1251), - [sym_compile_time_if_expression] = STATE(1251), - [sym_is_expression] = STATE(1249), - [sym_not_is_expression] = STATE(1249), - [sym_in_expression] = STATE(1249), - [sym_not_in_expression] = STATE(1249), - [sym_enum_fetch] = STATE(1249), - [sym_match_expression] = STATE(1251), - [sym_select_expression] = STATE(1251), - [sym_lock_expression] = STATE(1251), - [sym_unsafe_expression] = STATE(1251), - [sym_sql_expression] = STATE(1251), - [sym_c_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_interpreted_string_literal] = STATE(1243), - [sym_pseudo_compile_time_identifier] = STATE(1249), - [sym_mutability_modifiers] = STATE(595), - [sym_plain_type] = STATE(4276), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(945), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2105), + [sym__expression_with_blocks] = STATE(2105), + [sym_inc_expression] = STATE(2105), + [sym_dec_expression] = STATE(2105), + [sym_or_block_expression] = STATE(2105), + [sym_option_propagation_expression] = STATE(2105), + [sym_result_propagation_expression] = STATE(2105), + [sym_anon_struct_value_expression] = STATE(2095), + [sym_go_expression] = STATE(2105), + [sym_spawn_expression] = STATE(2105), + [sym_parenthesized_expression] = STATE(2105), + [sym_call_expression] = STATE(2105), + [sym_type_initializer] = STATE(2095), + [sym_function_literal] = STATE(2105), + [sym_reference_expression] = STATE(2034), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2105), + [sym_receive_expression] = STATE(2105), + [sym_binary_expression] = STATE(2105), + [sym_as_type_cast_expression] = STATE(2105), + [sym__max_group] = STATE(2105), + [sym_literal] = STATE(2105), + [sym_map_init_expression] = STATE(2095), + [sym_array_creation] = STATE(2105), + [sym_fixed_array_creation] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym_index_expression] = STATE(2105), + [sym_slice_expression] = STATE(2105), + [sym_if_expression] = STATE(2095), + [sym_compile_time_if_expression] = STATE(2095), + [sym_is_expression] = STATE(2105), + [sym_not_is_expression] = STATE(2105), + [sym_in_expression] = STATE(2105), + [sym_not_in_expression] = STATE(2105), + [sym_enum_fetch] = STATE(2105), + [sym_match_expression] = STATE(2095), + [sym_select_expression] = STATE(2095), + [sym_lock_expression] = STATE(2095), + [sym_unsafe_expression] = STATE(2095), + [sym_sql_expression] = STATE(2095), + [sym_c_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_interpreted_string_literal] = STATE(2116), + [sym_pseudo_compile_time_identifier] = STATE(2105), + [sym_mutability_modifiers] = STATE(567), + [sym_plain_type] = STATE(4131), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_fn] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_go] = ACTIONS(651), - [anon_sym_spawn] = ACTIONS(653), - [anon_sym_json_DOTdecode] = ACTIONS(655), - [anon_sym_LBRACK2] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_CARET] = ACTIONS(637), - [anon_sym_AMP] = ACTIONS(659), - [anon_sym_LT_DASH] = ACTIONS(661), - [sym_none] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_nil] = ACTIONS(663), - [anon_sym_if] = ACTIONS(665), - [anon_sym_DOLLARif] = ACTIONS(667), - [anon_sym_match] = ACTIONS(669), - [anon_sym_select] = ACTIONS(671), - [anon_sym_lock] = ACTIONS(673), - [anon_sym_rlock] = ACTIONS(673), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_sql] = ACTIONS(677), - [sym_int_literal] = ACTIONS(663), - [sym_float_literal] = ACTIONS(679), - [sym_rune_literal] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [anon_sym_AT] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(683), - [sym___single_quote] = ACTIONS(685), - [sym___c_double_quote] = ACTIONS(687), - [sym___c_single_quote] = ACTIONS(689), - [sym___r_double_quote] = ACTIONS(691), - [sym___r_single_quote] = ACTIONS(693), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [838] = { - [sym__expression] = STATE(2303), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2815), + [sym__expression_without_blocks] = STATE(2431), + [sym__expression_with_blocks] = STATE(2431), + [sym_inc_expression] = STATE(2431), + [sym_dec_expression] = STATE(2431), + [sym_or_block_expression] = STATE(2431), + [sym_option_propagation_expression] = STATE(2431), + [sym_result_propagation_expression] = STATE(2431), + [sym_anon_struct_value_expression] = STATE(2428), + [sym_go_expression] = STATE(2431), + [sym_spawn_expression] = STATE(2431), + [sym_parenthesized_expression] = STATE(2431), + [sym_call_expression] = STATE(2431), + [sym_type_initializer] = STATE(2428), + [sym_function_literal] = STATE(2431), + [sym_reference_expression] = STATE(2427), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2431), + [sym_receive_expression] = STATE(2431), + [sym_binary_expression] = STATE(2431), + [sym_as_type_cast_expression] = STATE(2431), + [sym__max_group] = STATE(2431), + [sym_literal] = STATE(2431), + [sym_map_init_expression] = STATE(2428), + [sym_array_creation] = STATE(2431), + [sym_fixed_array_creation] = STATE(2431), + [sym_selector_expression] = STATE(2431), + [sym_index_expression] = STATE(2431), + [sym_slice_expression] = STATE(2431), + [sym_if_expression] = STATE(2428), + [sym_compile_time_if_expression] = STATE(2428), + [sym_is_expression] = STATE(2431), + [sym_not_is_expression] = STATE(2431), + [sym_in_expression] = STATE(2431), + [sym_not_in_expression] = STATE(2431), + [sym_enum_fetch] = STATE(2431), + [sym_match_expression] = STATE(2428), + [sym_select_expression] = STATE(2428), + [sym_lock_expression] = STATE(2428), + [sym_unsafe_expression] = STATE(2428), + [sym_sql_expression] = STATE(2428), + [sym_c_string_literal] = STATE(2441), + [sym_raw_string_literal] = STATE(2441), + [sym_interpreted_string_literal] = STATE(2441), + [sym_pseudo_compile_time_identifier] = STATE(2431), + [sym_mutability_modifiers] = STATE(792), + [sym_plain_type] = STATE(3717), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1372), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(1386), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_go] = ACTIONS(2368), + [anon_sym_spawn] = ACTIONS(2370), + [anon_sym_json_DOTdecode] = ACTIONS(1394), + [anon_sym_LBRACK2] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2374), + [sym_none] = ACTIONS(1402), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [sym_nil] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_DOLLARif] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_select] = ACTIONS(1410), + [anon_sym_lock] = ACTIONS(1412), + [anon_sym_rlock] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_sql] = ACTIONS(1416), + [sym_int_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1418), + [sym_rune_literal] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1420), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(1424), + [sym___single_quote] = ACTIONS(1426), + [sym___c_double_quote] = ACTIONS(1428), + [sym___c_single_quote] = ACTIONS(1430), + [sym___r_double_quote] = ACTIONS(1432), + [sym___r_single_quote] = ACTIONS(1434), }, [839] = { - [sym__expression] = STATE(2301), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [840] = { - [sym__expression] = STATE(2299), - [sym__expression_without_blocks] = STATE(2240), - [sym__expression_with_blocks] = STATE(2240), - [sym_inc_expression] = STATE(2240), - [sym_dec_expression] = STATE(2240), - [sym_or_block_expression] = STATE(2240), - [sym_option_propagation_expression] = STATE(2240), - [sym_result_propagation_expression] = STATE(2240), - [sym_anon_struct_value_expression] = STATE(2239), - [sym_go_expression] = STATE(2240), - [sym_spawn_expression] = STATE(2240), - [sym_parenthesized_expression] = STATE(2240), - [sym_call_expression] = STATE(2240), - [sym_type_initializer] = STATE(2239), - [sym_function_literal] = STATE(2240), - [sym_reference_expression] = STATE(2237), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2240), - [sym_receive_expression] = STATE(2240), - [sym_binary_expression] = STATE(2240), - [sym_as_type_cast_expression] = STATE(2240), - [sym__max_group] = STATE(2240), - [sym_literal] = STATE(2240), - [sym_map_init_expression] = STATE(2239), - [sym_array_creation] = STATE(2240), - [sym_fixed_array_creation] = STATE(2240), - [sym_selector_expression] = STATE(2240), - [sym_index_expression] = STATE(2240), - [sym_slice_expression] = STATE(2240), - [sym_if_expression] = STATE(2239), - [sym_compile_time_if_expression] = STATE(2239), - [sym_is_expression] = STATE(2240), - [sym_not_is_expression] = STATE(2240), - [sym_in_expression] = STATE(2240), - [sym_not_in_expression] = STATE(2240), - [sym_enum_fetch] = STATE(2240), - [sym_match_expression] = STATE(2239), - [sym_select_expression] = STATE(2239), - [sym_lock_expression] = STATE(2239), - [sym_unsafe_expression] = STATE(2239), - [sym_sql_expression] = STATE(2239), - [sym_c_string_literal] = STATE(2251), - [sym_raw_string_literal] = STATE(2251), - [sym_interpreted_string_literal] = STATE(2251), - [sym_pseudo_compile_time_identifier] = STATE(2240), - [sym_mutability_modifiers] = STATE(582), - [sym_plain_type] = STATE(4354), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2620), + [sym__expression] = STATE(2323), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2634), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_go] = ACTIONS(2638), - [anon_sym_spawn] = ACTIONS(2640), - [anon_sym_json_DOTdecode] = ACTIONS(2642), - [anon_sym_LBRACK2] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2630), - [anon_sym_CARET] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_LT_DASH] = ACTIONS(2648), - [sym_none] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_nil] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_DOLLARif] = ACTIONS(2654), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_select] = ACTIONS(2658), - [anon_sym_lock] = ACTIONS(2660), - [anon_sym_rlock] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2662), - [anon_sym_sql] = ACTIONS(2664), - [sym_int_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2666), - [sym_rune_literal] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2872), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2876), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2880), + [anon_sym_rlock] = ACTIONS(2880), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2670), - [sym___single_quote] = ACTIONS(2672), - [sym___c_double_quote] = ACTIONS(2674), - [sym___c_single_quote] = ACTIONS(2676), - [sym___r_double_quote] = ACTIONS(2678), - [sym___r_single_quote] = ACTIONS(2680), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [841] = { - [sym__expression] = STATE(2622), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(997), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [842] = { - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(999), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [843] = { - [sym__expression] = STATE(2621), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(587), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(2060), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_go] = ACTIONS(2068), - [anon_sym_spawn] = ACTIONS(2070), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_LT_DASH] = ACTIONS(2076), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2078), - [anon_sym_lock] = ACTIONS(2080), - [anon_sym_rlock] = ACTIONS(2080), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [844] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4138), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(990), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [845] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2335), - [sym__expression_with_blocks] = STATE(2335), - [sym_inc_expression] = STATE(2335), - [sym_dec_expression] = STATE(2335), - [sym_or_block_expression] = STATE(2335), - [sym_option_propagation_expression] = STATE(2335), - [sym_result_propagation_expression] = STATE(2335), - [sym_anon_struct_value_expression] = STATE(2339), - [sym_go_expression] = STATE(2335), - [sym_spawn_expression] = STATE(2335), - [sym_parenthesized_expression] = STATE(2335), - [sym_call_expression] = STATE(2335), - [sym_type_initializer] = STATE(2339), - [sym_function_literal] = STATE(2335), - [sym_reference_expression] = STATE(2340), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2335), - [sym_receive_expression] = STATE(2335), - [sym_binary_expression] = STATE(2335), - [sym_as_type_cast_expression] = STATE(2335), - [sym__max_group] = STATE(2335), - [sym_literal] = STATE(2335), - [sym_map_init_expression] = STATE(2339), - [sym_array_creation] = STATE(2335), - [sym_fixed_array_creation] = STATE(2335), - [sym_selector_expression] = STATE(2335), - [sym_index_expression] = STATE(2335), - [sym_slice_expression] = STATE(2335), - [sym_if_expression] = STATE(2339), - [sym_compile_time_if_expression] = STATE(2339), - [sym_is_expression] = STATE(2335), - [sym_not_is_expression] = STATE(2335), - [sym_in_expression] = STATE(2335), - [sym_not_in_expression] = STATE(2335), - [sym_enum_fetch] = STATE(2335), - [sym_match_expression] = STATE(2339), - [sym_select_expression] = STATE(2339), - [sym_lock_expression] = STATE(2339), - [sym_unsafe_expression] = STATE(2339), - [sym_sql_expression] = STATE(2339), - [sym_c_string_literal] = STATE(2329), - [sym_raw_string_literal] = STATE(2329), - [sym_interpreted_string_literal] = STATE(2329), - [sym_pseudo_compile_time_identifier] = STATE(2335), - [sym_mutability_modifiers] = STATE(809), - [sym_plain_type] = STATE(3669), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2351), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_struct] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1454), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2408), - [anon_sym_json_DOTdecode] = ACTIONS(1388), - [anon_sym_LBRACK2] = ACTIONS(1662), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_LT_DASH] = ACTIONS(2412), - [sym_none] = ACTIONS(1396), - [sym_true] = ACTIONS(1396), - [sym_false] = ACTIONS(1396), - [sym_nil] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_DOLLARif] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_select] = ACTIONS(2414), - [anon_sym_lock] = ACTIONS(2416), - [anon_sym_rlock] = ACTIONS(2416), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_sql] = ACTIONS(1410), - [sym_int_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1412), - [sym_rune_literal] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_go] = ACTIONS(1458), + [anon_sym_spawn] = ACTIONS(1460), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LT_DASH] = ACTIONS(1468), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(1478), + [anon_sym_lock] = ACTIONS(1480), + [anon_sym_rlock] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1418), - [sym___single_quote] = ACTIONS(1420), - [sym___c_double_quote] = ACTIONS(1422), - [sym___c_single_quote] = ACTIONS(1424), - [sym___r_double_quote] = ACTIONS(1426), - [sym___r_single_quote] = ACTIONS(1428), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [846] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1014), - [sym__expression_with_blocks] = STATE(1014), - [sym_inc_expression] = STATE(1014), - [sym_dec_expression] = STATE(1014), - [sym_or_block_expression] = STATE(1014), - [sym_option_propagation_expression] = STATE(1014), - [sym_result_propagation_expression] = STATE(1014), - [sym_anon_struct_value_expression] = STATE(1003), - [sym_go_expression] = STATE(1014), - [sym_spawn_expression] = STATE(1014), - [sym_parenthesized_expression] = STATE(1014), - [sym_call_expression] = STATE(1014), - [sym_type_initializer] = STATE(1003), - [sym_function_literal] = STATE(1014), - [sym_reference_expression] = STATE(1005), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(1014), - [sym_receive_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_as_type_cast_expression] = STATE(1014), - [sym__max_group] = STATE(1014), - [sym_literal] = STATE(1014), - [sym_map_init_expression] = STATE(1003), - [sym_array_creation] = STATE(1014), - [sym_fixed_array_creation] = STATE(1014), - [sym_selector_expression] = STATE(1014), - [sym_index_expression] = STATE(1014), - [sym_slice_expression] = STATE(1014), - [sym_if_expression] = STATE(1003), - [sym_compile_time_if_expression] = STATE(1003), - [sym_is_expression] = STATE(1014), - [sym_not_is_expression] = STATE(1014), - [sym_in_expression] = STATE(1014), - [sym_not_in_expression] = STATE(1014), - [sym_enum_fetch] = STATE(1014), - [sym_match_expression] = STATE(1003), - [sym_select_expression] = STATE(1003), - [sym_lock_expression] = STATE(1003), - [sym_unsafe_expression] = STATE(1003), - [sym_sql_expression] = STATE(1003), - [sym_c_string_literal] = STATE(1013), - [sym_raw_string_literal] = STATE(1013), - [sym_interpreted_string_literal] = STATE(1013), - [sym_pseudo_compile_time_identifier] = STATE(1014), - [sym_mutability_modifiers] = STATE(626), - [sym_plain_type] = STATE(4190), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(489), + [sym__expression] = STATE(991), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_fn] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(507), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_go] = ACTIONS(513), - [anon_sym_spawn] = ACTIONS(515), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_LT_DASH] = ACTIONS(2116), - [sym_none] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_nil] = ACTIONS(525), - [anon_sym_if] = ACTIONS(527), - [anon_sym_DOLLARif] = ACTIONS(529), - [anon_sym_match] = ACTIONS(531), - [anon_sym_select] = ACTIONS(533), - [anon_sym_lock] = ACTIONS(535), - [anon_sym_rlock] = ACTIONS(535), - [anon_sym_unsafe] = ACTIONS(537), - [anon_sym_sql] = ACTIONS(539), - [sym_int_literal] = ACTIONS(525), - [sym_float_literal] = ACTIONS(2118), - [sym_rune_literal] = ACTIONS(2118), - [anon_sym_AT] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2120), - [sym___single_quote] = ACTIONS(2122), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2126), - [sym___r_double_quote] = ACTIONS(2128), - [sym___r_single_quote] = ACTIONS(2130), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [847] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4014), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1000), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [848] = { - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2583), - [sym__expression_with_blocks] = STATE(2583), - [sym_inc_expression] = STATE(2583), - [sym_dec_expression] = STATE(2583), - [sym_or_block_expression] = STATE(2583), - [sym_option_propagation_expression] = STATE(2583), - [sym_result_propagation_expression] = STATE(2583), - [sym_anon_struct_value_expression] = STATE(2584), - [sym_go_expression] = STATE(2583), - [sym_spawn_expression] = STATE(2583), - [sym_parenthesized_expression] = STATE(2583), - [sym_call_expression] = STATE(2583), - [sym_type_initializer] = STATE(2584), - [sym_function_literal] = STATE(2583), - [sym_reference_expression] = STATE(2497), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2583), - [sym_receive_expression] = STATE(2583), - [sym_binary_expression] = STATE(2583), - [sym_as_type_cast_expression] = STATE(2583), - [sym__max_group] = STATE(2583), - [sym_literal] = STATE(2583), - [sym_map_init_expression] = STATE(2584), - [sym_array_creation] = STATE(2583), - [sym_fixed_array_creation] = STATE(2583), - [sym_selector_expression] = STATE(2583), - [sym_index_expression] = STATE(2583), - [sym_slice_expression] = STATE(2583), - [sym_if_expression] = STATE(2584), - [sym_compile_time_if_expression] = STATE(2584), - [sym_is_expression] = STATE(2583), - [sym_not_is_expression] = STATE(2583), - [sym_in_expression] = STATE(2583), - [sym_not_in_expression] = STATE(2583), - [sym_enum_fetch] = STATE(2583), - [sym_match_expression] = STATE(2584), - [sym_select_expression] = STATE(2584), - [sym_lock_expression] = STATE(2584), - [sym_unsafe_expression] = STATE(2584), - [sym_sql_expression] = STATE(2584), - [sym_c_string_literal] = STATE(2496), - [sym_raw_string_literal] = STATE(2496), - [sym_interpreted_string_literal] = STATE(2496), - [sym_pseudo_compile_time_identifier] = STATE(2583), - [sym_mutability_modifiers] = STATE(599), - [sym_plain_type] = STATE(4243), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1432), + [sym__expression] = STATE(2320), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(1458), - [anon_sym_LBRACK2] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(1466), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_nil] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_DOLLARif] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_sql] = ACTIONS(1480), - [sym_int_literal] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1482), - [sym_rune_literal] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1486), - [sym___single_quote] = ACTIONS(1488), - [sym___c_double_quote] = ACTIONS(1490), - [sym___c_single_quote] = ACTIONS(1492), - [sym___r_double_quote] = ACTIONS(1494), - [sym___r_single_quote] = ACTIONS(1496), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [849] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4019), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(1333), + [sym__expression_without_blocks] = STATE(1378), + [sym__expression_with_blocks] = STATE(1378), + [sym_inc_expression] = STATE(1378), + [sym_dec_expression] = STATE(1378), + [sym_or_block_expression] = STATE(1378), + [sym_option_propagation_expression] = STATE(1378), + [sym_result_propagation_expression] = STATE(1378), + [sym_anon_struct_value_expression] = STATE(1375), + [sym_go_expression] = STATE(1378), + [sym_spawn_expression] = STATE(1378), + [sym_parenthesized_expression] = STATE(1378), + [sym_call_expression] = STATE(1378), + [sym_type_initializer] = STATE(1375), + [sym_function_literal] = STATE(1378), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1378), + [sym_receive_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_as_type_cast_expression] = STATE(1378), + [sym__max_group] = STATE(1378), + [sym_literal] = STATE(1378), + [sym_map_init_expression] = STATE(1375), + [sym_array_creation] = STATE(1378), + [sym_fixed_array_creation] = STATE(1378), + [sym_selector_expression] = STATE(1378), + [sym_index_expression] = STATE(1378), + [sym_slice_expression] = STATE(1378), + [sym_if_expression] = STATE(1375), + [sym_compile_time_if_expression] = STATE(1375), + [sym_is_expression] = STATE(1378), + [sym_not_is_expression] = STATE(1378), + [sym_in_expression] = STATE(1378), + [sym_not_in_expression] = STATE(1378), + [sym_enum_fetch] = STATE(1378), + [sym_match_expression] = STATE(1375), + [sym_select_expression] = STATE(1375), + [sym_lock_expression] = STATE(1375), + [sym_unsafe_expression] = STATE(1375), + [sym_sql_expression] = STATE(1375), + [sym_c_string_literal] = STATE(1303), + [sym_raw_string_literal] = STATE(1303), + [sym_interpreted_string_literal] = STATE(1303), + [sym_pseudo_compile_time_identifier] = STATE(1378), + [sym_mutability_modifiers] = STATE(520), + [sym_plain_type] = STATE(4303), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_struct] = ACTIONS(1322), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1824), + [anon_sym_go] = ACTIONS(1826), + [anon_sym_spawn] = ACTIONS(1828), + [anon_sym_json_DOTdecode] = ACTIONS(1330), + [anon_sym_LBRACK2] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_CARET] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LT_DASH] = ACTIONS(1832), + [sym_none] = ACTIONS(1338), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_nil] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_DOLLARif] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_select] = ACTIONS(1836), + [anon_sym_lock] = ACTIONS(1838), + [anon_sym_rlock] = ACTIONS(1838), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_sql] = ACTIONS(1352), + [sym_int_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1356), + [sym_rune_literal] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1358), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(1360), + [sym___single_quote] = ACTIONS(1362), + [sym___c_double_quote] = ACTIONS(1364), + [sym___c_single_quote] = ACTIONS(1366), + [sym___r_double_quote] = ACTIONS(1368), + [sym___r_single_quote] = ACTIONS(1370), }, [850] = { - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2760), - [sym__expression_with_blocks] = STATE(2760), - [sym_inc_expression] = STATE(2760), - [sym_dec_expression] = STATE(2760), - [sym_or_block_expression] = STATE(2760), - [sym_option_propagation_expression] = STATE(2760), - [sym_result_propagation_expression] = STATE(2760), - [sym_anon_struct_value_expression] = STATE(2757), - [sym_go_expression] = STATE(2760), - [sym_spawn_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_call_expression] = STATE(2760), - [sym_type_initializer] = STATE(2757), - [sym_function_literal] = STATE(2760), - [sym_reference_expression] = STATE(2723), - [sym_type_reference_expression] = STATE(3547), - [sym_unary_expression] = STATE(2760), - [sym_receive_expression] = STATE(2760), - [sym_binary_expression] = STATE(2760), - [sym_as_type_cast_expression] = STATE(2760), - [sym__max_group] = STATE(2760), - [sym_literal] = STATE(2760), - [sym_map_init_expression] = STATE(2757), - [sym_array_creation] = STATE(2760), - [sym_fixed_array_creation] = STATE(2760), - [sym_selector_expression] = STATE(2760), - [sym_index_expression] = STATE(2760), - [sym_slice_expression] = STATE(2760), - [sym_if_expression] = STATE(2757), - [sym_compile_time_if_expression] = STATE(2757), - [sym_is_expression] = STATE(2760), - [sym_not_is_expression] = STATE(2760), - [sym_in_expression] = STATE(2760), - [sym_not_in_expression] = STATE(2760), - [sym_enum_fetch] = STATE(2760), - [sym_match_expression] = STATE(2757), - [sym_select_expression] = STATE(2757), - [sym_lock_expression] = STATE(2757), - [sym_unsafe_expression] = STATE(2757), - [sym_sql_expression] = STATE(2757), - [sym_c_string_literal] = STATE(2705), - [sym_raw_string_literal] = STATE(2705), - [sym_interpreted_string_literal] = STATE(2705), - [sym_pseudo_compile_time_identifier] = STATE(2760), - [sym_mutability_modifiers] = STATE(525), - [sym_plain_type] = STATE(4021), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(1648), + [sym__expression] = STATE(2210), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_LPAREN] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_struct] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_go] = ACTIONS(2440), - [anon_sym_spawn] = ACTIONS(2442), - [anon_sym_json_DOTdecode] = ACTIONS(1115), - [anon_sym_LBRACK2] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_LT_DASH] = ACTIONS(2446), - [sym_none] = ACTIONS(1123), - [sym_true] = ACTIONS(1123), - [sym_false] = ACTIONS(1123), - [sym_nil] = ACTIONS(1123), - [anon_sym_if] = ACTIONS(1125), - [anon_sym_DOLLARif] = ACTIONS(1129), - [anon_sym_match] = ACTIONS(1131), - [anon_sym_select] = ACTIONS(2448), - [anon_sym_lock] = ACTIONS(2450), - [anon_sym_rlock] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(1137), - [anon_sym_sql] = ACTIONS(1139), - [sym_int_literal] = ACTIONS(1123), - [sym_float_literal] = ACTIONS(1141), - [sym_rune_literal] = ACTIONS(1141), - [anon_sym_AT] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1145), - [sym___single_quote] = ACTIONS(1147), - [sym___c_double_quote] = ACTIONS(1149), - [sym___c_single_quote] = ACTIONS(1151), - [sym___r_double_quote] = ACTIONS(1153), - [sym___r_single_quote] = ACTIONS(1155), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [851] = { - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2790), - [anon_sym_CR] = ACTIONS(2790), - [anon_sym_CR_LF] = ACTIONS(2790), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_EQ] = ACTIONS(2790), - [anon_sym___global] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_pub] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_interface] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_STAR_EQ] = ACTIONS(2790), - [anon_sym_SLASH_EQ] = ACTIONS(2790), - [anon_sym_PERCENT_EQ] = ACTIONS(2790), - [anon_sym_LT_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_GT_EQ] = ACTIONS(2790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2790), - [anon_sym_AMP_EQ] = ACTIONS(2790), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2790), - [anon_sym_PLUS_EQ] = ACTIONS(2790), - [anon_sym_DASH_EQ] = ACTIONS(2790), - [anon_sym_PIPE_EQ] = ACTIONS(2790), - [anon_sym_CARET_EQ] = ACTIONS(2790), - [anon_sym_COLON_EQ] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_defer] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_DOLLARfor] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_asm] = ACTIONS(2790), - [anon_sym_AT_LBRACK] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), + [sym__expression] = STATE(994), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_EQ] = ACTIONS(2794), - [anon_sym___global] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_pub] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_STAR_EQ] = ACTIONS(2794), - [anon_sym_SLASH_EQ] = ACTIONS(2794), - [anon_sym_PERCENT_EQ] = ACTIONS(2794), - [anon_sym_LT_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_GT_EQ] = ACTIONS(2794), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2794), - [anon_sym_AMP_EQ] = ACTIONS(2794), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2794), - [anon_sym_PLUS_EQ] = ACTIONS(2794), - [anon_sym_DASH_EQ] = ACTIONS(2794), - [anon_sym_PIPE_EQ] = ACTIONS(2794), - [anon_sym_CARET_EQ] = ACTIONS(2794), - [anon_sym_COLON_EQ] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [anon_sym_assert] = ACTIONS(2794), - [anon_sym_defer] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_DOLLARfor] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_asm] = ACTIONS(2794), - [anon_sym_AT_LBRACK] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [853] = { - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_EQ] = ACTIONS(2798), - [anon_sym___global] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_STAR_EQ] = ACTIONS(2798), - [anon_sym_SLASH_EQ] = ACTIONS(2798), - [anon_sym_PERCENT_EQ] = ACTIONS(2798), - [anon_sym_LT_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_GT_EQ] = ACTIONS(2798), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2798), - [anon_sym_AMP_EQ] = ACTIONS(2798), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2798), - [anon_sym_PLUS_EQ] = ACTIONS(2798), - [anon_sym_DASH_EQ] = ACTIONS(2798), - [anon_sym_PIPE_EQ] = ACTIONS(2798), - [anon_sym_CARET_EQ] = ACTIONS(2798), - [anon_sym_COLON_EQ] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_defer] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_DOLLARfor] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_asm] = ACTIONS(2798), - [anon_sym_AT_LBRACK] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [sym__expression] = STATE(2372), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(2802), - [anon_sym___global] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_interface] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_STAR_EQ] = ACTIONS(2802), - [anon_sym_SLASH_EQ] = ACTIONS(2802), - [anon_sym_PERCENT_EQ] = ACTIONS(2802), - [anon_sym_LT_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_GT_EQ] = ACTIONS(2802), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2802), - [anon_sym_AMP_EQ] = ACTIONS(2802), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2802), - [anon_sym_PLUS_EQ] = ACTIONS(2802), - [anon_sym_DASH_EQ] = ACTIONS(2802), - [anon_sym_PIPE_EQ] = ACTIONS(2802), - [anon_sym_CARET_EQ] = ACTIONS(2802), - [anon_sym_COLON_EQ] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [anon_sym_AT] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_defer] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_DOLLARfor] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_asm] = ACTIONS(2802), - [anon_sym_AT_LBRACK] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), + [sym__expression] = STATE(2342), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [855] = { - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2806), - [anon_sym___global] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_pub] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_STAR_EQ] = ACTIONS(2806), - [anon_sym_SLASH_EQ] = ACTIONS(2806), - [anon_sym_PERCENT_EQ] = ACTIONS(2806), - [anon_sym_LT_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_GT_EQ] = ACTIONS(2806), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2806), - [anon_sym_AMP_EQ] = ACTIONS(2806), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2806), - [anon_sym_PLUS_EQ] = ACTIONS(2806), - [anon_sym_DASH_EQ] = ACTIONS(2806), - [anon_sym_PIPE_EQ] = ACTIONS(2806), - [anon_sym_CARET_EQ] = ACTIONS(2806), - [anon_sym_COLON_EQ] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_defer] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_DOLLARfor] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_asm] = ACTIONS(2806), - [anon_sym_AT_LBRACK] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), + [sym__expression] = STATE(2373), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [856] = { - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2810), - [anon_sym___global] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_STAR_EQ] = ACTIONS(2810), - [anon_sym_SLASH_EQ] = ACTIONS(2810), - [anon_sym_PERCENT_EQ] = ACTIONS(2810), - [anon_sym_LT_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_AMP_EQ] = ACTIONS(2810), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), - [anon_sym_PLUS_EQ] = ACTIONS(2810), - [anon_sym_DASH_EQ] = ACTIONS(2810), - [anon_sym_PIPE_EQ] = ACTIONS(2810), - [anon_sym_CARET_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_defer] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_DOLLARfor] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_asm] = ACTIONS(2810), - [anon_sym_AT_LBRACK] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [857] = { - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2814), - [anon_sym_LF] = ACTIONS(2814), - [anon_sym_CR] = ACTIONS(2814), - [anon_sym_CR_LF] = ACTIONS(2814), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2814), - [anon_sym___global] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_pub] = ACTIONS(2814), - [anon_sym_mut] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_interface] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_go] = ACTIONS(2814), - [anon_sym_spawn] = ACTIONS(2814), - [anon_sym_json_DOTdecode] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_or] = ACTIONS(2814), - [sym_none] = ACTIONS(2814), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_nil] = ACTIONS(2814), - [anon_sym_QMARK_DOT] = ACTIONS(2814), - [anon_sym_POUND_LBRACK] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_DOLLARif] = ACTIONS(2814), - [anon_sym_is] = ACTIONS(2814), - [anon_sym_BANGis] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2814), - [anon_sym_BANGin] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_select] = ACTIONS(2814), - [anon_sym_STAR_EQ] = ACTIONS(2814), - [anon_sym_SLASH_EQ] = ACTIONS(2814), - [anon_sym_PERCENT_EQ] = ACTIONS(2814), - [anon_sym_LT_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_GT_EQ] = ACTIONS(2814), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2814), - [anon_sym_AMP_EQ] = ACTIONS(2814), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2814), - [anon_sym_PLUS_EQ] = ACTIONS(2814), - [anon_sym_DASH_EQ] = ACTIONS(2814), - [anon_sym_PIPE_EQ] = ACTIONS(2814), - [anon_sym_CARET_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2814), - [anon_sym_lock] = ACTIONS(2814), - [anon_sym_rlock] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_sql] = ACTIONS(2814), - [sym_int_literal] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2814), - [sym_rune_literal] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2814), - [anon_sym_shared] = ACTIONS(2814), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2814), - [anon_sym_thread] = ACTIONS(2814), - [anon_sym_atomic] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_defer] = ACTIONS(2814), - [anon_sym_goto] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_DOLLARfor] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_asm] = ACTIONS(2814), - [anon_sym_AT_LBRACK] = ACTIONS(2814), - [sym___double_quote] = ACTIONS(2814), - [sym___single_quote] = ACTIONS(2814), - [sym___c_double_quote] = ACTIONS(2814), - [sym___c_single_quote] = ACTIONS(2814), - [sym___r_double_quote] = ACTIONS(2814), - [sym___r_single_quote] = ACTIONS(2814), + [sym__expression] = STATE(2376), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [858] = { - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2818), - [anon_sym_LF] = ACTIONS(2818), - [anon_sym_CR] = ACTIONS(2818), - [anon_sym_CR_LF] = ACTIONS(2818), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_EQ] = ACTIONS(2818), - [anon_sym___global] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_fn] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_pub] = ACTIONS(2818), - [anon_sym_mut] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_interface] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_go] = ACTIONS(2818), - [anon_sym_spawn] = ACTIONS(2818), - [anon_sym_json_DOTdecode] = ACTIONS(2818), - [anon_sym_LBRACK2] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_or] = ACTIONS(2818), - [sym_none] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nil] = ACTIONS(2818), - [anon_sym_QMARK_DOT] = ACTIONS(2818), - [anon_sym_POUND_LBRACK] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_DOLLARif] = ACTIONS(2818), - [anon_sym_is] = ACTIONS(2818), - [anon_sym_BANGis] = ACTIONS(2818), - [anon_sym_in] = ACTIONS(2818), - [anon_sym_BANGin] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_select] = ACTIONS(2818), - [anon_sym_STAR_EQ] = ACTIONS(2818), - [anon_sym_SLASH_EQ] = ACTIONS(2818), - [anon_sym_PERCENT_EQ] = ACTIONS(2818), - [anon_sym_LT_LT_EQ] = ACTIONS(2818), - [anon_sym_GT_GT_EQ] = ACTIONS(2818), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2818), - [anon_sym_AMP_EQ] = ACTIONS(2818), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2818), - [anon_sym_PLUS_EQ] = ACTIONS(2818), - [anon_sym_DASH_EQ] = ACTIONS(2818), - [anon_sym_PIPE_EQ] = ACTIONS(2818), - [anon_sym_CARET_EQ] = ACTIONS(2818), - [anon_sym_COLON_EQ] = ACTIONS(2818), - [anon_sym_lock] = ACTIONS(2818), - [anon_sym_rlock] = ACTIONS(2818), - [anon_sym_unsafe] = ACTIONS(2818), - [anon_sym_sql] = ACTIONS(2818), - [sym_int_literal] = ACTIONS(2818), - [sym_float_literal] = ACTIONS(2818), - [sym_rune_literal] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_shared] = ACTIONS(2818), - [anon_sym_map_LBRACK] = ACTIONS(2818), - [anon_sym_chan] = ACTIONS(2818), - [anon_sym_thread] = ACTIONS(2818), - [anon_sym_atomic] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_defer] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_DOLLARfor] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym_AT_LBRACK] = ACTIONS(2818), - [sym___double_quote] = ACTIONS(2818), - [sym___single_quote] = ACTIONS(2818), - [sym___c_double_quote] = ACTIONS(2818), - [sym___c_single_quote] = ACTIONS(2818), - [sym___r_double_quote] = ACTIONS(2818), - [sym___r_single_quote] = ACTIONS(2818), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4352), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [859] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_LF] = ACTIONS(2822), - [anon_sym_CR] = ACTIONS(2822), - [anon_sym_CR_LF] = ACTIONS(2822), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_EQ] = ACTIONS(2822), - [anon_sym___global] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_pub] = ACTIONS(2822), - [anon_sym_mut] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_interface] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_go] = ACTIONS(2822), - [anon_sym_spawn] = ACTIONS(2822), - [anon_sym_json_DOTdecode] = ACTIONS(2822), - [anon_sym_LBRACK2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_or] = ACTIONS(2822), - [sym_none] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_nil] = ACTIONS(2822), - [anon_sym_QMARK_DOT] = ACTIONS(2822), - [anon_sym_POUND_LBRACK] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_DOLLARif] = ACTIONS(2822), - [anon_sym_is] = ACTIONS(2822), - [anon_sym_BANGis] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2822), - [anon_sym_BANGin] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_select] = ACTIONS(2822), - [anon_sym_STAR_EQ] = ACTIONS(2822), - [anon_sym_SLASH_EQ] = ACTIONS(2822), - [anon_sym_PERCENT_EQ] = ACTIONS(2822), - [anon_sym_LT_LT_EQ] = ACTIONS(2822), - [anon_sym_GT_GT_EQ] = ACTIONS(2822), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2822), - [anon_sym_AMP_EQ] = ACTIONS(2822), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2822), - [anon_sym_PLUS_EQ] = ACTIONS(2822), - [anon_sym_DASH_EQ] = ACTIONS(2822), - [anon_sym_PIPE_EQ] = ACTIONS(2822), - [anon_sym_CARET_EQ] = ACTIONS(2822), - [anon_sym_COLON_EQ] = ACTIONS(2822), - [anon_sym_lock] = ACTIONS(2822), - [anon_sym_rlock] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_sql] = ACTIONS(2822), - [sym_int_literal] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2822), - [sym_rune_literal] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2822), - [anon_sym_shared] = ACTIONS(2822), - [anon_sym_map_LBRACK] = ACTIONS(2822), - [anon_sym_chan] = ACTIONS(2822), - [anon_sym_thread] = ACTIONS(2822), - [anon_sym_atomic] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_defer] = ACTIONS(2822), - [anon_sym_goto] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_DOLLARfor] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_asm] = ACTIONS(2822), - [anon_sym_AT_LBRACK] = ACTIONS(2822), - [sym___double_quote] = ACTIONS(2822), - [sym___single_quote] = ACTIONS(2822), - [sym___c_double_quote] = ACTIONS(2822), - [sym___c_single_quote] = ACTIONS(2822), - [sym___r_double_quote] = ACTIONS(2822), - [sym___r_single_quote] = ACTIONS(2822), + [sym__expression] = STATE(2377), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [860] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_LF] = ACTIONS(2826), - [anon_sym_CR] = ACTIONS(2826), - [anon_sym_CR_LF] = ACTIONS(2826), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_EQ] = ACTIONS(2826), - [anon_sym___global] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_fn] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_GT] = ACTIONS(2826), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_pub] = ACTIONS(2826), - [anon_sym_mut] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_interface] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_go] = ACTIONS(2826), - [anon_sym_spawn] = ACTIONS(2826), - [anon_sym_json_DOTdecode] = ACTIONS(2826), - [anon_sym_LBRACK2] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2826), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_or] = ACTIONS(2826), - [sym_none] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_nil] = ACTIONS(2826), - [anon_sym_QMARK_DOT] = ACTIONS(2826), - [anon_sym_POUND_LBRACK] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_DOLLARif] = ACTIONS(2826), - [anon_sym_is] = ACTIONS(2826), - [anon_sym_BANGis] = ACTIONS(2826), - [anon_sym_in] = ACTIONS(2826), - [anon_sym_BANGin] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_select] = ACTIONS(2826), - [anon_sym_STAR_EQ] = ACTIONS(2826), - [anon_sym_SLASH_EQ] = ACTIONS(2826), - [anon_sym_PERCENT_EQ] = ACTIONS(2826), - [anon_sym_LT_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_GT_EQ] = ACTIONS(2826), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2826), - [anon_sym_AMP_EQ] = ACTIONS(2826), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2826), - [anon_sym_PLUS_EQ] = ACTIONS(2826), - [anon_sym_DASH_EQ] = ACTIONS(2826), - [anon_sym_PIPE_EQ] = ACTIONS(2826), - [anon_sym_CARET_EQ] = ACTIONS(2826), - [anon_sym_COLON_EQ] = ACTIONS(2826), - [anon_sym_lock] = ACTIONS(2826), - [anon_sym_rlock] = ACTIONS(2826), - [anon_sym_unsafe] = ACTIONS(2826), - [anon_sym_sql] = ACTIONS(2826), - [sym_int_literal] = ACTIONS(2826), - [sym_float_literal] = ACTIONS(2826), - [sym_rune_literal] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_shared] = ACTIONS(2826), - [anon_sym_map_LBRACK] = ACTIONS(2826), - [anon_sym_chan] = ACTIONS(2826), - [anon_sym_thread] = ACTIONS(2826), - [anon_sym_atomic] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_defer] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_DOLLARfor] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(2826), - [anon_sym_asm] = ACTIONS(2826), - [anon_sym_AT_LBRACK] = ACTIONS(2826), - [sym___double_quote] = ACTIONS(2826), - [sym___single_quote] = ACTIONS(2826), - [sym___c_double_quote] = ACTIONS(2826), - [sym___c_single_quote] = ACTIONS(2826), - [sym___r_double_quote] = ACTIONS(2826), - [sym___r_single_quote] = ACTIONS(2826), + [sym__expression] = STATE(2380), + [sym__expression_without_blocks] = STATE(2618), + [sym__expression_with_blocks] = STATE(2618), + [sym_inc_expression] = STATE(2618), + [sym_dec_expression] = STATE(2618), + [sym_or_block_expression] = STATE(2618), + [sym_option_propagation_expression] = STATE(2618), + [sym_result_propagation_expression] = STATE(2618), + [sym_anon_struct_value_expression] = STATE(2619), + [sym_go_expression] = STATE(2618), + [sym_spawn_expression] = STATE(2618), + [sym_parenthesized_expression] = STATE(2618), + [sym_call_expression] = STATE(2618), + [sym_type_initializer] = STATE(2619), + [sym_function_literal] = STATE(2618), + [sym_reference_expression] = STATE(2526), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2618), + [sym_receive_expression] = STATE(2618), + [sym_binary_expression] = STATE(2618), + [sym_as_type_cast_expression] = STATE(2618), + [sym__max_group] = STATE(2618), + [sym_literal] = STATE(2618), + [sym_map_init_expression] = STATE(2619), + [sym_array_creation] = STATE(2618), + [sym_fixed_array_creation] = STATE(2618), + [sym_selector_expression] = STATE(2618), + [sym_index_expression] = STATE(2618), + [sym_slice_expression] = STATE(2618), + [sym_if_expression] = STATE(2619), + [sym_compile_time_if_expression] = STATE(2619), + [sym_is_expression] = STATE(2618), + [sym_not_is_expression] = STATE(2618), + [sym_in_expression] = STATE(2618), + [sym_not_in_expression] = STATE(2618), + [sym_enum_fetch] = STATE(2618), + [sym_match_expression] = STATE(2619), + [sym_select_expression] = STATE(2619), + [sym_lock_expression] = STATE(2619), + [sym_unsafe_expression] = STATE(2619), + [sym_sql_expression] = STATE(2619), + [sym_c_string_literal] = STATE(2574), + [sym_raw_string_literal] = STATE(2574), + [sym_interpreted_string_literal] = STATE(2574), + [sym_pseudo_compile_time_identifier] = STATE(2618), + [sym_mutability_modifiers] = STATE(588), + [sym_plain_type] = STATE(4187), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2760), + [anon_sym_spawn] = ACTIONS(2762), + [anon_sym_json_DOTdecode] = ACTIONS(1462), + [anon_sym_LBRACK2] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_CARET] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2766), + [sym_none] = ACTIONS(1470), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_nil] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_DOLLARif] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_select] = ACTIONS(2768), + [anon_sym_lock] = ACTIONS(2770), + [anon_sym_rlock] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_sql] = ACTIONS(1484), + [sym_int_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1486), + [sym_rune_literal] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1490), + [sym___single_quote] = ACTIONS(1492), + [sym___c_double_quote] = ACTIONS(1494), + [sym___c_single_quote] = ACTIONS(1496), + [sym___r_double_quote] = ACTIONS(1498), + [sym___r_single_quote] = ACTIONS(1500), }, [861] = { - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_CR] = ACTIONS(2830), - [anon_sym_CR_LF] = ACTIONS(2830), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2830), - [anon_sym___global] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_fn] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_pub] = ACTIONS(2830), - [anon_sym_mut] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_interface] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_go] = ACTIONS(2830), - [anon_sym_spawn] = ACTIONS(2830), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2830), + [sym__expression] = STATE(2214), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), [sym_none] = ACTIONS(2830), [sym_true] = ACTIONS(2830), [sym_false] = ACTIONS(2830), [sym_nil] = ACTIONS(2830), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_DOLLARif] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2830), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_select] = ACTIONS(2830), - [anon_sym_STAR_EQ] = ACTIONS(2830), - [anon_sym_SLASH_EQ] = ACTIONS(2830), - [anon_sym_PERCENT_EQ] = ACTIONS(2830), - [anon_sym_LT_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_GT_EQ] = ACTIONS(2830), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2830), - [anon_sym_AMP_EQ] = ACTIONS(2830), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2830), - [anon_sym_PLUS_EQ] = ACTIONS(2830), - [anon_sym_DASH_EQ] = ACTIONS(2830), - [anon_sym_PIPE_EQ] = ACTIONS(2830), - [anon_sym_CARET_EQ] = ACTIONS(2830), - [anon_sym_COLON_EQ] = ACTIONS(2830), - [anon_sym_lock] = ACTIONS(2830), - [anon_sym_rlock] = ACTIONS(2830), - [anon_sym_unsafe] = ACTIONS(2830), - [anon_sym_sql] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), [sym_int_literal] = ACTIONS(2830), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2830), - [anon_sym_shared] = ACTIONS(2830), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2830), - [anon_sym_thread] = ACTIONS(2830), - [anon_sym_atomic] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_defer] = ACTIONS(2830), - [anon_sym_goto] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_DOLLARfor] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_asm] = ACTIONS(2830), - [anon_sym_AT_LBRACK] = ACTIONS(2830), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [862] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_LF] = ACTIONS(2834), - [anon_sym_CR] = ACTIONS(2834), - [anon_sym_CR_LF] = ACTIONS(2834), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_as] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_EQ] = ACTIONS(2834), - [anon_sym___global] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_fn] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_GT] = ACTIONS(2834), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_pub] = ACTIONS(2834), - [anon_sym_mut] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_interface] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_go] = ACTIONS(2834), - [anon_sym_spawn] = ACTIONS(2834), - [anon_sym_json_DOTdecode] = ACTIONS(2834), - [anon_sym_LBRACK2] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2834), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_or] = ACTIONS(2834), - [sym_none] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_nil] = ACTIONS(2834), - [anon_sym_QMARK_DOT] = ACTIONS(2834), - [anon_sym_POUND_LBRACK] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_DOLLARif] = ACTIONS(2834), - [anon_sym_is] = ACTIONS(2834), - [anon_sym_BANGis] = ACTIONS(2834), - [anon_sym_in] = ACTIONS(2834), - [anon_sym_BANGin] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_select] = ACTIONS(2834), - [anon_sym_STAR_EQ] = ACTIONS(2834), - [anon_sym_SLASH_EQ] = ACTIONS(2834), - [anon_sym_PERCENT_EQ] = ACTIONS(2834), - [anon_sym_LT_LT_EQ] = ACTIONS(2834), - [anon_sym_GT_GT_EQ] = ACTIONS(2834), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2834), - [anon_sym_AMP_EQ] = ACTIONS(2834), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2834), - [anon_sym_PLUS_EQ] = ACTIONS(2834), - [anon_sym_DASH_EQ] = ACTIONS(2834), - [anon_sym_PIPE_EQ] = ACTIONS(2834), - [anon_sym_CARET_EQ] = ACTIONS(2834), - [anon_sym_COLON_EQ] = ACTIONS(2834), - [anon_sym_lock] = ACTIONS(2834), - [anon_sym_rlock] = ACTIONS(2834), - [anon_sym_unsafe] = ACTIONS(2834), - [anon_sym_sql] = ACTIONS(2834), - [sym_int_literal] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2834), - [sym_rune_literal] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2834), - [anon_sym_shared] = ACTIONS(2834), - [anon_sym_map_LBRACK] = ACTIONS(2834), - [anon_sym_chan] = ACTIONS(2834), - [anon_sym_thread] = ACTIONS(2834), - [anon_sym_atomic] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_defer] = ACTIONS(2834), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_DOLLARfor] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_asm] = ACTIONS(2834), - [anon_sym_AT_LBRACK] = ACTIONS(2834), - [sym___double_quote] = ACTIONS(2834), - [sym___single_quote] = ACTIONS(2834), - [sym___c_double_quote] = ACTIONS(2834), - [sym___c_single_quote] = ACTIONS(2834), - [sym___r_double_quote] = ACTIONS(2834), - [sym___r_single_quote] = ACTIONS(2834), + [sym__expression] = STATE(1672), + [sym__expression_without_blocks] = STATE(1887), + [sym__expression_with_blocks] = STATE(1887), + [sym_inc_expression] = STATE(1887), + [sym_dec_expression] = STATE(1887), + [sym_or_block_expression] = STATE(1887), + [sym_option_propagation_expression] = STATE(1887), + [sym_result_propagation_expression] = STATE(1887), + [sym_anon_struct_value_expression] = STATE(1888), + [sym_go_expression] = STATE(1887), + [sym_spawn_expression] = STATE(1887), + [sym_parenthesized_expression] = STATE(1887), + [sym_call_expression] = STATE(1887), + [sym_type_initializer] = STATE(1888), + [sym_function_literal] = STATE(1887), + [sym_reference_expression] = STATE(1860), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1887), + [sym_receive_expression] = STATE(1887), + [sym_binary_expression] = STATE(1887), + [sym_as_type_cast_expression] = STATE(1887), + [sym__max_group] = STATE(1887), + [sym_literal] = STATE(1887), + [sym_map_init_expression] = STATE(1888), + [sym_array_creation] = STATE(1887), + [sym_fixed_array_creation] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym_index_expression] = STATE(1887), + [sym_slice_expression] = STATE(1887), + [sym_if_expression] = STATE(1888), + [sym_compile_time_if_expression] = STATE(1888), + [sym_is_expression] = STATE(1887), + [sym_not_is_expression] = STATE(1887), + [sym_in_expression] = STATE(1887), + [sym_not_in_expression] = STATE(1887), + [sym_enum_fetch] = STATE(1887), + [sym_match_expression] = STATE(1888), + [sym_select_expression] = STATE(1888), + [sym_lock_expression] = STATE(1888), + [sym_unsafe_expression] = STATE(1888), + [sym_sql_expression] = STATE(1888), + [sym_c_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_interpreted_string_literal] = STATE(1886), + [sym_pseudo_compile_time_identifier] = STATE(1887), + [sym_mutability_modifiers] = STATE(673), + [sym_plain_type] = STATE(4297), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2674), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_go] = ACTIONS(2692), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2696), + [anon_sym_LBRACK2] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_CARET] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_LT_DASH] = ACTIONS(2702), + [sym_none] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_nil] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_DOLLARif] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_select] = ACTIONS(2712), + [anon_sym_lock] = ACTIONS(2714), + [anon_sym_rlock] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_sql] = ACTIONS(2718), + [sym_int_literal] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2720), + [sym_rune_literal] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2722), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2724), + [sym___single_quote] = ACTIONS(2726), + [sym___c_double_quote] = ACTIONS(2728), + [sym___c_single_quote] = ACTIONS(2730), + [sym___r_double_quote] = ACTIONS(2732), + [sym___r_single_quote] = ACTIONS(2734), }, [863] = { - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2838), - [anon_sym_LF] = ACTIONS(2838), - [anon_sym_CR] = ACTIONS(2838), - [anon_sym_CR_LF] = ACTIONS(2838), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_as] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(2838), - [anon_sym___global] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_fn] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_pub] = ACTIONS(2838), - [anon_sym_mut] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_interface] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_go] = ACTIONS(2838), - [anon_sym_spawn] = ACTIONS(2838), - [anon_sym_json_DOTdecode] = ACTIONS(2838), - [anon_sym_LBRACK2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2838), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_or] = ACTIONS(2838), - [sym_none] = ACTIONS(2838), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_nil] = ACTIONS(2838), - [anon_sym_QMARK_DOT] = ACTIONS(2838), - [anon_sym_POUND_LBRACK] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_DOLLARif] = ACTIONS(2838), - [anon_sym_is] = ACTIONS(2838), - [anon_sym_BANGis] = ACTIONS(2838), - [anon_sym_in] = ACTIONS(2838), - [anon_sym_BANGin] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), + [sym__expression] = STATE(2182), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), [anon_sym_select] = ACTIONS(2838), - [anon_sym_STAR_EQ] = ACTIONS(2838), - [anon_sym_SLASH_EQ] = ACTIONS(2838), - [anon_sym_PERCENT_EQ] = ACTIONS(2838), - [anon_sym_LT_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_GT_EQ] = ACTIONS(2838), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2838), - [anon_sym_AMP_EQ] = ACTIONS(2838), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2838), - [anon_sym_PLUS_EQ] = ACTIONS(2838), - [anon_sym_DASH_EQ] = ACTIONS(2838), - [anon_sym_PIPE_EQ] = ACTIONS(2838), - [anon_sym_CARET_EQ] = ACTIONS(2838), - [anon_sym_COLON_EQ] = ACTIONS(2838), - [anon_sym_lock] = ACTIONS(2838), - [anon_sym_rlock] = ACTIONS(2838), - [anon_sym_unsafe] = ACTIONS(2838), - [anon_sym_sql] = ACTIONS(2838), - [sym_int_literal] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2838), - [sym_rune_literal] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2838), - [anon_sym_shared] = ACTIONS(2838), - [anon_sym_map_LBRACK] = ACTIONS(2838), - [anon_sym_chan] = ACTIONS(2838), - [anon_sym_thread] = ACTIONS(2838), - [anon_sym_atomic] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_defer] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_DOLLARfor] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym_AT_LBRACK] = ACTIONS(2838), - [sym___double_quote] = ACTIONS(2838), - [sym___single_quote] = ACTIONS(2838), - [sym___c_double_quote] = ACTIONS(2838), - [sym___c_single_quote] = ACTIONS(2838), - [sym___r_double_quote] = ACTIONS(2838), - [sym___r_single_quote] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2842), - [anon_sym_LF] = ACTIONS(2842), - [anon_sym_CR] = ACTIONS(2842), - [anon_sym_CR_LF] = ACTIONS(2842), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_as] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_EQ] = ACTIONS(2842), - [anon_sym___global] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2842), - [anon_sym_EQ_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_LT_EQ] = ACTIONS(2842), - [anon_sym_GT_EQ] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_pub] = ACTIONS(2842), - [anon_sym_mut] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_interface] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_go] = ACTIONS(2842), - [anon_sym_spawn] = ACTIONS(2842), - [anon_sym_json_DOTdecode] = ACTIONS(2842), - [anon_sym_LBRACK2] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2842), - [anon_sym_GT_GT] = ACTIONS(2842), - [anon_sym_GT_GT_GT] = ACTIONS(2842), - [anon_sym_AMP_CARET] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_or] = ACTIONS(2842), - [sym_none] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_nil] = ACTIONS(2842), - [anon_sym_QMARK_DOT] = ACTIONS(2842), - [anon_sym_POUND_LBRACK] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_DOLLARif] = ACTIONS(2842), - [anon_sym_is] = ACTIONS(2842), - [anon_sym_BANGis] = ACTIONS(2842), - [anon_sym_in] = ACTIONS(2842), - [anon_sym_BANGin] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_select] = ACTIONS(2842), - [anon_sym_STAR_EQ] = ACTIONS(2842), - [anon_sym_SLASH_EQ] = ACTIONS(2842), - [anon_sym_PERCENT_EQ] = ACTIONS(2842), - [anon_sym_LT_LT_EQ] = ACTIONS(2842), - [anon_sym_GT_GT_EQ] = ACTIONS(2842), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2842), - [anon_sym_AMP_EQ] = ACTIONS(2842), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2842), - [anon_sym_PLUS_EQ] = ACTIONS(2842), - [anon_sym_DASH_EQ] = ACTIONS(2842), - [anon_sym_PIPE_EQ] = ACTIONS(2842), - [anon_sym_CARET_EQ] = ACTIONS(2842), - [anon_sym_COLON_EQ] = ACTIONS(2842), - [anon_sym_lock] = ACTIONS(2842), - [anon_sym_rlock] = ACTIONS(2842), + [sym__expression] = STATE(2286), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), [anon_sym_unsafe] = ACTIONS(2842), - [anon_sym_sql] = ACTIONS(2842), - [sym_int_literal] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2842), - [sym_rune_literal] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2842), - [anon_sym_shared] = ACTIONS(2842), - [anon_sym_map_LBRACK] = ACTIONS(2842), - [anon_sym_chan] = ACTIONS(2842), - [anon_sym_thread] = ACTIONS(2842), - [anon_sym_atomic] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_defer] = ACTIONS(2842), - [anon_sym_goto] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_DOLLARfor] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_asm] = ACTIONS(2842), - [anon_sym_AT_LBRACK] = ACTIONS(2842), - [sym___double_quote] = ACTIONS(2842), - [sym___single_quote] = ACTIONS(2842), - [sym___c_double_quote] = ACTIONS(2842), - [sym___c_single_quote] = ACTIONS(2842), - [sym___r_double_quote] = ACTIONS(2842), - [sym___r_single_quote] = ACTIONS(2842), - }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_STAR_EQ] = ACTIONS(2846), - [anon_sym_SLASH_EQ] = ACTIONS(2846), - [anon_sym_PERCENT_EQ] = ACTIONS(2846), - [anon_sym_LT_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_GT_EQ] = ACTIONS(2846), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2846), - [anon_sym_AMP_EQ] = ACTIONS(2846), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2846), - [anon_sym_PLUS_EQ] = ACTIONS(2846), - [anon_sym_DASH_EQ] = ACTIONS(2846), - [anon_sym_PIPE_EQ] = ACTIONS(2846), - [anon_sym_CARET_EQ] = ACTIONS(2846), - [anon_sym_COLON_EQ] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), [sym_float_literal] = ACTIONS(2846), [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), + }, + [865] = { + [sym__expression] = STATE(998), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [866] = { - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LF] = ACTIONS(2850), - [anon_sym_CR] = ACTIONS(2850), - [anon_sym_CR_LF] = ACTIONS(2850), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_const] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(2850), - [anon_sym___global] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_union] = ACTIONS(2850), - [anon_sym_pub] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_enum] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_STAR_EQ] = ACTIONS(2850), - [anon_sym_SLASH_EQ] = ACTIONS(2850), - [anon_sym_PERCENT_EQ] = ACTIONS(2850), - [anon_sym_LT_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_GT_EQ] = ACTIONS(2850), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2850), - [anon_sym_AMP_EQ] = ACTIONS(2850), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2850), - [anon_sym_PLUS_EQ] = ACTIONS(2850), - [anon_sym_DASH_EQ] = ACTIONS(2850), - [anon_sym_PIPE_EQ] = ACTIONS(2850), - [anon_sym_CARET_EQ] = ACTIONS(2850), - [anon_sym_COLON_EQ] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_defer] = ACTIONS(2850), - [anon_sym_goto] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_DOLLARfor] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_asm] = ACTIONS(2850), - [anon_sym_AT_LBRACK] = ACTIONS(2850), + [sym__expression] = STATE(2212), + [sym__expression_without_blocks] = STATE(2262), + [sym__expression_with_blocks] = STATE(2262), + [sym_inc_expression] = STATE(2262), + [sym_dec_expression] = STATE(2262), + [sym_or_block_expression] = STATE(2262), + [sym_option_propagation_expression] = STATE(2262), + [sym_result_propagation_expression] = STATE(2262), + [sym_anon_struct_value_expression] = STATE(2261), + [sym_go_expression] = STATE(2262), + [sym_spawn_expression] = STATE(2262), + [sym_parenthesized_expression] = STATE(2262), + [sym_call_expression] = STATE(2262), + [sym_type_initializer] = STATE(2261), + [sym_function_literal] = STATE(2262), + [sym_reference_expression] = STATE(2260), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(2262), + [sym_receive_expression] = STATE(2262), + [sym_binary_expression] = STATE(2262), + [sym_as_type_cast_expression] = STATE(2262), + [sym__max_group] = STATE(2262), + [sym_literal] = STATE(2262), + [sym_map_init_expression] = STATE(2261), + [sym_array_creation] = STATE(2262), + [sym_fixed_array_creation] = STATE(2262), + [sym_selector_expression] = STATE(2262), + [sym_index_expression] = STATE(2262), + [sym_slice_expression] = STATE(2262), + [sym_if_expression] = STATE(2261), + [sym_compile_time_if_expression] = STATE(2261), + [sym_is_expression] = STATE(2262), + [sym_not_is_expression] = STATE(2262), + [sym_in_expression] = STATE(2262), + [sym_not_in_expression] = STATE(2262), + [sym_enum_fetch] = STATE(2262), + [sym_match_expression] = STATE(2261), + [sym_select_expression] = STATE(2261), + [sym_lock_expression] = STATE(2261), + [sym_unsafe_expression] = STATE(2261), + [sym_sql_expression] = STATE(2261), + [sym_c_string_literal] = STATE(2267), + [sym_raw_string_literal] = STATE(2267), + [sym_interpreted_string_literal] = STATE(2267), + [sym_pseudo_compile_time_identifier] = STATE(2262), + [sym_mutability_modifiers] = STATE(629), + [sym_plain_type] = STATE(4416), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(2800), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2820), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2828), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2836), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2840), + [anon_sym_rlock] = ACTIONS(2840), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2844), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2860), }, [867] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2854), - [anon_sym___global] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_union] = ACTIONS(2854), - [anon_sym_pub] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_STAR_EQ] = ACTIONS(2854), - [anon_sym_SLASH_EQ] = ACTIONS(2854), - [anon_sym_PERCENT_EQ] = ACTIONS(2854), - [anon_sym_LT_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_GT_EQ] = ACTIONS(2854), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2854), - [anon_sym_AMP_EQ] = ACTIONS(2854), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2854), - [anon_sym_PLUS_EQ] = ACTIONS(2854), - [anon_sym_DASH_EQ] = ACTIONS(2854), - [anon_sym_PIPE_EQ] = ACTIONS(2854), - [anon_sym_CARET_EQ] = ACTIONS(2854), - [anon_sym_COLON_EQ] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_defer] = ACTIONS(2854), - [anon_sym_goto] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_DOLLARfor] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_asm] = ACTIONS(2854), - [anon_sym_AT_LBRACK] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4348), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [868] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2858), - [anon_sym___global] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_union] = ACTIONS(2858), - [anon_sym_pub] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_STAR_EQ] = ACTIONS(2858), - [anon_sym_SLASH_EQ] = ACTIONS(2858), - [anon_sym_PERCENT_EQ] = ACTIONS(2858), - [anon_sym_LT_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_GT_EQ] = ACTIONS(2858), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2858), - [anon_sym_AMP_EQ] = ACTIONS(2858), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2858), - [anon_sym_PLUS_EQ] = ACTIONS(2858), - [anon_sym_DASH_EQ] = ACTIONS(2858), - [anon_sym_PIPE_EQ] = ACTIONS(2858), - [anon_sym_CARET_EQ] = ACTIONS(2858), - [anon_sym_COLON_EQ] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_defer] = ACTIONS(2858), - [anon_sym_goto] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_DOLLARfor] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_asm] = ACTIONS(2858), - [anon_sym_AT_LBRACK] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), + [sym__expression] = STATE(992), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [869] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_LF] = ACTIONS(2862), - [anon_sym_CR] = ACTIONS(2862), - [anon_sym_CR_LF] = ACTIONS(2862), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2862), - [anon_sym___global] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_union] = ACTIONS(2862), - [anon_sym_pub] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_STAR_EQ] = ACTIONS(2862), - [anon_sym_SLASH_EQ] = ACTIONS(2862), - [anon_sym_PERCENT_EQ] = ACTIONS(2862), - [anon_sym_LT_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_GT_EQ] = ACTIONS(2862), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2862), - [anon_sym_AMP_EQ] = ACTIONS(2862), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2862), - [anon_sym_PLUS_EQ] = ACTIONS(2862), - [anon_sym_DASH_EQ] = ACTIONS(2862), - [anon_sym_PIPE_EQ] = ACTIONS(2862), - [anon_sym_CARET_EQ] = ACTIONS(2862), - [anon_sym_COLON_EQ] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_defer] = ACTIONS(2862), - [anon_sym_goto] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_DOLLARfor] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_asm] = ACTIONS(2862), - [anon_sym_AT_LBRACK] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), + [sym__expression] = STATE(996), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_LF] = ACTIONS(2866), - [anon_sym_CR] = ACTIONS(2866), - [anon_sym_CR_LF] = ACTIONS(2866), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_as] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2866), - [anon_sym_const] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(2866), - [anon_sym___global] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_fn] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_GT] = ACTIONS(2866), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2866), - [anon_sym_union] = ACTIONS(2866), - [anon_sym_pub] = ACTIONS(2866), - [anon_sym_mut] = ACTIONS(2866), - [anon_sym_enum] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_go] = ACTIONS(2866), - [anon_sym_spawn] = ACTIONS(2866), - [anon_sym_json_DOTdecode] = ACTIONS(2866), - [anon_sym_LBRACK2] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2866), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_or] = ACTIONS(2866), - [sym_none] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_nil] = ACTIONS(2866), - [anon_sym_QMARK_DOT] = ACTIONS(2866), - [anon_sym_POUND_LBRACK] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_DOLLARif] = ACTIONS(2866), - [anon_sym_is] = ACTIONS(2866), - [anon_sym_BANGis] = ACTIONS(2866), - [anon_sym_in] = ACTIONS(2866), - [anon_sym_BANGin] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_select] = ACTIONS(2866), - [anon_sym_STAR_EQ] = ACTIONS(2866), - [anon_sym_SLASH_EQ] = ACTIONS(2866), - [anon_sym_PERCENT_EQ] = ACTIONS(2866), - [anon_sym_LT_LT_EQ] = ACTIONS(2866), - [anon_sym_GT_GT_EQ] = ACTIONS(2866), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2866), - [anon_sym_AMP_EQ] = ACTIONS(2866), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2866), - [anon_sym_PLUS_EQ] = ACTIONS(2866), - [anon_sym_DASH_EQ] = ACTIONS(2866), - [anon_sym_PIPE_EQ] = ACTIONS(2866), - [anon_sym_CARET_EQ] = ACTIONS(2866), - [anon_sym_COLON_EQ] = ACTIONS(2866), - [anon_sym_lock] = ACTIONS(2866), - [anon_sym_rlock] = ACTIONS(2866), - [anon_sym_unsafe] = ACTIONS(2866), - [anon_sym_sql] = ACTIONS(2866), - [sym_int_literal] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), - [sym_rune_literal] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2866), - [anon_sym_shared] = ACTIONS(2866), - [anon_sym_map_LBRACK] = ACTIONS(2866), - [anon_sym_chan] = ACTIONS(2866), - [anon_sym_thread] = ACTIONS(2866), - [anon_sym_atomic] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_defer] = ACTIONS(2866), - [anon_sym_goto] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_DOLLARfor] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_asm] = ACTIONS(2866), - [anon_sym_AT_LBRACK] = ACTIONS(2866), - [sym___double_quote] = ACTIONS(2866), - [sym___single_quote] = ACTIONS(2866), - [sym___c_double_quote] = ACTIONS(2866), - [sym___c_single_quote] = ACTIONS(2866), - [sym___r_double_quote] = ACTIONS(2866), - [sym___r_single_quote] = ACTIONS(2866), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(2870), - [anon_sym___global] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [anon_sym_pub] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_STAR_EQ] = ACTIONS(2870), - [anon_sym_SLASH_EQ] = ACTIONS(2870), - [anon_sym_PERCENT_EQ] = ACTIONS(2870), - [anon_sym_LT_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), - [anon_sym_AMP_EQ] = ACTIONS(2870), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), - [anon_sym_PLUS_EQ] = ACTIONS(2870), - [anon_sym_DASH_EQ] = ACTIONS(2870), - [anon_sym_PIPE_EQ] = ACTIONS(2870), - [anon_sym_CARET_EQ] = ACTIONS(2870), - [anon_sym_COLON_EQ] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_defer] = ACTIONS(2870), - [anon_sym_goto] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_DOLLARfor] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_asm] = ACTIONS(2870), - [anon_sym_AT_LBRACK] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), + [sym__expression] = STATE(995), + [sym__expression_without_blocks] = STATE(1030), + [sym__expression_with_blocks] = STATE(1030), + [sym_inc_expression] = STATE(1030), + [sym_dec_expression] = STATE(1030), + [sym_or_block_expression] = STATE(1030), + [sym_option_propagation_expression] = STATE(1030), + [sym_result_propagation_expression] = STATE(1030), + [sym_anon_struct_value_expression] = STATE(1113), + [sym_go_expression] = STATE(1030), + [sym_spawn_expression] = STATE(1030), + [sym_parenthesized_expression] = STATE(1030), + [sym_call_expression] = STATE(1030), + [sym_type_initializer] = STATE(1113), + [sym_function_literal] = STATE(1030), + [sym_reference_expression] = STATE(1057), + [sym_type_reference_expression] = STATE(3642), + [sym_unary_expression] = STATE(1030), + [sym_receive_expression] = STATE(1030), + [sym_binary_expression] = STATE(1030), + [sym_as_type_cast_expression] = STATE(1030), + [sym__max_group] = STATE(1030), + [sym_literal] = STATE(1030), + [sym_map_init_expression] = STATE(1113), + [sym_array_creation] = STATE(1030), + [sym_fixed_array_creation] = STATE(1030), + [sym_selector_expression] = STATE(1030), + [sym_index_expression] = STATE(1030), + [sym_slice_expression] = STATE(1030), + [sym_if_expression] = STATE(1113), + [sym_compile_time_if_expression] = STATE(1113), + [sym_is_expression] = STATE(1030), + [sym_not_is_expression] = STATE(1030), + [sym_in_expression] = STATE(1030), + [sym_not_in_expression] = STATE(1030), + [sym_enum_fetch] = STATE(1030), + [sym_match_expression] = STATE(1113), + [sym_select_expression] = STATE(1113), + [sym_lock_expression] = STATE(1113), + [sym_unsafe_expression] = STATE(1113), + [sym_sql_expression] = STATE(1113), + [sym_c_string_literal] = STATE(1100), + [sym_raw_string_literal] = STATE(1100), + [sym_interpreted_string_literal] = STATE(1100), + [sym_pseudo_compile_time_identifier] = STATE(1030), + [sym_mutability_modifiers] = STATE(500), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2288), + [anon_sym_LBRACK2] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_LT_DASH] = ACTIONS(2294), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2296), + [sym_rune_literal] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2298), + [sym___single_quote] = ACTIONS(2300), + [sym___c_double_quote] = ACTIONS(2302), + [sym___c_single_quote] = ACTIONS(2304), + [sym___r_double_quote] = ACTIONS(2306), + [sym___r_single_quote] = ACTIONS(2308), }, [872] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_CR] = ACTIONS(2874), - [anon_sym_CR_LF] = ACTIONS(2874), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_EQ] = ACTIONS(2874), - [anon_sym___global] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [anon_sym_pub] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_STAR_EQ] = ACTIONS(2874), - [anon_sym_SLASH_EQ] = ACTIONS(2874), - [anon_sym_PERCENT_EQ] = ACTIONS(2874), - [anon_sym_LT_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_GT_EQ] = ACTIONS(2874), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2874), - [anon_sym_AMP_EQ] = ACTIONS(2874), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2874), - [anon_sym_PLUS_EQ] = ACTIONS(2874), - [anon_sym_DASH_EQ] = ACTIONS(2874), - [anon_sym_PIPE_EQ] = ACTIONS(2874), - [anon_sym_CARET_EQ] = ACTIONS(2874), - [anon_sym_COLON_EQ] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_defer] = ACTIONS(2874), - [anon_sym_goto] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_DOLLARfor] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_asm] = ACTIONS(2874), - [anon_sym_AT_LBRACK] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_CR] = ACTIONS(2936), + [anon_sym_CR_LF] = ACTIONS(2936), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2936), + [anon_sym_as] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_EQ] = ACTIONS(2936), + [anon_sym___global] = ACTIONS(2936), + [anon_sym_type] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_fn] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_PERCENT] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2936), + [anon_sym_EQ_EQ] = ACTIONS(2936), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(2936), + [anon_sym_GT_EQ] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_pub] = ACTIONS(2936), + [anon_sym_mut] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2936), + [anon_sym_QMARK] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2936), + [anon_sym_go] = ACTIONS(2936), + [anon_sym_spawn] = ACTIONS(2936), + [anon_sym_json_DOTdecode] = ACTIONS(2936), + [anon_sym_LBRACK2] = ACTIONS(2936), + [anon_sym_TILDE] = ACTIONS(2936), + [anon_sym_CARET] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_LT_DASH] = ACTIONS(2936), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2936), + [anon_sym_GT_GT_GT] = ACTIONS(2936), + [anon_sym_AMP_CARET] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2936), + [sym_none] = ACTIONS(2936), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_nil] = ACTIONS(2936), + [anon_sym_QMARK_DOT] = ACTIONS(2936), + [anon_sym_POUND_LBRACK] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_DOLLARif] = ACTIONS(2936), + [anon_sym_is] = ACTIONS(2936), + [anon_sym_BANGis] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(2936), + [anon_sym_BANGin] = ACTIONS(2936), + [anon_sym_match] = ACTIONS(2936), + [anon_sym_select] = ACTIONS(2936), + [anon_sym_STAR_EQ] = ACTIONS(2936), + [anon_sym_SLASH_EQ] = ACTIONS(2936), + [anon_sym_PERCENT_EQ] = ACTIONS(2936), + [anon_sym_LT_LT_EQ] = ACTIONS(2936), + [anon_sym_GT_GT_EQ] = ACTIONS(2936), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2936), + [anon_sym_AMP_EQ] = ACTIONS(2936), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2936), + [anon_sym_PLUS_EQ] = ACTIONS(2936), + [anon_sym_DASH_EQ] = ACTIONS(2936), + [anon_sym_PIPE_EQ] = ACTIONS(2936), + [anon_sym_CARET_EQ] = ACTIONS(2936), + [anon_sym_COLON_EQ] = ACTIONS(2936), + [anon_sym_lock] = ACTIONS(2936), + [anon_sym_rlock] = ACTIONS(2936), + [anon_sym_unsafe] = ACTIONS(2936), + [anon_sym_sql] = ACTIONS(2936), + [sym_int_literal] = ACTIONS(2936), + [sym_float_literal] = ACTIONS(2936), + [sym_rune_literal] = ACTIONS(2936), + [anon_sym_AT] = ACTIONS(2936), + [anon_sym_shared] = ACTIONS(2936), + [anon_sym_map_LBRACK] = ACTIONS(2936), + [anon_sym_chan] = ACTIONS(2936), + [anon_sym_thread] = ACTIONS(2936), + [anon_sym_atomic] = ACTIONS(2936), + [anon_sym_assert] = ACTIONS(2936), + [anon_sym_defer] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_DOLLARfor] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_POUND] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym_AT_LBRACK] = ACTIONS(2936), + [sym___double_quote] = ACTIONS(2936), + [sym___single_quote] = ACTIONS(2936), + [sym___c_double_quote] = ACTIONS(2936), + [sym___c_single_quote] = ACTIONS(2936), + [sym___r_double_quote] = ACTIONS(2936), + [sym___r_single_quote] = ACTIONS(2936), }, [873] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2878), - [anon_sym_CR] = ACTIONS(2878), - [anon_sym_CR_LF] = ACTIONS(2878), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_EQ] = ACTIONS(2878), - [anon_sym___global] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_union] = ACTIONS(2878), - [anon_sym_pub] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_STAR_EQ] = ACTIONS(2878), - [anon_sym_SLASH_EQ] = ACTIONS(2878), - [anon_sym_PERCENT_EQ] = ACTIONS(2878), - [anon_sym_LT_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_GT_EQ] = ACTIONS(2878), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2878), - [anon_sym_AMP_EQ] = ACTIONS(2878), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2878), - [anon_sym_PLUS_EQ] = ACTIONS(2878), - [anon_sym_DASH_EQ] = ACTIONS(2878), - [anon_sym_PIPE_EQ] = ACTIONS(2878), - [anon_sym_CARET_EQ] = ACTIONS(2878), - [anon_sym_COLON_EQ] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_defer] = ACTIONS(2878), - [anon_sym_goto] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_DOLLARfor] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_asm] = ACTIONS(2878), - [anon_sym_AT_LBRACK] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_LF] = ACTIONS(2940), + [anon_sym_CR] = ACTIONS(2940), + [anon_sym_CR_LF] = ACTIONS(2940), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2940), + [anon_sym_as] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_EQ] = ACTIONS(2940), + [anon_sym___global] = ACTIONS(2940), + [anon_sym_type] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(2940), + [anon_sym_fn] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_PERCENT] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_GT] = ACTIONS(2940), + [anon_sym_EQ_EQ] = ACTIONS(2940), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_LT_EQ] = ACTIONS(2940), + [anon_sym_GT_EQ] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_pub] = ACTIONS(2940), + [anon_sym_mut] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_interface] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_QMARK] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2940), + [anon_sym_go] = ACTIONS(2940), + [anon_sym_spawn] = ACTIONS(2940), + [anon_sym_json_DOTdecode] = ACTIONS(2940), + [anon_sym_LBRACK2] = ACTIONS(2940), + [anon_sym_TILDE] = ACTIONS(2940), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_LT_DASH] = ACTIONS(2940), + [anon_sym_LT_LT] = ACTIONS(2940), + [anon_sym_GT_GT] = ACTIONS(2940), + [anon_sym_GT_GT_GT] = ACTIONS(2940), + [anon_sym_AMP_CARET] = ACTIONS(2940), + [anon_sym_AMP_AMP] = ACTIONS(2940), + [anon_sym_PIPE_PIPE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2940), + [sym_none] = ACTIONS(2940), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [sym_nil] = ACTIONS(2940), + [anon_sym_QMARK_DOT] = ACTIONS(2940), + [anon_sym_POUND_LBRACK] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_DOLLARif] = ACTIONS(2940), + [anon_sym_is] = ACTIONS(2940), + [anon_sym_BANGis] = ACTIONS(2940), + [anon_sym_in] = ACTIONS(2940), + [anon_sym_BANGin] = ACTIONS(2940), + [anon_sym_match] = ACTIONS(2940), + [anon_sym_select] = ACTIONS(2940), + [anon_sym_STAR_EQ] = ACTIONS(2940), + [anon_sym_SLASH_EQ] = ACTIONS(2940), + [anon_sym_PERCENT_EQ] = ACTIONS(2940), + [anon_sym_LT_LT_EQ] = ACTIONS(2940), + [anon_sym_GT_GT_EQ] = ACTIONS(2940), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2940), + [anon_sym_AMP_EQ] = ACTIONS(2940), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2940), + [anon_sym_PLUS_EQ] = ACTIONS(2940), + [anon_sym_DASH_EQ] = ACTIONS(2940), + [anon_sym_PIPE_EQ] = ACTIONS(2940), + [anon_sym_CARET_EQ] = ACTIONS(2940), + [anon_sym_COLON_EQ] = ACTIONS(2940), + [anon_sym_lock] = ACTIONS(2940), + [anon_sym_rlock] = ACTIONS(2940), + [anon_sym_unsafe] = ACTIONS(2940), + [anon_sym_sql] = ACTIONS(2940), + [sym_int_literal] = ACTIONS(2940), + [sym_float_literal] = ACTIONS(2940), + [sym_rune_literal] = ACTIONS(2940), + [anon_sym_AT] = ACTIONS(2940), + [anon_sym_shared] = ACTIONS(2940), + [anon_sym_map_LBRACK] = ACTIONS(2940), + [anon_sym_chan] = ACTIONS(2940), + [anon_sym_thread] = ACTIONS(2940), + [anon_sym_atomic] = ACTIONS(2940), + [anon_sym_assert] = ACTIONS(2940), + [anon_sym_defer] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_DOLLARfor] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_POUND] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym_AT_LBRACK] = ACTIONS(2940), + [sym___double_quote] = ACTIONS(2940), + [sym___single_quote] = ACTIONS(2940), + [sym___c_double_quote] = ACTIONS(2940), + [sym___c_single_quote] = ACTIONS(2940), + [sym___r_double_quote] = ACTIONS(2940), + [sym___r_single_quote] = ACTIONS(2940), }, [874] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LF] = ACTIONS(2882), - [anon_sym_CR] = ACTIONS(2882), - [anon_sym_CR_LF] = ACTIONS(2882), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_as] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_EQ] = ACTIONS(2882), - [anon_sym___global] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_fn] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_GT] = ACTIONS(2882), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_union] = ACTIONS(2882), - [anon_sym_pub] = ACTIONS(2882), - [anon_sym_mut] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_go] = ACTIONS(2882), - [anon_sym_spawn] = ACTIONS(2882), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2882), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2882), - [sym_none] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_nil] = ACTIONS(2882), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_DOLLARif] = ACTIONS(2882), - [anon_sym_is] = ACTIONS(2882), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2882), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_select] = ACTIONS(2882), - [anon_sym_STAR_EQ] = ACTIONS(2882), - [anon_sym_SLASH_EQ] = ACTIONS(2882), - [anon_sym_PERCENT_EQ] = ACTIONS(2882), - [anon_sym_LT_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_GT_EQ] = ACTIONS(2882), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2882), - [anon_sym_AMP_EQ] = ACTIONS(2882), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2882), - [anon_sym_PLUS_EQ] = ACTIONS(2882), - [anon_sym_DASH_EQ] = ACTIONS(2882), - [anon_sym_PIPE_EQ] = ACTIONS(2882), - [anon_sym_CARET_EQ] = ACTIONS(2882), - [anon_sym_COLON_EQ] = ACTIONS(2882), - [anon_sym_lock] = ACTIONS(2882), - [anon_sym_rlock] = ACTIONS(2882), - [anon_sym_unsafe] = ACTIONS(2882), - [anon_sym_sql] = ACTIONS(2882), - [sym_int_literal] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2882), - [anon_sym_shared] = ACTIONS(2882), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2882), - [anon_sym_thread] = ACTIONS(2882), - [anon_sym_atomic] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_defer] = ACTIONS(2882), - [anon_sym_goto] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_DOLLARfor] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_asm] = ACTIONS(2882), - [anon_sym_AT_LBRACK] = ACTIONS(2882), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_CR] = ACTIONS(2944), + [anon_sym_CR_LF] = ACTIONS(2944), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_as] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2944), + [anon_sym___global] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_fn] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_GT] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_pub] = ACTIONS(2944), + [anon_sym_mut] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_interface] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_go] = ACTIONS(2944), + [anon_sym_spawn] = ACTIONS(2944), + [anon_sym_json_DOTdecode] = ACTIONS(2944), + [anon_sym_LBRACK2] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_CARET] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2944), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_GT_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_CARET] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_or] = ACTIONS(2944), + [sym_none] = ACTIONS(2944), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [sym_nil] = ACTIONS(2944), + [anon_sym_QMARK_DOT] = ACTIONS(2944), + [anon_sym_POUND_LBRACK] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_DOLLARif] = ACTIONS(2944), + [anon_sym_is] = ACTIONS(2944), + [anon_sym_BANGis] = ACTIONS(2944), + [anon_sym_in] = ACTIONS(2944), + [anon_sym_BANGin] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_select] = ACTIONS(2944), + [anon_sym_STAR_EQ] = ACTIONS(2944), + [anon_sym_SLASH_EQ] = ACTIONS(2944), + [anon_sym_PERCENT_EQ] = ACTIONS(2944), + [anon_sym_LT_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_GT_EQ] = ACTIONS(2944), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2944), + [anon_sym_AMP_EQ] = ACTIONS(2944), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2944), + [anon_sym_PLUS_EQ] = ACTIONS(2944), + [anon_sym_DASH_EQ] = ACTIONS(2944), + [anon_sym_PIPE_EQ] = ACTIONS(2944), + [anon_sym_CARET_EQ] = ACTIONS(2944), + [anon_sym_COLON_EQ] = ACTIONS(2944), + [anon_sym_lock] = ACTIONS(2944), + [anon_sym_rlock] = ACTIONS(2944), + [anon_sym_unsafe] = ACTIONS(2944), + [anon_sym_sql] = ACTIONS(2944), + [sym_int_literal] = ACTIONS(2944), + [sym_float_literal] = ACTIONS(2944), + [sym_rune_literal] = ACTIONS(2944), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_shared] = ACTIONS(2944), + [anon_sym_map_LBRACK] = ACTIONS(2944), + [anon_sym_chan] = ACTIONS(2944), + [anon_sym_thread] = ACTIONS(2944), + [anon_sym_atomic] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_defer] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_DOLLARfor] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym_AT_LBRACK] = ACTIONS(2944), + [sym___double_quote] = ACTIONS(2944), + [sym___single_quote] = ACTIONS(2944), + [sym___c_double_quote] = ACTIONS(2944), + [sym___c_single_quote] = ACTIONS(2944), + [sym___r_double_quote] = ACTIONS(2944), + [sym___r_single_quote] = ACTIONS(2944), }, [875] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_CR] = ACTIONS(2886), - [anon_sym_CR_LF] = ACTIONS(2886), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_EQ] = ACTIONS(2886), - [anon_sym___global] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_EQ] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_pub] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_LT_LT] = ACTIONS(2886), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2886), - [anon_sym_AMP_CARET] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2886), - [anon_sym_POUND_LBRACK] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2886), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_STAR_EQ] = ACTIONS(2886), - [anon_sym_SLASH_EQ] = ACTIONS(2886), - [anon_sym_PERCENT_EQ] = ACTIONS(2886), - [anon_sym_LT_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_GT_EQ] = ACTIONS(2886), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2886), - [anon_sym_AMP_EQ] = ACTIONS(2886), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2886), - [anon_sym_PLUS_EQ] = ACTIONS(2886), - [anon_sym_DASH_EQ] = ACTIONS(2886), - [anon_sym_PIPE_EQ] = ACTIONS(2886), - [anon_sym_CARET_EQ] = ACTIONS(2886), - [anon_sym_COLON_EQ] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_defer] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_DOLLARfor] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_asm] = ACTIONS(2886), - [anon_sym_AT_LBRACK] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_CR] = ACTIONS(2948), + [anon_sym_CR_LF] = ACTIONS(2948), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_as] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2948), + [anon_sym___global] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2948), + [anon_sym_fn] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [anon_sym_LT_EQ] = ACTIONS(2948), + [anon_sym_GT_EQ] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_pub] = ACTIONS(2948), + [anon_sym_mut] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_interface] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2948), + [anon_sym_go] = ACTIONS(2948), + [anon_sym_spawn] = ACTIONS(2948), + [anon_sym_json_DOTdecode] = ACTIONS(2948), + [anon_sym_LBRACK2] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2948), + [anon_sym_CARET] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_LT_LT] = ACTIONS(2948), + [anon_sym_GT_GT] = ACTIONS(2948), + [anon_sym_GT_GT_GT] = ACTIONS(2948), + [anon_sym_AMP_CARET] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_or] = ACTIONS(2948), + [sym_none] = ACTIONS(2948), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [sym_nil] = ACTIONS(2948), + [anon_sym_QMARK_DOT] = ACTIONS(2948), + [anon_sym_POUND_LBRACK] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_DOLLARif] = ACTIONS(2948), + [anon_sym_is] = ACTIONS(2948), + [anon_sym_BANGis] = ACTIONS(2948), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_BANGin] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_select] = ACTIONS(2948), + [anon_sym_STAR_EQ] = ACTIONS(2948), + [anon_sym_SLASH_EQ] = ACTIONS(2948), + [anon_sym_PERCENT_EQ] = ACTIONS(2948), + [anon_sym_LT_LT_EQ] = ACTIONS(2948), + [anon_sym_GT_GT_EQ] = ACTIONS(2948), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2948), + [anon_sym_AMP_EQ] = ACTIONS(2948), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2948), + [anon_sym_PLUS_EQ] = ACTIONS(2948), + [anon_sym_DASH_EQ] = ACTIONS(2948), + [anon_sym_PIPE_EQ] = ACTIONS(2948), + [anon_sym_CARET_EQ] = ACTIONS(2948), + [anon_sym_COLON_EQ] = ACTIONS(2948), + [anon_sym_lock] = ACTIONS(2948), + [anon_sym_rlock] = ACTIONS(2948), + [anon_sym_unsafe] = ACTIONS(2948), + [anon_sym_sql] = ACTIONS(2948), + [sym_int_literal] = ACTIONS(2948), + [sym_float_literal] = ACTIONS(2948), + [sym_rune_literal] = ACTIONS(2948), + [anon_sym_AT] = ACTIONS(2948), + [anon_sym_shared] = ACTIONS(2948), + [anon_sym_map_LBRACK] = ACTIONS(2948), + [anon_sym_chan] = ACTIONS(2948), + [anon_sym_thread] = ACTIONS(2948), + [anon_sym_atomic] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_defer] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_DOLLARfor] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym_AT_LBRACK] = ACTIONS(2948), + [sym___double_quote] = ACTIONS(2948), + [sym___single_quote] = ACTIONS(2948), + [sym___c_double_quote] = ACTIONS(2948), + [sym___c_single_quote] = ACTIONS(2948), + [sym___r_double_quote] = ACTIONS(2948), + [sym___r_single_quote] = ACTIONS(2948), }, [876] = { - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_CR] = ACTIONS(2890), - [anon_sym_CR_LF] = ACTIONS(2890), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2890), - [anon_sym___global] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_union] = ACTIONS(2890), - [anon_sym_pub] = ACTIONS(2890), - [anon_sym_mut] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_go] = ACTIONS(2890), - [anon_sym_spawn] = ACTIONS(2890), - [anon_sym_json_DOTdecode] = ACTIONS(2890), - [anon_sym_LBRACK2] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_CARET] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_or] = ACTIONS(2890), - [sym_none] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_nil] = ACTIONS(2890), - [anon_sym_QMARK_DOT] = ACTIONS(2890), - [anon_sym_POUND_LBRACK] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_DOLLARif] = ACTIONS(2890), - [anon_sym_is] = ACTIONS(2890), - [anon_sym_BANGis] = ACTIONS(2890), - [anon_sym_in] = ACTIONS(2890), - [anon_sym_BANGin] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_select] = ACTIONS(2890), - [anon_sym_STAR_EQ] = ACTIONS(2890), - [anon_sym_SLASH_EQ] = ACTIONS(2890), - [anon_sym_PERCENT_EQ] = ACTIONS(2890), - [anon_sym_LT_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_GT_EQ] = ACTIONS(2890), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2890), - [anon_sym_AMP_EQ] = ACTIONS(2890), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2890), - [anon_sym_PLUS_EQ] = ACTIONS(2890), - [anon_sym_DASH_EQ] = ACTIONS(2890), - [anon_sym_PIPE_EQ] = ACTIONS(2890), - [anon_sym_CARET_EQ] = ACTIONS(2890), - [anon_sym_COLON_EQ] = ACTIONS(2890), - [anon_sym_lock] = ACTIONS(2890), - [anon_sym_rlock] = ACTIONS(2890), - [anon_sym_unsafe] = ACTIONS(2890), - [anon_sym_sql] = ACTIONS(2890), - [sym_int_literal] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), - [sym_rune_literal] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2890), - [anon_sym_shared] = ACTIONS(2890), - [anon_sym_map_LBRACK] = ACTIONS(2890), - [anon_sym_chan] = ACTIONS(2890), - [anon_sym_thread] = ACTIONS(2890), - [anon_sym_atomic] = ACTIONS(2890), - [anon_sym_assert] = ACTIONS(2890), - [anon_sym_defer] = ACTIONS(2890), - [anon_sym_goto] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_DOLLARfor] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_asm] = ACTIONS(2890), - [anon_sym_AT_LBRACK] = ACTIONS(2890), - [sym___double_quote] = ACTIONS(2890), - [sym___single_quote] = ACTIONS(2890), - [sym___c_double_quote] = ACTIONS(2890), - [sym___c_single_quote] = ACTIONS(2890), - [sym___r_double_quote] = ACTIONS(2890), - [sym___r_single_quote] = ACTIONS(2890), + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LF] = ACTIONS(2952), + [anon_sym_CR] = ACTIONS(2952), + [anon_sym_CR_LF] = ACTIONS(2952), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_as] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2952), + [anon_sym___global] = ACTIONS(2952), + [anon_sym_type] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2952), + [anon_sym_fn] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_PERCENT] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2952), + [anon_sym_GT] = ACTIONS(2952), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_pub] = ACTIONS(2952), + [anon_sym_mut] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_go] = ACTIONS(2952), + [anon_sym_spawn] = ACTIONS(2952), + [anon_sym_json_DOTdecode] = ACTIONS(2952), + [anon_sym_LBRACK2] = ACTIONS(2952), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_LT_DASH] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2952), + [anon_sym_GT_GT] = ACTIONS(2952), + [anon_sym_GT_GT_GT] = ACTIONS(2952), + [anon_sym_AMP_CARET] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_or] = ACTIONS(2952), + [sym_none] = ACTIONS(2952), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [sym_nil] = ACTIONS(2952), + [anon_sym_QMARK_DOT] = ACTIONS(2952), + [anon_sym_POUND_LBRACK] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_DOLLARif] = ACTIONS(2952), + [anon_sym_is] = ACTIONS(2952), + [anon_sym_BANGis] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(2952), + [anon_sym_BANGin] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_select] = ACTIONS(2952), + [anon_sym_STAR_EQ] = ACTIONS(2952), + [anon_sym_SLASH_EQ] = ACTIONS(2952), + [anon_sym_PERCENT_EQ] = ACTIONS(2952), + [anon_sym_LT_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_AMP_EQ] = ACTIONS(2952), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2952), + [anon_sym_PLUS_EQ] = ACTIONS(2952), + [anon_sym_DASH_EQ] = ACTIONS(2952), + [anon_sym_PIPE_EQ] = ACTIONS(2952), + [anon_sym_CARET_EQ] = ACTIONS(2952), + [anon_sym_COLON_EQ] = ACTIONS(2952), + [anon_sym_lock] = ACTIONS(2952), + [anon_sym_rlock] = ACTIONS(2952), + [anon_sym_unsafe] = ACTIONS(2952), + [anon_sym_sql] = ACTIONS(2952), + [sym_int_literal] = ACTIONS(2952), + [sym_float_literal] = ACTIONS(2952), + [sym_rune_literal] = ACTIONS(2952), + [anon_sym_AT] = ACTIONS(2952), + [anon_sym_shared] = ACTIONS(2952), + [anon_sym_map_LBRACK] = ACTIONS(2952), + [anon_sym_chan] = ACTIONS(2952), + [anon_sym_thread] = ACTIONS(2952), + [anon_sym_atomic] = ACTIONS(2952), + [anon_sym_assert] = ACTIONS(2952), + [anon_sym_defer] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_DOLLARfor] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym_AT_LBRACK] = ACTIONS(2952), + [sym___double_quote] = ACTIONS(2952), + [sym___single_quote] = ACTIONS(2952), + [sym___c_double_quote] = ACTIONS(2952), + [sym___c_single_quote] = ACTIONS(2952), + [sym___r_double_quote] = ACTIONS(2952), + [sym___r_single_quote] = ACTIONS(2952), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LF] = ACTIONS(2894), - [anon_sym_CR] = ACTIONS(2894), - [anon_sym_CR_LF] = ACTIONS(2894), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym___global] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [anon_sym_pub] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2894), - [anon_sym_AMP_CARET] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2894), - [anon_sym_POUND_LBRACK] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_STAR_EQ] = ACTIONS(2894), - [anon_sym_SLASH_EQ] = ACTIONS(2894), - [anon_sym_PERCENT_EQ] = ACTIONS(2894), - [anon_sym_LT_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_GT_EQ] = ACTIONS(2894), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2894), - [anon_sym_AMP_EQ] = ACTIONS(2894), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2894), - [anon_sym_PLUS_EQ] = ACTIONS(2894), - [anon_sym_DASH_EQ] = ACTIONS(2894), - [anon_sym_PIPE_EQ] = ACTIONS(2894), - [anon_sym_CARET_EQ] = ACTIONS(2894), - [anon_sym_COLON_EQ] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_defer] = ACTIONS(2894), - [anon_sym_goto] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_DOLLARfor] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_asm] = ACTIONS(2894), - [anon_sym_AT_LBRACK] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LF] = ACTIONS(2956), + [anon_sym_CR] = ACTIONS(2956), + [anon_sym_CR_LF] = ACTIONS(2956), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2956), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym___global] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_fn] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_EQ_EQ] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2956), + [anon_sym_GT_EQ] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_pub] = ACTIONS(2956), + [anon_sym_mut] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_go] = ACTIONS(2956), + [anon_sym_spawn] = ACTIONS(2956), + [anon_sym_json_DOTdecode] = ACTIONS(2956), + [anon_sym_LBRACK2] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_GT_GT_GT] = ACTIONS(2956), + [anon_sym_AMP_CARET] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [sym_none] = ACTIONS(2956), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [sym_nil] = ACTIONS(2956), + [anon_sym_QMARK_DOT] = ACTIONS(2956), + [anon_sym_POUND_LBRACK] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_DOLLARif] = ACTIONS(2956), + [anon_sym_is] = ACTIONS(2956), + [anon_sym_BANGis] = ACTIONS(2956), + [anon_sym_in] = ACTIONS(2956), + [anon_sym_BANGin] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_select] = ACTIONS(2956), + [anon_sym_STAR_EQ] = ACTIONS(2956), + [anon_sym_SLASH_EQ] = ACTIONS(2956), + [anon_sym_PERCENT_EQ] = ACTIONS(2956), + [anon_sym_LT_LT_EQ] = ACTIONS(2956), + [anon_sym_GT_GT_EQ] = ACTIONS(2956), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2956), + [anon_sym_AMP_EQ] = ACTIONS(2956), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2956), + [anon_sym_PLUS_EQ] = ACTIONS(2956), + [anon_sym_DASH_EQ] = ACTIONS(2956), + [anon_sym_PIPE_EQ] = ACTIONS(2956), + [anon_sym_CARET_EQ] = ACTIONS(2956), + [anon_sym_COLON_EQ] = ACTIONS(2956), + [anon_sym_lock] = ACTIONS(2956), + [anon_sym_rlock] = ACTIONS(2956), + [anon_sym_unsafe] = ACTIONS(2956), + [anon_sym_sql] = ACTIONS(2956), + [sym_int_literal] = ACTIONS(2956), + [sym_float_literal] = ACTIONS(2956), + [sym_rune_literal] = ACTIONS(2956), + [anon_sym_AT] = ACTIONS(2956), + [anon_sym_shared] = ACTIONS(2956), + [anon_sym_map_LBRACK] = ACTIONS(2956), + [anon_sym_chan] = ACTIONS(2956), + [anon_sym_thread] = ACTIONS(2956), + [anon_sym_atomic] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_defer] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_DOLLARfor] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym_AT_LBRACK] = ACTIONS(2956), + [sym___double_quote] = ACTIONS(2956), + [sym___single_quote] = ACTIONS(2956), + [sym___c_double_quote] = ACTIONS(2956), + [sym___c_single_quote] = ACTIONS(2956), + [sym___r_double_quote] = ACTIONS(2956), + [sym___r_single_quote] = ACTIONS(2956), }, [878] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_LF] = ACTIONS(2898), - [anon_sym_CR] = ACTIONS(2898), - [anon_sym_CR_LF] = ACTIONS(2898), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym___global] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_pub] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2898), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2898), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2898), - [anon_sym_AMP_CARET] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2898), - [anon_sym_POUND_LBRACK] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2898), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_STAR_EQ] = ACTIONS(2898), - [anon_sym_SLASH_EQ] = ACTIONS(2898), - [anon_sym_PERCENT_EQ] = ACTIONS(2898), - [anon_sym_LT_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_GT_EQ] = ACTIONS(2898), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2898), - [anon_sym_AMP_EQ] = ACTIONS(2898), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2898), - [anon_sym_PLUS_EQ] = ACTIONS(2898), - [anon_sym_DASH_EQ] = ACTIONS(2898), - [anon_sym_PIPE_EQ] = ACTIONS(2898), - [anon_sym_CARET_EQ] = ACTIONS(2898), - [anon_sym_COLON_EQ] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), - [sym_rune_literal] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2898), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_defer] = ACTIONS(2898), - [anon_sym_goto] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_DOLLARfor] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [anon_sym_asm] = ACTIONS(2898), - [anon_sym_AT_LBRACK] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2898), - [sym___single_quote] = ACTIONS(2898), - [sym___c_double_quote] = ACTIONS(2898), - [sym___c_single_quote] = ACTIONS(2898), - [sym___r_double_quote] = ACTIONS(2898), - [sym___r_single_quote] = ACTIONS(2898), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LF] = ACTIONS(2960), + [anon_sym_CR] = ACTIONS(2960), + [anon_sym_CR_LF] = ACTIONS(2960), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2960), + [anon_sym_as] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym___global] = ACTIONS(2960), + [anon_sym_type] = ACTIONS(2960), + [anon_sym_PIPE] = ACTIONS(2960), + [anon_sym_fn] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_GT] = ACTIONS(2960), + [anon_sym_EQ_EQ] = ACTIONS(2960), + [anon_sym_BANG_EQ] = ACTIONS(2960), + [anon_sym_LT_EQ] = ACTIONS(2960), + [anon_sym_GT_EQ] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_struct] = ACTIONS(2960), + [anon_sym_union] = ACTIONS(2960), + [anon_sym_pub] = ACTIONS(2960), + [anon_sym_mut] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2960), + [anon_sym_QMARK] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2960), + [anon_sym_go] = ACTIONS(2960), + [anon_sym_spawn] = ACTIONS(2960), + [anon_sym_json_DOTdecode] = ACTIONS(2960), + [anon_sym_LBRACK2] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [anon_sym_CARET] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2960), + [anon_sym_LT_DASH] = ACTIONS(2960), + [anon_sym_LT_LT] = ACTIONS(2960), + [anon_sym_GT_GT] = ACTIONS(2960), + [anon_sym_GT_GT_GT] = ACTIONS(2960), + [anon_sym_AMP_CARET] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_PIPE_PIPE] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2960), + [sym_none] = ACTIONS(2960), + [sym_true] = ACTIONS(2960), + [sym_false] = ACTIONS(2960), + [sym_nil] = ACTIONS(2960), + [anon_sym_QMARK_DOT] = ACTIONS(2960), + [anon_sym_POUND_LBRACK] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_DOLLARif] = ACTIONS(2960), + [anon_sym_is] = ACTIONS(2960), + [anon_sym_BANGis] = ACTIONS(2960), + [anon_sym_in] = ACTIONS(2960), + [anon_sym_BANGin] = ACTIONS(2960), + [anon_sym_match] = ACTIONS(2960), + [anon_sym_select] = ACTIONS(2960), + [anon_sym_STAR_EQ] = ACTIONS(2960), + [anon_sym_SLASH_EQ] = ACTIONS(2960), + [anon_sym_PERCENT_EQ] = ACTIONS(2960), + [anon_sym_LT_LT_EQ] = ACTIONS(2960), + [anon_sym_GT_GT_EQ] = ACTIONS(2960), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2960), + [anon_sym_AMP_EQ] = ACTIONS(2960), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2960), + [anon_sym_PLUS_EQ] = ACTIONS(2960), + [anon_sym_DASH_EQ] = ACTIONS(2960), + [anon_sym_PIPE_EQ] = ACTIONS(2960), + [anon_sym_CARET_EQ] = ACTIONS(2960), + [anon_sym_COLON_EQ] = ACTIONS(2960), + [anon_sym_lock] = ACTIONS(2960), + [anon_sym_rlock] = ACTIONS(2960), + [anon_sym_unsafe] = ACTIONS(2960), + [anon_sym_sql] = ACTIONS(2960), + [sym_int_literal] = ACTIONS(2960), + [sym_float_literal] = ACTIONS(2960), + [sym_rune_literal] = ACTIONS(2960), + [anon_sym_AT] = ACTIONS(2960), + [anon_sym_shared] = ACTIONS(2960), + [anon_sym_map_LBRACK] = ACTIONS(2960), + [anon_sym_chan] = ACTIONS(2960), + [anon_sym_thread] = ACTIONS(2960), + [anon_sym_atomic] = ACTIONS(2960), + [anon_sym_assert] = ACTIONS(2960), + [anon_sym_defer] = ACTIONS(2960), + [anon_sym_goto] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_DOLLARfor] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [anon_sym_asm] = ACTIONS(2960), + [anon_sym_AT_LBRACK] = ACTIONS(2960), + [sym___double_quote] = ACTIONS(2960), + [sym___single_quote] = ACTIONS(2960), + [sym___c_double_quote] = ACTIONS(2960), + [sym___c_single_quote] = ACTIONS(2960), + [sym___r_double_quote] = ACTIONS(2960), + [sym___r_single_quote] = ACTIONS(2960), }, [879] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LF] = ACTIONS(2902), - [anon_sym_CR] = ACTIONS(2902), - [anon_sym_CR_LF] = ACTIONS(2902), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym___global] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2902), - [anon_sym_BANG_EQ] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [anon_sym_pub] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2902), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2902), - [anon_sym_AMP_CARET] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2902), - [anon_sym_POUND_LBRACK] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2902), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_STAR_EQ] = ACTIONS(2902), - [anon_sym_SLASH_EQ] = ACTIONS(2902), - [anon_sym_PERCENT_EQ] = ACTIONS(2902), - [anon_sym_LT_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_GT_EQ] = ACTIONS(2902), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2902), - [anon_sym_AMP_EQ] = ACTIONS(2902), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2902), - [anon_sym_PLUS_EQ] = ACTIONS(2902), - [anon_sym_DASH_EQ] = ACTIONS(2902), - [anon_sym_PIPE_EQ] = ACTIONS(2902), - [anon_sym_CARET_EQ] = ACTIONS(2902), - [anon_sym_COLON_EQ] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [anon_sym_assert] = ACTIONS(2902), - [anon_sym_defer] = ACTIONS(2902), - [anon_sym_goto] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_DOLLARfor] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_asm] = ACTIONS(2902), - [anon_sym_AT_LBRACK] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_LF] = ACTIONS(2964), + [anon_sym_CR] = ACTIONS(2964), + [anon_sym_CR_LF] = ACTIONS(2964), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_const] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym___global] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2964), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2964), + [anon_sym_union] = ACTIONS(2964), + [anon_sym_pub] = ACTIONS(2964), + [anon_sym_mut] = ACTIONS(2964), + [anon_sym_enum] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_go] = ACTIONS(2964), + [anon_sym_spawn] = ACTIONS(2964), + [anon_sym_json_DOTdecode] = ACTIONS(2964), + [anon_sym_LBRACK2] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_LT_LT] = ACTIONS(2964), + [anon_sym_GT_GT] = ACTIONS(2964), + [anon_sym_GT_GT_GT] = ACTIONS(2964), + [anon_sym_AMP_CARET] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [sym_none] = ACTIONS(2964), + [sym_true] = ACTIONS(2964), + [sym_false] = ACTIONS(2964), + [sym_nil] = ACTIONS(2964), + [anon_sym_QMARK_DOT] = ACTIONS(2964), + [anon_sym_POUND_LBRACK] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_DOLLARif] = ACTIONS(2964), + [anon_sym_is] = ACTIONS(2964), + [anon_sym_BANGis] = ACTIONS(2964), + [anon_sym_in] = ACTIONS(2964), + [anon_sym_BANGin] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_select] = ACTIONS(2964), + [anon_sym_STAR_EQ] = ACTIONS(2964), + [anon_sym_SLASH_EQ] = ACTIONS(2964), + [anon_sym_PERCENT_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_GT_EQ] = ACTIONS(2964), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2964), + [anon_sym_AMP_EQ] = ACTIONS(2964), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2964), + [anon_sym_PLUS_EQ] = ACTIONS(2964), + [anon_sym_DASH_EQ] = ACTIONS(2964), + [anon_sym_PIPE_EQ] = ACTIONS(2964), + [anon_sym_CARET_EQ] = ACTIONS(2964), + [anon_sym_COLON_EQ] = ACTIONS(2964), + [anon_sym_lock] = ACTIONS(2964), + [anon_sym_rlock] = ACTIONS(2964), + [anon_sym_unsafe] = ACTIONS(2964), + [anon_sym_sql] = ACTIONS(2964), + [sym_int_literal] = ACTIONS(2964), + [sym_float_literal] = ACTIONS(2964), + [sym_rune_literal] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_shared] = ACTIONS(2964), + [anon_sym_map_LBRACK] = ACTIONS(2964), + [anon_sym_chan] = ACTIONS(2964), + [anon_sym_thread] = ACTIONS(2964), + [anon_sym_atomic] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_defer] = ACTIONS(2964), + [anon_sym_goto] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_DOLLARfor] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_POUND] = ACTIONS(2964), + [anon_sym_asm] = ACTIONS(2964), + [anon_sym_AT_LBRACK] = ACTIONS(2964), + [sym___double_quote] = ACTIONS(2964), + [sym___single_quote] = ACTIONS(2964), + [sym___c_double_quote] = ACTIONS(2964), + [sym___c_single_quote] = ACTIONS(2964), + [sym___r_double_quote] = ACTIONS(2964), + [sym___r_single_quote] = ACTIONS(2964), }, [880] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_CR] = ACTIONS(2906), - [anon_sym_CR_LF] = ACTIONS(2906), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym___global] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [anon_sym_pub] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_AMP_CARET] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2906), - [anon_sym_POUND_LBRACK] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_STAR_EQ] = ACTIONS(2906), - [anon_sym_SLASH_EQ] = ACTIONS(2906), - [anon_sym_PERCENT_EQ] = ACTIONS(2906), - [anon_sym_LT_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_GT_EQ] = ACTIONS(2906), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2906), - [anon_sym_AMP_EQ] = ACTIONS(2906), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2906), - [anon_sym_PLUS_EQ] = ACTIONS(2906), - [anon_sym_DASH_EQ] = ACTIONS(2906), - [anon_sym_PIPE_EQ] = ACTIONS(2906), - [anon_sym_CARET_EQ] = ACTIONS(2906), - [anon_sym_COLON_EQ] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_defer] = ACTIONS(2906), - [anon_sym_goto] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_DOLLARfor] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_asm] = ACTIONS(2906), - [anon_sym_AT_LBRACK] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(2968), + [anon_sym_CR] = ACTIONS(2968), + [anon_sym_CR_LF] = ACTIONS(2968), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2968), + [anon_sym_as] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym___global] = ACTIONS(2968), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_fn] = ACTIONS(2968), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2968), + [anon_sym_PERCENT] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2968), + [anon_sym_EQ_EQ] = ACTIONS(2968), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_LT_EQ] = ACTIONS(2968), + [anon_sym_GT_EQ] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2968), + [anon_sym_union] = ACTIONS(2968), + [anon_sym_pub] = ACTIONS(2968), + [anon_sym_mut] = ACTIONS(2968), + [anon_sym_enum] = ACTIONS(2968), + [anon_sym_interface] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_QMARK] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_go] = ACTIONS(2968), + [anon_sym_spawn] = ACTIONS(2968), + [anon_sym_json_DOTdecode] = ACTIONS(2968), + [anon_sym_LBRACK2] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_LT_DASH] = ACTIONS(2968), + [anon_sym_LT_LT] = ACTIONS(2968), + [anon_sym_GT_GT] = ACTIONS(2968), + [anon_sym_GT_GT_GT] = ACTIONS(2968), + [anon_sym_AMP_CARET] = ACTIONS(2968), + [anon_sym_AMP_AMP] = ACTIONS(2968), + [anon_sym_PIPE_PIPE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2968), + [sym_none] = ACTIONS(2968), + [sym_true] = ACTIONS(2968), + [sym_false] = ACTIONS(2968), + [sym_nil] = ACTIONS(2968), + [anon_sym_QMARK_DOT] = ACTIONS(2968), + [anon_sym_POUND_LBRACK] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_DOLLARif] = ACTIONS(2968), + [anon_sym_is] = ACTIONS(2968), + [anon_sym_BANGis] = ACTIONS(2968), + [anon_sym_in] = ACTIONS(2968), + [anon_sym_BANGin] = ACTIONS(2968), + [anon_sym_match] = ACTIONS(2968), + [anon_sym_select] = ACTIONS(2968), + [anon_sym_STAR_EQ] = ACTIONS(2968), + [anon_sym_SLASH_EQ] = ACTIONS(2968), + [anon_sym_PERCENT_EQ] = ACTIONS(2968), + [anon_sym_LT_LT_EQ] = ACTIONS(2968), + [anon_sym_GT_GT_EQ] = ACTIONS(2968), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2968), + [anon_sym_AMP_EQ] = ACTIONS(2968), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2968), + [anon_sym_PLUS_EQ] = ACTIONS(2968), + [anon_sym_DASH_EQ] = ACTIONS(2968), + [anon_sym_PIPE_EQ] = ACTIONS(2968), + [anon_sym_CARET_EQ] = ACTIONS(2968), + [anon_sym_COLON_EQ] = ACTIONS(2968), + [anon_sym_lock] = ACTIONS(2968), + [anon_sym_rlock] = ACTIONS(2968), + [anon_sym_unsafe] = ACTIONS(2968), + [anon_sym_sql] = ACTIONS(2968), + [sym_int_literal] = ACTIONS(2968), + [sym_float_literal] = ACTIONS(2968), + [sym_rune_literal] = ACTIONS(2968), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_shared] = ACTIONS(2968), + [anon_sym_map_LBRACK] = ACTIONS(2968), + [anon_sym_chan] = ACTIONS(2968), + [anon_sym_thread] = ACTIONS(2968), + [anon_sym_atomic] = ACTIONS(2968), + [anon_sym_assert] = ACTIONS(2968), + [anon_sym_defer] = ACTIONS(2968), + [anon_sym_goto] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_DOLLARfor] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_POUND] = ACTIONS(2968), + [anon_sym_asm] = ACTIONS(2968), + [anon_sym_AT_LBRACK] = ACTIONS(2968), + [sym___double_quote] = ACTIONS(2968), + [sym___single_quote] = ACTIONS(2968), + [sym___c_double_quote] = ACTIONS(2968), + [sym___c_single_quote] = ACTIONS(2968), + [sym___r_double_quote] = ACTIONS(2968), + [sym___r_single_quote] = ACTIONS(2968), }, [881] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(2910), - [anon_sym_CR] = ACTIONS(2910), - [anon_sym_CR_LF] = ACTIONS(2910), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym___global] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [anon_sym_pub] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2910), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2910), - [anon_sym_AMP_CARET] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_STAR_EQ] = ACTIONS(2910), - [anon_sym_SLASH_EQ] = ACTIONS(2910), - [anon_sym_PERCENT_EQ] = ACTIONS(2910), - [anon_sym_LT_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2910), - [anon_sym_AMP_EQ] = ACTIONS(2910), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2910), - [anon_sym_PLUS_EQ] = ACTIONS(2910), - [anon_sym_DASH_EQ] = ACTIONS(2910), - [anon_sym_PIPE_EQ] = ACTIONS(2910), - [anon_sym_CARET_EQ] = ACTIONS(2910), - [anon_sym_COLON_EQ] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [anon_sym_assert] = ACTIONS(2910), - [anon_sym_defer] = ACTIONS(2910), - [anon_sym_goto] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_DOLLARfor] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_asm] = ACTIONS(2910), - [anon_sym_AT_LBRACK] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LF] = ACTIONS(2972), + [anon_sym_CR] = ACTIONS(2972), + [anon_sym_CR_LF] = ACTIONS(2972), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2972), + [anon_sym_as] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_const] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym___global] = ACTIONS(2972), + [anon_sym_type] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_fn] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_LT_EQ] = ACTIONS(2972), + [anon_sym_GT_EQ] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2972), + [anon_sym_union] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(2972), + [anon_sym_mut] = ACTIONS(2972), + [anon_sym_enum] = ACTIONS(2972), + [anon_sym_interface] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_QMARK] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_go] = ACTIONS(2972), + [anon_sym_spawn] = ACTIONS(2972), + [anon_sym_json_DOTdecode] = ACTIONS(2972), + [anon_sym_LBRACK2] = ACTIONS(2972), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_LT_DASH] = ACTIONS(2972), + [anon_sym_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT] = ACTIONS(2972), + [anon_sym_GT_GT_GT] = ACTIONS(2972), + [anon_sym_AMP_CARET] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2972), + [sym_none] = ACTIONS(2972), + [sym_true] = ACTIONS(2972), + [sym_false] = ACTIONS(2972), + [sym_nil] = ACTIONS(2972), + [anon_sym_QMARK_DOT] = ACTIONS(2972), + [anon_sym_POUND_LBRACK] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_DOLLARif] = ACTIONS(2972), + [anon_sym_is] = ACTIONS(2972), + [anon_sym_BANGis] = ACTIONS(2972), + [anon_sym_in] = ACTIONS(2972), + [anon_sym_BANGin] = ACTIONS(2972), + [anon_sym_match] = ACTIONS(2972), + [anon_sym_select] = ACTIONS(2972), + [anon_sym_STAR_EQ] = ACTIONS(2972), + [anon_sym_SLASH_EQ] = ACTIONS(2972), + [anon_sym_PERCENT_EQ] = ACTIONS(2972), + [anon_sym_LT_LT_EQ] = ACTIONS(2972), + [anon_sym_GT_GT_EQ] = ACTIONS(2972), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2972), + [anon_sym_AMP_EQ] = ACTIONS(2972), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2972), + [anon_sym_PLUS_EQ] = ACTIONS(2972), + [anon_sym_DASH_EQ] = ACTIONS(2972), + [anon_sym_PIPE_EQ] = ACTIONS(2972), + [anon_sym_CARET_EQ] = ACTIONS(2972), + [anon_sym_COLON_EQ] = ACTIONS(2972), + [anon_sym_lock] = ACTIONS(2972), + [anon_sym_rlock] = ACTIONS(2972), + [anon_sym_unsafe] = ACTIONS(2972), + [anon_sym_sql] = ACTIONS(2972), + [sym_int_literal] = ACTIONS(2972), + [sym_float_literal] = ACTIONS(2972), + [sym_rune_literal] = ACTIONS(2972), + [anon_sym_AT] = ACTIONS(2972), + [anon_sym_shared] = ACTIONS(2972), + [anon_sym_map_LBRACK] = ACTIONS(2972), + [anon_sym_chan] = ACTIONS(2972), + [anon_sym_thread] = ACTIONS(2972), + [anon_sym_atomic] = ACTIONS(2972), + [anon_sym_assert] = ACTIONS(2972), + [anon_sym_defer] = ACTIONS(2972), + [anon_sym_goto] = ACTIONS(2972), + [anon_sym_break] = ACTIONS(2972), + [anon_sym_continue] = ACTIONS(2972), + [anon_sym_return] = ACTIONS(2972), + [anon_sym_DOLLARfor] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2972), + [anon_sym_POUND] = ACTIONS(2972), + [anon_sym_asm] = ACTIONS(2972), + [anon_sym_AT_LBRACK] = ACTIONS(2972), + [sym___double_quote] = ACTIONS(2972), + [sym___single_quote] = ACTIONS(2972), + [sym___c_double_quote] = ACTIONS(2972), + [sym___c_single_quote] = ACTIONS(2972), + [sym___r_double_quote] = ACTIONS(2972), + [sym___r_single_quote] = ACTIONS(2972), }, [882] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_EQ] = ACTIONS(2914), - [anon_sym___global] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_STAR_EQ] = ACTIONS(2914), - [anon_sym_SLASH_EQ] = ACTIONS(2914), - [anon_sym_PERCENT_EQ] = ACTIONS(2914), - [anon_sym_LT_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), - [anon_sym_AMP_EQ] = ACTIONS(2914), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), - [anon_sym_PLUS_EQ] = ACTIONS(2914), - [anon_sym_DASH_EQ] = ACTIONS(2914), - [anon_sym_PIPE_EQ] = ACTIONS(2914), - [anon_sym_CARET_EQ] = ACTIONS(2914), - [anon_sym_COLON_EQ] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [anon_sym_assert] = ACTIONS(2914), - [anon_sym_defer] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_DOLLARfor] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_asm] = ACTIONS(2914), - [anon_sym_AT_LBRACK] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), + [ts_builtin_sym_end] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2976), + [anon_sym_LF] = ACTIONS(2976), + [anon_sym_CR] = ACTIONS(2976), + [anon_sym_CR_LF] = ACTIONS(2976), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2976), + [anon_sym_as] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym_EQ] = ACTIONS(2976), + [anon_sym___global] = ACTIONS(2976), + [anon_sym_type] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2976), + [anon_sym_fn] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2976), + [anon_sym_PERCENT] = ACTIONS(2976), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_GT] = ACTIONS(2976), + [anon_sym_EQ_EQ] = ACTIONS(2976), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_LT_EQ] = ACTIONS(2976), + [anon_sym_GT_EQ] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_pub] = ACTIONS(2976), + [anon_sym_mut] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_interface] = ACTIONS(2976), + [anon_sym_PLUS_PLUS] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2976), + [anon_sym_QMARK] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_go] = ACTIONS(2976), + [anon_sym_spawn] = ACTIONS(2976), + [anon_sym_json_DOTdecode] = ACTIONS(2976), + [anon_sym_LBRACK2] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_CARET] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_LT_DASH] = ACTIONS(2976), + [anon_sym_LT_LT] = ACTIONS(2976), + [anon_sym_GT_GT] = ACTIONS(2976), + [anon_sym_GT_GT_GT] = ACTIONS(2976), + [anon_sym_AMP_CARET] = ACTIONS(2976), + [anon_sym_AMP_AMP] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2976), + [sym_none] = ACTIONS(2976), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [sym_nil] = ACTIONS(2976), + [anon_sym_QMARK_DOT] = ACTIONS(2976), + [anon_sym_POUND_LBRACK] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_DOLLARif] = ACTIONS(2976), + [anon_sym_is] = ACTIONS(2976), + [anon_sym_BANGis] = ACTIONS(2976), + [anon_sym_in] = ACTIONS(2976), + [anon_sym_BANGin] = ACTIONS(2976), + [anon_sym_match] = ACTIONS(2976), + [anon_sym_select] = ACTIONS(2976), + [anon_sym_STAR_EQ] = ACTIONS(2976), + [anon_sym_SLASH_EQ] = ACTIONS(2976), + [anon_sym_PERCENT_EQ] = ACTIONS(2976), + [anon_sym_LT_LT_EQ] = ACTIONS(2976), + [anon_sym_GT_GT_EQ] = ACTIONS(2976), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2976), + [anon_sym_AMP_EQ] = ACTIONS(2976), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2976), + [anon_sym_PLUS_EQ] = ACTIONS(2976), + [anon_sym_DASH_EQ] = ACTIONS(2976), + [anon_sym_PIPE_EQ] = ACTIONS(2976), + [anon_sym_CARET_EQ] = ACTIONS(2976), + [anon_sym_COLON_EQ] = ACTIONS(2976), + [anon_sym_lock] = ACTIONS(2976), + [anon_sym_rlock] = ACTIONS(2976), + [anon_sym_unsafe] = ACTIONS(2976), + [anon_sym_sql] = ACTIONS(2976), + [sym_int_literal] = ACTIONS(2976), + [sym_float_literal] = ACTIONS(2976), + [sym_rune_literal] = ACTIONS(2976), + [anon_sym_AT] = ACTIONS(2976), + [anon_sym_shared] = ACTIONS(2976), + [anon_sym_map_LBRACK] = ACTIONS(2976), + [anon_sym_chan] = ACTIONS(2976), + [anon_sym_thread] = ACTIONS(2976), + [anon_sym_atomic] = ACTIONS(2976), + [anon_sym_assert] = ACTIONS(2976), + [anon_sym_defer] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_DOLLARfor] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym_AT_LBRACK] = ACTIONS(2976), + [sym___double_quote] = ACTIONS(2976), + [sym___single_quote] = ACTIONS(2976), + [sym___c_double_quote] = ACTIONS(2976), + [sym___c_single_quote] = ACTIONS(2976), + [sym___r_double_quote] = ACTIONS(2976), + [sym___r_single_quote] = ACTIONS(2976), }, [883] = { - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(2918), - [anon_sym___global] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_pub] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_STAR_EQ] = ACTIONS(2918), - [anon_sym_SLASH_EQ] = ACTIONS(2918), - [anon_sym_PERCENT_EQ] = ACTIONS(2918), - [anon_sym_LT_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), - [anon_sym_AMP_EQ] = ACTIONS(2918), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), - [anon_sym_PLUS_EQ] = ACTIONS(2918), - [anon_sym_DASH_EQ] = ACTIONS(2918), - [anon_sym_PIPE_EQ] = ACTIONS(2918), - [anon_sym_CARET_EQ] = ACTIONS(2918), - [anon_sym_COLON_EQ] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_defer] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_DOLLARfor] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_asm] = ACTIONS(2918), - [anon_sym_AT_LBRACK] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_CR] = ACTIONS(2980), + [anon_sym_CR_LF] = ACTIONS(2980), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2980), + [anon_sym_as] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym___global] = ACTIONS(2980), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_pub] = ACTIONS(2980), + [anon_sym_mut] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_go] = ACTIONS(2980), + [anon_sym_spawn] = ACTIONS(2980), + [anon_sym_json_DOTdecode] = ACTIONS(2980), + [anon_sym_LBRACK2] = ACTIONS(2980), + [anon_sym_TILDE] = ACTIONS(2980), + [anon_sym_CARET] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2980), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_GT_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_CARET] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2980), + [sym_none] = ACTIONS(2980), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [sym_nil] = ACTIONS(2980), + [anon_sym_QMARK_DOT] = ACTIONS(2980), + [anon_sym_POUND_LBRACK] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_DOLLARif] = ACTIONS(2980), + [anon_sym_is] = ACTIONS(2980), + [anon_sym_BANGis] = ACTIONS(2980), + [anon_sym_in] = ACTIONS(2980), + [anon_sym_BANGin] = ACTIONS(2980), + [anon_sym_match] = ACTIONS(2980), + [anon_sym_select] = ACTIONS(2980), + [anon_sym_STAR_EQ] = ACTIONS(2980), + [anon_sym_SLASH_EQ] = ACTIONS(2980), + [anon_sym_PERCENT_EQ] = ACTIONS(2980), + [anon_sym_LT_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_GT_EQ] = ACTIONS(2980), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2980), + [anon_sym_AMP_EQ] = ACTIONS(2980), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(2980), + [anon_sym_DASH_EQ] = ACTIONS(2980), + [anon_sym_PIPE_EQ] = ACTIONS(2980), + [anon_sym_CARET_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_lock] = ACTIONS(2980), + [anon_sym_rlock] = ACTIONS(2980), + [anon_sym_unsafe] = ACTIONS(2980), + [anon_sym_sql] = ACTIONS(2980), + [sym_int_literal] = ACTIONS(2980), + [sym_float_literal] = ACTIONS(2980), + [sym_rune_literal] = ACTIONS(2980), + [anon_sym_AT] = ACTIONS(2980), + [anon_sym_shared] = ACTIONS(2980), + [anon_sym_map_LBRACK] = ACTIONS(2980), + [anon_sym_chan] = ACTIONS(2980), + [anon_sym_thread] = ACTIONS(2980), + [anon_sym_atomic] = ACTIONS(2980), + [anon_sym_assert] = ACTIONS(2980), + [anon_sym_defer] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_DOLLARfor] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym_AT_LBRACK] = ACTIONS(2980), + [sym___double_quote] = ACTIONS(2980), + [sym___single_quote] = ACTIONS(2980), + [sym___c_double_quote] = ACTIONS(2980), + [sym___c_single_quote] = ACTIONS(2980), + [sym___r_double_quote] = ACTIONS(2980), + [sym___r_single_quote] = ACTIONS(2980), }, [884] = { - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2922), - [anon_sym_CR] = ACTIONS(2922), - [anon_sym_CR_LF] = ACTIONS(2922), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_as] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym___global] = ACTIONS(2922), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_fn] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2922), - [anon_sym_LT_EQ] = ACTIONS(2922), - [anon_sym_GT_EQ] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2922), - [anon_sym_pub] = ACTIONS(2922), - [anon_sym_mut] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_go] = ACTIONS(2922), - [anon_sym_spawn] = ACTIONS(2922), - [anon_sym_json_DOTdecode] = ACTIONS(2922), - [anon_sym_LBRACK2] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_GT_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_CARET] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2922), - [sym_none] = ACTIONS(2922), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_nil] = ACTIONS(2922), - [anon_sym_QMARK_DOT] = ACTIONS(2922), - [anon_sym_POUND_LBRACK] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_DOLLARif] = ACTIONS(2922), - [anon_sym_is] = ACTIONS(2922), - [anon_sym_BANGis] = ACTIONS(2922), - [anon_sym_in] = ACTIONS(2922), - [anon_sym_BANGin] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_select] = ACTIONS(2922), - [anon_sym_STAR_EQ] = ACTIONS(2922), - [anon_sym_SLASH_EQ] = ACTIONS(2922), - [anon_sym_PERCENT_EQ] = ACTIONS(2922), - [anon_sym_LT_LT_EQ] = ACTIONS(2922), - [anon_sym_GT_GT_EQ] = ACTIONS(2922), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2922), - [anon_sym_AMP_EQ] = ACTIONS(2922), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2922), - [anon_sym_PLUS_EQ] = ACTIONS(2922), - [anon_sym_DASH_EQ] = ACTIONS(2922), - [anon_sym_PIPE_EQ] = ACTIONS(2922), - [anon_sym_CARET_EQ] = ACTIONS(2922), - [anon_sym_COLON_EQ] = ACTIONS(2922), - [anon_sym_lock] = ACTIONS(2922), - [anon_sym_rlock] = ACTIONS(2922), - [anon_sym_unsafe] = ACTIONS(2922), - [anon_sym_sql] = ACTIONS(2922), - [sym_int_literal] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), - [sym_rune_literal] = ACTIONS(2922), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_shared] = ACTIONS(2922), - [anon_sym_map_LBRACK] = ACTIONS(2922), - [anon_sym_chan] = ACTIONS(2922), - [anon_sym_thread] = ACTIONS(2922), - [anon_sym_atomic] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_defer] = ACTIONS(2922), - [anon_sym_goto] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_DOLLARfor] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_asm] = ACTIONS(2922), - [anon_sym_AT_LBRACK] = ACTIONS(2922), - [sym___double_quote] = ACTIONS(2922), - [sym___single_quote] = ACTIONS(2922), - [sym___c_double_quote] = ACTIONS(2922), - [sym___c_single_quote] = ACTIONS(2922), - [sym___r_double_quote] = ACTIONS(2922), - [sym___r_single_quote] = ACTIONS(2922), - }, - [885] = { - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2926), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_CR] = ACTIONS(2926), - [anon_sym_CR_LF] = ACTIONS(2926), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_const] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym___global] = ACTIONS(2926), - [anon_sym_type] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_fn] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_LT_EQ] = ACTIONS(2926), - [anon_sym_GT_EQ] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(2926), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_mut] = ACTIONS(2926), - [anon_sym_enum] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2926), - [anon_sym_PLUS_PLUS] = ACTIONS(2926), - [anon_sym_DASH_DASH] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_go] = ACTIONS(2926), - [anon_sym_spawn] = ACTIONS(2926), - [anon_sym_json_DOTdecode] = ACTIONS(2926), - [anon_sym_LBRACK2] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_GT_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_CARET] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2926), - [sym_none] = ACTIONS(2926), - [sym_true] = ACTIONS(2926), - [sym_false] = ACTIONS(2926), - [sym_nil] = ACTIONS(2926), - [anon_sym_QMARK_DOT] = ACTIONS(2926), - [anon_sym_POUND_LBRACK] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_DOLLARif] = ACTIONS(2926), - [anon_sym_is] = ACTIONS(2926), - [anon_sym_BANGis] = ACTIONS(2926), - [anon_sym_in] = ACTIONS(2926), - [anon_sym_BANGin] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_select] = ACTIONS(2926), - [anon_sym_STAR_EQ] = ACTIONS(2926), - [anon_sym_SLASH_EQ] = ACTIONS(2926), - [anon_sym_PERCENT_EQ] = ACTIONS(2926), - [anon_sym_LT_LT_EQ] = ACTIONS(2926), - [anon_sym_GT_GT_EQ] = ACTIONS(2926), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2926), - [anon_sym_AMP_EQ] = ACTIONS(2926), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2926), - [anon_sym_PLUS_EQ] = ACTIONS(2926), - [anon_sym_DASH_EQ] = ACTIONS(2926), - [anon_sym_PIPE_EQ] = ACTIONS(2926), - [anon_sym_CARET_EQ] = ACTIONS(2926), - [anon_sym_COLON_EQ] = ACTIONS(2926), - [anon_sym_lock] = ACTIONS(2926), - [anon_sym_rlock] = ACTIONS(2926), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_sql] = ACTIONS(2926), - [sym_int_literal] = ACTIONS(2926), - [sym_float_literal] = ACTIONS(2926), - [sym_rune_literal] = ACTIONS(2926), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_shared] = ACTIONS(2926), - [anon_sym_map_LBRACK] = ACTIONS(2926), - [anon_sym_chan] = ACTIONS(2926), - [anon_sym_thread] = ACTIONS(2926), - [anon_sym_atomic] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_defer] = ACTIONS(2926), - [anon_sym_goto] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_DOLLARfor] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_asm] = ACTIONS(2926), - [anon_sym_AT_LBRACK] = ACTIONS(2926), - [sym___double_quote] = ACTIONS(2926), - [sym___single_quote] = ACTIONS(2926), - [sym___c_double_quote] = ACTIONS(2926), - [sym___c_single_quote] = ACTIONS(2926), - [sym___r_double_quote] = ACTIONS(2926), - [sym___r_single_quote] = ACTIONS(2926), - }, - [886] = { - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LF] = ACTIONS(2930), - [anon_sym_CR] = ACTIONS(2930), - [anon_sym_CR_LF] = ACTIONS(2930), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_as] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(2930), - [anon_sym___global] = ACTIONS(2930), - [anon_sym_type] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_fn] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_GT] = ACTIONS(2930), - [anon_sym_EQ_EQ] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_pub] = ACTIONS(2930), - [anon_sym_mut] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2930), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_go] = ACTIONS(2930), - [anon_sym_spawn] = ACTIONS(2930), - [anon_sym_json_DOTdecode] = ACTIONS(2930), - [anon_sym_LBRACK2] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2930), - [anon_sym_LT_LT] = ACTIONS(2930), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_GT_GT_GT] = ACTIONS(2930), - [anon_sym_AMP_CARET] = ACTIONS(2930), - [anon_sym_AMP_AMP] = ACTIONS(2930), - [anon_sym_PIPE_PIPE] = ACTIONS(2930), - [anon_sym_or] = ACTIONS(2930), - [sym_none] = ACTIONS(2930), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_nil] = ACTIONS(2930), - [anon_sym_QMARK_DOT] = ACTIONS(2930), - [anon_sym_POUND_LBRACK] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_DOLLARif] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2930), - [anon_sym_BANGis] = ACTIONS(2930), - [anon_sym_in] = ACTIONS(2930), - [anon_sym_BANGin] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_select] = ACTIONS(2930), - [anon_sym_STAR_EQ] = ACTIONS(2930), - [anon_sym_SLASH_EQ] = ACTIONS(2930), - [anon_sym_PERCENT_EQ] = ACTIONS(2930), - [anon_sym_LT_LT_EQ] = ACTIONS(2930), - [anon_sym_GT_GT_EQ] = ACTIONS(2930), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2930), - [anon_sym_AMP_EQ] = ACTIONS(2930), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2930), - [anon_sym_PLUS_EQ] = ACTIONS(2930), - [anon_sym_DASH_EQ] = ACTIONS(2930), - [anon_sym_PIPE_EQ] = ACTIONS(2930), - [anon_sym_CARET_EQ] = ACTIONS(2930), - [anon_sym_COLON_EQ] = ACTIONS(2930), - [anon_sym_lock] = ACTIONS(2930), - [anon_sym_rlock] = ACTIONS(2930), - [anon_sym_unsafe] = ACTIONS(2930), - [anon_sym_sql] = ACTIONS(2930), - [sym_int_literal] = ACTIONS(2930), - [sym_float_literal] = ACTIONS(2930), - [sym_rune_literal] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2930), - [anon_sym_shared] = ACTIONS(2930), - [anon_sym_map_LBRACK] = ACTIONS(2930), - [anon_sym_chan] = ACTIONS(2930), - [anon_sym_thread] = ACTIONS(2930), - [anon_sym_atomic] = ACTIONS(2930), - [anon_sym_assert] = ACTIONS(2930), - [anon_sym_defer] = ACTIONS(2930), - [anon_sym_goto] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_DOLLARfor] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2930), - [anon_sym_asm] = ACTIONS(2930), - [anon_sym_AT_LBRACK] = ACTIONS(2930), - [sym___double_quote] = ACTIONS(2930), - [sym___single_quote] = ACTIONS(2930), - [sym___c_double_quote] = ACTIONS(2930), - [sym___c_single_quote] = ACTIONS(2930), - [sym___r_double_quote] = ACTIONS(2930), - [sym___r_single_quote] = ACTIONS(2930), - }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2934), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_CR] = ACTIONS(2934), - [anon_sym_CR_LF] = ACTIONS(2934), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_as] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(2934), - [anon_sym___global] = ACTIONS(2934), - [anon_sym_type] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_fn] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_union] = ACTIONS(2934), - [anon_sym_pub] = ACTIONS(2934), - [anon_sym_mut] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_go] = ACTIONS(2934), - [anon_sym_spawn] = ACTIONS(2934), - [anon_sym_json_DOTdecode] = ACTIONS(2934), - [anon_sym_LBRACK2] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_GT_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_CARET] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_or] = ACTIONS(2934), - [sym_none] = ACTIONS(2934), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_nil] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(2934), - [anon_sym_POUND_LBRACK] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_DOLLARif] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_BANGis] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_BANGin] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_select] = ACTIONS(2934), - [anon_sym_STAR_EQ] = ACTIONS(2934), - [anon_sym_SLASH_EQ] = ACTIONS(2934), - [anon_sym_PERCENT_EQ] = ACTIONS(2934), - [anon_sym_LT_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_GT_EQ] = ACTIONS(2934), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2934), - [anon_sym_AMP_EQ] = ACTIONS(2934), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2934), - [anon_sym_PLUS_EQ] = ACTIONS(2934), - [anon_sym_DASH_EQ] = ACTIONS(2934), - [anon_sym_PIPE_EQ] = ACTIONS(2934), - [anon_sym_CARET_EQ] = ACTIONS(2934), - [anon_sym_COLON_EQ] = ACTIONS(2934), - [anon_sym_lock] = ACTIONS(2934), - [anon_sym_rlock] = ACTIONS(2934), - [anon_sym_unsafe] = ACTIONS(2934), - [anon_sym_sql] = ACTIONS(2934), - [sym_int_literal] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), - [sym_rune_literal] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2934), - [anon_sym_shared] = ACTIONS(2934), - [anon_sym_map_LBRACK] = ACTIONS(2934), - [anon_sym_chan] = ACTIONS(2934), - [anon_sym_thread] = ACTIONS(2934), - [anon_sym_atomic] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_defer] = ACTIONS(2934), - [anon_sym_goto] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_DOLLARfor] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_asm] = ACTIONS(2934), - [anon_sym_AT_LBRACK] = ACTIONS(2934), - [sym___double_quote] = ACTIONS(2934), - [sym___single_quote] = ACTIONS(2934), - [sym___c_double_quote] = ACTIONS(2934), - [sym___c_single_quote] = ACTIONS(2934), - [sym___r_double_quote] = ACTIONS(2934), - [sym___r_single_quote] = ACTIONS(2934), - }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LF] = ACTIONS(2938), - [anon_sym_CR] = ACTIONS(2938), - [anon_sym_CR_LF] = ACTIONS(2938), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2938), - [anon_sym_as] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_COMMA] = ACTIONS(2938), - [anon_sym_const] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_EQ] = ACTIONS(2938), - [anon_sym___global] = ACTIONS(2938), - [anon_sym_type] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_fn] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_PERCENT] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_GT] = ACTIONS(2938), - [anon_sym_EQ_EQ] = ACTIONS(2938), - [anon_sym_BANG_EQ] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2938), - [anon_sym_pub] = ACTIONS(2938), - [anon_sym_mut] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_QMARK] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_go] = ACTIONS(2938), - [anon_sym_spawn] = ACTIONS(2938), - [anon_sym_json_DOTdecode] = ACTIONS(2938), - [anon_sym_LBRACK2] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_LT_DASH] = ACTIONS(2938), - [anon_sym_LT_LT] = ACTIONS(2938), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_GT_GT_GT] = ACTIONS(2938), - [anon_sym_AMP_CARET] = ACTIONS(2938), - [anon_sym_AMP_AMP] = ACTIONS(2938), - [anon_sym_PIPE_PIPE] = ACTIONS(2938), - [anon_sym_or] = ACTIONS(2938), - [sym_none] = ACTIONS(2938), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_nil] = ACTIONS(2938), - [anon_sym_QMARK_DOT] = ACTIONS(2938), - [anon_sym_POUND_LBRACK] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_DOLLARif] = ACTIONS(2938), - [anon_sym_is] = ACTIONS(2938), - [anon_sym_BANGis] = ACTIONS(2938), - [anon_sym_in] = ACTIONS(2938), - [anon_sym_BANGin] = ACTIONS(2938), - [anon_sym_match] = ACTIONS(2938), - [anon_sym_select] = ACTIONS(2938), - [anon_sym_STAR_EQ] = ACTIONS(2938), - [anon_sym_SLASH_EQ] = ACTIONS(2938), - [anon_sym_PERCENT_EQ] = ACTIONS(2938), - [anon_sym_LT_LT_EQ] = ACTIONS(2938), - [anon_sym_GT_GT_EQ] = ACTIONS(2938), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2938), - [anon_sym_AMP_EQ] = ACTIONS(2938), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2938), - [anon_sym_PLUS_EQ] = ACTIONS(2938), - [anon_sym_DASH_EQ] = ACTIONS(2938), - [anon_sym_PIPE_EQ] = ACTIONS(2938), - [anon_sym_CARET_EQ] = ACTIONS(2938), - [anon_sym_COLON_EQ] = ACTIONS(2938), - [anon_sym_lock] = ACTIONS(2938), - [anon_sym_rlock] = ACTIONS(2938), - [anon_sym_unsafe] = ACTIONS(2938), - [anon_sym_sql] = ACTIONS(2938), - [sym_int_literal] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), - [sym_rune_literal] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2938), - [anon_sym_shared] = ACTIONS(2938), - [anon_sym_map_LBRACK] = ACTIONS(2938), - [anon_sym_chan] = ACTIONS(2938), - [anon_sym_thread] = ACTIONS(2938), - [anon_sym_atomic] = ACTIONS(2938), - [anon_sym_assert] = ACTIONS(2938), - [anon_sym_defer] = ACTIONS(2938), - [anon_sym_goto] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_DOLLARfor] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [anon_sym_asm] = ACTIONS(2938), - [anon_sym_AT_LBRACK] = ACTIONS(2938), - [sym___double_quote] = ACTIONS(2938), - [sym___single_quote] = ACTIONS(2938), - [sym___c_double_quote] = ACTIONS(2938), - [sym___c_single_quote] = ACTIONS(2938), - [sym___r_double_quote] = ACTIONS(2938), - [sym___r_single_quote] = ACTIONS(2938), - }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2942), - [anon_sym_LF] = ACTIONS(2942), - [anon_sym_CR] = ACTIONS(2942), - [anon_sym_CR_LF] = ACTIONS(2942), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2942), - [anon_sym_as] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_EQ] = ACTIONS(2942), - [anon_sym___global] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_fn] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_GT] = ACTIONS(2942), - [anon_sym_EQ_EQ] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_struct] = ACTIONS(2942), - [anon_sym_union] = ACTIONS(2942), - [anon_sym_pub] = ACTIONS(2942), - [anon_sym_mut] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_QMARK] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_go] = ACTIONS(2942), - [anon_sym_spawn] = ACTIONS(2942), - [anon_sym_json_DOTdecode] = ACTIONS(2942), - [anon_sym_LBRACK2] = ACTIONS(2942), - [anon_sym_TILDE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_LT_DASH] = ACTIONS(2942), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_GT_GT_GT] = ACTIONS(2942), - [anon_sym_AMP_CARET] = ACTIONS(2942), - [anon_sym_AMP_AMP] = ACTIONS(2942), - [anon_sym_PIPE_PIPE] = ACTIONS(2942), - [anon_sym_or] = ACTIONS(2942), - [sym_none] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_nil] = ACTIONS(2942), - [anon_sym_QMARK_DOT] = ACTIONS(2942), - [anon_sym_POUND_LBRACK] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_DOLLARif] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_BANGis] = ACTIONS(2942), - [anon_sym_in] = ACTIONS(2942), - [anon_sym_BANGin] = ACTIONS(2942), - [anon_sym_match] = ACTIONS(2942), - [anon_sym_select] = ACTIONS(2942), - [anon_sym_STAR_EQ] = ACTIONS(2942), - [anon_sym_SLASH_EQ] = ACTIONS(2942), - [anon_sym_PERCENT_EQ] = ACTIONS(2942), - [anon_sym_LT_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_GT_EQ] = ACTIONS(2942), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2942), - [anon_sym_AMP_EQ] = ACTIONS(2942), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2942), - [anon_sym_PLUS_EQ] = ACTIONS(2942), - [anon_sym_DASH_EQ] = ACTIONS(2942), - [anon_sym_PIPE_EQ] = ACTIONS(2942), - [anon_sym_CARET_EQ] = ACTIONS(2942), - [anon_sym_COLON_EQ] = ACTIONS(2942), - [anon_sym_lock] = ACTIONS(2942), - [anon_sym_rlock] = ACTIONS(2942), - [anon_sym_unsafe] = ACTIONS(2942), - [anon_sym_sql] = ACTIONS(2942), - [sym_int_literal] = ACTIONS(2942), - [sym_float_literal] = ACTIONS(2942), - [sym_rune_literal] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2942), - [anon_sym_shared] = ACTIONS(2942), - [anon_sym_map_LBRACK] = ACTIONS(2942), - [anon_sym_chan] = ACTIONS(2942), - [anon_sym_thread] = ACTIONS(2942), - [anon_sym_atomic] = ACTIONS(2942), - [anon_sym_assert] = ACTIONS(2942), - [anon_sym_defer] = ACTIONS(2942), - [anon_sym_goto] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_DOLLARfor] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2942), - [anon_sym_asm] = ACTIONS(2942), - [anon_sym_AT_LBRACK] = ACTIONS(2942), - [sym___double_quote] = ACTIONS(2942), - [sym___single_quote] = ACTIONS(2942), - [sym___c_double_quote] = ACTIONS(2942), - [sym___c_single_quote] = ACTIONS(2942), - [sym___r_double_quote] = ACTIONS(2942), - [sym___r_single_quote] = ACTIONS(2942), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2946), - [anon_sym_LF] = ACTIONS(2946), - [anon_sym_CR] = ACTIONS(2946), - [anon_sym_CR_LF] = ACTIONS(2946), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2946), - [anon_sym_as] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(2946), - [anon_sym_const] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2946), - [anon_sym___global] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_fn] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_PERCENT] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_EQ_EQ] = ACTIONS(2946), - [anon_sym_BANG_EQ] = ACTIONS(2946), - [anon_sym_LT_EQ] = ACTIONS(2946), - [anon_sym_GT_EQ] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_struct] = ACTIONS(2946), - [anon_sym_union] = ACTIONS(2946), - [anon_sym_pub] = ACTIONS(2946), - [anon_sym_mut] = ACTIONS(2946), - [anon_sym_enum] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2946), - [anon_sym_DASH_DASH] = ACTIONS(2946), - [anon_sym_QMARK] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_go] = ACTIONS(2946), - [anon_sym_spawn] = ACTIONS(2946), - [anon_sym_json_DOTdecode] = ACTIONS(2946), - [anon_sym_LBRACK2] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2946), - [anon_sym_CARET] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_LT_DASH] = ACTIONS(2946), - [anon_sym_LT_LT] = ACTIONS(2946), - [anon_sym_GT_GT] = ACTIONS(2946), - [anon_sym_GT_GT_GT] = ACTIONS(2946), - [anon_sym_AMP_CARET] = ACTIONS(2946), - [anon_sym_AMP_AMP] = ACTIONS(2946), - [anon_sym_PIPE_PIPE] = ACTIONS(2946), - [anon_sym_or] = ACTIONS(2946), - [sym_none] = ACTIONS(2946), - [sym_true] = ACTIONS(2946), - [sym_false] = ACTIONS(2946), - [sym_nil] = ACTIONS(2946), - [anon_sym_QMARK_DOT] = ACTIONS(2946), - [anon_sym_POUND_LBRACK] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_DOLLARif] = ACTIONS(2946), - [anon_sym_is] = ACTIONS(2946), - [anon_sym_BANGis] = ACTIONS(2946), - [anon_sym_in] = ACTIONS(2946), - [anon_sym_BANGin] = ACTIONS(2946), - [anon_sym_match] = ACTIONS(2946), - [anon_sym_select] = ACTIONS(2946), - [anon_sym_STAR_EQ] = ACTIONS(2946), - [anon_sym_SLASH_EQ] = ACTIONS(2946), - [anon_sym_PERCENT_EQ] = ACTIONS(2946), - [anon_sym_LT_LT_EQ] = ACTIONS(2946), - [anon_sym_GT_GT_EQ] = ACTIONS(2946), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2946), - [anon_sym_AMP_EQ] = ACTIONS(2946), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2946), - [anon_sym_PLUS_EQ] = ACTIONS(2946), - [anon_sym_DASH_EQ] = ACTIONS(2946), - [anon_sym_PIPE_EQ] = ACTIONS(2946), - [anon_sym_CARET_EQ] = ACTIONS(2946), - [anon_sym_COLON_EQ] = ACTIONS(2946), - [anon_sym_lock] = ACTIONS(2946), - [anon_sym_rlock] = ACTIONS(2946), - [anon_sym_unsafe] = ACTIONS(2946), - [anon_sym_sql] = ACTIONS(2946), - [sym_int_literal] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2946), - [sym_rune_literal] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2946), - [anon_sym_shared] = ACTIONS(2946), - [anon_sym_map_LBRACK] = ACTIONS(2946), - [anon_sym_chan] = ACTIONS(2946), - [anon_sym_thread] = ACTIONS(2946), - [anon_sym_atomic] = ACTIONS(2946), - [anon_sym_assert] = ACTIONS(2946), - [anon_sym_defer] = ACTIONS(2946), - [anon_sym_goto] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_DOLLARfor] = ACTIONS(2946), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2946), - [anon_sym_asm] = ACTIONS(2946), - [anon_sym_AT_LBRACK] = ACTIONS(2946), - [sym___double_quote] = ACTIONS(2946), - [sym___single_quote] = ACTIONS(2946), - [sym___c_double_quote] = ACTIONS(2946), - [sym___c_single_quote] = ACTIONS(2946), - [sym___r_double_quote] = ACTIONS(2946), - [sym___r_single_quote] = ACTIONS(2946), - }, - [891] = { - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2950), - [anon_sym_CR] = ACTIONS(2950), - [anon_sym_CR_LF] = ACTIONS(2950), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_as] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2950), - [anon_sym_const] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym___global] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_fn] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2950), - [anon_sym_LT_EQ] = ACTIONS(2950), - [anon_sym_GT_EQ] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_struct] = ACTIONS(2950), - [anon_sym_union] = ACTIONS(2950), - [anon_sym_pub] = ACTIONS(2950), - [anon_sym_mut] = ACTIONS(2950), - [anon_sym_enum] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2950), - [anon_sym_DASH_DASH] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_go] = ACTIONS(2950), - [anon_sym_spawn] = ACTIONS(2950), - [anon_sym_json_DOTdecode] = ACTIONS(2950), - [anon_sym_LBRACK2] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2950), - [anon_sym_CARET] = ACTIONS(2950), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_GT_GT_GT] = ACTIONS(2950), - [anon_sym_AMP_CARET] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_or] = ACTIONS(2950), - [sym_none] = ACTIONS(2950), - [sym_true] = ACTIONS(2950), - [sym_false] = ACTIONS(2950), - [sym_nil] = ACTIONS(2950), - [anon_sym_QMARK_DOT] = ACTIONS(2950), - [anon_sym_POUND_LBRACK] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_DOLLARif] = ACTIONS(2950), - [anon_sym_is] = ACTIONS(2950), - [anon_sym_BANGis] = ACTIONS(2950), - [anon_sym_in] = ACTIONS(2950), - [anon_sym_BANGin] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_select] = ACTIONS(2950), - [anon_sym_STAR_EQ] = ACTIONS(2950), - [anon_sym_SLASH_EQ] = ACTIONS(2950), - [anon_sym_PERCENT_EQ] = ACTIONS(2950), - [anon_sym_LT_LT_EQ] = ACTIONS(2950), - [anon_sym_GT_GT_EQ] = ACTIONS(2950), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2950), - [anon_sym_AMP_EQ] = ACTIONS(2950), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2950), - [anon_sym_PLUS_EQ] = ACTIONS(2950), - [anon_sym_DASH_EQ] = ACTIONS(2950), - [anon_sym_PIPE_EQ] = ACTIONS(2950), - [anon_sym_CARET_EQ] = ACTIONS(2950), - [anon_sym_COLON_EQ] = ACTIONS(2950), - [anon_sym_lock] = ACTIONS(2950), - [anon_sym_rlock] = ACTIONS(2950), - [anon_sym_unsafe] = ACTIONS(2950), - [anon_sym_sql] = ACTIONS(2950), - [sym_int_literal] = ACTIONS(2950), - [sym_float_literal] = ACTIONS(2950), - [sym_rune_literal] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_shared] = ACTIONS(2950), - [anon_sym_map_LBRACK] = ACTIONS(2950), - [anon_sym_chan] = ACTIONS(2950), - [anon_sym_thread] = ACTIONS(2950), - [anon_sym_atomic] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_defer] = ACTIONS(2950), - [anon_sym_goto] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_DOLLARfor] = ACTIONS(2950), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2950), - [anon_sym_asm] = ACTIONS(2950), - [anon_sym_AT_LBRACK] = ACTIONS(2950), - [sym___double_quote] = ACTIONS(2950), - [sym___single_quote] = ACTIONS(2950), - [sym___c_double_quote] = ACTIONS(2950), - [sym___c_single_quote] = ACTIONS(2950), - [sym___r_double_quote] = ACTIONS(2950), - [sym___r_single_quote] = ACTIONS(2950), - }, - [892] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LF] = ACTIONS(2954), - [anon_sym_CR] = ACTIONS(2954), - [anon_sym_CR_LF] = ACTIONS(2954), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2954), - [anon_sym_as] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_const] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym_EQ] = ACTIONS(2954), - [anon_sym___global] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_fn] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_GT] = ACTIONS(2954), - [anon_sym_EQ_EQ] = ACTIONS(2954), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_LT_EQ] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2954), - [anon_sym_union] = ACTIONS(2954), - [anon_sym_pub] = ACTIONS(2954), - [anon_sym_mut] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_QMARK] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_go] = ACTIONS(2954), - [anon_sym_spawn] = ACTIONS(2954), - [anon_sym_json_DOTdecode] = ACTIONS(2954), - [anon_sym_LBRACK2] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_CARET] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_LT_DASH] = ACTIONS(2954), - [anon_sym_LT_LT] = ACTIONS(2954), - [anon_sym_GT_GT] = ACTIONS(2954), - [anon_sym_GT_GT_GT] = ACTIONS(2954), - [anon_sym_AMP_CARET] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_PIPE_PIPE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2954), - [sym_none] = ACTIONS(2954), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_nil] = ACTIONS(2954), - [anon_sym_QMARK_DOT] = ACTIONS(2954), - [anon_sym_POUND_LBRACK] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_DOLLARif] = ACTIONS(2954), - [anon_sym_is] = ACTIONS(2954), - [anon_sym_BANGis] = ACTIONS(2954), - [anon_sym_in] = ACTIONS(2954), - [anon_sym_BANGin] = ACTIONS(2954), - [anon_sym_match] = ACTIONS(2954), - [anon_sym_select] = ACTIONS(2954), - [anon_sym_STAR_EQ] = ACTIONS(2954), - [anon_sym_SLASH_EQ] = ACTIONS(2954), - [anon_sym_PERCENT_EQ] = ACTIONS(2954), - [anon_sym_LT_LT_EQ] = ACTIONS(2954), - [anon_sym_GT_GT_EQ] = ACTIONS(2954), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2954), - [anon_sym_AMP_EQ] = ACTIONS(2954), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2954), - [anon_sym_PLUS_EQ] = ACTIONS(2954), - [anon_sym_DASH_EQ] = ACTIONS(2954), - [anon_sym_PIPE_EQ] = ACTIONS(2954), - [anon_sym_CARET_EQ] = ACTIONS(2954), - [anon_sym_COLON_EQ] = ACTIONS(2954), - [anon_sym_lock] = ACTIONS(2954), - [anon_sym_rlock] = ACTIONS(2954), - [anon_sym_unsafe] = ACTIONS(2954), - [anon_sym_sql] = ACTIONS(2954), - [sym_int_literal] = ACTIONS(2954), - [sym_float_literal] = ACTIONS(2954), - [sym_rune_literal] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2954), - [anon_sym_shared] = ACTIONS(2954), - [anon_sym_map_LBRACK] = ACTIONS(2954), - [anon_sym_chan] = ACTIONS(2954), - [anon_sym_thread] = ACTIONS(2954), - [anon_sym_atomic] = ACTIONS(2954), - [anon_sym_assert] = ACTIONS(2954), - [anon_sym_defer] = ACTIONS(2954), - [anon_sym_goto] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_DOLLARfor] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2954), - [anon_sym_asm] = ACTIONS(2954), - [anon_sym_AT_LBRACK] = ACTIONS(2954), - [sym___double_quote] = ACTIONS(2954), - [sym___single_quote] = ACTIONS(2954), - [sym___c_double_quote] = ACTIONS(2954), - [sym___c_single_quote] = ACTIONS(2954), - [sym___r_double_quote] = ACTIONS(2954), - [sym___r_single_quote] = ACTIONS(2954), - }, - [893] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LF] = ACTIONS(2958), - [anon_sym_CR] = ACTIONS(2958), - [anon_sym_CR_LF] = ACTIONS(2958), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_as] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2958), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym___global] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_fn] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_PERCENT] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_GT] = ACTIONS(2958), - [anon_sym_EQ_EQ] = ACTIONS(2958), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_LT_EQ] = ACTIONS(2958), - [anon_sym_GT_EQ] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_struct] = ACTIONS(2958), - [anon_sym_union] = ACTIONS(2958), - [anon_sym_pub] = ACTIONS(2958), - [anon_sym_mut] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2958), - [anon_sym_DASH_DASH] = ACTIONS(2958), - [anon_sym_QMARK] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_go] = ACTIONS(2958), - [anon_sym_spawn] = ACTIONS(2958), - [anon_sym_json_DOTdecode] = ACTIONS(2958), - [anon_sym_LBRACK2] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_LT_DASH] = ACTIONS(2958), - [anon_sym_LT_LT] = ACTIONS(2958), - [anon_sym_GT_GT] = ACTIONS(2958), - [anon_sym_GT_GT_GT] = ACTIONS(2958), - [anon_sym_AMP_CARET] = ACTIONS(2958), - [anon_sym_AMP_AMP] = ACTIONS(2958), - [anon_sym_PIPE_PIPE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2958), - [sym_none] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_nil] = ACTIONS(2958), - [anon_sym_QMARK_DOT] = ACTIONS(2958), - [anon_sym_POUND_LBRACK] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_DOLLARif] = ACTIONS(2958), - [anon_sym_is] = ACTIONS(2958), - [anon_sym_BANGis] = ACTIONS(2958), - [anon_sym_in] = ACTIONS(2958), - [anon_sym_BANGin] = ACTIONS(2958), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_select] = ACTIONS(2958), - [anon_sym_STAR_EQ] = ACTIONS(2958), - [anon_sym_SLASH_EQ] = ACTIONS(2958), - [anon_sym_PERCENT_EQ] = ACTIONS(2958), - [anon_sym_LT_LT_EQ] = ACTIONS(2958), - [anon_sym_GT_GT_EQ] = ACTIONS(2958), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2958), - [anon_sym_AMP_EQ] = ACTIONS(2958), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2958), - [anon_sym_PLUS_EQ] = ACTIONS(2958), - [anon_sym_DASH_EQ] = ACTIONS(2958), - [anon_sym_PIPE_EQ] = ACTIONS(2958), - [anon_sym_CARET_EQ] = ACTIONS(2958), - [anon_sym_COLON_EQ] = ACTIONS(2958), - [anon_sym_lock] = ACTIONS(2958), - [anon_sym_rlock] = ACTIONS(2958), - [anon_sym_unsafe] = ACTIONS(2958), - [anon_sym_sql] = ACTIONS(2958), - [sym_int_literal] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2958), - [sym_rune_literal] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_shared] = ACTIONS(2958), - [anon_sym_map_LBRACK] = ACTIONS(2958), - [anon_sym_chan] = ACTIONS(2958), - [anon_sym_thread] = ACTIONS(2958), - [anon_sym_atomic] = ACTIONS(2958), - [anon_sym_assert] = ACTIONS(2958), - [anon_sym_defer] = ACTIONS(2958), - [anon_sym_goto] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_DOLLARfor] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [anon_sym_asm] = ACTIONS(2958), - [anon_sym_AT_LBRACK] = ACTIONS(2958), - [sym___double_quote] = ACTIONS(2958), - [sym___single_quote] = ACTIONS(2958), - [sym___c_double_quote] = ACTIONS(2958), - [sym___c_single_quote] = ACTIONS(2958), - [sym___r_double_quote] = ACTIONS(2958), - [sym___r_single_quote] = ACTIONS(2958), - }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_LF] = ACTIONS(2962), - [anon_sym_CR] = ACTIONS(2962), - [anon_sym_CR_LF] = ACTIONS(2962), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2962), - [anon_sym_as] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2962), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_const] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2962), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym___global] = ACTIONS(2962), - [anon_sym_type] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_fn] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_PERCENT] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_GT] = ACTIONS(2962), - [anon_sym_EQ_EQ] = ACTIONS(2962), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_LT_EQ] = ACTIONS(2962), - [anon_sym_GT_EQ] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_struct] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_pub] = ACTIONS(2962), - [anon_sym_mut] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2962), - [anon_sym_DASH_DASH] = ACTIONS(2962), - [anon_sym_QMARK] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_go] = ACTIONS(2962), - [anon_sym_spawn] = ACTIONS(2962), - [anon_sym_json_DOTdecode] = ACTIONS(2962), - [anon_sym_LBRACK2] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_LT_DASH] = ACTIONS(2962), - [anon_sym_LT_LT] = ACTIONS(2962), - [anon_sym_GT_GT] = ACTIONS(2962), - [anon_sym_GT_GT_GT] = ACTIONS(2962), - [anon_sym_AMP_CARET] = ACTIONS(2962), - [anon_sym_AMP_AMP] = ACTIONS(2962), - [anon_sym_PIPE_PIPE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2962), - [sym_none] = ACTIONS(2962), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_nil] = ACTIONS(2962), - [anon_sym_QMARK_DOT] = ACTIONS(2962), - [anon_sym_POUND_LBRACK] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_DOLLARif] = ACTIONS(2962), - [anon_sym_is] = ACTIONS(2962), - [anon_sym_BANGis] = ACTIONS(2962), - [anon_sym_in] = ACTIONS(2962), - [anon_sym_BANGin] = ACTIONS(2962), - [anon_sym_match] = ACTIONS(2962), - [anon_sym_select] = ACTIONS(2962), - [anon_sym_STAR_EQ] = ACTIONS(2962), - [anon_sym_SLASH_EQ] = ACTIONS(2962), - [anon_sym_PERCENT_EQ] = ACTIONS(2962), - [anon_sym_LT_LT_EQ] = ACTIONS(2962), - [anon_sym_GT_GT_EQ] = ACTIONS(2962), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2962), - [anon_sym_AMP_EQ] = ACTIONS(2962), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2962), - [anon_sym_PLUS_EQ] = ACTIONS(2962), - [anon_sym_DASH_EQ] = ACTIONS(2962), - [anon_sym_PIPE_EQ] = ACTIONS(2962), - [anon_sym_CARET_EQ] = ACTIONS(2962), - [anon_sym_COLON_EQ] = ACTIONS(2962), - [anon_sym_lock] = ACTIONS(2962), - [anon_sym_rlock] = ACTIONS(2962), - [anon_sym_unsafe] = ACTIONS(2962), - [anon_sym_sql] = ACTIONS(2962), - [sym_int_literal] = ACTIONS(2962), - [sym_float_literal] = ACTIONS(2962), - [sym_rune_literal] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2962), - [anon_sym_shared] = ACTIONS(2962), - [anon_sym_map_LBRACK] = ACTIONS(2962), - [anon_sym_chan] = ACTIONS(2962), - [anon_sym_thread] = ACTIONS(2962), - [anon_sym_atomic] = ACTIONS(2962), - [anon_sym_assert] = ACTIONS(2962), - [anon_sym_defer] = ACTIONS(2962), - [anon_sym_goto] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_DOLLARfor] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2962), - [anon_sym_asm] = ACTIONS(2962), - [anon_sym_AT_LBRACK] = ACTIONS(2962), - [sym___double_quote] = ACTIONS(2962), - [sym___single_quote] = ACTIONS(2962), - [sym___c_double_quote] = ACTIONS(2962), - [sym___c_single_quote] = ACTIONS(2962), - [sym___r_double_quote] = ACTIONS(2962), - [sym___r_single_quote] = ACTIONS(2962), - }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_LF] = ACTIONS(2966), - [anon_sym_CR] = ACTIONS(2966), - [anon_sym_CR_LF] = ACTIONS(2966), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2966), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym___global] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_fn] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_EQ_EQ] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_LT_EQ] = ACTIONS(2966), - [anon_sym_GT_EQ] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_union] = ACTIONS(2966), - [anon_sym_pub] = ACTIONS(2966), - [anon_sym_mut] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2966), - [anon_sym_DASH_DASH] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_go] = ACTIONS(2966), - [anon_sym_spawn] = ACTIONS(2966), - [anon_sym_json_DOTdecode] = ACTIONS(2966), - [anon_sym_LBRACK2] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_LT_LT] = ACTIONS(2966), - [anon_sym_GT_GT] = ACTIONS(2966), - [anon_sym_GT_GT_GT] = ACTIONS(2966), - [anon_sym_AMP_CARET] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2966), - [sym_none] = ACTIONS(2966), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_nil] = ACTIONS(2966), - [anon_sym_QMARK_DOT] = ACTIONS(2966), - [anon_sym_POUND_LBRACK] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_DOLLARif] = ACTIONS(2966), - [anon_sym_is] = ACTIONS(2966), - [anon_sym_BANGis] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(2966), - [anon_sym_BANGin] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_select] = ACTIONS(2966), - [anon_sym_STAR_EQ] = ACTIONS(2966), - [anon_sym_SLASH_EQ] = ACTIONS(2966), - [anon_sym_PERCENT_EQ] = ACTIONS(2966), - [anon_sym_LT_LT_EQ] = ACTIONS(2966), - [anon_sym_GT_GT_EQ] = ACTIONS(2966), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2966), - [anon_sym_AMP_EQ] = ACTIONS(2966), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2966), - [anon_sym_PLUS_EQ] = ACTIONS(2966), - [anon_sym_DASH_EQ] = ACTIONS(2966), - [anon_sym_PIPE_EQ] = ACTIONS(2966), - [anon_sym_CARET_EQ] = ACTIONS(2966), - [anon_sym_COLON_EQ] = ACTIONS(2966), - [anon_sym_lock] = ACTIONS(2966), - [anon_sym_rlock] = ACTIONS(2966), - [anon_sym_unsafe] = ACTIONS(2966), - [anon_sym_sql] = ACTIONS(2966), - [sym_int_literal] = ACTIONS(2966), - [sym_float_literal] = ACTIONS(2966), - [sym_rune_literal] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_shared] = ACTIONS(2966), - [anon_sym_map_LBRACK] = ACTIONS(2966), - [anon_sym_chan] = ACTIONS(2966), - [anon_sym_thread] = ACTIONS(2966), - [anon_sym_atomic] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_defer] = ACTIONS(2966), - [anon_sym_goto] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_DOLLARfor] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2966), - [anon_sym_asm] = ACTIONS(2966), - [anon_sym_AT_LBRACK] = ACTIONS(2966), - [sym___double_quote] = ACTIONS(2966), - [sym___single_quote] = ACTIONS(2966), - [sym___c_double_quote] = ACTIONS(2966), - [sym___c_single_quote] = ACTIONS(2966), - [sym___r_double_quote] = ACTIONS(2966), - [sym___r_single_quote] = ACTIONS(2966), - }, - [896] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_LF] = ACTIONS(2970), - [anon_sym_CR] = ACTIONS(2970), - [anon_sym_CR_LF] = ACTIONS(2970), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym___global] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [anon_sym_pub] = ACTIONS(2970), - [anon_sym_mut] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(2970), - [anon_sym_spawn] = ACTIONS(2970), - [anon_sym_json_DOTdecode] = ACTIONS(2970), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_nil] = ACTIONS(2970), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_DOLLARif] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_select] = ACTIONS(2970), - [anon_sym_STAR_EQ] = ACTIONS(2970), - [anon_sym_SLASH_EQ] = ACTIONS(2970), - [anon_sym_PERCENT_EQ] = ACTIONS(2970), - [anon_sym_LT_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_GT_EQ] = ACTIONS(2970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2970), - [anon_sym_AMP_EQ] = ACTIONS(2970), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2970), - [anon_sym_PLUS_EQ] = ACTIONS(2970), - [anon_sym_DASH_EQ] = ACTIONS(2970), - [anon_sym_PIPE_EQ] = ACTIONS(2970), - [anon_sym_CARET_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(2970), - [anon_sym_rlock] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_sql] = ACTIONS(2970), - [sym_int_literal] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), - [sym_rune_literal] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2970), - [anon_sym_shared] = ACTIONS(2970), - [anon_sym_map_LBRACK] = ACTIONS(2970), - [anon_sym_chan] = ACTIONS(2970), - [anon_sym_thread] = ACTIONS(2970), - [anon_sym_atomic] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_defer] = ACTIONS(2970), - [anon_sym_goto] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_DOLLARfor] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_asm] = ACTIONS(2970), - [anon_sym_AT_LBRACK] = ACTIONS(2970), - [sym___double_quote] = ACTIONS(2970), - [sym___single_quote] = ACTIONS(2970), - [sym___c_double_quote] = ACTIONS(2970), - [sym___c_single_quote] = ACTIONS(2970), - [sym___r_double_quote] = ACTIONS(2970), - [sym___r_single_quote] = ACTIONS(2970), - }, - [897] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_STAR_EQ] = ACTIONS(2846), - [anon_sym_SLASH_EQ] = ACTIONS(2846), - [anon_sym_PERCENT_EQ] = ACTIONS(2846), - [anon_sym_LT_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_GT_EQ] = ACTIONS(2846), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2846), - [anon_sym_AMP_EQ] = ACTIONS(2846), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2846), - [anon_sym_PLUS_EQ] = ACTIONS(2846), - [anon_sym_DASH_EQ] = ACTIONS(2846), - [anon_sym_PIPE_EQ] = ACTIONS(2846), - [anon_sym_CARET_EQ] = ACTIONS(2846), - [anon_sym_COLON_EQ] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), - }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2974), - [anon_sym_LF] = ACTIONS(2974), - [anon_sym_CR] = ACTIONS(2974), - [anon_sym_CR_LF] = ACTIONS(2974), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2974), - [anon_sym_as] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2974), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_const] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2974), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym___global] = ACTIONS(2974), - [anon_sym_type] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_fn] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_PERCENT] = ACTIONS(2974), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_GT] = ACTIONS(2974), - [anon_sym_EQ_EQ] = ACTIONS(2974), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_LT_EQ] = ACTIONS(2974), - [anon_sym_GT_EQ] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(2974), - [anon_sym_union] = ACTIONS(2974), - [anon_sym_pub] = ACTIONS(2974), - [anon_sym_mut] = ACTIONS(2974), - [anon_sym_enum] = ACTIONS(2974), - [anon_sym_interface] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2974), - [anon_sym_DASH_DASH] = ACTIONS(2974), - [anon_sym_QMARK] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_go] = ACTIONS(2974), - [anon_sym_spawn] = ACTIONS(2974), - [anon_sym_json_DOTdecode] = ACTIONS(2974), - [anon_sym_LBRACK2] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_LT_DASH] = ACTIONS(2974), - [anon_sym_LT_LT] = ACTIONS(2974), - [anon_sym_GT_GT] = ACTIONS(2974), - [anon_sym_GT_GT_GT] = ACTIONS(2974), - [anon_sym_AMP_CARET] = ACTIONS(2974), - [anon_sym_AMP_AMP] = ACTIONS(2974), - [anon_sym_PIPE_PIPE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2974), - [sym_none] = ACTIONS(2974), - [sym_true] = ACTIONS(2974), - [sym_false] = ACTIONS(2974), - [sym_nil] = ACTIONS(2974), - [anon_sym_QMARK_DOT] = ACTIONS(2974), - [anon_sym_POUND_LBRACK] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_DOLLARif] = ACTIONS(2974), - [anon_sym_is] = ACTIONS(2974), - [anon_sym_BANGis] = ACTIONS(2974), - [anon_sym_in] = ACTIONS(2974), - [anon_sym_BANGin] = ACTIONS(2974), - [anon_sym_match] = ACTIONS(2974), - [anon_sym_select] = ACTIONS(2974), - [anon_sym_STAR_EQ] = ACTIONS(2974), - [anon_sym_SLASH_EQ] = ACTIONS(2974), - [anon_sym_PERCENT_EQ] = ACTIONS(2974), - [anon_sym_LT_LT_EQ] = ACTIONS(2974), - [anon_sym_GT_GT_EQ] = ACTIONS(2974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2974), - [anon_sym_AMP_EQ] = ACTIONS(2974), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2974), - [anon_sym_PLUS_EQ] = ACTIONS(2974), - [anon_sym_DASH_EQ] = ACTIONS(2974), - [anon_sym_PIPE_EQ] = ACTIONS(2974), - [anon_sym_CARET_EQ] = ACTIONS(2974), - [anon_sym_COLON_EQ] = ACTIONS(2974), - [anon_sym_lock] = ACTIONS(2974), - [anon_sym_rlock] = ACTIONS(2974), - [anon_sym_unsafe] = ACTIONS(2974), - [anon_sym_sql] = ACTIONS(2974), - [sym_int_literal] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2974), - [sym_rune_literal] = ACTIONS(2974), - [anon_sym_AT] = ACTIONS(2974), - [anon_sym_shared] = ACTIONS(2974), - [anon_sym_map_LBRACK] = ACTIONS(2974), - [anon_sym_chan] = ACTIONS(2974), - [anon_sym_thread] = ACTIONS(2974), - [anon_sym_atomic] = ACTIONS(2974), - [anon_sym_assert] = ACTIONS(2974), - [anon_sym_defer] = ACTIONS(2974), - [anon_sym_goto] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_DOLLARfor] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [anon_sym_asm] = ACTIONS(2974), - [anon_sym_AT_LBRACK] = ACTIONS(2974), - [sym___double_quote] = ACTIONS(2974), - [sym___single_quote] = ACTIONS(2974), - [sym___c_double_quote] = ACTIONS(2974), - [sym___c_single_quote] = ACTIONS(2974), - [sym___r_double_quote] = ACTIONS(2974), - [sym___r_single_quote] = ACTIONS(2974), - }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LF] = ACTIONS(2978), - [anon_sym_CR] = ACTIONS(2978), - [anon_sym_CR_LF] = ACTIONS(2978), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2978), - [anon_sym_as] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_const] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2978), - [anon_sym_EQ] = ACTIONS(2978), - [anon_sym___global] = ACTIONS(2978), - [anon_sym_type] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_fn] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_PERCENT] = ACTIONS(2978), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_GT] = ACTIONS(2978), - [anon_sym_EQ_EQ] = ACTIONS(2978), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_LT_EQ] = ACTIONS(2978), - [anon_sym_GT_EQ] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2978), - [anon_sym_union] = ACTIONS(2978), - [anon_sym_pub] = ACTIONS(2978), - [anon_sym_mut] = ACTIONS(2978), - [anon_sym_enum] = ACTIONS(2978), - [anon_sym_interface] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2978), - [anon_sym_DASH_DASH] = ACTIONS(2978), - [anon_sym_QMARK] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_go] = ACTIONS(2978), - [anon_sym_spawn] = ACTIONS(2978), - [anon_sym_json_DOTdecode] = ACTIONS(2978), - [anon_sym_LBRACK2] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_LT_DASH] = ACTIONS(2978), - [anon_sym_LT_LT] = ACTIONS(2978), - [anon_sym_GT_GT] = ACTIONS(2978), - [anon_sym_GT_GT_GT] = ACTIONS(2978), - [anon_sym_AMP_CARET] = ACTIONS(2978), - [anon_sym_AMP_AMP] = ACTIONS(2978), - [anon_sym_PIPE_PIPE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2978), - [sym_none] = ACTIONS(2978), - [sym_true] = ACTIONS(2978), - [sym_false] = ACTIONS(2978), - [sym_nil] = ACTIONS(2978), - [anon_sym_QMARK_DOT] = ACTIONS(2978), - [anon_sym_POUND_LBRACK] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_DOLLARif] = ACTIONS(2978), - [anon_sym_is] = ACTIONS(2978), - [anon_sym_BANGis] = ACTIONS(2978), - [anon_sym_in] = ACTIONS(2978), - [anon_sym_BANGin] = ACTIONS(2978), - [anon_sym_match] = ACTIONS(2978), - [anon_sym_select] = ACTIONS(2978), - [anon_sym_STAR_EQ] = ACTIONS(2978), - [anon_sym_SLASH_EQ] = ACTIONS(2978), - [anon_sym_PERCENT_EQ] = ACTIONS(2978), - [anon_sym_LT_LT_EQ] = ACTIONS(2978), - [anon_sym_GT_GT_EQ] = ACTIONS(2978), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2978), - [anon_sym_AMP_EQ] = ACTIONS(2978), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2978), - [anon_sym_PLUS_EQ] = ACTIONS(2978), - [anon_sym_DASH_EQ] = ACTIONS(2978), - [anon_sym_PIPE_EQ] = ACTIONS(2978), - [anon_sym_CARET_EQ] = ACTIONS(2978), - [anon_sym_COLON_EQ] = ACTIONS(2978), - [anon_sym_lock] = ACTIONS(2978), - [anon_sym_rlock] = ACTIONS(2978), - [anon_sym_unsafe] = ACTIONS(2978), - [anon_sym_sql] = ACTIONS(2978), - [sym_int_literal] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2978), - [sym_rune_literal] = ACTIONS(2978), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_shared] = ACTIONS(2978), - [anon_sym_map_LBRACK] = ACTIONS(2978), - [anon_sym_chan] = ACTIONS(2978), - [anon_sym_thread] = ACTIONS(2978), - [anon_sym_atomic] = ACTIONS(2978), - [anon_sym_assert] = ACTIONS(2978), - [anon_sym_defer] = ACTIONS(2978), - [anon_sym_goto] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_DOLLARfor] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [anon_sym_asm] = ACTIONS(2978), - [anon_sym_AT_LBRACK] = ACTIONS(2978), - [sym___double_quote] = ACTIONS(2978), - [sym___single_quote] = ACTIONS(2978), - [sym___c_double_quote] = ACTIONS(2978), - [sym___c_single_quote] = ACTIONS(2978), - [sym___r_double_quote] = ACTIONS(2978), - [sym___r_single_quote] = ACTIONS(2978), - }, - [900] = { - [ts_builtin_sym_end] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LF] = ACTIONS(2982), - [anon_sym_CR] = ACTIONS(2982), - [anon_sym_CR_LF] = ACTIONS(2982), - [sym_comment] = ACTIONS(493), + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2984), + [anon_sym_CR] = ACTIONS(2984), + [anon_sym_CR_LF] = ACTIONS(2984), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(2984), [anon_sym_as] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2982), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_const] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2982), - [anon_sym___global] = ACTIONS(2982), - [anon_sym_type] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym___global] = ACTIONS(2984), + [anon_sym_type] = ACTIONS(2984), [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2982), + [anon_sym_fn] = ACTIONS(2984), [anon_sym_PLUS] = ACTIONS(2984), [anon_sym_DASH] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(2984), @@ -129851,25 +128209,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2984), [anon_sym_LT_EQ] = ACTIONS(2984), [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2982), - [anon_sym_union] = ACTIONS(2982), - [anon_sym_pub] = ACTIONS(2982), - [anon_sym_mut] = ACTIONS(2982), - [anon_sym_enum] = ACTIONS(2982), - [anon_sym_interface] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_pub] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_interface] = ACTIONS(2984), [anon_sym_PLUS_PLUS] = ACTIONS(2984), [anon_sym_DASH_DASH] = ACTIONS(2984), [anon_sym_QMARK] = ACTIONS(2984), [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_go] = ACTIONS(2982), - [anon_sym_spawn] = ACTIONS(2982), - [anon_sym_json_DOTdecode] = ACTIONS(2982), + [anon_sym_go] = ACTIONS(2984), + [anon_sym_spawn] = ACTIONS(2984), + [anon_sym_json_DOTdecode] = ACTIONS(2984), [anon_sym_LBRACK2] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), [anon_sym_CARET] = ACTIONS(2984), [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2984), [anon_sym_LT_LT] = ACTIONS(2984), [anon_sym_GT_GT] = ACTIONS(2984), [anon_sym_GT_GT_GT] = ACTIONS(2984), @@ -129877,131 +128235,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(2984), [anon_sym_PIPE_PIPE] = ACTIONS(2984), [anon_sym_or] = ACTIONS(2984), - [sym_none] = ACTIONS(2982), - [sym_true] = ACTIONS(2982), - [sym_false] = ACTIONS(2982), - [sym_nil] = ACTIONS(2982), - [anon_sym_QMARK_DOT] = ACTIONS(2984), - [anon_sym_POUND_LBRACK] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_DOLLARif] = ACTIONS(2982), + [sym_none] = ACTIONS(2984), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_nil] = ACTIONS(2984), + [anon_sym_QMARK_DOT] = ACTIONS(2984), + [anon_sym_POUND_LBRACK] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_DOLLARif] = ACTIONS(2984), [anon_sym_is] = ACTIONS(2984), [anon_sym_BANGis] = ACTIONS(2984), [anon_sym_in] = ACTIONS(2984), [anon_sym_BANGin] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2982), - [anon_sym_select] = ACTIONS(2982), - [anon_sym_STAR_EQ] = ACTIONS(2982), - [anon_sym_SLASH_EQ] = ACTIONS(2982), - [anon_sym_PERCENT_EQ] = ACTIONS(2982), - [anon_sym_LT_LT_EQ] = ACTIONS(2982), - [anon_sym_GT_GT_EQ] = ACTIONS(2982), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2982), - [anon_sym_AMP_EQ] = ACTIONS(2982), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2982), - [anon_sym_PLUS_EQ] = ACTIONS(2982), - [anon_sym_DASH_EQ] = ACTIONS(2982), - [anon_sym_PIPE_EQ] = ACTIONS(2982), - [anon_sym_CARET_EQ] = ACTIONS(2982), - [anon_sym_COLON_EQ] = ACTIONS(2982), - [anon_sym_lock] = ACTIONS(2982), - [anon_sym_rlock] = ACTIONS(2982), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_sql] = ACTIONS(2982), - [sym_int_literal] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2982), - [sym_rune_literal] = ACTIONS(2982), - [anon_sym_AT] = ACTIONS(2982), - [anon_sym_shared] = ACTIONS(2982), - [anon_sym_map_LBRACK] = ACTIONS(2982), - [anon_sym_chan] = ACTIONS(2982), - [anon_sym_thread] = ACTIONS(2982), - [anon_sym_atomic] = ACTIONS(2982), - [anon_sym_assert] = ACTIONS(2982), - [anon_sym_defer] = ACTIONS(2982), - [anon_sym_goto] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_DOLLARfor] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym_AT_LBRACK] = ACTIONS(2982), - [sym___double_quote] = ACTIONS(2982), - [sym___single_quote] = ACTIONS(2982), - [sym___c_double_quote] = ACTIONS(2982), - [sym___c_single_quote] = ACTIONS(2982), - [sym___r_double_quote] = ACTIONS(2982), - [sym___r_single_quote] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_select] = ACTIONS(2984), + [anon_sym_STAR_EQ] = ACTIONS(2984), + [anon_sym_SLASH_EQ] = ACTIONS(2984), + [anon_sym_PERCENT_EQ] = ACTIONS(2984), + [anon_sym_LT_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_GT_EQ] = ACTIONS(2984), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2984), + [anon_sym_AMP_EQ] = ACTIONS(2984), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2984), + [anon_sym_PLUS_EQ] = ACTIONS(2984), + [anon_sym_DASH_EQ] = ACTIONS(2984), + [anon_sym_PIPE_EQ] = ACTIONS(2984), + [anon_sym_CARET_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_lock] = ACTIONS(2984), + [anon_sym_rlock] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_sql] = ACTIONS(2984), + [sym_int_literal] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2984), + [sym_rune_literal] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2984), + [anon_sym_shared] = ACTIONS(2984), + [anon_sym_map_LBRACK] = ACTIONS(2984), + [anon_sym_chan] = ACTIONS(2984), + [anon_sym_thread] = ACTIONS(2984), + [anon_sym_atomic] = ACTIONS(2984), + [anon_sym_assert] = ACTIONS(2984), + [anon_sym_defer] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_DOLLARfor] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym_AT_LBRACK] = ACTIONS(2984), + [sym___double_quote] = ACTIONS(2984), + [sym___single_quote] = ACTIONS(2984), + [sym___c_double_quote] = ACTIONS(2984), + [sym___c_single_quote] = ACTIONS(2984), + [sym___r_double_quote] = ACTIONS(2984), + [sym___r_single_quote] = ACTIONS(2984), }, - [901] = { + [885] = { + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LF] = ACTIONS(2988), + [anon_sym_CR] = ACTIONS(2988), + [anon_sym_CR_LF] = ACTIONS(2988), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym___global] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2988), + [anon_sym_fn] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_LT_EQ] = ACTIONS(2988), + [anon_sym_GT_EQ] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_pub] = ACTIONS(2988), + [anon_sym_mut] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_interface] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_go] = ACTIONS(2988), + [anon_sym_spawn] = ACTIONS(2988), + [anon_sym_json_DOTdecode] = ACTIONS(2988), + [anon_sym_LBRACK2] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2988), + [anon_sym_CARET] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_LT_LT] = ACTIONS(2988), + [anon_sym_GT_GT] = ACTIONS(2988), + [anon_sym_GT_GT_GT] = ACTIONS(2988), + [anon_sym_AMP_CARET] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_or] = ACTIONS(2988), + [sym_none] = ACTIONS(2988), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [sym_nil] = ACTIONS(2988), + [anon_sym_QMARK_DOT] = ACTIONS(2988), + [anon_sym_POUND_LBRACK] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_DOLLARif] = ACTIONS(2988), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2988), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_BANGin] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_select] = ACTIONS(2988), + [anon_sym_STAR_EQ] = ACTIONS(2988), + [anon_sym_SLASH_EQ] = ACTIONS(2988), + [anon_sym_PERCENT_EQ] = ACTIONS(2988), + [anon_sym_LT_LT_EQ] = ACTIONS(2988), + [anon_sym_GT_GT_EQ] = ACTIONS(2988), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2988), + [anon_sym_AMP_EQ] = ACTIONS(2988), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2988), + [anon_sym_PLUS_EQ] = ACTIONS(2988), + [anon_sym_DASH_EQ] = ACTIONS(2988), + [anon_sym_PIPE_EQ] = ACTIONS(2988), + [anon_sym_CARET_EQ] = ACTIONS(2988), + [anon_sym_COLON_EQ] = ACTIONS(2988), + [anon_sym_lock] = ACTIONS(2988), + [anon_sym_rlock] = ACTIONS(2988), + [anon_sym_unsafe] = ACTIONS(2988), + [anon_sym_sql] = ACTIONS(2988), + [sym_int_literal] = ACTIONS(2988), + [sym_float_literal] = ACTIONS(2988), + [sym_rune_literal] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2988), + [anon_sym_shared] = ACTIONS(2988), + [anon_sym_map_LBRACK] = ACTIONS(2988), + [anon_sym_chan] = ACTIONS(2988), + [anon_sym_thread] = ACTIONS(2988), + [anon_sym_atomic] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_defer] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_DOLLARfor] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym_AT_LBRACK] = ACTIONS(2988), + [sym___double_quote] = ACTIONS(2988), + [sym___single_quote] = ACTIONS(2988), + [sym___c_double_quote] = ACTIONS(2988), + [sym___c_single_quote] = ACTIONS(2988), + [sym___r_double_quote] = ACTIONS(2988), + [sym___r_single_quote] = ACTIONS(2988), + }, + [886] = { [ts_builtin_sym_end] = ACTIONS(2990), [sym_identifier] = ACTIONS(2992), [anon_sym_LF] = ACTIONS(2992), [anon_sym_CR] = ACTIONS(2992), [anon_sym_CR_LF] = ACTIONS(2992), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(2994), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_as] = ACTIONS(2992), [anon_sym_LBRACE] = ACTIONS(2992), [anon_sym_COMMA] = ACTIONS(2992), [anon_sym_const] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2992), [anon_sym_EQ] = ACTIONS(2992), [anon_sym___global] = ACTIONS(2992), [anon_sym_type] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2992), [anon_sym_fn] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PERCENT] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2992), + [anon_sym_PERCENT] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2992), + [anon_sym_EQ_EQ] = ACTIONS(2992), + [anon_sym_BANG_EQ] = ACTIONS(2992), + [anon_sym_LT_EQ] = ACTIONS(2992), + [anon_sym_GT_EQ] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2990), [anon_sym_struct] = ACTIONS(2992), [anon_sym_union] = ACTIONS(2992), [anon_sym_pub] = ACTIONS(2992), [anon_sym_mut] = ACTIONS(2992), [anon_sym_enum] = ACTIONS(2992), [anon_sym_interface] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2992), [anon_sym_go] = ACTIONS(2992), [anon_sym_spawn] = ACTIONS(2992), [anon_sym_json_DOTdecode] = ACTIONS(2992), - [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_LBRACK2] = ACTIONS(2992), [anon_sym_TILDE] = ACTIONS(2992), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_CARET] = ACTIONS(2992), + [anon_sym_AMP] = ACTIONS(2992), [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_LT_LT] = ACTIONS(2994), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2994), - [anon_sym_AMP_CARET] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2994), + [anon_sym_LT_LT] = ACTIONS(2992), + [anon_sym_GT_GT] = ACTIONS(2992), + [anon_sym_GT_GT_GT] = ACTIONS(2992), + [anon_sym_AMP_CARET] = ACTIONS(2992), + [anon_sym_AMP_AMP] = ACTIONS(2992), + [anon_sym_PIPE_PIPE] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(2992), [sym_none] = ACTIONS(2992), [sym_true] = ACTIONS(2992), [sym_false] = ACTIONS(2992), [sym_nil] = ACTIONS(2992), - [anon_sym_QMARK_DOT] = ACTIONS(2994), - [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_QMARK_DOT] = ACTIONS(2992), + [anon_sym_POUND_LBRACK] = ACTIONS(2992), [anon_sym_if] = ACTIONS(2992), [anon_sym_DOLLARif] = ACTIONS(2992), - [anon_sym_is] = ACTIONS(2994), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_in] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_is] = ACTIONS(2992), + [anon_sym_BANGis] = ACTIONS(2992), + [anon_sym_in] = ACTIONS(2992), + [anon_sym_BANGin] = ACTIONS(2992), [anon_sym_match] = ACTIONS(2992), [anon_sym_select] = ACTIONS(2992), [anon_sym_STAR_EQ] = ACTIONS(2992), @@ -130048,3640 +128519,8951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2992), [sym___r_single_quote] = ACTIONS(2992), }, + [887] = { + [ts_builtin_sym_end] = ACTIONS(2994), + [sym_identifier] = ACTIONS(2996), + [anon_sym_LF] = ACTIONS(2996), + [anon_sym_CR] = ACTIONS(2996), + [anon_sym_CR_LF] = ACTIONS(2996), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2996), + [anon_sym_as] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_EQ] = ACTIONS(2996), + [anon_sym___global] = ACTIONS(2996), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2996), + [anon_sym_fn] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_SLASH] = ACTIONS(2996), + [anon_sym_PERCENT] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_GT] = ACTIONS(2996), + [anon_sym_EQ_EQ] = ACTIONS(2996), + [anon_sym_BANG_EQ] = ACTIONS(2996), + [anon_sym_LT_EQ] = ACTIONS(2996), + [anon_sym_GT_EQ] = ACTIONS(2996), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_mut] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_interface] = ACTIONS(2996), + [anon_sym_PLUS_PLUS] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2996), + [anon_sym_QMARK] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [anon_sym_go] = ACTIONS(2996), + [anon_sym_spawn] = ACTIONS(2996), + [anon_sym_json_DOTdecode] = ACTIONS(2996), + [anon_sym_LBRACK2] = ACTIONS(2996), + [anon_sym_TILDE] = ACTIONS(2996), + [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_LT_DASH] = ACTIONS(2996), + [anon_sym_LT_LT] = ACTIONS(2996), + [anon_sym_GT_GT] = ACTIONS(2996), + [anon_sym_GT_GT_GT] = ACTIONS(2996), + [anon_sym_AMP_CARET] = ACTIONS(2996), + [anon_sym_AMP_AMP] = ACTIONS(2996), + [anon_sym_PIPE_PIPE] = ACTIONS(2996), + [anon_sym_or] = ACTIONS(2996), + [sym_none] = ACTIONS(2996), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_nil] = ACTIONS(2996), + [anon_sym_QMARK_DOT] = ACTIONS(2996), + [anon_sym_POUND_LBRACK] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_DOLLARif] = ACTIONS(2996), + [anon_sym_is] = ACTIONS(2996), + [anon_sym_BANGis] = ACTIONS(2996), + [anon_sym_in] = ACTIONS(2996), + [anon_sym_BANGin] = ACTIONS(2996), + [anon_sym_match] = ACTIONS(2996), + [anon_sym_select] = ACTIONS(2996), + [anon_sym_STAR_EQ] = ACTIONS(2996), + [anon_sym_SLASH_EQ] = ACTIONS(2996), + [anon_sym_PERCENT_EQ] = ACTIONS(2996), + [anon_sym_LT_LT_EQ] = ACTIONS(2996), + [anon_sym_GT_GT_EQ] = ACTIONS(2996), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2996), + [anon_sym_AMP_EQ] = ACTIONS(2996), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2996), + [anon_sym_PLUS_EQ] = ACTIONS(2996), + [anon_sym_DASH_EQ] = ACTIONS(2996), + [anon_sym_PIPE_EQ] = ACTIONS(2996), + [anon_sym_CARET_EQ] = ACTIONS(2996), + [anon_sym_COLON_EQ] = ACTIONS(2996), + [anon_sym_lock] = ACTIONS(2996), + [anon_sym_rlock] = ACTIONS(2996), + [anon_sym_unsafe] = ACTIONS(2996), + [anon_sym_sql] = ACTIONS(2996), + [sym_int_literal] = ACTIONS(2996), + [sym_float_literal] = ACTIONS(2996), + [sym_rune_literal] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(2996), + [anon_sym_shared] = ACTIONS(2996), + [anon_sym_map_LBRACK] = ACTIONS(2996), + [anon_sym_chan] = ACTIONS(2996), + [anon_sym_thread] = ACTIONS(2996), + [anon_sym_atomic] = ACTIONS(2996), + [anon_sym_assert] = ACTIONS(2996), + [anon_sym_defer] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_DOLLARfor] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym_AT_LBRACK] = ACTIONS(2996), + [sym___double_quote] = ACTIONS(2996), + [sym___single_quote] = ACTIONS(2996), + [sym___c_double_quote] = ACTIONS(2996), + [sym___c_single_quote] = ACTIONS(2996), + [sym___r_double_quote] = ACTIONS(2996), + [sym___r_single_quote] = ACTIONS(2996), + }, + [888] = { + [ts_builtin_sym_end] = ACTIONS(2998), + [sym_identifier] = ACTIONS(3000), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_CR] = ACTIONS(3000), + [anon_sym_CR_LF] = ACTIONS(3000), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_EQ] = ACTIONS(3000), + [anon_sym___global] = ACTIONS(3000), + [anon_sym_type] = ACTIONS(3000), + [anon_sym_PIPE] = ACTIONS(3000), + [anon_sym_fn] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_SLASH] = ACTIONS(3000), + [anon_sym_PERCENT] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(3000), + [anon_sym_EQ_EQ] = ACTIONS(3000), + [anon_sym_BANG_EQ] = ACTIONS(3000), + [anon_sym_LT_EQ] = ACTIONS(3000), + [anon_sym_GT_EQ] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_pub] = ACTIONS(3000), + [anon_sym_mut] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_interface] = ACTIONS(3000), + [anon_sym_PLUS_PLUS] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3000), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(3000), + [anon_sym_go] = ACTIONS(3000), + [anon_sym_spawn] = ACTIONS(3000), + [anon_sym_json_DOTdecode] = ACTIONS(3000), + [anon_sym_LBRACK2] = ACTIONS(3000), + [anon_sym_TILDE] = ACTIONS(3000), + [anon_sym_CARET] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_LT_DASH] = ACTIONS(3000), + [anon_sym_LT_LT] = ACTIONS(3000), + [anon_sym_GT_GT] = ACTIONS(3000), + [anon_sym_GT_GT_GT] = ACTIONS(3000), + [anon_sym_AMP_CARET] = ACTIONS(3000), + [anon_sym_AMP_AMP] = ACTIONS(3000), + [anon_sym_PIPE_PIPE] = ACTIONS(3000), + [anon_sym_or] = ACTIONS(3000), + [sym_none] = ACTIONS(3000), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [sym_nil] = ACTIONS(3000), + [anon_sym_QMARK_DOT] = ACTIONS(3000), + [anon_sym_POUND_LBRACK] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_DOLLARif] = ACTIONS(3000), + [anon_sym_is] = ACTIONS(3000), + [anon_sym_BANGis] = ACTIONS(3000), + [anon_sym_in] = ACTIONS(3000), + [anon_sym_BANGin] = ACTIONS(3000), + [anon_sym_match] = ACTIONS(3000), + [anon_sym_select] = ACTIONS(3000), + [anon_sym_STAR_EQ] = ACTIONS(3000), + [anon_sym_SLASH_EQ] = ACTIONS(3000), + [anon_sym_PERCENT_EQ] = ACTIONS(3000), + [anon_sym_LT_LT_EQ] = ACTIONS(3000), + [anon_sym_GT_GT_EQ] = ACTIONS(3000), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3000), + [anon_sym_AMP_EQ] = ACTIONS(3000), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3000), + [anon_sym_PLUS_EQ] = ACTIONS(3000), + [anon_sym_DASH_EQ] = ACTIONS(3000), + [anon_sym_PIPE_EQ] = ACTIONS(3000), + [anon_sym_CARET_EQ] = ACTIONS(3000), + [anon_sym_COLON_EQ] = ACTIONS(3000), + [anon_sym_lock] = ACTIONS(3000), + [anon_sym_rlock] = ACTIONS(3000), + [anon_sym_unsafe] = ACTIONS(3000), + [anon_sym_sql] = ACTIONS(3000), + [sym_int_literal] = ACTIONS(3000), + [sym_float_literal] = ACTIONS(3000), + [sym_rune_literal] = ACTIONS(3000), + [anon_sym_AT] = ACTIONS(3000), + [anon_sym_shared] = ACTIONS(3000), + [anon_sym_map_LBRACK] = ACTIONS(3000), + [anon_sym_chan] = ACTIONS(3000), + [anon_sym_thread] = ACTIONS(3000), + [anon_sym_atomic] = ACTIONS(3000), + [anon_sym_assert] = ACTIONS(3000), + [anon_sym_defer] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_DOLLARfor] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym_AT_LBRACK] = ACTIONS(3000), + [sym___double_quote] = ACTIONS(3000), + [sym___single_quote] = ACTIONS(3000), + [sym___c_double_quote] = ACTIONS(3000), + [sym___c_single_quote] = ACTIONS(3000), + [sym___r_double_quote] = ACTIONS(3000), + [sym___r_single_quote] = ACTIONS(3000), + }, + [889] = { + [ts_builtin_sym_end] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3004), + [anon_sym_LF] = ACTIONS(3004), + [anon_sym_CR] = ACTIONS(3004), + [anon_sym_CR_LF] = ACTIONS(3004), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym_EQ] = ACTIONS(3004), + [anon_sym___global] = ACTIONS(3004), + [anon_sym_type] = ACTIONS(3004), + [anon_sym_PIPE] = ACTIONS(3004), + [anon_sym_fn] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_SLASH] = ACTIONS(3004), + [anon_sym_PERCENT] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3004), + [anon_sym_GT] = ACTIONS(3004), + [anon_sym_EQ_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3004), + [anon_sym_LT_EQ] = ACTIONS(3004), + [anon_sym_GT_EQ] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_pub] = ACTIONS(3004), + [anon_sym_mut] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_interface] = ACTIONS(3004), + [anon_sym_PLUS_PLUS] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3004), + [anon_sym_QMARK] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3004), + [anon_sym_go] = ACTIONS(3004), + [anon_sym_spawn] = ACTIONS(3004), + [anon_sym_json_DOTdecode] = ACTIONS(3004), + [anon_sym_LBRACK2] = ACTIONS(3004), + [anon_sym_TILDE] = ACTIONS(3004), + [anon_sym_CARET] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_LT_DASH] = ACTIONS(3004), + [anon_sym_LT_LT] = ACTIONS(3004), + [anon_sym_GT_GT] = ACTIONS(3004), + [anon_sym_GT_GT_GT] = ACTIONS(3004), + [anon_sym_AMP_CARET] = ACTIONS(3004), + [anon_sym_AMP_AMP] = ACTIONS(3004), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_or] = ACTIONS(3004), + [sym_none] = ACTIONS(3004), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [sym_nil] = ACTIONS(3004), + [anon_sym_QMARK_DOT] = ACTIONS(3004), + [anon_sym_POUND_LBRACK] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_DOLLARif] = ACTIONS(3004), + [anon_sym_is] = ACTIONS(3004), + [anon_sym_BANGis] = ACTIONS(3004), + [anon_sym_in] = ACTIONS(3004), + [anon_sym_BANGin] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_select] = ACTIONS(3004), + [anon_sym_STAR_EQ] = ACTIONS(3004), + [anon_sym_SLASH_EQ] = ACTIONS(3004), + [anon_sym_PERCENT_EQ] = ACTIONS(3004), + [anon_sym_LT_LT_EQ] = ACTIONS(3004), + [anon_sym_GT_GT_EQ] = ACTIONS(3004), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3004), + [anon_sym_AMP_EQ] = ACTIONS(3004), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3004), + [anon_sym_PLUS_EQ] = ACTIONS(3004), + [anon_sym_DASH_EQ] = ACTIONS(3004), + [anon_sym_PIPE_EQ] = ACTIONS(3004), + [anon_sym_CARET_EQ] = ACTIONS(3004), + [anon_sym_COLON_EQ] = ACTIONS(3004), + [anon_sym_lock] = ACTIONS(3004), + [anon_sym_rlock] = ACTIONS(3004), + [anon_sym_unsafe] = ACTIONS(3004), + [anon_sym_sql] = ACTIONS(3004), + [sym_int_literal] = ACTIONS(3004), + [sym_float_literal] = ACTIONS(3004), + [sym_rune_literal] = ACTIONS(3004), + [anon_sym_AT] = ACTIONS(3004), + [anon_sym_shared] = ACTIONS(3004), + [anon_sym_map_LBRACK] = ACTIONS(3004), + [anon_sym_chan] = ACTIONS(3004), + [anon_sym_thread] = ACTIONS(3004), + [anon_sym_atomic] = ACTIONS(3004), + [anon_sym_assert] = ACTIONS(3004), + [anon_sym_defer] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_DOLLARfor] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_POUND] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym_AT_LBRACK] = ACTIONS(3004), + [sym___double_quote] = ACTIONS(3004), + [sym___single_quote] = ACTIONS(3004), + [sym___c_double_quote] = ACTIONS(3004), + [sym___c_single_quote] = ACTIONS(3004), + [sym___r_double_quote] = ACTIONS(3004), + [sym___r_single_quote] = ACTIONS(3004), + }, + [890] = { + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3008), + [anon_sym_LF] = ACTIONS(3008), + [anon_sym_CR] = ACTIONS(3008), + [anon_sym_CR_LF] = ACTIONS(3008), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(3008), + [anon_sym___global] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_fn] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_PERCENT] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3006), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_pub] = ACTIONS(3008), + [anon_sym_mut] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_interface] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [anon_sym_QMARK] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_go] = ACTIONS(3008), + [anon_sym_spawn] = ACTIONS(3008), + [anon_sym_json_DOTdecode] = ACTIONS(3008), + [anon_sym_LBRACK2] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_CARET] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT_DASH] = ACTIONS(3008), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(3008), + [anon_sym_GT_GT_GT] = ACTIONS(3008), + [anon_sym_AMP_CARET] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_or] = ACTIONS(3008), + [sym_none] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_nil] = ACTIONS(3008), + [anon_sym_QMARK_DOT] = ACTIONS(3008), + [anon_sym_POUND_LBRACK] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_DOLLARif] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3008), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_match] = ACTIONS(3008), + [anon_sym_select] = ACTIONS(3008), + [anon_sym_STAR_EQ] = ACTIONS(3008), + [anon_sym_SLASH_EQ] = ACTIONS(3008), + [anon_sym_PERCENT_EQ] = ACTIONS(3008), + [anon_sym_LT_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_GT_EQ] = ACTIONS(3008), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3008), + [anon_sym_AMP_EQ] = ACTIONS(3008), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3008), + [anon_sym_PLUS_EQ] = ACTIONS(3008), + [anon_sym_DASH_EQ] = ACTIONS(3008), + [anon_sym_PIPE_EQ] = ACTIONS(3008), + [anon_sym_CARET_EQ] = ACTIONS(3008), + [anon_sym_COLON_EQ] = ACTIONS(3008), + [anon_sym_lock] = ACTIONS(3008), + [anon_sym_rlock] = ACTIONS(3008), + [anon_sym_unsafe] = ACTIONS(3008), + [anon_sym_sql] = ACTIONS(3008), + [sym_int_literal] = ACTIONS(3008), + [sym_float_literal] = ACTIONS(3008), + [sym_rune_literal] = ACTIONS(3008), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_shared] = ACTIONS(3008), + [anon_sym_map_LBRACK] = ACTIONS(3008), + [anon_sym_chan] = ACTIONS(3008), + [anon_sym_thread] = ACTIONS(3008), + [anon_sym_atomic] = ACTIONS(3008), + [anon_sym_assert] = ACTIONS(3008), + [anon_sym_defer] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_DOLLARfor] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_POUND] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym_AT_LBRACK] = ACTIONS(3008), + [sym___double_quote] = ACTIONS(3008), + [sym___single_quote] = ACTIONS(3008), + [sym___c_double_quote] = ACTIONS(3008), + [sym___c_single_quote] = ACTIONS(3008), + [sym___r_double_quote] = ACTIONS(3008), + [sym___r_single_quote] = ACTIONS(3008), + }, + [891] = { + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3012), + [anon_sym_LF] = ACTIONS(3012), + [anon_sym_CR] = ACTIONS(3012), + [anon_sym_CR_LF] = ACTIONS(3012), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_as] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_EQ] = ACTIONS(3012), + [anon_sym___global] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3012), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_GT] = ACTIONS(3012), + [anon_sym_EQ_EQ] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_LT_EQ] = ACTIONS(3012), + [anon_sym_GT_EQ] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_pub] = ACTIONS(3012), + [anon_sym_mut] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_go] = ACTIONS(3012), + [anon_sym_spawn] = ACTIONS(3012), + [anon_sym_json_DOTdecode] = ACTIONS(3012), + [anon_sym_LBRACK2] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_CARET] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_LT_LT] = ACTIONS(3012), + [anon_sym_GT_GT] = ACTIONS(3012), + [anon_sym_GT_GT_GT] = ACTIONS(3012), + [anon_sym_AMP_CARET] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_or] = ACTIONS(3012), + [sym_none] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_nil] = ACTIONS(3012), + [anon_sym_QMARK_DOT] = ACTIONS(3012), + [anon_sym_POUND_LBRACK] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_DOLLARif] = ACTIONS(3012), + [anon_sym_is] = ACTIONS(3012), + [anon_sym_BANGis] = ACTIONS(3012), + [anon_sym_in] = ACTIONS(3012), + [anon_sym_BANGin] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_select] = ACTIONS(3012), + [anon_sym_STAR_EQ] = ACTIONS(3012), + [anon_sym_SLASH_EQ] = ACTIONS(3012), + [anon_sym_PERCENT_EQ] = ACTIONS(3012), + [anon_sym_LT_LT_EQ] = ACTIONS(3012), + [anon_sym_GT_GT_EQ] = ACTIONS(3012), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3012), + [anon_sym_AMP_EQ] = ACTIONS(3012), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3012), + [anon_sym_PLUS_EQ] = ACTIONS(3012), + [anon_sym_DASH_EQ] = ACTIONS(3012), + [anon_sym_PIPE_EQ] = ACTIONS(3012), + [anon_sym_CARET_EQ] = ACTIONS(3012), + [anon_sym_COLON_EQ] = ACTIONS(3012), + [anon_sym_lock] = ACTIONS(3012), + [anon_sym_rlock] = ACTIONS(3012), + [anon_sym_unsafe] = ACTIONS(3012), + [anon_sym_sql] = ACTIONS(3012), + [sym_int_literal] = ACTIONS(3012), + [sym_float_literal] = ACTIONS(3012), + [sym_rune_literal] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_shared] = ACTIONS(3012), + [anon_sym_map_LBRACK] = ACTIONS(3012), + [anon_sym_chan] = ACTIONS(3012), + [anon_sym_thread] = ACTIONS(3012), + [anon_sym_atomic] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_defer] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_DOLLARfor] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym_AT_LBRACK] = ACTIONS(3012), + [sym___double_quote] = ACTIONS(3012), + [sym___single_quote] = ACTIONS(3012), + [sym___c_double_quote] = ACTIONS(3012), + [sym___c_single_quote] = ACTIONS(3012), + [sym___r_double_quote] = ACTIONS(3012), + [sym___r_single_quote] = ACTIONS(3012), + }, + [892] = { + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_CR] = ACTIONS(3016), + [anon_sym_CR_LF] = ACTIONS(3016), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3016), + [anon_sym_as] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(3016), + [anon_sym___global] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3016), + [anon_sym_fn] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_PERCENT] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [anon_sym_LT_EQ] = ACTIONS(3016), + [anon_sym_GT_EQ] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_pub] = ACTIONS(3016), + [anon_sym_mut] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_interface] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3016), + [anon_sym_QMARK] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3016), + [anon_sym_go] = ACTIONS(3016), + [anon_sym_spawn] = ACTIONS(3016), + [anon_sym_json_DOTdecode] = ACTIONS(3016), + [anon_sym_LBRACK2] = ACTIONS(3016), + [anon_sym_TILDE] = ACTIONS(3016), + [anon_sym_CARET] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_LT_DASH] = ACTIONS(3016), + [anon_sym_LT_LT] = ACTIONS(3016), + [anon_sym_GT_GT] = ACTIONS(3016), + [anon_sym_GT_GT_GT] = ACTIONS(3016), + [anon_sym_AMP_CARET] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_or] = ACTIONS(3016), + [sym_none] = ACTIONS(3016), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [sym_nil] = ACTIONS(3016), + [anon_sym_QMARK_DOT] = ACTIONS(3016), + [anon_sym_POUND_LBRACK] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_DOLLARif] = ACTIONS(3016), + [anon_sym_is] = ACTIONS(3016), + [anon_sym_BANGis] = ACTIONS(3016), + [anon_sym_in] = ACTIONS(3016), + [anon_sym_BANGin] = ACTIONS(3016), + [anon_sym_match] = ACTIONS(3016), + [anon_sym_select] = ACTIONS(3016), + [anon_sym_STAR_EQ] = ACTIONS(3016), + [anon_sym_SLASH_EQ] = ACTIONS(3016), + [anon_sym_PERCENT_EQ] = ACTIONS(3016), + [anon_sym_LT_LT_EQ] = ACTIONS(3016), + [anon_sym_GT_GT_EQ] = ACTIONS(3016), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3016), + [anon_sym_AMP_EQ] = ACTIONS(3016), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3016), + [anon_sym_PLUS_EQ] = ACTIONS(3016), + [anon_sym_DASH_EQ] = ACTIONS(3016), + [anon_sym_PIPE_EQ] = ACTIONS(3016), + [anon_sym_CARET_EQ] = ACTIONS(3016), + [anon_sym_COLON_EQ] = ACTIONS(3016), + [anon_sym_lock] = ACTIONS(3016), + [anon_sym_rlock] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(3016), + [anon_sym_sql] = ACTIONS(3016), + [sym_int_literal] = ACTIONS(3016), + [sym_float_literal] = ACTIONS(3016), + [sym_rune_literal] = ACTIONS(3016), + [anon_sym_AT] = ACTIONS(3016), + [anon_sym_shared] = ACTIONS(3016), + [anon_sym_map_LBRACK] = ACTIONS(3016), + [anon_sym_chan] = ACTIONS(3016), + [anon_sym_thread] = ACTIONS(3016), + [anon_sym_atomic] = ACTIONS(3016), + [anon_sym_assert] = ACTIONS(3016), + [anon_sym_defer] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_DOLLARfor] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym_AT_LBRACK] = ACTIONS(3016), + [sym___double_quote] = ACTIONS(3016), + [sym___single_quote] = ACTIONS(3016), + [sym___c_double_quote] = ACTIONS(3016), + [sym___c_single_quote] = ACTIONS(3016), + [sym___r_double_quote] = ACTIONS(3016), + [sym___r_single_quote] = ACTIONS(3016), + }, + [893] = { + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_STAR_EQ] = ACTIONS(3020), + [anon_sym_SLASH_EQ] = ACTIONS(3020), + [anon_sym_PERCENT_EQ] = ACTIONS(3020), + [anon_sym_LT_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_AMP_EQ] = ACTIONS(3020), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(3020), + [anon_sym_DASH_EQ] = ACTIONS(3020), + [anon_sym_PIPE_EQ] = ACTIONS(3020), + [anon_sym_CARET_EQ] = ACTIONS(3020), + [anon_sym_COLON_EQ] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [anon_sym_AT] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), + }, + [894] = { + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LF] = ACTIONS(3024), + [anon_sym_CR] = ACTIONS(3024), + [anon_sym_CR_LF] = ACTIONS(3024), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym___global] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_pub] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3024), + [anon_sym_POUND_LBRACK] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_STAR_EQ] = ACTIONS(3024), + [anon_sym_SLASH_EQ] = ACTIONS(3024), + [anon_sym_PERCENT_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_GT_EQ] = ACTIONS(3024), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3024), + [anon_sym_AMP_EQ] = ACTIONS(3024), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3024), + [anon_sym_PLUS_EQ] = ACTIONS(3024), + [anon_sym_DASH_EQ] = ACTIONS(3024), + [anon_sym_PIPE_EQ] = ACTIONS(3024), + [anon_sym_CARET_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_defer] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_DOLLARfor] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym_AT_LBRACK] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), + }, + [895] = { + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LF] = ACTIONS(3028), + [anon_sym_CR] = ACTIONS(3028), + [anon_sym_CR_LF] = ACTIONS(3028), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3028), + [anon_sym_as] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_COMMA] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_EQ] = ACTIONS(3028), + [anon_sym___global] = ACTIONS(3028), + [anon_sym_type] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3028), + [anon_sym_PERCENT] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3028), + [anon_sym_EQ_EQ] = ACTIONS(3028), + [anon_sym_BANG_EQ] = ACTIONS(3028), + [anon_sym_LT_EQ] = ACTIONS(3028), + [anon_sym_GT_EQ] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_pub] = ACTIONS(3028), + [anon_sym_mut] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_interface] = ACTIONS(3028), + [anon_sym_PLUS_PLUS] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_go] = ACTIONS(3028), + [anon_sym_spawn] = ACTIONS(3028), + [anon_sym_json_DOTdecode] = ACTIONS(3028), + [anon_sym_LBRACK2] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_CARET] = ACTIONS(3028), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_LT_DASH] = ACTIONS(3028), + [anon_sym_LT_LT] = ACTIONS(3028), + [anon_sym_GT_GT] = ACTIONS(3028), + [anon_sym_GT_GT_GT] = ACTIONS(3028), + [anon_sym_AMP_CARET] = ACTIONS(3028), + [anon_sym_AMP_AMP] = ACTIONS(3028), + [anon_sym_PIPE_PIPE] = ACTIONS(3028), + [anon_sym_or] = ACTIONS(3028), + [sym_none] = ACTIONS(3028), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [sym_nil] = ACTIONS(3028), + [anon_sym_QMARK_DOT] = ACTIONS(3028), + [anon_sym_POUND_LBRACK] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_DOLLARif] = ACTIONS(3028), + [anon_sym_is] = ACTIONS(3028), + [anon_sym_BANGis] = ACTIONS(3028), + [anon_sym_in] = ACTIONS(3028), + [anon_sym_BANGin] = ACTIONS(3028), + [anon_sym_match] = ACTIONS(3028), + [anon_sym_select] = ACTIONS(3028), + [anon_sym_STAR_EQ] = ACTIONS(3028), + [anon_sym_SLASH_EQ] = ACTIONS(3028), + [anon_sym_PERCENT_EQ] = ACTIONS(3028), + [anon_sym_LT_LT_EQ] = ACTIONS(3028), + [anon_sym_GT_GT_EQ] = ACTIONS(3028), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3028), + [anon_sym_AMP_EQ] = ACTIONS(3028), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3028), + [anon_sym_PLUS_EQ] = ACTIONS(3028), + [anon_sym_DASH_EQ] = ACTIONS(3028), + [anon_sym_PIPE_EQ] = ACTIONS(3028), + [anon_sym_CARET_EQ] = ACTIONS(3028), + [anon_sym_COLON_EQ] = ACTIONS(3028), + [anon_sym_lock] = ACTIONS(3028), + [anon_sym_rlock] = ACTIONS(3028), + [anon_sym_unsafe] = ACTIONS(3028), + [anon_sym_sql] = ACTIONS(3028), + [sym_int_literal] = ACTIONS(3028), + [sym_float_literal] = ACTIONS(3028), + [sym_rune_literal] = ACTIONS(3028), + [anon_sym_AT] = ACTIONS(3028), + [anon_sym_shared] = ACTIONS(3028), + [anon_sym_map_LBRACK] = ACTIONS(3028), + [anon_sym_chan] = ACTIONS(3028), + [anon_sym_thread] = ACTIONS(3028), + [anon_sym_atomic] = ACTIONS(3028), + [anon_sym_assert] = ACTIONS(3028), + [anon_sym_defer] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_DOLLARfor] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_POUND] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym_AT_LBRACK] = ACTIONS(3028), + [sym___double_quote] = ACTIONS(3028), + [sym___single_quote] = ACTIONS(3028), + [sym___c_double_quote] = ACTIONS(3028), + [sym___c_single_quote] = ACTIONS(3028), + [sym___r_double_quote] = ACTIONS(3028), + [sym___r_single_quote] = ACTIONS(3028), + }, + [896] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3032), + [anon_sym_CR] = ACTIONS(3032), + [anon_sym_CR_LF] = ACTIONS(3032), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3032), + [anon_sym___global] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_fn] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_pub] = ACTIONS(3032), + [anon_sym_mut] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_PLUS_PLUS] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_go] = ACTIONS(3032), + [anon_sym_spawn] = ACTIONS(3032), + [anon_sym_json_DOTdecode] = ACTIONS(3032), + [anon_sym_LBRACK2] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_CARET] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3032), + [anon_sym_GT_GT_GT] = ACTIONS(3032), + [anon_sym_AMP_CARET] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_or] = ACTIONS(3032), + [sym_none] = ACTIONS(3032), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [sym_nil] = ACTIONS(3032), + [anon_sym_QMARK_DOT] = ACTIONS(3032), + [anon_sym_POUND_LBRACK] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_DOLLARif] = ACTIONS(3032), + [anon_sym_is] = ACTIONS(3032), + [anon_sym_BANGis] = ACTIONS(3032), + [anon_sym_in] = ACTIONS(3032), + [anon_sym_BANGin] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_select] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_COLON_EQ] = ACTIONS(3032), + [anon_sym_lock] = ACTIONS(3032), + [anon_sym_rlock] = ACTIONS(3032), + [anon_sym_unsafe] = ACTIONS(3032), + [anon_sym_sql] = ACTIONS(3032), + [sym_int_literal] = ACTIONS(3032), + [sym_float_literal] = ACTIONS(3032), + [sym_rune_literal] = ACTIONS(3032), + [anon_sym_AT] = ACTIONS(3032), + [anon_sym_shared] = ACTIONS(3032), + [anon_sym_map_LBRACK] = ACTIONS(3032), + [anon_sym_chan] = ACTIONS(3032), + [anon_sym_thread] = ACTIONS(3032), + [anon_sym_atomic] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_defer] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_DOLLARfor] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_POUND] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym_AT_LBRACK] = ACTIONS(3032), + [sym___double_quote] = ACTIONS(3032), + [sym___single_quote] = ACTIONS(3032), + [sym___c_double_quote] = ACTIONS(3032), + [sym___c_single_quote] = ACTIONS(3032), + [sym___r_double_quote] = ACTIONS(3032), + [sym___r_single_quote] = ACTIONS(3032), + }, + [897] = { + [ts_builtin_sym_end] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_CR] = ACTIONS(3036), + [anon_sym_CR_LF] = ACTIONS(3036), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3036), + [anon_sym_as] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_COMMA] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym___global] = ACTIONS(3036), + [anon_sym_type] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_fn] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_pub] = ACTIONS(3036), + [anon_sym_mut] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_interface] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_go] = ACTIONS(3036), + [anon_sym_spawn] = ACTIONS(3036), + [anon_sym_json_DOTdecode] = ACTIONS(3036), + [anon_sym_LBRACK2] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_GT_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_CARET] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_or] = ACTIONS(3036), + [sym_none] = ACTIONS(3036), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [sym_nil] = ACTIONS(3036), + [anon_sym_QMARK_DOT] = ACTIONS(3036), + [anon_sym_POUND_LBRACK] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_DOLLARif] = ACTIONS(3036), + [anon_sym_is] = ACTIONS(3036), + [anon_sym_BANGis] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_BANGin] = ACTIONS(3036), + [anon_sym_match] = ACTIONS(3036), + [anon_sym_select] = ACTIONS(3036), + [anon_sym_STAR_EQ] = ACTIONS(3036), + [anon_sym_SLASH_EQ] = ACTIONS(3036), + [anon_sym_PERCENT_EQ] = ACTIONS(3036), + [anon_sym_LT_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_GT_EQ] = ACTIONS(3036), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3036), + [anon_sym_AMP_EQ] = ACTIONS(3036), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3036), + [anon_sym_PLUS_EQ] = ACTIONS(3036), + [anon_sym_DASH_EQ] = ACTIONS(3036), + [anon_sym_PIPE_EQ] = ACTIONS(3036), + [anon_sym_CARET_EQ] = ACTIONS(3036), + [anon_sym_COLON_EQ] = ACTIONS(3036), + [anon_sym_lock] = ACTIONS(3036), + [anon_sym_rlock] = ACTIONS(3036), + [anon_sym_unsafe] = ACTIONS(3036), + [anon_sym_sql] = ACTIONS(3036), + [sym_int_literal] = ACTIONS(3036), + [sym_float_literal] = ACTIONS(3036), + [sym_rune_literal] = ACTIONS(3036), + [anon_sym_AT] = ACTIONS(3036), + [anon_sym_shared] = ACTIONS(3036), + [anon_sym_map_LBRACK] = ACTIONS(3036), + [anon_sym_chan] = ACTIONS(3036), + [anon_sym_thread] = ACTIONS(3036), + [anon_sym_atomic] = ACTIONS(3036), + [anon_sym_assert] = ACTIONS(3036), + [anon_sym_defer] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_DOLLARfor] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_POUND] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym_AT_LBRACK] = ACTIONS(3036), + [sym___double_quote] = ACTIONS(3036), + [sym___single_quote] = ACTIONS(3036), + [sym___c_double_quote] = ACTIONS(3036), + [sym___c_single_quote] = ACTIONS(3036), + [sym___r_double_quote] = ACTIONS(3036), + [sym___r_single_quote] = ACTIONS(3036), + }, + [898] = { + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_CR] = ACTIONS(3040), + [anon_sym_CR_LF] = ACTIONS(3040), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym___global] = ACTIONS(3040), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_pub] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_interface] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3040), + [anon_sym_POUND_LBRACK] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_STAR_EQ] = ACTIONS(3040), + [anon_sym_SLASH_EQ] = ACTIONS(3040), + [anon_sym_PERCENT_EQ] = ACTIONS(3040), + [anon_sym_LT_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_GT_EQ] = ACTIONS(3040), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3040), + [anon_sym_AMP_EQ] = ACTIONS(3040), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3040), + [anon_sym_PLUS_EQ] = ACTIONS(3040), + [anon_sym_DASH_EQ] = ACTIONS(3040), + [anon_sym_PIPE_EQ] = ACTIONS(3040), + [anon_sym_CARET_EQ] = ACTIONS(3040), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [anon_sym_AT] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [anon_sym_assert] = ACTIONS(3040), + [anon_sym_defer] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_DOLLARfor] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym_AT_LBRACK] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), + }, + [899] = { + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym___global] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_STAR_EQ] = ACTIONS(3044), + [anon_sym_SLASH_EQ] = ACTIONS(3044), + [anon_sym_PERCENT_EQ] = ACTIONS(3044), + [anon_sym_LT_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_GT_EQ] = ACTIONS(3044), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3044), + [anon_sym_AMP_EQ] = ACTIONS(3044), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3044), + [anon_sym_PLUS_EQ] = ACTIONS(3044), + [anon_sym_DASH_EQ] = ACTIONS(3044), + [anon_sym_PIPE_EQ] = ACTIONS(3044), + [anon_sym_CARET_EQ] = ACTIONS(3044), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [anon_sym_AT] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [anon_sym_assert] = ACTIONS(3044), + [anon_sym_defer] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_DOLLARfor] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym_AT_LBRACK] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), + }, + [900] = { + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_CR] = ACTIONS(3048), + [anon_sym_CR_LF] = ACTIONS(3048), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_as] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_EQ] = ACTIONS(3048), + [anon_sym___global] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_fn] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3048), + [anon_sym_GT] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_LT_EQ] = ACTIONS(3048), + [anon_sym_GT_EQ] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_pub] = ACTIONS(3048), + [anon_sym_mut] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(3048), + [anon_sym_spawn] = ACTIONS(3048), + [anon_sym_json_DOTdecode] = ACTIONS(3048), + [anon_sym_LBRACK2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_CARET] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_LT] = ACTIONS(3048), + [anon_sym_GT_GT] = ACTIONS(3048), + [anon_sym_GT_GT_GT] = ACTIONS(3048), + [anon_sym_AMP_CARET] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_or] = ACTIONS(3048), + [sym_none] = ACTIONS(3048), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [sym_nil] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(3048), + [anon_sym_POUND_LBRACK] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_DOLLARif] = ACTIONS(3048), + [anon_sym_is] = ACTIONS(3048), + [anon_sym_BANGis] = ACTIONS(3048), + [anon_sym_in] = ACTIONS(3048), + [anon_sym_BANGin] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_select] = ACTIONS(3048), + [anon_sym_STAR_EQ] = ACTIONS(3048), + [anon_sym_SLASH_EQ] = ACTIONS(3048), + [anon_sym_PERCENT_EQ] = ACTIONS(3048), + [anon_sym_LT_LT_EQ] = ACTIONS(3048), + [anon_sym_GT_GT_EQ] = ACTIONS(3048), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3048), + [anon_sym_AMP_EQ] = ACTIONS(3048), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3048), + [anon_sym_PLUS_EQ] = ACTIONS(3048), + [anon_sym_DASH_EQ] = ACTIONS(3048), + [anon_sym_PIPE_EQ] = ACTIONS(3048), + [anon_sym_CARET_EQ] = ACTIONS(3048), + [anon_sym_COLON_EQ] = ACTIONS(3048), + [anon_sym_lock] = ACTIONS(3048), + [anon_sym_rlock] = ACTIONS(3048), + [anon_sym_unsafe] = ACTIONS(3048), + [anon_sym_sql] = ACTIONS(3048), + [sym_int_literal] = ACTIONS(3048), + [sym_float_literal] = ACTIONS(3048), + [sym_rune_literal] = ACTIONS(3048), + [anon_sym_AT] = ACTIONS(3048), + [anon_sym_shared] = ACTIONS(3048), + [anon_sym_map_LBRACK] = ACTIONS(3048), + [anon_sym_chan] = ACTIONS(3048), + [anon_sym_thread] = ACTIONS(3048), + [anon_sym_atomic] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_defer] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_DOLLARfor] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_POUND] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym_AT_LBRACK] = ACTIONS(3048), + [sym___double_quote] = ACTIONS(3048), + [sym___single_quote] = ACTIONS(3048), + [sym___c_double_quote] = ACTIONS(3048), + [sym___c_single_quote] = ACTIONS(3048), + [sym___r_double_quote] = ACTIONS(3048), + [sym___r_single_quote] = ACTIONS(3048), + }, + [901] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LF] = ACTIONS(3052), + [anon_sym_CR] = ACTIONS(3052), + [anon_sym_CR_LF] = ACTIONS(3052), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_EQ] = ACTIONS(3052), + [anon_sym___global] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_LT_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_GT_EQ] = ACTIONS(3052), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3052), + [anon_sym_AMP_EQ] = ACTIONS(3052), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3052), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_PIPE_EQ] = ACTIONS(3052), + [anon_sym_CARET_EQ] = ACTIONS(3052), + [anon_sym_COLON_EQ] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_defer] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_DOLLARfor] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym_AT_LBRACK] = ACTIONS(3052), + [sym___double_quote] = ACTIONS(3052), + [sym___single_quote] = ACTIONS(3052), + [sym___c_double_quote] = ACTIONS(3052), + [sym___c_single_quote] = ACTIONS(3052), + [sym___r_double_quote] = ACTIONS(3052), + [sym___r_single_quote] = ACTIONS(3052), + }, [902] = { - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LF] = ACTIONS(3002), - [anon_sym_CR] = ACTIONS(3002), - [anon_sym_CR_LF] = ACTIONS(3002), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_as] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3002), - [anon_sym_const] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(3002), - [anon_sym___global] = ACTIONS(3002), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_fn] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_EQ_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_LT_EQ] = ACTIONS(3002), - [anon_sym_GT_EQ] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3002), - [anon_sym_union] = ACTIONS(3002), - [anon_sym_pub] = ACTIONS(3002), - [anon_sym_mut] = ACTIONS(3002), - [anon_sym_enum] = ACTIONS(3002), - [anon_sym_interface] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3002), - [anon_sym_DASH_DASH] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_go] = ACTIONS(3002), - [anon_sym_spawn] = ACTIONS(3002), - [anon_sym_json_DOTdecode] = ACTIONS(3002), - [anon_sym_LBRACK2] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3002), - [anon_sym_GT_GT] = ACTIONS(3002), - [anon_sym_GT_GT_GT] = ACTIONS(3002), - [anon_sym_AMP_CARET] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_or] = ACTIONS(3002), - [sym_none] = ACTIONS(3002), - [sym_true] = ACTIONS(3002), - [sym_false] = ACTIONS(3002), - [sym_nil] = ACTIONS(3002), - [anon_sym_QMARK_DOT] = ACTIONS(3002), - [anon_sym_POUND_LBRACK] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_DOLLARif] = ACTIONS(3002), - [anon_sym_is] = ACTIONS(3002), - [anon_sym_BANGis] = ACTIONS(3002), - [anon_sym_in] = ACTIONS(3002), - [anon_sym_BANGin] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_select] = ACTIONS(3002), - [anon_sym_STAR_EQ] = ACTIONS(3002), - [anon_sym_SLASH_EQ] = ACTIONS(3002), - [anon_sym_PERCENT_EQ] = ACTIONS(3002), - [anon_sym_LT_LT_EQ] = ACTIONS(3002), - [anon_sym_GT_GT_EQ] = ACTIONS(3002), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3002), - [anon_sym_AMP_EQ] = ACTIONS(3002), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3002), - [anon_sym_PLUS_EQ] = ACTIONS(3002), - [anon_sym_DASH_EQ] = ACTIONS(3002), - [anon_sym_PIPE_EQ] = ACTIONS(3002), - [anon_sym_CARET_EQ] = ACTIONS(3002), - [anon_sym_COLON_EQ] = ACTIONS(3002), - [anon_sym_lock] = ACTIONS(3002), - [anon_sym_rlock] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_sql] = ACTIONS(3002), - [sym_int_literal] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3002), - [sym_rune_literal] = ACTIONS(3002), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_shared] = ACTIONS(3002), - [anon_sym_map_LBRACK] = ACTIONS(3002), - [anon_sym_chan] = ACTIONS(3002), - [anon_sym_thread] = ACTIONS(3002), - [anon_sym_atomic] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_defer] = ACTIONS(3002), - [anon_sym_goto] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_DOLLARfor] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [anon_sym_asm] = ACTIONS(3002), - [anon_sym_AT_LBRACK] = ACTIONS(3002), - [sym___double_quote] = ACTIONS(3002), - [sym___single_quote] = ACTIONS(3002), - [sym___c_double_quote] = ACTIONS(3002), - [sym___c_single_quote] = ACTIONS(3002), - [sym___r_double_quote] = ACTIONS(3002), - [sym___r_single_quote] = ACTIONS(3002), + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LF] = ACTIONS(3056), + [anon_sym_CR] = ACTIONS(3056), + [anon_sym_CR_LF] = ACTIONS(3056), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(3056), + [anon_sym___global] = ACTIONS(3056), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_pub] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_interface] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_STAR_EQ] = ACTIONS(3056), + [anon_sym_SLASH_EQ] = ACTIONS(3056), + [anon_sym_PERCENT_EQ] = ACTIONS(3056), + [anon_sym_LT_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_GT_EQ] = ACTIONS(3056), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3056), + [anon_sym_AMP_EQ] = ACTIONS(3056), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3056), + [anon_sym_PLUS_EQ] = ACTIONS(3056), + [anon_sym_DASH_EQ] = ACTIONS(3056), + [anon_sym_PIPE_EQ] = ACTIONS(3056), + [anon_sym_CARET_EQ] = ACTIONS(3056), + [anon_sym_COLON_EQ] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [anon_sym_AT] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), + [anon_sym_assert] = ACTIONS(3056), + [anon_sym_defer] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_DOLLARfor] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_POUND] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym_AT_LBRACK] = ACTIONS(3056), + [sym___double_quote] = ACTIONS(3056), + [sym___single_quote] = ACTIONS(3056), + [sym___c_double_quote] = ACTIONS(3056), + [sym___c_single_quote] = ACTIONS(3056), + [sym___r_double_quote] = ACTIONS(3056), + [sym___r_single_quote] = ACTIONS(3056), }, [903] = { - [ts_builtin_sym_end] = ACTIONS(3004), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LF] = ACTIONS(3006), - [anon_sym_CR] = ACTIONS(3006), - [anon_sym_CR_LF] = ACTIONS(3006), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_as] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3006), - [anon_sym_const] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(3006), - [anon_sym___global] = ACTIONS(3006), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_fn] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_GT] = ACTIONS(3006), - [anon_sym_EQ_EQ] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3006), - [anon_sym_LT_EQ] = ACTIONS(3006), - [anon_sym_GT_EQ] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3006), - [anon_sym_union] = ACTIONS(3006), - [anon_sym_pub] = ACTIONS(3006), - [anon_sym_mut] = ACTIONS(3006), - [anon_sym_enum] = ACTIONS(3006), - [anon_sym_interface] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3006), - [anon_sym_DASH_DASH] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_go] = ACTIONS(3006), - [anon_sym_spawn] = ACTIONS(3006), - [anon_sym_json_DOTdecode] = ACTIONS(3006), - [anon_sym_LBRACK2] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_LT_LT] = ACTIONS(3006), - [anon_sym_GT_GT] = ACTIONS(3006), - [anon_sym_GT_GT_GT] = ACTIONS(3006), - [anon_sym_AMP_CARET] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_or] = ACTIONS(3006), - [sym_none] = ACTIONS(3006), - [sym_true] = ACTIONS(3006), - [sym_false] = ACTIONS(3006), - [sym_nil] = ACTIONS(3006), - [anon_sym_QMARK_DOT] = ACTIONS(3006), - [anon_sym_POUND_LBRACK] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_DOLLARif] = ACTIONS(3006), - [anon_sym_is] = ACTIONS(3006), - [anon_sym_BANGis] = ACTIONS(3006), - [anon_sym_in] = ACTIONS(3006), - [anon_sym_BANGin] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_select] = ACTIONS(3006), - [anon_sym_STAR_EQ] = ACTIONS(3006), - [anon_sym_SLASH_EQ] = ACTIONS(3006), - [anon_sym_PERCENT_EQ] = ACTIONS(3006), - [anon_sym_LT_LT_EQ] = ACTIONS(3006), - [anon_sym_GT_GT_EQ] = ACTIONS(3006), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3006), - [anon_sym_AMP_EQ] = ACTIONS(3006), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(3006), - [anon_sym_DASH_EQ] = ACTIONS(3006), - [anon_sym_PIPE_EQ] = ACTIONS(3006), - [anon_sym_CARET_EQ] = ACTIONS(3006), - [anon_sym_COLON_EQ] = ACTIONS(3006), - [anon_sym_lock] = ACTIONS(3006), - [anon_sym_rlock] = ACTIONS(3006), - [anon_sym_unsafe] = ACTIONS(3006), - [anon_sym_sql] = ACTIONS(3006), - [sym_int_literal] = ACTIONS(3006), - [sym_float_literal] = ACTIONS(3006), - [sym_rune_literal] = ACTIONS(3006), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_shared] = ACTIONS(3006), - [anon_sym_map_LBRACK] = ACTIONS(3006), - [anon_sym_chan] = ACTIONS(3006), - [anon_sym_thread] = ACTIONS(3006), - [anon_sym_atomic] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_defer] = ACTIONS(3006), - [anon_sym_goto] = ACTIONS(3006), - [anon_sym_break] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_DOLLARfor] = ACTIONS(3006), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3006), - [anon_sym_asm] = ACTIONS(3006), - [anon_sym_AT_LBRACK] = ACTIONS(3006), - [sym___double_quote] = ACTIONS(3006), - [sym___single_quote] = ACTIONS(3006), - [sym___c_double_quote] = ACTIONS(3006), - [sym___c_single_quote] = ACTIONS(3006), - [sym___r_double_quote] = ACTIONS(3006), - [sym___r_single_quote] = ACTIONS(3006), + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LF] = ACTIONS(3060), + [anon_sym_CR] = ACTIONS(3060), + [anon_sym_CR_LF] = ACTIONS(3060), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(3060), + [anon_sym___global] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_mut] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_go] = ACTIONS(3060), + [anon_sym_spawn] = ACTIONS(3060), + [anon_sym_json_DOTdecode] = ACTIONS(3060), + [anon_sym_LBRACK2] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_GT_GT_GT] = ACTIONS(3060), + [anon_sym_AMP_CARET] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [sym_none] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_nil] = ACTIONS(3060), + [anon_sym_QMARK_DOT] = ACTIONS(3060), + [anon_sym_POUND_LBRACK] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_DOLLARif] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3060), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_in] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_select] = ACTIONS(3060), + [anon_sym_STAR_EQ] = ACTIONS(3060), + [anon_sym_SLASH_EQ] = ACTIONS(3060), + [anon_sym_PERCENT_EQ] = ACTIONS(3060), + [anon_sym_LT_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_GT_EQ] = ACTIONS(3060), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3060), + [anon_sym_AMP_EQ] = ACTIONS(3060), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3060), + [anon_sym_PLUS_EQ] = ACTIONS(3060), + [anon_sym_DASH_EQ] = ACTIONS(3060), + [anon_sym_PIPE_EQ] = ACTIONS(3060), + [anon_sym_CARET_EQ] = ACTIONS(3060), + [anon_sym_COLON_EQ] = ACTIONS(3060), + [anon_sym_lock] = ACTIONS(3060), + [anon_sym_rlock] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_sql] = ACTIONS(3060), + [sym_int_literal] = ACTIONS(3060), + [sym_float_literal] = ACTIONS(3060), + [sym_rune_literal] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3060), + [anon_sym_shared] = ACTIONS(3060), + [anon_sym_map_LBRACK] = ACTIONS(3060), + [anon_sym_chan] = ACTIONS(3060), + [anon_sym_thread] = ACTIONS(3060), + [anon_sym_atomic] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_DOLLARfor] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym_AT_LBRACK] = ACTIONS(3060), + [sym___double_quote] = ACTIONS(3060), + [sym___single_quote] = ACTIONS(3060), + [sym___c_double_quote] = ACTIONS(3060), + [sym___c_single_quote] = ACTIONS(3060), + [sym___r_double_quote] = ACTIONS(3060), + [sym___r_single_quote] = ACTIONS(3060), }, [904] = { - [ts_builtin_sym_end] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3010), - [anon_sym_LF] = ACTIONS(3010), - [anon_sym_CR] = ACTIONS(3010), - [anon_sym_CR_LF] = ACTIONS(3010), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_as] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3010), - [anon_sym_const] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(3010), - [anon_sym___global] = ACTIONS(3010), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_fn] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_EQ_EQ] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3010), - [anon_sym_LT_EQ] = ACTIONS(3010), - [anon_sym_GT_EQ] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3010), - [anon_sym_union] = ACTIONS(3010), - [anon_sym_pub] = ACTIONS(3010), - [anon_sym_mut] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(3010), - [anon_sym_interface] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_go] = ACTIONS(3010), - [anon_sym_spawn] = ACTIONS(3010), - [anon_sym_json_DOTdecode] = ACTIONS(3010), - [anon_sym_LBRACK2] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3010), - [anon_sym_GT_GT] = ACTIONS(3010), - [anon_sym_GT_GT_GT] = ACTIONS(3010), - [anon_sym_AMP_CARET] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_or] = ACTIONS(3010), - [sym_none] = ACTIONS(3010), - [sym_true] = ACTIONS(3010), - [sym_false] = ACTIONS(3010), - [sym_nil] = ACTIONS(3010), - [anon_sym_QMARK_DOT] = ACTIONS(3010), - [anon_sym_POUND_LBRACK] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_DOLLARif] = ACTIONS(3010), - [anon_sym_is] = ACTIONS(3010), - [anon_sym_BANGis] = ACTIONS(3010), - [anon_sym_in] = ACTIONS(3010), - [anon_sym_BANGin] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_select] = ACTIONS(3010), - [anon_sym_STAR_EQ] = ACTIONS(3010), - [anon_sym_SLASH_EQ] = ACTIONS(3010), - [anon_sym_PERCENT_EQ] = ACTIONS(3010), - [anon_sym_LT_LT_EQ] = ACTIONS(3010), - [anon_sym_GT_GT_EQ] = ACTIONS(3010), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3010), - [anon_sym_AMP_EQ] = ACTIONS(3010), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3010), - [anon_sym_PLUS_EQ] = ACTIONS(3010), - [anon_sym_DASH_EQ] = ACTIONS(3010), - [anon_sym_PIPE_EQ] = ACTIONS(3010), - [anon_sym_CARET_EQ] = ACTIONS(3010), - [anon_sym_COLON_EQ] = ACTIONS(3010), - [anon_sym_lock] = ACTIONS(3010), - [anon_sym_rlock] = ACTIONS(3010), - [anon_sym_unsafe] = ACTIONS(3010), - [anon_sym_sql] = ACTIONS(3010), - [sym_int_literal] = ACTIONS(3010), - [sym_float_literal] = ACTIONS(3010), - [sym_rune_literal] = ACTIONS(3010), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_shared] = ACTIONS(3010), - [anon_sym_map_LBRACK] = ACTIONS(3010), - [anon_sym_chan] = ACTIONS(3010), - [anon_sym_thread] = ACTIONS(3010), - [anon_sym_atomic] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_defer] = ACTIONS(3010), - [anon_sym_goto] = ACTIONS(3010), - [anon_sym_break] = ACTIONS(3010), - [anon_sym_continue] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_DOLLARfor] = ACTIONS(3010), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3010), - [anon_sym_asm] = ACTIONS(3010), - [anon_sym_AT_LBRACK] = ACTIONS(3010), - [sym___double_quote] = ACTIONS(3010), - [sym___single_quote] = ACTIONS(3010), - [sym___c_double_quote] = ACTIONS(3010), - [sym___c_single_quote] = ACTIONS(3010), - [sym___r_double_quote] = ACTIONS(3010), - [sym___r_single_quote] = ACTIONS(3010), + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LF] = ACTIONS(3064), + [anon_sym_CR] = ACTIONS(3064), + [anon_sym_CR_LF] = ACTIONS(3064), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3064), + [anon_sym_as] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(3064), + [anon_sym___global] = ACTIONS(3064), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_GT] = ACTIONS(3064), + [anon_sym_EQ_EQ] = ACTIONS(3064), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(3064), + [anon_sym_GT_EQ] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_pub] = ACTIONS(3064), + [anon_sym_mut] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_interface] = ACTIONS(3064), + [anon_sym_PLUS_PLUS] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3064), + [anon_sym_go] = ACTIONS(3064), + [anon_sym_spawn] = ACTIONS(3064), + [anon_sym_json_DOTdecode] = ACTIONS(3064), + [anon_sym_LBRACK2] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [anon_sym_CARET] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT_DASH] = ACTIONS(3064), + [anon_sym_LT_LT] = ACTIONS(3064), + [anon_sym_GT_GT] = ACTIONS(3064), + [anon_sym_GT_GT_GT] = ACTIONS(3064), + [anon_sym_AMP_CARET] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_PIPE_PIPE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3064), + [sym_none] = ACTIONS(3064), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [sym_nil] = ACTIONS(3064), + [anon_sym_QMARK_DOT] = ACTIONS(3064), + [anon_sym_POUND_LBRACK] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_DOLLARif] = ACTIONS(3064), + [anon_sym_is] = ACTIONS(3064), + [anon_sym_BANGis] = ACTIONS(3064), + [anon_sym_in] = ACTIONS(3064), + [anon_sym_BANGin] = ACTIONS(3064), + [anon_sym_match] = ACTIONS(3064), + [anon_sym_select] = ACTIONS(3064), + [anon_sym_STAR_EQ] = ACTIONS(3064), + [anon_sym_SLASH_EQ] = ACTIONS(3064), + [anon_sym_PERCENT_EQ] = ACTIONS(3064), + [anon_sym_LT_LT_EQ] = ACTIONS(3064), + [anon_sym_GT_GT_EQ] = ACTIONS(3064), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3064), + [anon_sym_AMP_EQ] = ACTIONS(3064), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3064), + [anon_sym_PLUS_EQ] = ACTIONS(3064), + [anon_sym_DASH_EQ] = ACTIONS(3064), + [anon_sym_PIPE_EQ] = ACTIONS(3064), + [anon_sym_CARET_EQ] = ACTIONS(3064), + [anon_sym_COLON_EQ] = ACTIONS(3064), + [anon_sym_lock] = ACTIONS(3064), + [anon_sym_rlock] = ACTIONS(3064), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_sql] = ACTIONS(3064), + [sym_int_literal] = ACTIONS(3064), + [sym_float_literal] = ACTIONS(3064), + [sym_rune_literal] = ACTIONS(3064), + [anon_sym_AT] = ACTIONS(3064), + [anon_sym_shared] = ACTIONS(3064), + [anon_sym_map_LBRACK] = ACTIONS(3064), + [anon_sym_chan] = ACTIONS(3064), + [anon_sym_thread] = ACTIONS(3064), + [anon_sym_atomic] = ACTIONS(3064), + [anon_sym_assert] = ACTIONS(3064), + [anon_sym_defer] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_DOLLARfor] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_POUND] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym_AT_LBRACK] = ACTIONS(3064), + [sym___double_quote] = ACTIONS(3064), + [sym___single_quote] = ACTIONS(3064), + [sym___c_double_quote] = ACTIONS(3064), + [sym___c_single_quote] = ACTIONS(3064), + [sym___r_double_quote] = ACTIONS(3064), + [sym___r_single_quote] = ACTIONS(3064), }, [905] = { - [ts_builtin_sym_end] = ACTIONS(3012), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LF] = ACTIONS(3014), - [anon_sym_CR] = ACTIONS(3014), - [anon_sym_CR_LF] = ACTIONS(3014), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_const] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3014), - [anon_sym___global] = ACTIONS(3014), - [anon_sym_type] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_fn] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_GT] = ACTIONS(3014), - [anon_sym_EQ_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3014), - [anon_sym_LT_EQ] = ACTIONS(3014), - [anon_sym_GT_EQ] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3014), - [anon_sym_union] = ACTIONS(3014), - [anon_sym_pub] = ACTIONS(3014), - [anon_sym_mut] = ACTIONS(3014), - [anon_sym_enum] = ACTIONS(3014), - [anon_sym_interface] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3014), - [anon_sym_DASH_DASH] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_go] = ACTIONS(3014), - [anon_sym_spawn] = ACTIONS(3014), - [anon_sym_json_DOTdecode] = ACTIONS(3014), - [anon_sym_LBRACK2] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3014), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_LT_LT] = ACTIONS(3014), - [anon_sym_GT_GT] = ACTIONS(3014), - [anon_sym_GT_GT_GT] = ACTIONS(3014), - [anon_sym_AMP_CARET] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_or] = ACTIONS(3014), - [sym_none] = ACTIONS(3014), - [sym_true] = ACTIONS(3014), - [sym_false] = ACTIONS(3014), - [sym_nil] = ACTIONS(3014), - [anon_sym_QMARK_DOT] = ACTIONS(3014), - [anon_sym_POUND_LBRACK] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_DOLLARif] = ACTIONS(3014), - [anon_sym_is] = ACTIONS(3014), - [anon_sym_BANGis] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(3014), - [anon_sym_BANGin] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_select] = ACTIONS(3014), - [anon_sym_STAR_EQ] = ACTIONS(3014), - [anon_sym_SLASH_EQ] = ACTIONS(3014), - [anon_sym_PERCENT_EQ] = ACTIONS(3014), - [anon_sym_LT_LT_EQ] = ACTIONS(3014), - [anon_sym_GT_GT_EQ] = ACTIONS(3014), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3014), - [anon_sym_AMP_EQ] = ACTIONS(3014), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3014), - [anon_sym_PLUS_EQ] = ACTIONS(3014), - [anon_sym_DASH_EQ] = ACTIONS(3014), - [anon_sym_PIPE_EQ] = ACTIONS(3014), - [anon_sym_CARET_EQ] = ACTIONS(3014), - [anon_sym_COLON_EQ] = ACTIONS(3014), - [anon_sym_lock] = ACTIONS(3014), - [anon_sym_rlock] = ACTIONS(3014), - [anon_sym_unsafe] = ACTIONS(3014), - [anon_sym_sql] = ACTIONS(3014), - [sym_int_literal] = ACTIONS(3014), - [sym_float_literal] = ACTIONS(3014), - [sym_rune_literal] = ACTIONS(3014), - [anon_sym_AT] = ACTIONS(3014), - [anon_sym_shared] = ACTIONS(3014), - [anon_sym_map_LBRACK] = ACTIONS(3014), - [anon_sym_chan] = ACTIONS(3014), - [anon_sym_thread] = ACTIONS(3014), - [anon_sym_atomic] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_defer] = ACTIONS(3014), - [anon_sym_goto] = ACTIONS(3014), - [anon_sym_break] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_DOLLARfor] = ACTIONS(3014), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [anon_sym_asm] = ACTIONS(3014), - [anon_sym_AT_LBRACK] = ACTIONS(3014), - [sym___double_quote] = ACTIONS(3014), - [sym___single_quote] = ACTIONS(3014), - [sym___c_double_quote] = ACTIONS(3014), - [sym___c_single_quote] = ACTIONS(3014), - [sym___r_double_quote] = ACTIONS(3014), - [sym___r_single_quote] = ACTIONS(3014), + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LF] = ACTIONS(3068), + [anon_sym_CR] = ACTIONS(3068), + [anon_sym_CR_LF] = ACTIONS(3068), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_const] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3068), + [anon_sym___global] = ACTIONS(3068), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_pub] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_enum] = ACTIONS(3068), + [anon_sym_interface] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3068), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3068), + [anon_sym_POUND_LBRACK] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3068), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_STAR_EQ] = ACTIONS(3068), + [anon_sym_SLASH_EQ] = ACTIONS(3068), + [anon_sym_PERCENT_EQ] = ACTIONS(3068), + [anon_sym_LT_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_GT_EQ] = ACTIONS(3068), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3068), + [anon_sym_AMP_EQ] = ACTIONS(3068), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3068), + [anon_sym_PLUS_EQ] = ACTIONS(3068), + [anon_sym_DASH_EQ] = ACTIONS(3068), + [anon_sym_PIPE_EQ] = ACTIONS(3068), + [anon_sym_CARET_EQ] = ACTIONS(3068), + [anon_sym_COLON_EQ] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3068), + [sym_rune_literal] = ACTIONS(3068), + [anon_sym_AT] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3068), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_defer] = ACTIONS(3068), + [anon_sym_goto] = ACTIONS(3068), + [anon_sym_break] = ACTIONS(3068), + [anon_sym_continue] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_DOLLARfor] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_asm] = ACTIONS(3068), + [anon_sym_AT_LBRACK] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3068), + [sym___single_quote] = ACTIONS(3068), + [sym___c_double_quote] = ACTIONS(3068), + [sym___c_single_quote] = ACTIONS(3068), + [sym___r_double_quote] = ACTIONS(3068), + [sym___r_single_quote] = ACTIONS(3068), }, [906] = { - [ts_builtin_sym_end] = ACTIONS(3016), - [sym_identifier] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3018), - [anon_sym_CR] = ACTIONS(3018), - [anon_sym_CR_LF] = ACTIONS(3018), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_const] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_EQ] = ACTIONS(3018), - [anon_sym___global] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_fn] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_struct] = ACTIONS(3018), - [anon_sym_union] = ACTIONS(3018), - [anon_sym_pub] = ACTIONS(3018), - [anon_sym_mut] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_go] = ACTIONS(3018), - [anon_sym_spawn] = ACTIONS(3018), - [anon_sym_json_DOTdecode] = ACTIONS(3018), - [anon_sym_LBRACK2] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_CARET] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_GT_GT_GT] = ACTIONS(3018), - [anon_sym_AMP_CARET] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_or] = ACTIONS(3018), - [sym_none] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_nil] = ACTIONS(3018), - [anon_sym_QMARK_DOT] = ACTIONS(3018), - [anon_sym_POUND_LBRACK] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_DOLLARif] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3018), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_select] = ACTIONS(3018), - [anon_sym_STAR_EQ] = ACTIONS(3018), - [anon_sym_SLASH_EQ] = ACTIONS(3018), - [anon_sym_PERCENT_EQ] = ACTIONS(3018), - [anon_sym_LT_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_GT_EQ] = ACTIONS(3018), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3018), - [anon_sym_AMP_EQ] = ACTIONS(3018), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3018), - [anon_sym_PLUS_EQ] = ACTIONS(3018), - [anon_sym_DASH_EQ] = ACTIONS(3018), - [anon_sym_PIPE_EQ] = ACTIONS(3018), - [anon_sym_CARET_EQ] = ACTIONS(3018), - [anon_sym_COLON_EQ] = ACTIONS(3018), - [anon_sym_lock] = ACTIONS(3018), - [anon_sym_rlock] = ACTIONS(3018), - [anon_sym_unsafe] = ACTIONS(3018), - [anon_sym_sql] = ACTIONS(3018), - [sym_int_literal] = ACTIONS(3018), - [sym_float_literal] = ACTIONS(3018), - [sym_rune_literal] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_shared] = ACTIONS(3018), - [anon_sym_map_LBRACK] = ACTIONS(3018), - [anon_sym_chan] = ACTIONS(3018), - [anon_sym_thread] = ACTIONS(3018), - [anon_sym_atomic] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_defer] = ACTIONS(3018), - [anon_sym_goto] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_DOLLARfor] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [anon_sym_asm] = ACTIONS(3018), - [anon_sym_AT_LBRACK] = ACTIONS(3018), - [sym___double_quote] = ACTIONS(3018), - [sym___single_quote] = ACTIONS(3018), - [sym___c_double_quote] = ACTIONS(3018), - [sym___c_single_quote] = ACTIONS(3018), - [sym___r_double_quote] = ACTIONS(3018), - [sym___r_single_quote] = ACTIONS(3018), + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym___global] = ACTIONS(3072), + [anon_sym_type] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_union] = ACTIONS(3072), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_enum] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3072), + [anon_sym_POUND_LBRACK] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3072), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_LT_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_GT_EQ] = ACTIONS(3072), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3072), + [anon_sym_AMP_EQ] = ACTIONS(3072), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3072), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_PIPE_EQ] = ACTIONS(3072), + [anon_sym_CARET_EQ] = ACTIONS(3072), + [anon_sym_COLON_EQ] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_defer] = ACTIONS(3072), + [anon_sym_goto] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_DOLLARfor] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_asm] = ACTIONS(3072), + [anon_sym_AT_LBRACK] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), }, [907] = { - [ts_builtin_sym_end] = ACTIONS(3020), - [sym_identifier] = ACTIONS(3022), - [anon_sym_LF] = ACTIONS(3022), - [anon_sym_CR] = ACTIONS(3022), - [anon_sym_CR_LF] = ACTIONS(3022), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_as] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3022), - [anon_sym_const] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_EQ] = ACTIONS(3022), - [anon_sym___global] = ACTIONS(3022), - [anon_sym_type] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_fn] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_LT_EQ] = ACTIONS(3022), - [anon_sym_GT_EQ] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_struct] = ACTIONS(3022), - [anon_sym_union] = ACTIONS(3022), - [anon_sym_pub] = ACTIONS(3022), - [anon_sym_mut] = ACTIONS(3022), - [anon_sym_enum] = ACTIONS(3022), - [anon_sym_interface] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3022), - [anon_sym_DASH_DASH] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_go] = ACTIONS(3022), - [anon_sym_spawn] = ACTIONS(3022), - [anon_sym_json_DOTdecode] = ACTIONS(3022), - [anon_sym_LBRACK2] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_LT_LT] = ACTIONS(3022), - [anon_sym_GT_GT] = ACTIONS(3022), - [anon_sym_GT_GT_GT] = ACTIONS(3022), - [anon_sym_AMP_CARET] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_or] = ACTIONS(3022), - [sym_none] = ACTIONS(3022), - [sym_true] = ACTIONS(3022), - [sym_false] = ACTIONS(3022), - [sym_nil] = ACTIONS(3022), - [anon_sym_QMARK_DOT] = ACTIONS(3022), - [anon_sym_POUND_LBRACK] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_DOLLARif] = ACTIONS(3022), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3022), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_BANGin] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_select] = ACTIONS(3022), - [anon_sym_STAR_EQ] = ACTIONS(3022), - [anon_sym_SLASH_EQ] = ACTIONS(3022), - [anon_sym_PERCENT_EQ] = ACTIONS(3022), - [anon_sym_LT_LT_EQ] = ACTIONS(3022), - [anon_sym_GT_GT_EQ] = ACTIONS(3022), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3022), - [anon_sym_AMP_EQ] = ACTIONS(3022), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3022), - [anon_sym_PLUS_EQ] = ACTIONS(3022), - [anon_sym_DASH_EQ] = ACTIONS(3022), - [anon_sym_PIPE_EQ] = ACTIONS(3022), - [anon_sym_CARET_EQ] = ACTIONS(3022), - [anon_sym_COLON_EQ] = ACTIONS(3022), - [anon_sym_lock] = ACTIONS(3022), - [anon_sym_rlock] = ACTIONS(3022), - [anon_sym_unsafe] = ACTIONS(3022), - [anon_sym_sql] = ACTIONS(3022), - [sym_int_literal] = ACTIONS(3022), - [sym_float_literal] = ACTIONS(3022), - [sym_rune_literal] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(3022), - [anon_sym_shared] = ACTIONS(3022), - [anon_sym_map_LBRACK] = ACTIONS(3022), - [anon_sym_chan] = ACTIONS(3022), - [anon_sym_thread] = ACTIONS(3022), - [anon_sym_atomic] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_defer] = ACTIONS(3022), - [anon_sym_goto] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_DOLLARfor] = ACTIONS(3022), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_asm] = ACTIONS(3022), - [anon_sym_AT_LBRACK] = ACTIONS(3022), - [sym___double_quote] = ACTIONS(3022), - [sym___single_quote] = ACTIONS(3022), - [sym___c_double_quote] = ACTIONS(3022), - [sym___c_single_quote] = ACTIONS(3022), - [sym___r_double_quote] = ACTIONS(3022), - [sym___r_single_quote] = ACTIONS(3022), + [ts_builtin_sym_end] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LF] = ACTIONS(3076), + [anon_sym_CR] = ACTIONS(3076), + [anon_sym_CR_LF] = ACTIONS(3076), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_const] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym___global] = ACTIONS(3076), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_fn] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_SLASH] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3076), + [anon_sym_GT] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_struct] = ACTIONS(3076), + [anon_sym_union] = ACTIONS(3076), + [anon_sym_pub] = ACTIONS(3076), + [anon_sym_mut] = ACTIONS(3076), + [anon_sym_enum] = ACTIONS(3076), + [anon_sym_interface] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3076), + [anon_sym_json_DOTdecode] = ACTIONS(3076), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3076), + [anon_sym_GT_GT] = ACTIONS(3076), + [anon_sym_GT_GT_GT] = ACTIONS(3076), + [anon_sym_AMP_CARET] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_or] = ACTIONS(3076), + [sym_none] = ACTIONS(3076), + [sym_true] = ACTIONS(3076), + [sym_false] = ACTIONS(3076), + [sym_nil] = ACTIONS(3076), + [anon_sym_QMARK_DOT] = ACTIONS(3076), + [anon_sym_POUND_LBRACK] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_DOLLARif] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3076), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_select] = ACTIONS(3076), + [anon_sym_STAR_EQ] = ACTIONS(3076), + [anon_sym_SLASH_EQ] = ACTIONS(3076), + [anon_sym_PERCENT_EQ] = ACTIONS(3076), + [anon_sym_LT_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_GT_EQ] = ACTIONS(3076), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3076), + [anon_sym_AMP_EQ] = ACTIONS(3076), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3076), + [anon_sym_PLUS_EQ] = ACTIONS(3076), + [anon_sym_DASH_EQ] = ACTIONS(3076), + [anon_sym_PIPE_EQ] = ACTIONS(3076), + [anon_sym_CARET_EQ] = ACTIONS(3076), + [anon_sym_COLON_EQ] = ACTIONS(3076), + [anon_sym_lock] = ACTIONS(3076), + [anon_sym_rlock] = ACTIONS(3076), + [anon_sym_unsafe] = ACTIONS(3076), + [anon_sym_sql] = ACTIONS(3076), + [sym_int_literal] = ACTIONS(3076), + [sym_float_literal] = ACTIONS(3076), + [sym_rune_literal] = ACTIONS(3076), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_shared] = ACTIONS(3076), + [anon_sym_map_LBRACK] = ACTIONS(3076), + [anon_sym_chan] = ACTIONS(3076), + [anon_sym_thread] = ACTIONS(3076), + [anon_sym_atomic] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_defer] = ACTIONS(3076), + [anon_sym_goto] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_DOLLARfor] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_POUND] = ACTIONS(3076), + [anon_sym_asm] = ACTIONS(3076), + [anon_sym_AT_LBRACK] = ACTIONS(3076), + [sym___double_quote] = ACTIONS(3076), + [sym___single_quote] = ACTIONS(3076), + [sym___c_double_quote] = ACTIONS(3076), + [sym___c_single_quote] = ACTIONS(3076), + [sym___r_double_quote] = ACTIONS(3076), + [sym___r_single_quote] = ACTIONS(3076), }, [908] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_STAR_EQ] = ACTIONS(2784), - [anon_sym_SLASH_EQ] = ACTIONS(2784), - [anon_sym_PERCENT_EQ] = ACTIONS(2784), - [anon_sym_LT_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_AMP_EQ] = ACTIONS(2784), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2784), - [anon_sym_PLUS_EQ] = ACTIONS(2784), - [anon_sym_DASH_EQ] = ACTIONS(2784), - [anon_sym_PIPE_EQ] = ACTIONS(2784), - [anon_sym_CARET_EQ] = ACTIONS(2784), - [anon_sym_COLON_EQ] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), + [ts_builtin_sym_end] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3080), + [anon_sym_CR] = ACTIONS(3080), + [anon_sym_CR_LF] = ACTIONS(3080), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym___global] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_union] = ACTIONS(3080), + [anon_sym_pub] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_STAR_EQ] = ACTIONS(3080), + [anon_sym_SLASH_EQ] = ACTIONS(3080), + [anon_sym_PERCENT_EQ] = ACTIONS(3080), + [anon_sym_LT_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_GT_EQ] = ACTIONS(3080), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3080), + [anon_sym_AMP_EQ] = ACTIONS(3080), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3080), + [anon_sym_PLUS_EQ] = ACTIONS(3080), + [anon_sym_DASH_EQ] = ACTIONS(3080), + [anon_sym_PIPE_EQ] = ACTIONS(3080), + [anon_sym_CARET_EQ] = ACTIONS(3080), + [anon_sym_COLON_EQ] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + [anon_sym_assert] = ACTIONS(3080), + [anon_sym_defer] = ACTIONS(3080), + [anon_sym_goto] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_DOLLARfor] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_asm] = ACTIONS(3080), + [anon_sym_AT_LBRACK] = ACTIONS(3080), + [sym___double_quote] = ACTIONS(3080), + [sym___single_quote] = ACTIONS(3080), + [sym___c_double_quote] = ACTIONS(3080), + [sym___c_single_quote] = ACTIONS(3080), + [sym___r_double_quote] = ACTIONS(3080), + [sym___r_single_quote] = ACTIONS(3080), }, [909] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LF] = ACTIONS(3026), - [anon_sym_CR] = ACTIONS(3026), - [anon_sym_CR_LF] = ACTIONS(3026), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3026), - [anon_sym_const] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(3026), - [anon_sym___global] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_fn] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_EQ_EQ] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3026), - [anon_sym_GT_EQ] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_struct] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(3026), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_mut] = ACTIONS(3026), - [anon_sym_enum] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_go] = ACTIONS(3026), - [anon_sym_spawn] = ACTIONS(3026), - [anon_sym_json_DOTdecode] = ACTIONS(3026), - [anon_sym_LBRACK2] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3026), - [anon_sym_CARET] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_LT_LT] = ACTIONS(3026), - [anon_sym_GT_GT] = ACTIONS(3026), - [anon_sym_GT_GT_GT] = ACTIONS(3026), - [anon_sym_AMP_CARET] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_or] = ACTIONS(3026), - [sym_none] = ACTIONS(3026), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_nil] = ACTIONS(3026), - [anon_sym_QMARK_DOT] = ACTIONS(3026), - [anon_sym_POUND_LBRACK] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_DOLLARif] = ACTIONS(3026), - [anon_sym_is] = ACTIONS(3026), - [anon_sym_BANGis] = ACTIONS(3026), - [anon_sym_in] = ACTIONS(3026), - [anon_sym_BANGin] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_select] = ACTIONS(3026), - [anon_sym_STAR_EQ] = ACTIONS(3026), - [anon_sym_SLASH_EQ] = ACTIONS(3026), - [anon_sym_PERCENT_EQ] = ACTIONS(3026), - [anon_sym_LT_LT_EQ] = ACTIONS(3026), - [anon_sym_GT_GT_EQ] = ACTIONS(3026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3026), - [anon_sym_AMP_EQ] = ACTIONS(3026), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3026), - [anon_sym_PLUS_EQ] = ACTIONS(3026), - [anon_sym_DASH_EQ] = ACTIONS(3026), - [anon_sym_PIPE_EQ] = ACTIONS(3026), - [anon_sym_CARET_EQ] = ACTIONS(3026), - [anon_sym_COLON_EQ] = ACTIONS(3026), - [anon_sym_lock] = ACTIONS(3026), - [anon_sym_rlock] = ACTIONS(3026), - [anon_sym_unsafe] = ACTIONS(3026), - [anon_sym_sql] = ACTIONS(3026), - [sym_int_literal] = ACTIONS(3026), - [sym_float_literal] = ACTIONS(3026), - [sym_rune_literal] = ACTIONS(3026), - [anon_sym_AT] = ACTIONS(3026), - [anon_sym_shared] = ACTIONS(3026), - [anon_sym_map_LBRACK] = ACTIONS(3026), - [anon_sym_chan] = ACTIONS(3026), - [anon_sym_thread] = ACTIONS(3026), - [anon_sym_atomic] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_defer] = ACTIONS(3026), - [anon_sym_goto] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_DOLLARfor] = ACTIONS(3026), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [anon_sym_asm] = ACTIONS(3026), - [anon_sym_AT_LBRACK] = ACTIONS(3026), - [sym___double_quote] = ACTIONS(3026), - [sym___single_quote] = ACTIONS(3026), - [sym___c_double_quote] = ACTIONS(3026), - [sym___c_single_quote] = ACTIONS(3026), - [sym___r_double_quote] = ACTIONS(3026), - [sym___r_single_quote] = ACTIONS(3026), + [ts_builtin_sym_end] = ACTIONS(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LF] = ACTIONS(3084), + [anon_sym_CR] = ACTIONS(3084), + [anon_sym_CR_LF] = ACTIONS(3084), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_const] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym___global] = ACTIONS(3084), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_union] = ACTIONS(3084), + [anon_sym_pub] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_enum] = ACTIONS(3084), + [anon_sym_interface] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3084), + [anon_sym_POUND_LBRACK] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3084), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_STAR_EQ] = ACTIONS(3084), + [anon_sym_SLASH_EQ] = ACTIONS(3084), + [anon_sym_PERCENT_EQ] = ACTIONS(3084), + [anon_sym_LT_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_GT_EQ] = ACTIONS(3084), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3084), + [anon_sym_AMP_EQ] = ACTIONS(3084), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3084), + [anon_sym_PLUS_EQ] = ACTIONS(3084), + [anon_sym_DASH_EQ] = ACTIONS(3084), + [anon_sym_PIPE_EQ] = ACTIONS(3084), + [anon_sym_CARET_EQ] = ACTIONS(3084), + [anon_sym_COLON_EQ] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_AT] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_defer] = ACTIONS(3084), + [anon_sym_goto] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_DOLLARfor] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_asm] = ACTIONS(3084), + [anon_sym_AT_LBRACK] = ACTIONS(3084), + [sym___double_quote] = ACTIONS(3084), + [sym___single_quote] = ACTIONS(3084), + [sym___c_double_quote] = ACTIONS(3084), + [sym___c_single_quote] = ACTIONS(3084), + [sym___r_double_quote] = ACTIONS(3084), + [sym___r_single_quote] = ACTIONS(3084), }, [910] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_LT_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_AMP_EQ] = ACTIONS(2740), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_PIPE_EQ] = ACTIONS(2740), - [anon_sym_CARET_EQ] = ACTIONS(2740), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [ts_builtin_sym_end] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3088), + [anon_sym_LF] = ACTIONS(3088), + [anon_sym_CR] = ACTIONS(3088), + [anon_sym_CR_LF] = ACTIONS(3088), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(3088), + [anon_sym___global] = ACTIONS(3088), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_fn] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_EQ_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_union] = ACTIONS(3088), + [anon_sym_pub] = ACTIONS(3088), + [anon_sym_mut] = ACTIONS(3088), + [anon_sym_enum] = ACTIONS(3088), + [anon_sym_interface] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3088), + [anon_sym_json_DOTdecode] = ACTIONS(3088), + [anon_sym_LBRACK2] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_CARET] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_LT_LT] = ACTIONS(3088), + [anon_sym_GT_GT] = ACTIONS(3088), + [anon_sym_GT_GT_GT] = ACTIONS(3088), + [anon_sym_AMP_CARET] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_or] = ACTIONS(3088), + [sym_none] = ACTIONS(3088), + [sym_true] = ACTIONS(3088), + [sym_false] = ACTIONS(3088), + [sym_nil] = ACTIONS(3088), + [anon_sym_QMARK_DOT] = ACTIONS(3088), + [anon_sym_POUND_LBRACK] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_DOLLARif] = ACTIONS(3088), + [anon_sym_is] = ACTIONS(3088), + [anon_sym_BANGis] = ACTIONS(3088), + [anon_sym_in] = ACTIONS(3088), + [anon_sym_BANGin] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3088), + [anon_sym_STAR_EQ] = ACTIONS(3088), + [anon_sym_SLASH_EQ] = ACTIONS(3088), + [anon_sym_PERCENT_EQ] = ACTIONS(3088), + [anon_sym_LT_LT_EQ] = ACTIONS(3088), + [anon_sym_GT_GT_EQ] = ACTIONS(3088), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3088), + [anon_sym_AMP_EQ] = ACTIONS(3088), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3088), + [anon_sym_PLUS_EQ] = ACTIONS(3088), + [anon_sym_DASH_EQ] = ACTIONS(3088), + [anon_sym_PIPE_EQ] = ACTIONS(3088), + [anon_sym_CARET_EQ] = ACTIONS(3088), + [anon_sym_COLON_EQ] = ACTIONS(3088), + [anon_sym_lock] = ACTIONS(3088), + [anon_sym_rlock] = ACTIONS(3088), + [anon_sym_unsafe] = ACTIONS(3088), + [anon_sym_sql] = ACTIONS(3088), + [sym_int_literal] = ACTIONS(3088), + [sym_float_literal] = ACTIONS(3088), + [sym_rune_literal] = ACTIONS(3088), + [anon_sym_AT] = ACTIONS(3088), + [anon_sym_shared] = ACTIONS(3088), + [anon_sym_map_LBRACK] = ACTIONS(3088), + [anon_sym_chan] = ACTIONS(3088), + [anon_sym_thread] = ACTIONS(3088), + [anon_sym_atomic] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_defer] = ACTIONS(3088), + [anon_sym_goto] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_DOLLARfor] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_POUND] = ACTIONS(3088), + [anon_sym_asm] = ACTIONS(3088), + [anon_sym_AT_LBRACK] = ACTIONS(3088), + [sym___double_quote] = ACTIONS(3088), + [sym___single_quote] = ACTIONS(3088), + [sym___c_double_quote] = ACTIONS(3088), + [sym___c_single_quote] = ACTIONS(3088), + [sym___r_double_quote] = ACTIONS(3088), + [sym___r_single_quote] = ACTIONS(3088), }, [911] = { - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3030), - [anon_sym_LF] = ACTIONS(3030), - [anon_sym_CR] = ACTIONS(3030), - [anon_sym_CR_LF] = ACTIONS(3030), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_as] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_EQ] = ACTIONS(3030), - [anon_sym___global] = ACTIONS(3030), - [anon_sym_type] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_fn] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_SLASH] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_GT] = ACTIONS(3030), - [anon_sym_EQ_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_struct] = ACTIONS(3030), - [anon_sym_union] = ACTIONS(3030), - [anon_sym_pub] = ACTIONS(3030), - [anon_sym_mut] = ACTIONS(3030), - [anon_sym_enum] = ACTIONS(3030), - [anon_sym_interface] = ACTIONS(3030), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_go] = ACTIONS(3030), - [anon_sym_spawn] = ACTIONS(3030), - [anon_sym_json_DOTdecode] = ACTIONS(3030), - [anon_sym_LBRACK2] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_GT_GT_GT] = ACTIONS(3030), - [anon_sym_AMP_CARET] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_or] = ACTIONS(3030), - [sym_none] = ACTIONS(3030), - [sym_true] = ACTIONS(3030), - [sym_false] = ACTIONS(3030), - [sym_nil] = ACTIONS(3030), - [anon_sym_QMARK_DOT] = ACTIONS(3030), - [anon_sym_POUND_LBRACK] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_DOLLARif] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3030), - [anon_sym_BANGis] = ACTIONS(3030), - [anon_sym_in] = ACTIONS(3030), - [anon_sym_BANGin] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_select] = ACTIONS(3030), - [anon_sym_STAR_EQ] = ACTIONS(3030), - [anon_sym_SLASH_EQ] = ACTIONS(3030), - [anon_sym_PERCENT_EQ] = ACTIONS(3030), - [anon_sym_LT_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_GT_EQ] = ACTIONS(3030), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3030), - [anon_sym_AMP_EQ] = ACTIONS(3030), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3030), - [anon_sym_PLUS_EQ] = ACTIONS(3030), - [anon_sym_DASH_EQ] = ACTIONS(3030), - [anon_sym_PIPE_EQ] = ACTIONS(3030), - [anon_sym_CARET_EQ] = ACTIONS(3030), - [anon_sym_COLON_EQ] = ACTIONS(3030), - [anon_sym_lock] = ACTIONS(3030), - [anon_sym_rlock] = ACTIONS(3030), - [anon_sym_unsafe] = ACTIONS(3030), - [anon_sym_sql] = ACTIONS(3030), - [sym_int_literal] = ACTIONS(3030), - [sym_float_literal] = ACTIONS(3030), - [sym_rune_literal] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_shared] = ACTIONS(3030), - [anon_sym_map_LBRACK] = ACTIONS(3030), - [anon_sym_chan] = ACTIONS(3030), - [anon_sym_thread] = ACTIONS(3030), - [anon_sym_atomic] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_defer] = ACTIONS(3030), - [anon_sym_goto] = ACTIONS(3030), - [anon_sym_break] = ACTIONS(3030), - [anon_sym_continue] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_DOLLARfor] = ACTIONS(3030), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_POUND] = ACTIONS(3030), - [anon_sym_asm] = ACTIONS(3030), - [anon_sym_AT_LBRACK] = ACTIONS(3030), - [sym___double_quote] = ACTIONS(3030), - [sym___single_quote] = ACTIONS(3030), - [sym___c_double_quote] = ACTIONS(3030), - [sym___c_single_quote] = ACTIONS(3030), - [sym___r_double_quote] = ACTIONS(3030), - [sym___r_single_quote] = ACTIONS(3030), + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LF] = ACTIONS(3092), + [anon_sym_CR] = ACTIONS(3092), + [anon_sym_CR_LF] = ACTIONS(3092), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_const] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_EQ] = ACTIONS(3092), + [anon_sym___global] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_fn] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT_EQ] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3092), + [anon_sym_union] = ACTIONS(3092), + [anon_sym_pub] = ACTIONS(3092), + [anon_sym_mut] = ACTIONS(3092), + [anon_sym_enum] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_go] = ACTIONS(3092), + [anon_sym_spawn] = ACTIONS(3092), + [anon_sym_json_DOTdecode] = ACTIONS(3092), + [anon_sym_LBRACK2] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_CARET] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_LT_LT] = ACTIONS(3092), + [anon_sym_GT_GT] = ACTIONS(3092), + [anon_sym_GT_GT_GT] = ACTIONS(3092), + [anon_sym_AMP_CARET] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [sym_none] = ACTIONS(3092), + [sym_true] = ACTIONS(3092), + [sym_false] = ACTIONS(3092), + [sym_nil] = ACTIONS(3092), + [anon_sym_QMARK_DOT] = ACTIONS(3092), + [anon_sym_POUND_LBRACK] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_DOLLARif] = ACTIONS(3092), + [anon_sym_is] = ACTIONS(3092), + [anon_sym_BANGis] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_BANGin] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_select] = ACTIONS(3092), + [anon_sym_STAR_EQ] = ACTIONS(3092), + [anon_sym_SLASH_EQ] = ACTIONS(3092), + [anon_sym_PERCENT_EQ] = ACTIONS(3092), + [anon_sym_LT_LT_EQ] = ACTIONS(3092), + [anon_sym_GT_GT_EQ] = ACTIONS(3092), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3092), + [anon_sym_AMP_EQ] = ACTIONS(3092), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3092), + [anon_sym_PLUS_EQ] = ACTIONS(3092), + [anon_sym_DASH_EQ] = ACTIONS(3092), + [anon_sym_PIPE_EQ] = ACTIONS(3092), + [anon_sym_CARET_EQ] = ACTIONS(3092), + [anon_sym_COLON_EQ] = ACTIONS(3092), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3092), + [anon_sym_sql] = ACTIONS(3092), + [sym_int_literal] = ACTIONS(3092), + [sym_float_literal] = ACTIONS(3092), + [sym_rune_literal] = ACTIONS(3092), + [anon_sym_AT] = ACTIONS(3092), + [anon_sym_shared] = ACTIONS(3092), + [anon_sym_map_LBRACK] = ACTIONS(3092), + [anon_sym_chan] = ACTIONS(3092), + [anon_sym_thread] = ACTIONS(3092), + [anon_sym_atomic] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_defer] = ACTIONS(3092), + [anon_sym_goto] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_DOLLARfor] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_POUND] = ACTIONS(3092), + [anon_sym_asm] = ACTIONS(3092), + [anon_sym_AT_LBRACK] = ACTIONS(3092), + [sym___double_quote] = ACTIONS(3092), + [sym___single_quote] = ACTIONS(3092), + [sym___c_double_quote] = ACTIONS(3092), + [sym___c_single_quote] = ACTIONS(3092), + [sym___r_double_quote] = ACTIONS(3092), + [sym___r_single_quote] = ACTIONS(3092), }, [912] = { - [ts_builtin_sym_end] = ACTIONS(3032), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LF] = ACTIONS(3034), - [anon_sym_CR] = ACTIONS(3034), - [anon_sym_CR_LF] = ACTIONS(3034), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3034), - [anon_sym_as] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_EQ] = ACTIONS(3034), - [anon_sym___global] = ACTIONS(3034), - [anon_sym_type] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_PERCENT] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_GT] = ACTIONS(3034), - [anon_sym_EQ_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_union] = ACTIONS(3034), - [anon_sym_pub] = ACTIONS(3034), - [anon_sym_mut] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_interface] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_QMARK] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_go] = ACTIONS(3034), - [anon_sym_spawn] = ACTIONS(3034), - [anon_sym_json_DOTdecode] = ACTIONS(3034), - [anon_sym_LBRACK2] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_LT_DASH] = ACTIONS(3034), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_GT_GT_GT] = ACTIONS(3034), - [anon_sym_AMP_CARET] = ACTIONS(3034), - [anon_sym_AMP_AMP] = ACTIONS(3034), - [anon_sym_PIPE_PIPE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3034), - [sym_none] = ACTIONS(3034), - [sym_true] = ACTIONS(3034), - [sym_false] = ACTIONS(3034), - [sym_nil] = ACTIONS(3034), - [anon_sym_QMARK_DOT] = ACTIONS(3034), - [anon_sym_POUND_LBRACK] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_DOLLARif] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_BANGis] = ACTIONS(3034), - [anon_sym_in] = ACTIONS(3034), - [anon_sym_BANGin] = ACTIONS(3034), - [anon_sym_match] = ACTIONS(3034), - [anon_sym_select] = ACTIONS(3034), - [anon_sym_STAR_EQ] = ACTIONS(3034), - [anon_sym_SLASH_EQ] = ACTIONS(3034), - [anon_sym_PERCENT_EQ] = ACTIONS(3034), - [anon_sym_LT_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_GT_EQ] = ACTIONS(3034), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3034), - [anon_sym_AMP_EQ] = ACTIONS(3034), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3034), - [anon_sym_PLUS_EQ] = ACTIONS(3034), - [anon_sym_DASH_EQ] = ACTIONS(3034), - [anon_sym_PIPE_EQ] = ACTIONS(3034), - [anon_sym_CARET_EQ] = ACTIONS(3034), - [anon_sym_COLON_EQ] = ACTIONS(3034), - [anon_sym_lock] = ACTIONS(3034), - [anon_sym_rlock] = ACTIONS(3034), - [anon_sym_unsafe] = ACTIONS(3034), - [anon_sym_sql] = ACTIONS(3034), - [sym_int_literal] = ACTIONS(3034), - [sym_float_literal] = ACTIONS(3034), - [sym_rune_literal] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3034), - [anon_sym_shared] = ACTIONS(3034), - [anon_sym_map_LBRACK] = ACTIONS(3034), - [anon_sym_chan] = ACTIONS(3034), - [anon_sym_thread] = ACTIONS(3034), - [anon_sym_atomic] = ACTIONS(3034), - [anon_sym_assert] = ACTIONS(3034), - [anon_sym_defer] = ACTIONS(3034), - [anon_sym_goto] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_DOLLARfor] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [anon_sym_asm] = ACTIONS(3034), - [anon_sym_AT_LBRACK] = ACTIONS(3034), - [sym___double_quote] = ACTIONS(3034), - [sym___single_quote] = ACTIONS(3034), - [sym___c_double_quote] = ACTIONS(3034), - [sym___c_single_quote] = ACTIONS(3034), - [sym___r_double_quote] = ACTIONS(3034), - [sym___r_single_quote] = ACTIONS(3034), + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LF] = ACTIONS(3096), + [anon_sym_CR] = ACTIONS(3096), + [anon_sym_CR_LF] = ACTIONS(3096), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_const] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym___global] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_struct] = ACTIONS(3096), + [anon_sym_union] = ACTIONS(3096), + [anon_sym_pub] = ACTIONS(3096), + [anon_sym_mut] = ACTIONS(3096), + [anon_sym_enum] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_DASH_DASH] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3096), + [anon_sym_json_DOTdecode] = ACTIONS(3096), + [anon_sym_LBRACK2] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_LT_LT] = ACTIONS(3096), + [anon_sym_GT_GT] = ACTIONS(3096), + [anon_sym_GT_GT_GT] = ACTIONS(3096), + [anon_sym_AMP_CARET] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [sym_none] = ACTIONS(3096), + [sym_true] = ACTIONS(3096), + [sym_false] = ACTIONS(3096), + [sym_nil] = ACTIONS(3096), + [anon_sym_QMARK_DOT] = ACTIONS(3096), + [anon_sym_POUND_LBRACK] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_DOLLARif] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_STAR_EQ] = ACTIONS(3096), + [anon_sym_SLASH_EQ] = ACTIONS(3096), + [anon_sym_PERCENT_EQ] = ACTIONS(3096), + [anon_sym_LT_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_GT_EQ] = ACTIONS(3096), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3096), + [anon_sym_AMP_EQ] = ACTIONS(3096), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3096), + [anon_sym_PLUS_EQ] = ACTIONS(3096), + [anon_sym_DASH_EQ] = ACTIONS(3096), + [anon_sym_PIPE_EQ] = ACTIONS(3096), + [anon_sym_CARET_EQ] = ACTIONS(3096), + [anon_sym_COLON_EQ] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3096), + [anon_sym_rlock] = ACTIONS(3096), + [anon_sym_unsafe] = ACTIONS(3096), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3096), + [sym_float_literal] = ACTIONS(3096), + [sym_rune_literal] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3096), + [anon_sym_shared] = ACTIONS(3096), + [anon_sym_map_LBRACK] = ACTIONS(3096), + [anon_sym_chan] = ACTIONS(3096), + [anon_sym_thread] = ACTIONS(3096), + [anon_sym_atomic] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_defer] = ACTIONS(3096), + [anon_sym_goto] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_DOLLARfor] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3096), + [anon_sym_asm] = ACTIONS(3096), + [anon_sym_AT_LBRACK] = ACTIONS(3096), + [sym___double_quote] = ACTIONS(3096), + [sym___single_quote] = ACTIONS(3096), + [sym___c_double_quote] = ACTIONS(3096), + [sym___c_single_quote] = ACTIONS(3096), + [sym___r_double_quote] = ACTIONS(3096), + [sym___r_single_quote] = ACTIONS(3096), }, [913] = { - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3038), - [anon_sym_LF] = ACTIONS(3038), - [anon_sym_CR] = ACTIONS(3038), - [anon_sym_CR_LF] = ACTIONS(3038), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_const] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_EQ] = ACTIONS(3038), - [anon_sym___global] = ACTIONS(3038), - [anon_sym_type] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_fn] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_PERCENT] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_GT] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_pub] = ACTIONS(3038), - [anon_sym_mut] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_DASH_DASH] = ACTIONS(3038), - [anon_sym_QMARK] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_go] = ACTIONS(3038), - [anon_sym_spawn] = ACTIONS(3038), - [anon_sym_json_DOTdecode] = ACTIONS(3038), - [anon_sym_LBRACK2] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LT_DASH] = ACTIONS(3038), - [anon_sym_LT_LT] = ACTIONS(3038), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_GT_GT_GT] = ACTIONS(3038), - [anon_sym_AMP_CARET] = ACTIONS(3038), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3038), - [sym_none] = ACTIONS(3038), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_nil] = ACTIONS(3038), - [anon_sym_QMARK_DOT] = ACTIONS(3038), - [anon_sym_POUND_LBRACK] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_DOLLARif] = ACTIONS(3038), - [anon_sym_is] = ACTIONS(3038), - [anon_sym_BANGis] = ACTIONS(3038), - [anon_sym_in] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3038), - [anon_sym_match] = ACTIONS(3038), - [anon_sym_select] = ACTIONS(3038), - [anon_sym_STAR_EQ] = ACTIONS(3038), - [anon_sym_SLASH_EQ] = ACTIONS(3038), - [anon_sym_PERCENT_EQ] = ACTIONS(3038), - [anon_sym_LT_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_GT_EQ] = ACTIONS(3038), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3038), - [anon_sym_AMP_EQ] = ACTIONS(3038), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3038), - [anon_sym_PLUS_EQ] = ACTIONS(3038), - [anon_sym_DASH_EQ] = ACTIONS(3038), - [anon_sym_PIPE_EQ] = ACTIONS(3038), - [anon_sym_CARET_EQ] = ACTIONS(3038), - [anon_sym_COLON_EQ] = ACTIONS(3038), - [anon_sym_lock] = ACTIONS(3038), - [anon_sym_rlock] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(3038), - [anon_sym_sql] = ACTIONS(3038), - [sym_int_literal] = ACTIONS(3038), - [sym_float_literal] = ACTIONS(3038), - [sym_rune_literal] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_shared] = ACTIONS(3038), - [anon_sym_map_LBRACK] = ACTIONS(3038), - [anon_sym_chan] = ACTIONS(3038), - [anon_sym_thread] = ACTIONS(3038), - [anon_sym_atomic] = ACTIONS(3038), - [anon_sym_assert] = ACTIONS(3038), - [anon_sym_defer] = ACTIONS(3038), - [anon_sym_goto] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_DOLLARfor] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [anon_sym_asm] = ACTIONS(3038), - [anon_sym_AT_LBRACK] = ACTIONS(3038), - [sym___double_quote] = ACTIONS(3038), - [sym___single_quote] = ACTIONS(3038), - [sym___c_double_quote] = ACTIONS(3038), - [sym___c_single_quote] = ACTIONS(3038), - [sym___r_double_quote] = ACTIONS(3038), - [sym___r_single_quote] = ACTIONS(3038), + [ts_builtin_sym_end] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3100), + [anon_sym_LF] = ACTIONS(3100), + [anon_sym_CR] = ACTIONS(3100), + [anon_sym_CR_LF] = ACTIONS(3100), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3100), + [anon_sym_as] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym___global] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_PIPE] = ACTIONS(3100), + [anon_sym_fn] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_LT_EQ] = ACTIONS(3100), + [anon_sym_GT_EQ] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_pub] = ACTIONS(3100), + [anon_sym_mut] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_QMARK] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3100), + [anon_sym_spawn] = ACTIONS(3100), + [anon_sym_json_DOTdecode] = ACTIONS(3100), + [anon_sym_LBRACK2] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_CARET] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3100), + [anon_sym_LT_LT] = ACTIONS(3100), + [anon_sym_GT_GT] = ACTIONS(3100), + [anon_sym_GT_GT_GT] = ACTIONS(3100), + [anon_sym_AMP_CARET] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_or] = ACTIONS(3100), + [sym_none] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_nil] = ACTIONS(3100), + [anon_sym_QMARK_DOT] = ACTIONS(3100), + [anon_sym_POUND_LBRACK] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_DOLLARif] = ACTIONS(3100), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3100), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_BANGin] = ACTIONS(3100), + [anon_sym_match] = ACTIONS(3100), + [anon_sym_select] = ACTIONS(3100), + [anon_sym_STAR_EQ] = ACTIONS(3100), + [anon_sym_SLASH_EQ] = ACTIONS(3100), + [anon_sym_PERCENT_EQ] = ACTIONS(3100), + [anon_sym_LT_LT_EQ] = ACTIONS(3100), + [anon_sym_GT_GT_EQ] = ACTIONS(3100), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3100), + [anon_sym_AMP_EQ] = ACTIONS(3100), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3100), + [anon_sym_PLUS_EQ] = ACTIONS(3100), + [anon_sym_DASH_EQ] = ACTIONS(3100), + [anon_sym_PIPE_EQ] = ACTIONS(3100), + [anon_sym_CARET_EQ] = ACTIONS(3100), + [anon_sym_COLON_EQ] = ACTIONS(3100), + [anon_sym_lock] = ACTIONS(3100), + [anon_sym_rlock] = ACTIONS(3100), + [anon_sym_unsafe] = ACTIONS(3100), + [anon_sym_sql] = ACTIONS(3100), + [sym_int_literal] = ACTIONS(3100), + [sym_float_literal] = ACTIONS(3100), + [sym_rune_literal] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(3100), + [anon_sym_map_LBRACK] = ACTIONS(3100), + [anon_sym_chan] = ACTIONS(3100), + [anon_sym_thread] = ACTIONS(3100), + [anon_sym_atomic] = ACTIONS(3100), + [anon_sym_assert] = ACTIONS(3100), + [anon_sym_defer] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_DOLLARfor] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_POUND] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(3100), + [anon_sym_AT_LBRACK] = ACTIONS(3100), + [sym___double_quote] = ACTIONS(3100), + [sym___single_quote] = ACTIONS(3100), + [sym___c_double_quote] = ACTIONS(3100), + [sym___c_single_quote] = ACTIONS(3100), + [sym___r_double_quote] = ACTIONS(3100), + [sym___r_single_quote] = ACTIONS(3100), }, [914] = { - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2992), - [anon_sym_CR] = ACTIONS(2992), - [anon_sym_CR_LF] = ACTIONS(2992), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym___global] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_fn] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PERCENT] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2992), - [anon_sym_union] = ACTIONS(2992), - [anon_sym_pub] = ACTIONS(2992), - [anon_sym_mut] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_go] = ACTIONS(2992), - [anon_sym_spawn] = ACTIONS(2992), - [anon_sym_json_DOTdecode] = ACTIONS(2992), - [anon_sym_LBRACK2] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2992), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_LT_LT] = ACTIONS(2994), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2994), - [anon_sym_AMP_CARET] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2994), - [sym_none] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_nil] = ACTIONS(2992), - [anon_sym_QMARK_DOT] = ACTIONS(2994), - [anon_sym_POUND_LBRACK] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_DOLLARif] = ACTIONS(2992), - [anon_sym_is] = ACTIONS(2994), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_in] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_select] = ACTIONS(2992), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_LT_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_GT_EQ] = ACTIONS(2994), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2994), - [anon_sym_AMP_EQ] = ACTIONS(2994), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2994), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_PIPE_EQ] = ACTIONS(2994), - [anon_sym_CARET_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_lock] = ACTIONS(2992), - [anon_sym_rlock] = ACTIONS(2992), - [anon_sym_unsafe] = ACTIONS(2992), - [anon_sym_sql] = ACTIONS(2992), - [sym_int_literal] = ACTIONS(2992), - [sym_float_literal] = ACTIONS(2992), - [sym_rune_literal] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2992), - [anon_sym_shared] = ACTIONS(2992), - [anon_sym_map_LBRACK] = ACTIONS(2992), - [anon_sym_chan] = ACTIONS(2992), - [anon_sym_thread] = ACTIONS(2992), - [anon_sym_atomic] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_defer] = ACTIONS(2992), - [anon_sym_goto] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_DOLLARfor] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_POUND] = ACTIONS(2992), - [anon_sym_asm] = ACTIONS(2992), - [anon_sym_AT_LBRACK] = ACTIONS(2992), - [sym___double_quote] = ACTIONS(2992), - [sym___single_quote] = ACTIONS(2992), - [sym___c_double_quote] = ACTIONS(2992), - [sym___c_single_quote] = ACTIONS(2992), - [sym___r_double_quote] = ACTIONS(2992), - [sym___r_single_quote] = ACTIONS(2992), + [ts_builtin_sym_end] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LF] = ACTIONS(3104), + [anon_sym_CR] = ACTIONS(3104), + [anon_sym_CR_LF] = ACTIONS(3104), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3104), + [anon_sym_as] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym_EQ] = ACTIONS(3104), + [anon_sym___global] = ACTIONS(3104), + [anon_sym_type] = ACTIONS(3104), + [anon_sym_PIPE] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(3104), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_PERCENT] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_pub] = ACTIONS(3104), + [anon_sym_mut] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_interface] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3104), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_go] = ACTIONS(3104), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(3104), + [anon_sym_LBRACK2] = ACTIONS(3104), + [anon_sym_TILDE] = ACTIONS(3104), + [anon_sym_CARET] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3104), + [anon_sym_LT_DASH] = ACTIONS(3104), + [anon_sym_LT_LT] = ACTIONS(3104), + [anon_sym_GT_GT] = ACTIONS(3104), + [anon_sym_GT_GT_GT] = ACTIONS(3104), + [anon_sym_AMP_CARET] = ACTIONS(3104), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_or] = ACTIONS(3104), + [sym_none] = ACTIONS(3104), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_nil] = ACTIONS(3104), + [anon_sym_QMARK_DOT] = ACTIONS(3104), + [anon_sym_POUND_LBRACK] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_DOLLARif] = ACTIONS(3104), + [anon_sym_is] = ACTIONS(3104), + [anon_sym_BANGis] = ACTIONS(3104), + [anon_sym_in] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(3104), + [anon_sym_match] = ACTIONS(3104), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_STAR_EQ] = ACTIONS(3104), + [anon_sym_SLASH_EQ] = ACTIONS(3104), + [anon_sym_PERCENT_EQ] = ACTIONS(3104), + [anon_sym_LT_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_GT_EQ] = ACTIONS(3104), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3104), + [anon_sym_AMP_EQ] = ACTIONS(3104), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3104), + [anon_sym_PLUS_EQ] = ACTIONS(3104), + [anon_sym_DASH_EQ] = ACTIONS(3104), + [anon_sym_PIPE_EQ] = ACTIONS(3104), + [anon_sym_CARET_EQ] = ACTIONS(3104), + [anon_sym_COLON_EQ] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3104), + [anon_sym_rlock] = ACTIONS(3104), + [anon_sym_unsafe] = ACTIONS(3104), + [anon_sym_sql] = ACTIONS(3104), + [sym_int_literal] = ACTIONS(3104), + [sym_float_literal] = ACTIONS(3104), + [sym_rune_literal] = ACTIONS(3104), + [anon_sym_AT] = ACTIONS(3104), + [anon_sym_shared] = ACTIONS(3104), + [anon_sym_map_LBRACK] = ACTIONS(3104), + [anon_sym_chan] = ACTIONS(3104), + [anon_sym_thread] = ACTIONS(3104), + [anon_sym_atomic] = ACTIONS(3104), + [anon_sym_assert] = ACTIONS(3104), + [anon_sym_defer] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_DOLLARfor] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_POUND] = ACTIONS(3104), + [anon_sym_asm] = ACTIONS(3104), + [anon_sym_AT_LBRACK] = ACTIONS(3104), + [sym___double_quote] = ACTIONS(3104), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3104), + [sym___c_single_quote] = ACTIONS(3104), + [sym___r_double_quote] = ACTIONS(3104), + [sym___r_single_quote] = ACTIONS(3104), }, [915] = { - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3042), - [anon_sym_CR] = ACTIONS(3042), - [anon_sym_CR_LF] = ACTIONS(3042), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_const] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3042), - [anon_sym___global] = ACTIONS(3042), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_union] = ACTIONS(3042), - [anon_sym_pub] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_enum] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3042), - [anon_sym_AMP_CARET] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3042), - [anon_sym_POUND_LBRACK] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_STAR_EQ] = ACTIONS(3042), - [anon_sym_SLASH_EQ] = ACTIONS(3042), - [anon_sym_PERCENT_EQ] = ACTIONS(3042), - [anon_sym_LT_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_GT_EQ] = ACTIONS(3042), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3042), - [anon_sym_AMP_EQ] = ACTIONS(3042), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3042), - [anon_sym_PLUS_EQ] = ACTIONS(3042), - [anon_sym_DASH_EQ] = ACTIONS(3042), - [anon_sym_PIPE_EQ] = ACTIONS(3042), - [anon_sym_CARET_EQ] = ACTIONS(3042), - [anon_sym_COLON_EQ] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), - [sym_rune_literal] = ACTIONS(3042), - [anon_sym_AT] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_defer] = ACTIONS(3042), - [anon_sym_goto] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_DOLLARfor] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [anon_sym_asm] = ACTIONS(3042), - [anon_sym_AT_LBRACK] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3042), - [sym___single_quote] = ACTIONS(3042), - [sym___c_double_quote] = ACTIONS(3042), - [sym___c_single_quote] = ACTIONS(3042), - [sym___r_double_quote] = ACTIONS(3042), - [sym___r_single_quote] = ACTIONS(3042), + [ts_builtin_sym_end] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3108), + [anon_sym_LF] = ACTIONS(3108), + [anon_sym_CR] = ACTIONS(3108), + [anon_sym_CR_LF] = ACTIONS(3108), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym___global] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(3108), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_mut] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3108), + [anon_sym_spawn] = ACTIONS(3108), + [anon_sym_json_DOTdecode] = ACTIONS(3108), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_CARET] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3108), + [anon_sym_LT_LT] = ACTIONS(3110), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3110), + [anon_sym_AMP_CARET] = ACTIONS(3110), + [anon_sym_AMP_AMP] = ACTIONS(3110), + [anon_sym_PIPE_PIPE] = ACTIONS(3110), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_nil] = ACTIONS(3108), + [anon_sym_QMARK_DOT] = ACTIONS(3110), + [anon_sym_POUND_LBRACK] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_DOLLARif] = ACTIONS(3108), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3110), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3110), + [anon_sym_match] = ACTIONS(3108), + [anon_sym_select] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3110), + [anon_sym_SLASH_EQ] = ACTIONS(3110), + [anon_sym_PERCENT_EQ] = ACTIONS(3110), + [anon_sym_LT_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_GT_EQ] = ACTIONS(3110), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3110), + [anon_sym_AMP_EQ] = ACTIONS(3110), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3110), + [anon_sym_PLUS_EQ] = ACTIONS(3110), + [anon_sym_DASH_EQ] = ACTIONS(3110), + [anon_sym_PIPE_EQ] = ACTIONS(3110), + [anon_sym_CARET_EQ] = ACTIONS(3110), + [anon_sym_COLON_EQ] = ACTIONS(3110), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(3108), + [anon_sym_sql] = ACTIONS(3108), + [sym_int_literal] = ACTIONS(3108), + [sym_float_literal] = ACTIONS(3108), + [sym_rune_literal] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_shared] = ACTIONS(3108), + [anon_sym_map_LBRACK] = ACTIONS(3108), + [anon_sym_chan] = ACTIONS(3108), + [anon_sym_thread] = ACTIONS(3108), + [anon_sym_atomic] = ACTIONS(3108), + [anon_sym_assert] = ACTIONS(3108), + [anon_sym_defer] = ACTIONS(3108), + [anon_sym_goto] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_DOLLARfor] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_POUND] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3108), + [anon_sym_AT_LBRACK] = ACTIONS(3108), + [sym___double_quote] = ACTIONS(3108), + [sym___single_quote] = ACTIONS(3108), + [sym___c_double_quote] = ACTIONS(3108), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3108), + [sym___r_single_quote] = ACTIONS(3108), }, [916] = { - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_EQ] = ACTIONS(3046), - [anon_sym___global] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_union] = ACTIONS(3046), - [anon_sym_pub] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_STAR_EQ] = ACTIONS(3046), - [anon_sym_SLASH_EQ] = ACTIONS(3046), - [anon_sym_PERCENT_EQ] = ACTIONS(3046), - [anon_sym_LT_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_GT_EQ] = ACTIONS(3046), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3046), - [anon_sym_AMP_EQ] = ACTIONS(3046), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3046), - [anon_sym_PLUS_EQ] = ACTIONS(3046), - [anon_sym_DASH_EQ] = ACTIONS(3046), - [anon_sym_PIPE_EQ] = ACTIONS(3046), - [anon_sym_CARET_EQ] = ACTIONS(3046), - [anon_sym_COLON_EQ] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [anon_sym_assert] = ACTIONS(3046), - [anon_sym_defer] = ACTIONS(3046), - [anon_sym_goto] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_DOLLARfor] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_asm] = ACTIONS(3046), - [anon_sym_AT_LBRACK] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3046), - [sym___single_quote] = ACTIONS(3046), - [sym___c_double_quote] = ACTIONS(3046), - [sym___c_single_quote] = ACTIONS(3046), - [sym___r_double_quote] = ACTIONS(3046), - [sym___r_single_quote] = ACTIONS(3046), + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3118), + [anon_sym_LF] = ACTIONS(3118), + [anon_sym_CR] = ACTIONS(3118), + [anon_sym_CR_LF] = ACTIONS(3118), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym___global] = ACTIONS(3118), + [anon_sym_type] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_pub] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_interface] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_COLON_EQ] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [anon_sym_assert] = ACTIONS(3118), + [anon_sym_defer] = ACTIONS(3118), + [anon_sym_goto] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_DOLLARfor] = ACTIONS(3118), + [anon_sym_for] = ACTIONS(3118), + [anon_sym_POUND] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym_AT_LBRACK] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), }, [917] = { - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_const] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_EQ] = ACTIONS(3050), - [anon_sym___global] = ACTIONS(3050), - [anon_sym_type] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_union] = ACTIONS(3050), - [anon_sym_pub] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_enum] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_STAR_EQ] = ACTIONS(3050), - [anon_sym_SLASH_EQ] = ACTIONS(3050), - [anon_sym_PERCENT_EQ] = ACTIONS(3050), - [anon_sym_LT_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_GT_EQ] = ACTIONS(3050), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3050), - [anon_sym_AMP_EQ] = ACTIONS(3050), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3050), - [anon_sym_PLUS_EQ] = ACTIONS(3050), - [anon_sym_DASH_EQ] = ACTIONS(3050), - [anon_sym_PIPE_EQ] = ACTIONS(3050), - [anon_sym_CARET_EQ] = ACTIONS(3050), - [anon_sym_COLON_EQ] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [anon_sym_assert] = ACTIONS(3050), - [anon_sym_defer] = ACTIONS(3050), - [anon_sym_goto] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_DOLLARfor] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [anon_sym_asm] = ACTIONS(3050), - [anon_sym_AT_LBRACK] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_STAR_EQ] = ACTIONS(2914), + [anon_sym_SLASH_EQ] = ACTIONS(2914), + [anon_sym_PERCENT_EQ] = ACTIONS(2914), + [anon_sym_LT_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_AMP_EQ] = ACTIONS(2914), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), + [anon_sym_PLUS_EQ] = ACTIONS(2914), + [anon_sym_DASH_EQ] = ACTIONS(2914), + [anon_sym_PIPE_EQ] = ACTIONS(2914), + [anon_sym_CARET_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [918] = { - [ts_builtin_sym_end] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LF] = ACTIONS(2982), - [anon_sym_CR] = ACTIONS(2982), - [anon_sym_CR_LF] = ACTIONS(2982), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_as] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2982), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2984), - [anon_sym___global] = ACTIONS(2982), - [anon_sym_type] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2982), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2982), - [anon_sym_union] = ACTIONS(2982), - [anon_sym_pub] = ACTIONS(2982), - [anon_sym_mut] = ACTIONS(2982), - [anon_sym_enum] = ACTIONS(2982), - [anon_sym_interface] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_go] = ACTIONS(2982), - [anon_sym_spawn] = ACTIONS(2982), - [anon_sym_json_DOTdecode] = ACTIONS(2982), - [anon_sym_LBRACK2] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2982), - [anon_sym_CARET] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2982), - [anon_sym_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_GT_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_CARET] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2984), - [sym_none] = ACTIONS(2982), - [sym_true] = ACTIONS(2982), - [sym_false] = ACTIONS(2982), - [sym_nil] = ACTIONS(2982), - [anon_sym_QMARK_DOT] = ACTIONS(2984), - [anon_sym_POUND_LBRACK] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_DOLLARif] = ACTIONS(2982), - [anon_sym_is] = ACTIONS(2984), - [anon_sym_BANGis] = ACTIONS(2984), - [anon_sym_in] = ACTIONS(2984), - [anon_sym_BANGin] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2982), - [anon_sym_select] = ACTIONS(2982), - [anon_sym_STAR_EQ] = ACTIONS(2984), - [anon_sym_SLASH_EQ] = ACTIONS(2984), - [anon_sym_PERCENT_EQ] = ACTIONS(2984), - [anon_sym_LT_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_GT_EQ] = ACTIONS(2984), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2984), - [anon_sym_AMP_EQ] = ACTIONS(2984), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(2984), - [anon_sym_DASH_EQ] = ACTIONS(2984), - [anon_sym_PIPE_EQ] = ACTIONS(2984), - [anon_sym_CARET_EQ] = ACTIONS(2984), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_lock] = ACTIONS(2982), - [anon_sym_rlock] = ACTIONS(2982), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_sql] = ACTIONS(2982), - [sym_int_literal] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2982), - [sym_rune_literal] = ACTIONS(2982), - [anon_sym_AT] = ACTIONS(2982), - [anon_sym_shared] = ACTIONS(2982), - [anon_sym_map_LBRACK] = ACTIONS(2982), - [anon_sym_chan] = ACTIONS(2982), - [anon_sym_thread] = ACTIONS(2982), - [anon_sym_atomic] = ACTIONS(2982), - [anon_sym_assert] = ACTIONS(2982), - [anon_sym_defer] = ACTIONS(2982), - [anon_sym_goto] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_DOLLARfor] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym_AT_LBRACK] = ACTIONS(2982), - [sym___double_quote] = ACTIONS(2982), - [sym___single_quote] = ACTIONS(2982), - [sym___c_double_quote] = ACTIONS(2982), - [sym___c_single_quote] = ACTIONS(2982), - [sym___r_double_quote] = ACTIONS(2982), - [sym___r_single_quote] = ACTIONS(2982), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3122), + [anon_sym_CR] = ACTIONS(3122), + [anon_sym_CR_LF] = ACTIONS(3122), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3122), + [anon_sym_as] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_COMMA] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3122), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym___global] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_fn] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_PERCENT] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3122), + [anon_sym_LT_EQ] = ACTIONS(3122), + [anon_sym_GT_EQ] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [anon_sym_pub] = ACTIONS(3122), + [anon_sym_mut] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3122), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_go] = ACTIONS(3122), + [anon_sym_spawn] = ACTIONS(3122), + [anon_sym_json_DOTdecode] = ACTIONS(3122), + [anon_sym_LBRACK2] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_LT_DASH] = ACTIONS(3122), + [anon_sym_LT_LT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3122), + [anon_sym_GT_GT_GT] = ACTIONS(3122), + [anon_sym_AMP_CARET] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_PIPE_PIPE] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(3122), + [sym_none] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_nil] = ACTIONS(3122), + [anon_sym_QMARK_DOT] = ACTIONS(3122), + [anon_sym_POUND_LBRACK] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_DOLLARif] = ACTIONS(3122), + [anon_sym_is] = ACTIONS(3122), + [anon_sym_BANGis] = ACTIONS(3122), + [anon_sym_in] = ACTIONS(3122), + [anon_sym_BANGin] = ACTIONS(3122), + [anon_sym_match] = ACTIONS(3122), + [anon_sym_select] = ACTIONS(3122), + [anon_sym_STAR_EQ] = ACTIONS(3122), + [anon_sym_SLASH_EQ] = ACTIONS(3122), + [anon_sym_PERCENT_EQ] = ACTIONS(3122), + [anon_sym_LT_LT_EQ] = ACTIONS(3122), + [anon_sym_GT_GT_EQ] = ACTIONS(3122), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3122), + [anon_sym_AMP_EQ] = ACTIONS(3122), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3122), + [anon_sym_PLUS_EQ] = ACTIONS(3122), + [anon_sym_DASH_EQ] = ACTIONS(3122), + [anon_sym_PIPE_EQ] = ACTIONS(3122), + [anon_sym_CARET_EQ] = ACTIONS(3122), + [anon_sym_COLON_EQ] = ACTIONS(3122), + [anon_sym_lock] = ACTIONS(3122), + [anon_sym_rlock] = ACTIONS(3122), + [anon_sym_unsafe] = ACTIONS(3122), + [anon_sym_sql] = ACTIONS(3122), + [sym_int_literal] = ACTIONS(3122), + [sym_float_literal] = ACTIONS(3122), + [sym_rune_literal] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3122), + [anon_sym_shared] = ACTIONS(3122), + [anon_sym_map_LBRACK] = ACTIONS(3122), + [anon_sym_chan] = ACTIONS(3122), + [anon_sym_thread] = ACTIONS(3122), + [anon_sym_atomic] = ACTIONS(3122), + [anon_sym_assert] = ACTIONS(3122), + [anon_sym_defer] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_DOLLARfor] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(3122), + [anon_sym_asm] = ACTIONS(3122), + [anon_sym_AT_LBRACK] = ACTIONS(3122), + [sym___double_quote] = ACTIONS(3122), + [sym___single_quote] = ACTIONS(3122), + [sym___c_double_quote] = ACTIONS(3122), + [sym___c_single_quote] = ACTIONS(3122), + [sym___r_double_quote] = ACTIONS(3122), + [sym___r_single_quote] = ACTIONS(3122), }, [919] = { - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_EQ] = ACTIONS(3054), - [anon_sym___global] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_pub] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_STAR_EQ] = ACTIONS(3054), - [anon_sym_SLASH_EQ] = ACTIONS(3054), - [anon_sym_PERCENT_EQ] = ACTIONS(3054), - [anon_sym_LT_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_GT_EQ] = ACTIONS(3054), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3054), - [anon_sym_AMP_EQ] = ACTIONS(3054), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3054), - [anon_sym_PLUS_EQ] = ACTIONS(3054), - [anon_sym_DASH_EQ] = ACTIONS(3054), - [anon_sym_PIPE_EQ] = ACTIONS(3054), - [anon_sym_CARET_EQ] = ACTIONS(3054), - [anon_sym_COLON_EQ] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_defer] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_DOLLARfor] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym_AT_LBRACK] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3126), + [anon_sym_LF] = ACTIONS(3126), + [anon_sym_CR] = ACTIONS(3126), + [anon_sym_CR_LF] = ACTIONS(3126), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_as] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_COMMA] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym___global] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_fn] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3126), + [anon_sym_BANG_EQ] = ACTIONS(3126), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_pub] = ACTIONS(3126), + [anon_sym_mut] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_go] = ACTIONS(3126), + [anon_sym_spawn] = ACTIONS(3126), + [anon_sym_json_DOTdecode] = ACTIONS(3126), + [anon_sym_LBRACK2] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_LT_DASH] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_GT_GT_GT] = ACTIONS(3126), + [anon_sym_AMP_CARET] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3126), + [anon_sym_or] = ACTIONS(3126), + [sym_none] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_nil] = ACTIONS(3126), + [anon_sym_QMARK_DOT] = ACTIONS(3126), + [anon_sym_POUND_LBRACK] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_DOLLARif] = ACTIONS(3126), + [anon_sym_is] = ACTIONS(3126), + [anon_sym_BANGis] = ACTIONS(3126), + [anon_sym_in] = ACTIONS(3126), + [anon_sym_BANGin] = ACTIONS(3126), + [anon_sym_match] = ACTIONS(3126), + [anon_sym_select] = ACTIONS(3126), + [anon_sym_STAR_EQ] = ACTIONS(3126), + [anon_sym_SLASH_EQ] = ACTIONS(3126), + [anon_sym_PERCENT_EQ] = ACTIONS(3126), + [anon_sym_LT_LT_EQ] = ACTIONS(3126), + [anon_sym_GT_GT_EQ] = ACTIONS(3126), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3126), + [anon_sym_AMP_EQ] = ACTIONS(3126), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3126), + [anon_sym_PLUS_EQ] = ACTIONS(3126), + [anon_sym_DASH_EQ] = ACTIONS(3126), + [anon_sym_PIPE_EQ] = ACTIONS(3126), + [anon_sym_CARET_EQ] = ACTIONS(3126), + [anon_sym_COLON_EQ] = ACTIONS(3126), + [anon_sym_lock] = ACTIONS(3126), + [anon_sym_rlock] = ACTIONS(3126), + [anon_sym_unsafe] = ACTIONS(3126), + [anon_sym_sql] = ACTIONS(3126), + [sym_int_literal] = ACTIONS(3126), + [sym_float_literal] = ACTIONS(3126), + [sym_rune_literal] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_shared] = ACTIONS(3126), + [anon_sym_map_LBRACK] = ACTIONS(3126), + [anon_sym_chan] = ACTIONS(3126), + [anon_sym_thread] = ACTIONS(3126), + [anon_sym_atomic] = ACTIONS(3126), + [anon_sym_assert] = ACTIONS(3126), + [anon_sym_defer] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_DOLLARfor] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_POUND] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym_AT_LBRACK] = ACTIONS(3126), + [sym___double_quote] = ACTIONS(3126), + [sym___single_quote] = ACTIONS(3126), + [sym___c_double_quote] = ACTIONS(3126), + [sym___c_single_quote] = ACTIONS(3126), + [sym___r_double_quote] = ACTIONS(3126), + [sym___r_single_quote] = ACTIONS(3126), }, [920] = { - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LF] = ACTIONS(3058), - [anon_sym_CR] = ACTIONS(3058), - [anon_sym_CR_LF] = ACTIONS(3058), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym___global] = ACTIONS(3058), - [anon_sym_type] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_pub] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3058), - [anon_sym_AMP_CARET] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3058), - [anon_sym_POUND_LBRACK] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_STAR_EQ] = ACTIONS(3058), - [anon_sym_SLASH_EQ] = ACTIONS(3058), - [anon_sym_PERCENT_EQ] = ACTIONS(3058), - [anon_sym_LT_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_GT_EQ] = ACTIONS(3058), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3058), - [anon_sym_AMP_EQ] = ACTIONS(3058), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3058), - [anon_sym_PLUS_EQ] = ACTIONS(3058), - [anon_sym_DASH_EQ] = ACTIONS(3058), - [anon_sym_PIPE_EQ] = ACTIONS(3058), - [anon_sym_CARET_EQ] = ACTIONS(3058), - [anon_sym_COLON_EQ] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_defer] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_DOLLARfor] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym_AT_LBRACK] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3058), - [sym___single_quote] = ACTIONS(3058), - [sym___c_double_quote] = ACTIONS(3058), - [sym___c_single_quote] = ACTIONS(3058), - [sym___r_double_quote] = ACTIONS(3058), - [sym___r_single_quote] = ACTIONS(3058), + [ts_builtin_sym_end] = ACTIONS(3130), + [sym_identifier] = ACTIONS(3132), + [anon_sym_LF] = ACTIONS(3132), + [anon_sym_CR] = ACTIONS(3132), + [anon_sym_CR_LF] = ACTIONS(3132), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(3132), + [anon_sym___global] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_PIPE] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [anon_sym_pub] = ACTIONS(3132), + [anon_sym_mut] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3132), + [anon_sym_json_DOTdecode] = ACTIONS(3132), + [anon_sym_LBRACK2] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_CARET] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_LT_LT] = ACTIONS(3132), + [anon_sym_GT_GT] = ACTIONS(3132), + [anon_sym_GT_GT_GT] = ACTIONS(3132), + [anon_sym_AMP_CARET] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [sym_none] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_nil] = ACTIONS(3132), + [anon_sym_QMARK_DOT] = ACTIONS(3132), + [anon_sym_POUND_LBRACK] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_DOLLARif] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3132), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_in] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_select] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_LT_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_GT_EQ] = ACTIONS(3132), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3132), + [anon_sym_AMP_EQ] = ACTIONS(3132), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3132), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_PIPE_EQ] = ACTIONS(3132), + [anon_sym_CARET_EQ] = ACTIONS(3132), + [anon_sym_COLON_EQ] = ACTIONS(3132), + [anon_sym_lock] = ACTIONS(3132), + [anon_sym_rlock] = ACTIONS(3132), + [anon_sym_unsafe] = ACTIONS(3132), + [anon_sym_sql] = ACTIONS(3132), + [sym_int_literal] = ACTIONS(3132), + [sym_float_literal] = ACTIONS(3132), + [sym_rune_literal] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_shared] = ACTIONS(3132), + [anon_sym_map_LBRACK] = ACTIONS(3132), + [anon_sym_chan] = ACTIONS(3132), + [anon_sym_thread] = ACTIONS(3132), + [anon_sym_atomic] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_defer] = ACTIONS(3132), + [anon_sym_goto] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_DOLLARfor] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_POUND] = ACTIONS(3132), + [anon_sym_asm] = ACTIONS(3132), + [anon_sym_AT_LBRACK] = ACTIONS(3132), + [sym___double_quote] = ACTIONS(3132), + [sym___single_quote] = ACTIONS(3132), + [sym___c_double_quote] = ACTIONS(3132), + [sym___c_single_quote] = ACTIONS(3132), + [sym___r_double_quote] = ACTIONS(3132), + [sym___r_single_quote] = ACTIONS(3132), }, [921] = { - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_const] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(3062), - [anon_sym___global] = ACTIONS(3062), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(3062), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_STAR_EQ] = ACTIONS(3062), - [anon_sym_SLASH_EQ] = ACTIONS(3062), - [anon_sym_PERCENT_EQ] = ACTIONS(3062), - [anon_sym_LT_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_GT_EQ] = ACTIONS(3062), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3062), - [anon_sym_AMP_EQ] = ACTIONS(3062), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3062), - [anon_sym_PLUS_EQ] = ACTIONS(3062), - [anon_sym_DASH_EQ] = ACTIONS(3062), - [anon_sym_PIPE_EQ] = ACTIONS(3062), - [anon_sym_CARET_EQ] = ACTIONS(3062), - [anon_sym_COLON_EQ] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [anon_sym_assert] = ACTIONS(3062), - [anon_sym_defer] = ACTIONS(3062), - [anon_sym_goto] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_DOLLARfor] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_asm] = ACTIONS(3062), - [anon_sym_AT_LBRACK] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LF] = ACTIONS(3136), + [anon_sym_CR] = ACTIONS(3136), + [anon_sym_CR_LF] = ACTIONS(3136), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3136), + [anon_sym_as] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_COMMA] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_EQ] = ACTIONS(3136), + [anon_sym___global] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(3136), + [anon_sym_fn] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_PERCENT] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_GT] = ACTIONS(3136), + [anon_sym_EQ_EQ] = ACTIONS(3136), + [anon_sym_BANG_EQ] = ACTIONS(3136), + [anon_sym_LT_EQ] = ACTIONS(3136), + [anon_sym_GT_EQ] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3136), + [anon_sym_pub] = ACTIONS(3136), + [anon_sym_mut] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3136), + [anon_sym_json_DOTdecode] = ACTIONS(3136), + [anon_sym_LBRACK2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_CARET] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3136), + [anon_sym_LT_LT] = ACTIONS(3136), + [anon_sym_GT_GT] = ACTIONS(3136), + [anon_sym_GT_GT_GT] = ACTIONS(3136), + [anon_sym_AMP_CARET] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_PIPE_PIPE] = ACTIONS(3136), + [anon_sym_or] = ACTIONS(3136), + [sym_none] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_nil] = ACTIONS(3136), + [anon_sym_QMARK_DOT] = ACTIONS(3136), + [anon_sym_POUND_LBRACK] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_DOLLARif] = ACTIONS(3136), + [anon_sym_is] = ACTIONS(3136), + [anon_sym_BANGis] = ACTIONS(3136), + [anon_sym_in] = ACTIONS(3136), + [anon_sym_BANGin] = ACTIONS(3136), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_STAR_EQ] = ACTIONS(3136), + [anon_sym_SLASH_EQ] = ACTIONS(3136), + [anon_sym_PERCENT_EQ] = ACTIONS(3136), + [anon_sym_LT_LT_EQ] = ACTIONS(3136), + [anon_sym_GT_GT_EQ] = ACTIONS(3136), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3136), + [anon_sym_AMP_EQ] = ACTIONS(3136), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3136), + [anon_sym_PLUS_EQ] = ACTIONS(3136), + [anon_sym_DASH_EQ] = ACTIONS(3136), + [anon_sym_PIPE_EQ] = ACTIONS(3136), + [anon_sym_CARET_EQ] = ACTIONS(3136), + [anon_sym_COLON_EQ] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3136), + [anon_sym_rlock] = ACTIONS(3136), + [anon_sym_unsafe] = ACTIONS(3136), + [anon_sym_sql] = ACTIONS(3136), + [sym_int_literal] = ACTIONS(3136), + [sym_float_literal] = ACTIONS(3136), + [sym_rune_literal] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_shared] = ACTIONS(3136), + [anon_sym_map_LBRACK] = ACTIONS(3136), + [anon_sym_chan] = ACTIONS(3136), + [anon_sym_thread] = ACTIONS(3136), + [anon_sym_atomic] = ACTIONS(3136), + [anon_sym_assert] = ACTIONS(3136), + [anon_sym_defer] = ACTIONS(3136), + [anon_sym_goto] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_DOLLARfor] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_POUND] = ACTIONS(3136), + [anon_sym_asm] = ACTIONS(3136), + [anon_sym_AT_LBRACK] = ACTIONS(3136), + [sym___double_quote] = ACTIONS(3136), + [sym___single_quote] = ACTIONS(3136), + [sym___c_double_quote] = ACTIONS(3136), + [sym___c_single_quote] = ACTIONS(3136), + [sym___r_double_quote] = ACTIONS(3136), + [sym___r_single_quote] = ACTIONS(3136), }, [922] = { - [ts_builtin_sym_end] = ACTIONS(3064), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LF] = ACTIONS(3066), - [anon_sym_CR] = ACTIONS(3066), - [anon_sym_CR_LF] = ACTIONS(3066), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_EQ] = ACTIONS(3066), - [anon_sym___global] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_fn] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_pub] = ACTIONS(3066), - [anon_sym_mut] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_go] = ACTIONS(3066), - [anon_sym_spawn] = ACTIONS(3066), - [anon_sym_json_DOTdecode] = ACTIONS(3066), - [anon_sym_LBRACK2] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3066), - [anon_sym_AMP_CARET] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3066), - [sym_none] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_nil] = ACTIONS(3066), - [anon_sym_QMARK_DOT] = ACTIONS(3066), - [anon_sym_POUND_LBRACK] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_DOLLARif] = ACTIONS(3066), - [anon_sym_is] = ACTIONS(3066), - [anon_sym_BANGis] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_BANGin] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_STAR_EQ] = ACTIONS(3066), - [anon_sym_SLASH_EQ] = ACTIONS(3066), - [anon_sym_PERCENT_EQ] = ACTIONS(3066), - [anon_sym_LT_LT_EQ] = ACTIONS(3066), - [anon_sym_GT_GT_EQ] = ACTIONS(3066), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3066), - [anon_sym_AMP_EQ] = ACTIONS(3066), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3066), - [anon_sym_PLUS_EQ] = ACTIONS(3066), - [anon_sym_DASH_EQ] = ACTIONS(3066), - [anon_sym_PIPE_EQ] = ACTIONS(3066), - [anon_sym_CARET_EQ] = ACTIONS(3066), - [anon_sym_COLON_EQ] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_rlock] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_sql] = ACTIONS(3066), - [sym_int_literal] = ACTIONS(3066), - [sym_float_literal] = ACTIONS(3066), - [sym_rune_literal] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_shared] = ACTIONS(3066), - [anon_sym_map_LBRACK] = ACTIONS(3066), - [anon_sym_chan] = ACTIONS(3066), - [anon_sym_thread] = ACTIONS(3066), - [anon_sym_atomic] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_defer] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_DOLLARfor] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym_AT_LBRACK] = ACTIONS(3066), - [sym___double_quote] = ACTIONS(3066), - [sym___single_quote] = ACTIONS(3066), - [sym___c_double_quote] = ACTIONS(3066), - [sym___c_single_quote] = ACTIONS(3066), - [sym___r_double_quote] = ACTIONS(3066), - [sym___r_single_quote] = ACTIONS(3066), + [ts_builtin_sym_end] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3140), + [anon_sym_LF] = ACTIONS(3140), + [anon_sym_CR] = ACTIONS(3140), + [anon_sym_CR_LF] = ACTIONS(3140), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_const] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym___global] = ACTIONS(3140), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3140), + [anon_sym_fn] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3140), + [anon_sym_union] = ACTIONS(3140), + [anon_sym_pub] = ACTIONS(3140), + [anon_sym_mut] = ACTIONS(3140), + [anon_sym_enum] = ACTIONS(3140), + [anon_sym_interface] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_go] = ACTIONS(3140), + [anon_sym_spawn] = ACTIONS(3140), + [anon_sym_json_DOTdecode] = ACTIONS(3140), + [anon_sym_LBRACK2] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_GT_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_CARET] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_or] = ACTIONS(3140), + [sym_none] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_nil] = ACTIONS(3140), + [anon_sym_QMARK_DOT] = ACTIONS(3140), + [anon_sym_POUND_LBRACK] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_DOLLARif] = ACTIONS(3140), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3140), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_BANGin] = ACTIONS(3140), + [anon_sym_match] = ACTIONS(3140), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_COLON_EQ] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(3140), + [anon_sym_sql] = ACTIONS(3140), + [sym_int_literal] = ACTIONS(3140), + [sym_float_literal] = ACTIONS(3140), + [sym_rune_literal] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_shared] = ACTIONS(3140), + [anon_sym_map_LBRACK] = ACTIONS(3140), + [anon_sym_chan] = ACTIONS(3140), + [anon_sym_thread] = ACTIONS(3140), + [anon_sym_atomic] = ACTIONS(3140), + [anon_sym_assert] = ACTIONS(3140), + [anon_sym_defer] = ACTIONS(3140), + [anon_sym_goto] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_DOLLARfor] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3140), + [anon_sym_asm] = ACTIONS(3140), + [anon_sym_AT_LBRACK] = ACTIONS(3140), + [sym___double_quote] = ACTIONS(3140), + [sym___single_quote] = ACTIONS(3140), + [sym___c_double_quote] = ACTIONS(3140), + [sym___c_single_quote] = ACTIONS(3140), + [sym___r_double_quote] = ACTIONS(3140), + [sym___r_single_quote] = ACTIONS(3140), }, [923] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_EQ] = ACTIONS(3070), - [anon_sym___global] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_STAR_EQ] = ACTIONS(3070), - [anon_sym_SLASH_EQ] = ACTIONS(3070), - [anon_sym_PERCENT_EQ] = ACTIONS(3070), - [anon_sym_LT_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_GT_EQ] = ACTIONS(3070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3070), - [anon_sym_AMP_EQ] = ACTIONS(3070), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3070), - [anon_sym_PLUS_EQ] = ACTIONS(3070), - [anon_sym_DASH_EQ] = ACTIONS(3070), - [anon_sym_PIPE_EQ] = ACTIONS(3070), - [anon_sym_CARET_EQ] = ACTIONS(3070), - [anon_sym_COLON_EQ] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [anon_sym_assert] = ACTIONS(3070), - [anon_sym_defer] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_DOLLARfor] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym_AT_LBRACK] = ACTIONS(3070), - [sym___double_quote] = ACTIONS(3070), - [sym___single_quote] = ACTIONS(3070), - [sym___c_double_quote] = ACTIONS(3070), - [sym___c_single_quote] = ACTIONS(3070), - [sym___r_double_quote] = ACTIONS(3070), - [sym___r_single_quote] = ACTIONS(3070), + [ts_builtin_sym_end] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_CR] = ACTIONS(2750), + [anon_sym_CR_LF] = ACTIONS(2750), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_EQ] = ACTIONS(2750), + [anon_sym___global] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_union] = ACTIONS(2750), + [anon_sym_pub] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_enum] = ACTIONS(2750), + [anon_sym_interface] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2750), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2750), + [anon_sym_POUND_LBRACK] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_STAR_EQ] = ACTIONS(2750), + [anon_sym_SLASH_EQ] = ACTIONS(2750), + [anon_sym_PERCENT_EQ] = ACTIONS(2750), + [anon_sym_LT_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_GT_EQ] = ACTIONS(2750), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2750), + [anon_sym_AMP_EQ] = ACTIONS(2750), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2750), + [anon_sym_PLUS_EQ] = ACTIONS(2750), + [anon_sym_DASH_EQ] = ACTIONS(2750), + [anon_sym_PIPE_EQ] = ACTIONS(2750), + [anon_sym_CARET_EQ] = ACTIONS(2750), + [anon_sym_COLON_EQ] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + [sym_rune_literal] = ACTIONS(2750), + [anon_sym_AT] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2750), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [anon_sym_assert] = ACTIONS(2750), + [anon_sym_defer] = ACTIONS(2750), + [anon_sym_goto] = ACTIONS(2750), + [anon_sym_break] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2750), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_DOLLARfor] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_asm] = ACTIONS(2750), + [anon_sym_AT_LBRACK] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2750), + [sym___single_quote] = ACTIONS(2750), + [sym___c_double_quote] = ACTIONS(2750), + [sym___c_single_quote] = ACTIONS(2750), + [sym___r_double_quote] = ACTIONS(2750), + [sym___r_single_quote] = ACTIONS(2750), }, [924] = { - [ts_builtin_sym_end] = ACTIONS(3072), - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(3074), - [anon_sym___global] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_pub] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_STAR_EQ] = ACTIONS(3074), - [anon_sym_SLASH_EQ] = ACTIONS(3074), - [anon_sym_PERCENT_EQ] = ACTIONS(3074), - [anon_sym_LT_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_GT_EQ] = ACTIONS(3074), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3074), - [anon_sym_AMP_EQ] = ACTIONS(3074), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3074), - [anon_sym_PLUS_EQ] = ACTIONS(3074), - [anon_sym_DASH_EQ] = ACTIONS(3074), - [anon_sym_PIPE_EQ] = ACTIONS(3074), - [anon_sym_CARET_EQ] = ACTIONS(3074), - [anon_sym_COLON_EQ] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_defer] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_DOLLARfor] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym_AT_LBRACK] = ACTIONS(3074), - [sym___double_quote] = ACTIONS(3074), - [sym___single_quote] = ACTIONS(3074), - [sym___c_double_quote] = ACTIONS(3074), - [sym___c_single_quote] = ACTIONS(3074), - [sym___r_double_quote] = ACTIONS(3074), - [sym___r_single_quote] = ACTIONS(3074), + [ts_builtin_sym_end] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LF] = ACTIONS(3144), + [anon_sym_CR] = ACTIONS(3144), + [anon_sym_CR_LF] = ACTIONS(3144), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_as] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(3144), + [anon_sym___global] = ACTIONS(3144), + [anon_sym_type] = ACTIONS(3144), + [anon_sym_PIPE] = ACTIONS(3144), + [anon_sym_fn] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_LT_EQ] = ACTIONS(3144), + [anon_sym_GT_EQ] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_struct] = ACTIONS(3144), + [anon_sym_union] = ACTIONS(3144), + [anon_sym_pub] = ACTIONS(3144), + [anon_sym_mut] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3144), + [anon_sym_interface] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_go] = ACTIONS(3144), + [anon_sym_spawn] = ACTIONS(3144), + [anon_sym_json_DOTdecode] = ACTIONS(3144), + [anon_sym_LBRACK2] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_LT_LT] = ACTIONS(3144), + [anon_sym_GT_GT] = ACTIONS(3144), + [anon_sym_GT_GT_GT] = ACTIONS(3144), + [anon_sym_AMP_CARET] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [sym_none] = ACTIONS(3144), + [sym_true] = ACTIONS(3144), + [sym_false] = ACTIONS(3144), + [sym_nil] = ACTIONS(3144), + [anon_sym_QMARK_DOT] = ACTIONS(3144), + [anon_sym_POUND_LBRACK] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_DOLLARif] = ACTIONS(3144), + [anon_sym_is] = ACTIONS(3144), + [anon_sym_BANGis] = ACTIONS(3144), + [anon_sym_in] = ACTIONS(3144), + [anon_sym_BANGin] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_STAR_EQ] = ACTIONS(3144), + [anon_sym_SLASH_EQ] = ACTIONS(3144), + [anon_sym_PERCENT_EQ] = ACTIONS(3144), + [anon_sym_LT_LT_EQ] = ACTIONS(3144), + [anon_sym_GT_GT_EQ] = ACTIONS(3144), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3144), + [anon_sym_AMP_EQ] = ACTIONS(3144), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3144), + [anon_sym_PLUS_EQ] = ACTIONS(3144), + [anon_sym_DASH_EQ] = ACTIONS(3144), + [anon_sym_PIPE_EQ] = ACTIONS(3144), + [anon_sym_CARET_EQ] = ACTIONS(3144), + [anon_sym_COLON_EQ] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3144), + [anon_sym_rlock] = ACTIONS(3144), + [anon_sym_unsafe] = ACTIONS(3144), + [anon_sym_sql] = ACTIONS(3144), + [sym_int_literal] = ACTIONS(3144), + [sym_float_literal] = ACTIONS(3144), + [sym_rune_literal] = ACTIONS(3144), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_shared] = ACTIONS(3144), + [anon_sym_map_LBRACK] = ACTIONS(3144), + [anon_sym_chan] = ACTIONS(3144), + [anon_sym_thread] = ACTIONS(3144), + [anon_sym_atomic] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_defer] = ACTIONS(3144), + [anon_sym_goto] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_DOLLARfor] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(3144), + [anon_sym_asm] = ACTIONS(3144), + [anon_sym_AT_LBRACK] = ACTIONS(3144), + [sym___double_quote] = ACTIONS(3144), + [sym___single_quote] = ACTIONS(3144), + [sym___c_double_quote] = ACTIONS(3144), + [sym___c_single_quote] = ACTIONS(3144), + [sym___r_double_quote] = ACTIONS(3144), + [sym___r_single_quote] = ACTIONS(3144), }, [925] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_STAR_EQ] = ACTIONS(2694), - [anon_sym_SLASH_EQ] = ACTIONS(2694), - [anon_sym_PERCENT_EQ] = ACTIONS(2694), - [anon_sym_LT_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_GT_EQ] = ACTIONS(2694), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2694), - [anon_sym_AMP_EQ] = ACTIONS(2694), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2694), - [anon_sym_PLUS_EQ] = ACTIONS(2694), - [anon_sym_DASH_EQ] = ACTIONS(2694), - [anon_sym_PIPE_EQ] = ACTIONS(2694), - [anon_sym_CARET_EQ] = ACTIONS(2694), - [anon_sym_COLON_EQ] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [ts_builtin_sym_end] = ACTIONS(3146), + [sym_identifier] = ACTIONS(3148), + [anon_sym_LF] = ACTIONS(3148), + [anon_sym_CR] = ACTIONS(3148), + [anon_sym_CR_LF] = ACTIONS(3148), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_COMMA] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym___global] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_PIPE] = ACTIONS(3148), + [anon_sym_fn] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_LT_EQ] = ACTIONS(3148), + [anon_sym_GT_EQ] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3148), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_pub] = ACTIONS(3148), + [anon_sym_mut] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_QMARK] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3148), + [anon_sym_spawn] = ACTIONS(3148), + [anon_sym_json_DOTdecode] = ACTIONS(3148), + [anon_sym_LBRACK2] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_CARET] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_LT_DASH] = ACTIONS(3148), + [anon_sym_LT_LT] = ACTIONS(3148), + [anon_sym_GT_GT] = ACTIONS(3148), + [anon_sym_GT_GT_GT] = ACTIONS(3148), + [anon_sym_AMP_CARET] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_PIPE_PIPE] = ACTIONS(3148), + [anon_sym_or] = ACTIONS(3148), + [sym_none] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nil] = ACTIONS(3148), + [anon_sym_QMARK_DOT] = ACTIONS(3148), + [anon_sym_POUND_LBRACK] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_DOLLARif] = ACTIONS(3148), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_BANGin] = ACTIONS(3148), + [anon_sym_match] = ACTIONS(3148), + [anon_sym_select] = ACTIONS(3148), + [anon_sym_STAR_EQ] = ACTIONS(3148), + [anon_sym_SLASH_EQ] = ACTIONS(3148), + [anon_sym_PERCENT_EQ] = ACTIONS(3148), + [anon_sym_LT_LT_EQ] = ACTIONS(3148), + [anon_sym_GT_GT_EQ] = ACTIONS(3148), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3148), + [anon_sym_AMP_EQ] = ACTIONS(3148), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3148), + [anon_sym_PLUS_EQ] = ACTIONS(3148), + [anon_sym_DASH_EQ] = ACTIONS(3148), + [anon_sym_PIPE_EQ] = ACTIONS(3148), + [anon_sym_CARET_EQ] = ACTIONS(3148), + [anon_sym_COLON_EQ] = ACTIONS(3148), + [anon_sym_lock] = ACTIONS(3148), + [anon_sym_rlock] = ACTIONS(3148), + [anon_sym_unsafe] = ACTIONS(3148), + [anon_sym_sql] = ACTIONS(3148), + [sym_int_literal] = ACTIONS(3148), + [sym_float_literal] = ACTIONS(3148), + [sym_rune_literal] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_shared] = ACTIONS(3148), + [anon_sym_map_LBRACK] = ACTIONS(3148), + [anon_sym_chan] = ACTIONS(3148), + [anon_sym_thread] = ACTIONS(3148), + [anon_sym_atomic] = ACTIONS(3148), + [anon_sym_assert] = ACTIONS(3148), + [anon_sym_defer] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_DOLLARfor] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_POUND] = ACTIONS(3148), + [anon_sym_asm] = ACTIONS(3148), + [anon_sym_AT_LBRACK] = ACTIONS(3148), + [sym___double_quote] = ACTIONS(3148), + [sym___single_quote] = ACTIONS(3148), + [sym___c_double_quote] = ACTIONS(3148), + [sym___c_single_quote] = ACTIONS(3148), + [sym___r_double_quote] = ACTIONS(3148), + [sym___r_single_quote] = ACTIONS(3148), }, [926] = { - [ts_builtin_sym_end] = ACTIONS(3076), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LF] = ACTIONS(3078), - [anon_sym_CR] = ACTIONS(3078), - [anon_sym_CR_LF] = ACTIONS(3078), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_as] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym___global] = ACTIONS(3078), - [anon_sym_type] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_fn] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_PERCENT] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_EQ] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_pub] = ACTIONS(3078), - [anon_sym_mut] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_QMARK] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_go] = ACTIONS(3078), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(3078), - [anon_sym_LBRACK2] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_CARET] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_LT_DASH] = ACTIONS(3078), - [anon_sym_LT_LT] = ACTIONS(3078), - [anon_sym_GT_GT] = ACTIONS(3078), - [anon_sym_GT_GT_GT] = ACTIONS(3078), - [anon_sym_AMP_CARET] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3078), - [sym_none] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_nil] = ACTIONS(3078), - [anon_sym_QMARK_DOT] = ACTIONS(3078), - [anon_sym_POUND_LBRACK] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_DOLLARif] = ACTIONS(3078), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3078), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_BANGin] = ACTIONS(3078), - [anon_sym_match] = ACTIONS(3078), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_STAR_EQ] = ACTIONS(3078), - [anon_sym_SLASH_EQ] = ACTIONS(3078), - [anon_sym_PERCENT_EQ] = ACTIONS(3078), - [anon_sym_LT_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_GT_EQ] = ACTIONS(3078), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3078), - [anon_sym_AMP_EQ] = ACTIONS(3078), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3078), - [anon_sym_PLUS_EQ] = ACTIONS(3078), - [anon_sym_DASH_EQ] = ACTIONS(3078), - [anon_sym_PIPE_EQ] = ACTIONS(3078), - [anon_sym_CARET_EQ] = ACTIONS(3078), - [anon_sym_COLON_EQ] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3078), - [anon_sym_rlock] = ACTIONS(3078), - [anon_sym_unsafe] = ACTIONS(3078), - [anon_sym_sql] = ACTIONS(3078), - [sym_int_literal] = ACTIONS(3078), - [sym_float_literal] = ACTIONS(3078), - [sym_rune_literal] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_shared] = ACTIONS(3078), - [anon_sym_map_LBRACK] = ACTIONS(3078), - [anon_sym_chan] = ACTIONS(3078), - [anon_sym_thread] = ACTIONS(3078), - [anon_sym_atomic] = ACTIONS(3078), - [anon_sym_assert] = ACTIONS(3078), - [anon_sym_defer] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_DOLLARfor] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_POUND] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym_AT_LBRACK] = ACTIONS(3078), - [sym___double_quote] = ACTIONS(3078), - [sym___single_quote] = ACTIONS(3078), - [sym___c_double_quote] = ACTIONS(3078), - [sym___c_single_quote] = ACTIONS(3078), - [sym___r_double_quote] = ACTIONS(3078), - [sym___r_single_quote] = ACTIONS(3078), + [ts_builtin_sym_end] = ACTIONS(3150), + [sym_identifier] = ACTIONS(3152), + [anon_sym_LF] = ACTIONS(3152), + [anon_sym_CR] = ACTIONS(3152), + [anon_sym_CR_LF] = ACTIONS(3152), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym___global] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3152), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_pub] = ACTIONS(3152), + [anon_sym_mut] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_go] = ACTIONS(3152), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(3152), + [anon_sym_LBRACK2] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_LT_DASH] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_GT_GT_GT] = ACTIONS(3152), + [anon_sym_AMP_CARET] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_PIPE_PIPE] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [sym_none] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_nil] = ACTIONS(3152), + [anon_sym_QMARK_DOT] = ACTIONS(3152), + [anon_sym_POUND_LBRACK] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_DOLLARif] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_BANGin] = ACTIONS(3152), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_select] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3152), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_COLON_EQ] = ACTIONS(3152), + [anon_sym_lock] = ACTIONS(3152), + [anon_sym_rlock] = ACTIONS(3152), + [anon_sym_unsafe] = ACTIONS(3152), + [anon_sym_sql] = ACTIONS(3152), + [sym_int_literal] = ACTIONS(3152), + [sym_float_literal] = ACTIONS(3152), + [sym_rune_literal] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_shared] = ACTIONS(3152), + [anon_sym_map_LBRACK] = ACTIONS(3152), + [anon_sym_chan] = ACTIONS(3152), + [anon_sym_thread] = ACTIONS(3152), + [anon_sym_atomic] = ACTIONS(3152), + [anon_sym_assert] = ACTIONS(3152), + [anon_sym_defer] = ACTIONS(3152), + [anon_sym_goto] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_DOLLARfor] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(3152), + [anon_sym_asm] = ACTIONS(3152), + [anon_sym_AT_LBRACK] = ACTIONS(3152), + [sym___double_quote] = ACTIONS(3152), + [sym___single_quote] = ACTIONS(3152), + [sym___c_double_quote] = ACTIONS(3152), + [sym___c_single_quote] = ACTIONS(3152), + [sym___r_double_quote] = ACTIONS(3152), + [sym___r_single_quote] = ACTIONS(3152), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_CR] = ACTIONS(3082), - [anon_sym_CR_LF] = ACTIONS(3082), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym___global] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_fn] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_LT_EQ] = ACTIONS(3082), - [anon_sym_GT_EQ] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_pub] = ACTIONS(3082), - [anon_sym_mut] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_go] = ACTIONS(3082), - [anon_sym_spawn] = ACTIONS(3082), - [anon_sym_json_DOTdecode] = ACTIONS(3082), - [anon_sym_LBRACK2] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_GT_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_CARET] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_or] = ACTIONS(3082), - [sym_none] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_nil] = ACTIONS(3082), - [anon_sym_QMARK_DOT] = ACTIONS(3082), - [anon_sym_POUND_LBRACK] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_DOLLARif] = ACTIONS(3082), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3082), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_BANGin] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_select] = ACTIONS(3082), - [anon_sym_STAR_EQ] = ACTIONS(3082), - [anon_sym_SLASH_EQ] = ACTIONS(3082), - [anon_sym_PERCENT_EQ] = ACTIONS(3082), - [anon_sym_LT_LT_EQ] = ACTIONS(3082), - [anon_sym_GT_GT_EQ] = ACTIONS(3082), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3082), - [anon_sym_AMP_EQ] = ACTIONS(3082), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3082), - [anon_sym_PLUS_EQ] = ACTIONS(3082), - [anon_sym_DASH_EQ] = ACTIONS(3082), - [anon_sym_PIPE_EQ] = ACTIONS(3082), - [anon_sym_CARET_EQ] = ACTIONS(3082), - [anon_sym_COLON_EQ] = ACTIONS(3082), - [anon_sym_lock] = ACTIONS(3082), - [anon_sym_rlock] = ACTIONS(3082), - [anon_sym_unsafe] = ACTIONS(3082), - [anon_sym_sql] = ACTIONS(3082), - [sym_int_literal] = ACTIONS(3082), - [sym_float_literal] = ACTIONS(3082), - [sym_rune_literal] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_shared] = ACTIONS(3082), - [anon_sym_map_LBRACK] = ACTIONS(3082), - [anon_sym_chan] = ACTIONS(3082), - [anon_sym_thread] = ACTIONS(3082), - [anon_sym_atomic] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_defer] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_DOLLARfor] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_POUND] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym_AT_LBRACK] = ACTIONS(3082), - [sym___double_quote] = ACTIONS(3082), - [sym___single_quote] = ACTIONS(3082), - [sym___c_double_quote] = ACTIONS(3082), - [sym___c_single_quote] = ACTIONS(3082), - [sym___r_double_quote] = ACTIONS(3082), - [sym___r_single_quote] = ACTIONS(3082), + [ts_builtin_sym_end] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3156), + [anon_sym_LF] = ACTIONS(3156), + [anon_sym_CR] = ACTIONS(3156), + [anon_sym_CR_LF] = ACTIONS(3156), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_EQ] = ACTIONS(3156), + [anon_sym___global] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_PIPE] = ACTIONS(3156), + [anon_sym_fn] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_GT] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_pub] = ACTIONS(3156), + [anon_sym_mut] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3156), + [anon_sym_json_DOTdecode] = ACTIONS(3156), + [anon_sym_LBRACK2] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_CARET] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_LT_DASH] = ACTIONS(3156), + [anon_sym_LT_LT] = ACTIONS(3156), + [anon_sym_GT_GT] = ACTIONS(3156), + [anon_sym_GT_GT_GT] = ACTIONS(3156), + [anon_sym_AMP_CARET] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_or] = ACTIONS(3156), + [sym_none] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_nil] = ACTIONS(3156), + [anon_sym_QMARK_DOT] = ACTIONS(3156), + [anon_sym_POUND_LBRACK] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_DOLLARif] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3156), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_match] = ACTIONS(3156), + [anon_sym_select] = ACTIONS(3156), + [anon_sym_STAR_EQ] = ACTIONS(3156), + [anon_sym_SLASH_EQ] = ACTIONS(3156), + [anon_sym_PERCENT_EQ] = ACTIONS(3156), + [anon_sym_LT_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_GT_EQ] = ACTIONS(3156), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3156), + [anon_sym_AMP_EQ] = ACTIONS(3156), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3156), + [anon_sym_PLUS_EQ] = ACTIONS(3156), + [anon_sym_DASH_EQ] = ACTIONS(3156), + [anon_sym_PIPE_EQ] = ACTIONS(3156), + [anon_sym_CARET_EQ] = ACTIONS(3156), + [anon_sym_COLON_EQ] = ACTIONS(3156), + [anon_sym_lock] = ACTIONS(3156), + [anon_sym_rlock] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(3156), + [anon_sym_sql] = ACTIONS(3156), + [sym_int_literal] = ACTIONS(3156), + [sym_float_literal] = ACTIONS(3156), + [sym_rune_literal] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_shared] = ACTIONS(3156), + [anon_sym_map_LBRACK] = ACTIONS(3156), + [anon_sym_chan] = ACTIONS(3156), + [anon_sym_thread] = ACTIONS(3156), + [anon_sym_atomic] = ACTIONS(3156), + [anon_sym_assert] = ACTIONS(3156), + [anon_sym_defer] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_DOLLARfor] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_POUND] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym_AT_LBRACK] = ACTIONS(3156), + [sym___double_quote] = ACTIONS(3156), + [sym___single_quote] = ACTIONS(3156), + [sym___c_double_quote] = ACTIONS(3156), + [sym___c_single_quote] = ACTIONS(3156), + [sym___r_double_quote] = ACTIONS(3156), + [sym___r_single_quote] = ACTIONS(3156), }, [928] = { - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3086), - [anon_sym_LF] = ACTIONS(3086), - [anon_sym_CR] = ACTIONS(3086), - [anon_sym_CR_LF] = ACTIONS(3086), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3086), - [anon_sym_as] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_EQ] = ACTIONS(3086), - [anon_sym___global] = ACTIONS(3086), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_fn] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_PERCENT] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_EQ_EQ] = ACTIONS(3086), - [anon_sym_BANG_EQ] = ACTIONS(3086), - [anon_sym_LT_EQ] = ACTIONS(3086), - [anon_sym_GT_EQ] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_mut] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3086), - [anon_sym_spawn] = ACTIONS(3086), - [anon_sym_json_DOTdecode] = ACTIONS(3086), - [anon_sym_LBRACK2] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_LT_DASH] = ACTIONS(3086), - [anon_sym_LT_LT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(3086), - [anon_sym_GT_GT_GT] = ACTIONS(3086), - [anon_sym_AMP_CARET] = ACTIONS(3086), - [anon_sym_AMP_AMP] = ACTIONS(3086), - [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_or] = ACTIONS(3086), - [sym_none] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_nil] = ACTIONS(3086), - [anon_sym_QMARK_DOT] = ACTIONS(3086), - [anon_sym_POUND_LBRACK] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_DOLLARif] = ACTIONS(3086), - [anon_sym_is] = ACTIONS(3086), - [anon_sym_BANGis] = ACTIONS(3086), - [anon_sym_in] = ACTIONS(3086), - [anon_sym_BANGin] = ACTIONS(3086), - [anon_sym_match] = ACTIONS(3086), - [anon_sym_select] = ACTIONS(3086), - [anon_sym_STAR_EQ] = ACTIONS(3086), - [anon_sym_SLASH_EQ] = ACTIONS(3086), - [anon_sym_PERCENT_EQ] = ACTIONS(3086), - [anon_sym_LT_LT_EQ] = ACTIONS(3086), - [anon_sym_GT_GT_EQ] = ACTIONS(3086), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3086), - [anon_sym_AMP_EQ] = ACTIONS(3086), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3086), - [anon_sym_PLUS_EQ] = ACTIONS(3086), - [anon_sym_DASH_EQ] = ACTIONS(3086), - [anon_sym_PIPE_EQ] = ACTIONS(3086), - [anon_sym_CARET_EQ] = ACTIONS(3086), - [anon_sym_COLON_EQ] = ACTIONS(3086), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(3086), - [anon_sym_sql] = ACTIONS(3086), - [sym_int_literal] = ACTIONS(3086), - [sym_float_literal] = ACTIONS(3086), - [sym_rune_literal] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_shared] = ACTIONS(3086), - [anon_sym_map_LBRACK] = ACTIONS(3086), - [anon_sym_chan] = ACTIONS(3086), - [anon_sym_thread] = ACTIONS(3086), - [anon_sym_atomic] = ACTIONS(3086), - [anon_sym_assert] = ACTIONS(3086), - [anon_sym_defer] = ACTIONS(3086), - [anon_sym_goto] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_DOLLARfor] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_POUND] = ACTIONS(3086), - [anon_sym_asm] = ACTIONS(3086), - [anon_sym_AT_LBRACK] = ACTIONS(3086), - [sym___double_quote] = ACTIONS(3086), - [sym___single_quote] = ACTIONS(3086), - [sym___c_double_quote] = ACTIONS(3086), - [sym___c_single_quote] = ACTIONS(3086), - [sym___r_double_quote] = ACTIONS(3086), - [sym___r_single_quote] = ACTIONS(3086), + [ts_builtin_sym_end] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3160), + [anon_sym_CR] = ACTIONS(3160), + [anon_sym_CR_LF] = ACTIONS(3160), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym___global] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_pub] = ACTIONS(3160), + [anon_sym_mut] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3160), + [anon_sym_spawn] = ACTIONS(3160), + [anon_sym_json_DOTdecode] = ACTIONS(3160), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3160), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_nil] = ACTIONS(3160), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_DOLLARif] = ACTIONS(3160), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3160), + [anon_sym_select] = ACTIONS(3160), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_LT_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_GT_EQ] = ACTIONS(3162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3162), + [anon_sym_AMP_EQ] = ACTIONS(3162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_PIPE_EQ] = ACTIONS(3162), + [anon_sym_CARET_EQ] = ACTIONS(3162), + [anon_sym_COLON_EQ] = ACTIONS(3162), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(3160), + [anon_sym_sql] = ACTIONS(3160), + [sym_int_literal] = ACTIONS(3160), + [sym_float_literal] = ACTIONS(3160), + [sym_rune_literal] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_shared] = ACTIONS(3160), + [anon_sym_map_LBRACK] = ACTIONS(3160), + [anon_sym_chan] = ACTIONS(3160), + [anon_sym_thread] = ACTIONS(3160), + [anon_sym_atomic] = ACTIONS(3160), + [anon_sym_assert] = ACTIONS(3160), + [anon_sym_defer] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_DOLLARfor] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_POUND] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym_AT_LBRACK] = ACTIONS(3160), + [sym___double_quote] = ACTIONS(3160), + [sym___single_quote] = ACTIONS(3160), + [sym___c_double_quote] = ACTIONS(3160), + [sym___c_single_quote] = ACTIONS(3160), + [sym___r_double_quote] = ACTIONS(3160), + [sym___r_single_quote] = ACTIONS(3160), }, [929] = { - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym_EQ] = ACTIONS(3090), - [anon_sym___global] = ACTIONS(3090), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_pub] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_LT_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_GT_EQ] = ACTIONS(3090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3090), - [anon_sym_AMP_EQ] = ACTIONS(3090), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3090), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_PIPE_EQ] = ACTIONS(3090), - [anon_sym_CARET_EQ] = ACTIONS(3090), - [anon_sym_COLON_EQ] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_AT] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym_AT_LBRACK] = ACTIONS(3090), - [sym___double_quote] = ACTIONS(3090), - [sym___single_quote] = ACTIONS(3090), - [sym___c_double_quote] = ACTIONS(3090), - [sym___c_single_quote] = ACTIONS(3090), - [sym___r_double_quote] = ACTIONS(3090), - [sym___r_single_quote] = ACTIONS(3090), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_EQ] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_STAR_EQ] = ACTIONS(2748), + [anon_sym_SLASH_EQ] = ACTIONS(2748), + [anon_sym_PERCENT_EQ] = ACTIONS(2748), + [anon_sym_LT_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_GT_EQ] = ACTIONS(2748), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2748), + [anon_sym_AMP_EQ] = ACTIONS(2748), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2748), + [anon_sym_PLUS_EQ] = ACTIONS(2748), + [anon_sym_DASH_EQ] = ACTIONS(2748), + [anon_sym_PIPE_EQ] = ACTIONS(2748), + [anon_sym_CARET_EQ] = ACTIONS(2748), + [anon_sym_COLON_EQ] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, [930] = { - [ts_builtin_sym_end] = ACTIONS(3092), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LF] = ACTIONS(3094), - [anon_sym_CR] = ACTIONS(3094), - [anon_sym_CR_LF] = ACTIONS(3094), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3094), - [anon_sym_as] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3094), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym___global] = ACTIONS(3094), - [anon_sym_type] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3094), - [anon_sym_fn] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_PERCENT] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_GT] = ACTIONS(3094), - [anon_sym_EQ_EQ] = ACTIONS(3094), - [anon_sym_BANG_EQ] = ACTIONS(3094), - [anon_sym_LT_EQ] = ACTIONS(3094), - [anon_sym_GT_EQ] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [anon_sym_pub] = ACTIONS(3094), - [anon_sym_mut] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3094), - [anon_sym_spawn] = ACTIONS(3094), - [anon_sym_json_DOTdecode] = ACTIONS(3094), - [anon_sym_LBRACK2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_CARET] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_LT_DASH] = ACTIONS(3094), - [anon_sym_LT_LT] = ACTIONS(3094), - [anon_sym_GT_GT] = ACTIONS(3094), - [anon_sym_GT_GT_GT] = ACTIONS(3094), - [anon_sym_AMP_CARET] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_PIPE_PIPE] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3094), - [sym_none] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_nil] = ACTIONS(3094), - [anon_sym_QMARK_DOT] = ACTIONS(3094), - [anon_sym_POUND_LBRACK] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_DOLLARif] = ACTIONS(3094), - [anon_sym_is] = ACTIONS(3094), - [anon_sym_BANGis] = ACTIONS(3094), - [anon_sym_in] = ACTIONS(3094), - [anon_sym_BANGin] = ACTIONS(3094), - [anon_sym_match] = ACTIONS(3094), - [anon_sym_select] = ACTIONS(3094), - [anon_sym_STAR_EQ] = ACTIONS(3094), - [anon_sym_SLASH_EQ] = ACTIONS(3094), - [anon_sym_PERCENT_EQ] = ACTIONS(3094), - [anon_sym_LT_LT_EQ] = ACTIONS(3094), - [anon_sym_GT_GT_EQ] = ACTIONS(3094), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3094), - [anon_sym_AMP_EQ] = ACTIONS(3094), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3094), - [anon_sym_PLUS_EQ] = ACTIONS(3094), - [anon_sym_DASH_EQ] = ACTIONS(3094), - [anon_sym_PIPE_EQ] = ACTIONS(3094), - [anon_sym_CARET_EQ] = ACTIONS(3094), - [anon_sym_COLON_EQ] = ACTIONS(3094), - [anon_sym_lock] = ACTIONS(3094), - [anon_sym_rlock] = ACTIONS(3094), - [anon_sym_unsafe] = ACTIONS(3094), - [anon_sym_sql] = ACTIONS(3094), - [sym_int_literal] = ACTIONS(3094), - [sym_float_literal] = ACTIONS(3094), - [sym_rune_literal] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_shared] = ACTIONS(3094), - [anon_sym_map_LBRACK] = ACTIONS(3094), - [anon_sym_chan] = ACTIONS(3094), - [anon_sym_thread] = ACTIONS(3094), - [anon_sym_atomic] = ACTIONS(3094), - [anon_sym_assert] = ACTIONS(3094), - [anon_sym_defer] = ACTIONS(3094), - [anon_sym_goto] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_DOLLARfor] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_POUND] = ACTIONS(3094), - [anon_sym_asm] = ACTIONS(3094), - [anon_sym_AT_LBRACK] = ACTIONS(3094), - [sym___double_quote] = ACTIONS(3094), - [sym___single_quote] = ACTIONS(3094), - [sym___c_double_quote] = ACTIONS(3094), - [sym___c_single_quote] = ACTIONS(3094), - [sym___r_double_quote] = ACTIONS(3094), - [sym___r_single_quote] = ACTIONS(3094), + [ts_builtin_sym_end] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3170), + [anon_sym_LF] = ACTIONS(3170), + [anon_sym_CR] = ACTIONS(3170), + [anon_sym_CR_LF] = ACTIONS(3170), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_EQ] = ACTIONS(3170), + [anon_sym___global] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_pub] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3170), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3170), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3170), + [anon_sym_AMP_CARET] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_PIPE_PIPE] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3170), + [anon_sym_POUND_LBRACK] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3170), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_STAR_EQ] = ACTIONS(3170), + [anon_sym_SLASH_EQ] = ACTIONS(3170), + [anon_sym_PERCENT_EQ] = ACTIONS(3170), + [anon_sym_LT_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_GT_EQ] = ACTIONS(3170), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3170), + [anon_sym_AMP_EQ] = ACTIONS(3170), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3170), + [anon_sym_PLUS_EQ] = ACTIONS(3170), + [anon_sym_DASH_EQ] = ACTIONS(3170), + [anon_sym_PIPE_EQ] = ACTIONS(3170), + [anon_sym_CARET_EQ] = ACTIONS(3170), + [anon_sym_COLON_EQ] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3170), + [sym_rune_literal] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3170), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [anon_sym_assert] = ACTIONS(3170), + [anon_sym_defer] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_DOLLARfor] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym_AT_LBRACK] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3170), + [sym___single_quote] = ACTIONS(3170), + [sym___c_double_quote] = ACTIONS(3170), + [sym___c_single_quote] = ACTIONS(3170), + [sym___r_double_quote] = ACTIONS(3170), + [sym___r_single_quote] = ACTIONS(3170), }, [931] = { - [ts_builtin_sym_end] = ACTIONS(3096), - [sym_identifier] = ACTIONS(3098), - [anon_sym_LF] = ACTIONS(3098), - [anon_sym_CR] = ACTIONS(3098), - [anon_sym_CR_LF] = ACTIONS(3098), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3098), - [anon_sym_as] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_COMMA] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_EQ] = ACTIONS(3098), - [anon_sym___global] = ACTIONS(3098), - [anon_sym_type] = ACTIONS(3098), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3098), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_PERCENT] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3098), - [anon_sym_BANG_EQ] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3098), - [anon_sym_GT_EQ] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_pub] = ACTIONS(3098), - [anon_sym_mut] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [anon_sym_QMARK] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_go] = ACTIONS(3098), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(3098), - [anon_sym_LBRACK2] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_LT_DASH] = ACTIONS(3098), - [anon_sym_LT_LT] = ACTIONS(3098), - [anon_sym_GT_GT] = ACTIONS(3098), - [anon_sym_GT_GT_GT] = ACTIONS(3098), - [anon_sym_AMP_CARET] = ACTIONS(3098), - [anon_sym_AMP_AMP] = ACTIONS(3098), - [anon_sym_PIPE_PIPE] = ACTIONS(3098), - [anon_sym_or] = ACTIONS(3098), - [sym_none] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_nil] = ACTIONS(3098), - [anon_sym_QMARK_DOT] = ACTIONS(3098), - [anon_sym_POUND_LBRACK] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_DOLLARif] = ACTIONS(3098), - [anon_sym_is] = ACTIONS(3098), - [anon_sym_BANGis] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_BANGin] = ACTIONS(3098), - [anon_sym_match] = ACTIONS(3098), - [anon_sym_select] = ACTIONS(3098), - [anon_sym_STAR_EQ] = ACTIONS(3098), - [anon_sym_SLASH_EQ] = ACTIONS(3098), - [anon_sym_PERCENT_EQ] = ACTIONS(3098), - [anon_sym_LT_LT_EQ] = ACTIONS(3098), - [anon_sym_GT_GT_EQ] = ACTIONS(3098), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3098), - [anon_sym_AMP_EQ] = ACTIONS(3098), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3098), - [anon_sym_PLUS_EQ] = ACTIONS(3098), - [anon_sym_DASH_EQ] = ACTIONS(3098), - [anon_sym_PIPE_EQ] = ACTIONS(3098), - [anon_sym_CARET_EQ] = ACTIONS(3098), - [anon_sym_COLON_EQ] = ACTIONS(3098), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(3098), - [anon_sym_sql] = ACTIONS(3098), - [sym_int_literal] = ACTIONS(3098), - [sym_float_literal] = ACTIONS(3098), - [sym_rune_literal] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_shared] = ACTIONS(3098), - [anon_sym_map_LBRACK] = ACTIONS(3098), - [anon_sym_chan] = ACTIONS(3098), - [anon_sym_thread] = ACTIONS(3098), - [anon_sym_atomic] = ACTIONS(3098), - [anon_sym_assert] = ACTIONS(3098), - [anon_sym_defer] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_DOLLARfor] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_POUND] = ACTIONS(3098), - [anon_sym_asm] = ACTIONS(3098), - [anon_sym_AT_LBRACK] = ACTIONS(3098), - [sym___double_quote] = ACTIONS(3098), - [sym___single_quote] = ACTIONS(3098), - [sym___c_double_quote] = ACTIONS(3098), - [sym___c_single_quote] = ACTIONS(3098), - [sym___r_double_quote] = ACTIONS(3098), - [sym___r_single_quote] = ACTIONS(3098), + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3174), + [anon_sym_LF] = ACTIONS(3174), + [anon_sym_CR] = ACTIONS(3174), + [anon_sym_CR_LF] = ACTIONS(3174), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3174), + [anon_sym___global] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_pub] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3174), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3174), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3174), + [anon_sym_AMP_CARET] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3174), + [anon_sym_POUND_LBRACK] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3174), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_STAR_EQ] = ACTIONS(3174), + [anon_sym_SLASH_EQ] = ACTIONS(3174), + [anon_sym_PERCENT_EQ] = ACTIONS(3174), + [anon_sym_LT_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_GT_EQ] = ACTIONS(3174), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3174), + [anon_sym_AMP_EQ] = ACTIONS(3174), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3174), + [anon_sym_PLUS_EQ] = ACTIONS(3174), + [anon_sym_DASH_EQ] = ACTIONS(3174), + [anon_sym_PIPE_EQ] = ACTIONS(3174), + [anon_sym_CARET_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + [sym_rune_literal] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3174), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_defer] = ACTIONS(3174), + [anon_sym_goto] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_DOLLARfor] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3174), + [anon_sym_asm] = ACTIONS(3174), + [anon_sym_AT_LBRACK] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3174), + [sym___single_quote] = ACTIONS(3174), + [sym___c_double_quote] = ACTIONS(3174), + [sym___c_single_quote] = ACTIONS(3174), + [sym___r_double_quote] = ACTIONS(3174), + [sym___r_single_quote] = ACTIONS(3174), + }, + [932] = { + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LF] = ACTIONS(3178), + [anon_sym_CR] = ACTIONS(3178), + [anon_sym_CR_LF] = ACTIONS(3178), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3178), + [anon_sym___global] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_pub] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3178), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3178), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3178), + [anon_sym_AMP_CARET] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3178), + [anon_sym_POUND_LBRACK] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3178), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_STAR_EQ] = ACTIONS(3178), + [anon_sym_SLASH_EQ] = ACTIONS(3178), + [anon_sym_PERCENT_EQ] = ACTIONS(3178), + [anon_sym_LT_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_GT_EQ] = ACTIONS(3178), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3178), + [anon_sym_AMP_EQ] = ACTIONS(3178), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3178), + [anon_sym_PLUS_EQ] = ACTIONS(3178), + [anon_sym_DASH_EQ] = ACTIONS(3178), + [anon_sym_PIPE_EQ] = ACTIONS(3178), + [anon_sym_CARET_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + [sym_rune_literal] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3178), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_defer] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_DOLLARfor] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym_AT_LBRACK] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3178), + [sym___single_quote] = ACTIONS(3178), + [sym___c_double_quote] = ACTIONS(3178), + [sym___c_single_quote] = ACTIONS(3178), + [sym___r_double_quote] = ACTIONS(3178), + [sym___r_single_quote] = ACTIONS(3178), + }, + [933] = { + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_CR] = ACTIONS(3182), + [anon_sym_CR_LF] = ACTIONS(3182), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym___global] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_pub] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3182), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3182), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3182), + [anon_sym_AMP_CARET] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3182), + [anon_sym_POUND_LBRACK] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3182), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_STAR_EQ] = ACTIONS(3182), + [anon_sym_SLASH_EQ] = ACTIONS(3182), + [anon_sym_PERCENT_EQ] = ACTIONS(3182), + [anon_sym_LT_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_GT_EQ] = ACTIONS(3182), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3182), + [anon_sym_AMP_EQ] = ACTIONS(3182), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3182), + [anon_sym_PLUS_EQ] = ACTIONS(3182), + [anon_sym_DASH_EQ] = ACTIONS(3182), + [anon_sym_PIPE_EQ] = ACTIONS(3182), + [anon_sym_CARET_EQ] = ACTIONS(3182), + [anon_sym_COLON_EQ] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3182), + [sym_rune_literal] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3182), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [anon_sym_assert] = ACTIONS(3182), + [anon_sym_defer] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_DOLLARfor] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_POUND] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym_AT_LBRACK] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3182), + [sym___single_quote] = ACTIONS(3182), + [sym___c_double_quote] = ACTIONS(3182), + [sym___c_single_quote] = ACTIONS(3182), + [sym___r_double_quote] = ACTIONS(3182), + [sym___r_single_quote] = ACTIONS(3182), + }, + [934] = { + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LF] = ACTIONS(3186), + [anon_sym_CR] = ACTIONS(3186), + [anon_sym_CR_LF] = ACTIONS(3186), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym___global] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3186), + [anon_sym_pub] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3186), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3186), + [anon_sym_AMP_CARET] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3186), + [anon_sym_POUND_LBRACK] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_LT_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_GT_EQ] = ACTIONS(3186), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3186), + [anon_sym_AMP_EQ] = ACTIONS(3186), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_PIPE_EQ] = ACTIONS(3186), + [anon_sym_CARET_EQ] = ACTIONS(3186), + [anon_sym_COLON_EQ] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3186), + [sym_rune_literal] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3186), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [anon_sym_assert] = ACTIONS(3186), + [anon_sym_defer] = ACTIONS(3186), + [anon_sym_goto] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_DOLLARfor] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3186), + [anon_sym_asm] = ACTIONS(3186), + [anon_sym_AT_LBRACK] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3186), + [sym___single_quote] = ACTIONS(3186), + [sym___c_double_quote] = ACTIONS(3186), + [sym___c_single_quote] = ACTIONS(3186), + [sym___r_double_quote] = ACTIONS(3186), + [sym___r_single_quote] = ACTIONS(3186), + }, + [935] = { + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_CR] = ACTIONS(3190), + [anon_sym_CR_LF] = ACTIONS(3190), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym___global] = ACTIONS(3190), + [anon_sym_type] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_pub] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3190), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3190), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3190), + [anon_sym_AMP_CARET] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(3190), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_POUND_LBRACK] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3190), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_STAR_EQ] = ACTIONS(3190), + [anon_sym_SLASH_EQ] = ACTIONS(3190), + [anon_sym_PERCENT_EQ] = ACTIONS(3190), + [anon_sym_LT_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_GT_EQ] = ACTIONS(3190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3190), + [anon_sym_AMP_EQ] = ACTIONS(3190), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3190), + [anon_sym_PLUS_EQ] = ACTIONS(3190), + [anon_sym_DASH_EQ] = ACTIONS(3190), + [anon_sym_PIPE_EQ] = ACTIONS(3190), + [anon_sym_CARET_EQ] = ACTIONS(3190), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + [sym_rune_literal] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3190), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [anon_sym_assert] = ACTIONS(3190), + [anon_sym_defer] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_DOLLARfor] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3190), + [anon_sym_asm] = ACTIONS(3190), + [anon_sym_AT_LBRACK] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3190), + [sym___single_quote] = ACTIONS(3190), + [sym___c_double_quote] = ACTIONS(3190), + [sym___c_single_quote] = ACTIONS(3190), + [sym___r_double_quote] = ACTIONS(3190), + [sym___r_single_quote] = ACTIONS(3190), + }, + [936] = { + [ts_builtin_sym_end] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3110), + [anon_sym_LF] = ACTIONS(3110), + [anon_sym_CR] = ACTIONS(3110), + [anon_sym_CR_LF] = ACTIONS(3110), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_COMMA] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym___global] = ACTIONS(3110), + [anon_sym_type] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_pub] = ACTIONS(3110), + [anon_sym_mut] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_interface] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3110), + [anon_sym_spawn] = ACTIONS(3110), + [anon_sym_json_DOTdecode] = ACTIONS(3110), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_CARET] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3110), + [anon_sym_LT_LT] = ACTIONS(3110), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3110), + [anon_sym_AMP_CARET] = ACTIONS(3110), + [anon_sym_AMP_AMP] = ACTIONS(3110), + [anon_sym_PIPE_PIPE] = ACTIONS(3110), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3110), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_nil] = ACTIONS(3110), + [anon_sym_QMARK_DOT] = ACTIONS(3110), + [anon_sym_POUND_LBRACK] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3110), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3110), + [anon_sym_match] = ACTIONS(3110), + [anon_sym_select] = ACTIONS(3110), + [anon_sym_STAR_EQ] = ACTIONS(3110), + [anon_sym_SLASH_EQ] = ACTIONS(3110), + [anon_sym_PERCENT_EQ] = ACTIONS(3110), + [anon_sym_LT_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_GT_EQ] = ACTIONS(3110), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3110), + [anon_sym_AMP_EQ] = ACTIONS(3110), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3110), + [anon_sym_PLUS_EQ] = ACTIONS(3110), + [anon_sym_DASH_EQ] = ACTIONS(3110), + [anon_sym_PIPE_EQ] = ACTIONS(3110), + [anon_sym_CARET_EQ] = ACTIONS(3110), + [anon_sym_COLON_EQ] = ACTIONS(3110), + [anon_sym_lock] = ACTIONS(3110), + [anon_sym_rlock] = ACTIONS(3110), + [anon_sym_unsafe] = ACTIONS(3110), + [anon_sym_sql] = ACTIONS(3110), + [sym_int_literal] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(3110), + [sym_rune_literal] = ACTIONS(3110), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_shared] = ACTIONS(3110), + [anon_sym_map_LBRACK] = ACTIONS(3110), + [anon_sym_chan] = ACTIONS(3110), + [anon_sym_thread] = ACTIONS(3110), + [anon_sym_atomic] = ACTIONS(3110), + [anon_sym_assert] = ACTIONS(3110), + [anon_sym_defer] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_DOLLARfor] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_POUND] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym_AT_LBRACK] = ACTIONS(3110), + [sym___double_quote] = ACTIONS(3110), + [sym___single_quote] = ACTIONS(3110), + [sym___c_double_quote] = ACTIONS(3110), + [sym___c_single_quote] = ACTIONS(3110), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3110), + }, + [937] = { + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LF] = ACTIONS(3194), + [anon_sym_CR] = ACTIONS(3194), + [anon_sym_CR_LF] = ACTIONS(3194), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym___global] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_union] = ACTIONS(3194), + [anon_sym_pub] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3194), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3194), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3194), + [anon_sym_AMP_CARET] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3194), + [anon_sym_POUND_LBRACK] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_LT_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_GT_EQ] = ACTIONS(3194), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3194), + [anon_sym_AMP_EQ] = ACTIONS(3194), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_PIPE_EQ] = ACTIONS(3194), + [anon_sym_CARET_EQ] = ACTIONS(3194), + [anon_sym_COLON_EQ] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3194), + [sym_rune_literal] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3194), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [anon_sym_assert] = ACTIONS(3194), + [anon_sym_defer] = ACTIONS(3194), + [anon_sym_goto] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_DOLLARfor] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3194), + [anon_sym_asm] = ACTIONS(3194), + [anon_sym_AT_LBRACK] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3194), + [sym___single_quote] = ACTIONS(3194), + [sym___c_double_quote] = ACTIONS(3194), + [sym___c_single_quote] = ACTIONS(3194), + [sym___r_double_quote] = ACTIONS(3194), + [sym___r_single_quote] = ACTIONS(3194), + }, + [938] = { + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_STAR_EQ] = ACTIONS(2890), + [anon_sym_SLASH_EQ] = ACTIONS(2890), + [anon_sym_PERCENT_EQ] = ACTIONS(2890), + [anon_sym_LT_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_AMP_EQ] = ACTIONS(2890), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2890), + [anon_sym_PLUS_EQ] = ACTIONS(2890), + [anon_sym_DASH_EQ] = ACTIONS(2890), + [anon_sym_PIPE_EQ] = ACTIONS(2890), + [anon_sym_CARET_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), + }, + [939] = { + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym___global] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_pub] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_LT_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_AMP_EQ] = ACTIONS(3198), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_PIPE_EQ] = ACTIONS(3198), + [anon_sym_CARET_EQ] = ACTIONS(3198), + [anon_sym_COLON_EQ] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [anon_sym_assert] = ACTIONS(3198), + [anon_sym_defer] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_DOLLARfor] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym_AT_LBRACK] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), + }, + [940] = { + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym___global] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_pub] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_STAR_EQ] = ACTIONS(3202), + [anon_sym_SLASH_EQ] = ACTIONS(3202), + [anon_sym_PERCENT_EQ] = ACTIONS(3202), + [anon_sym_LT_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_AMP_EQ] = ACTIONS(3202), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3202), + [anon_sym_PLUS_EQ] = ACTIONS(3202), + [anon_sym_DASH_EQ] = ACTIONS(3202), + [anon_sym_PIPE_EQ] = ACTIONS(3202), + [anon_sym_CARET_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + [sym_rune_literal] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_defer] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_DOLLARfor] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym_AT_LBRACK] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3202), + [sym___single_quote] = ACTIONS(3202), + [sym___c_double_quote] = ACTIONS(3202), + [sym___c_single_quote] = ACTIONS(3202), + [sym___r_double_quote] = ACTIONS(3202), + [sym___r_single_quote] = ACTIONS(3202), + }, + [941] = { + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_CR] = ACTIONS(3206), + [anon_sym_CR_LF] = ACTIONS(3206), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_EQ] = ACTIONS(3206), + [anon_sym___global] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_pub] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3206), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3206), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3206), + [anon_sym_AMP_CARET] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3206), + [anon_sym_POUND_LBRACK] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_LT_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_GT_EQ] = ACTIONS(3206), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3206), + [anon_sym_AMP_EQ] = ACTIONS(3206), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_PIPE_EQ] = ACTIONS(3206), + [anon_sym_CARET_EQ] = ACTIONS(3206), + [anon_sym_COLON_EQ] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3206), + [sym_rune_literal] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3206), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_defer] = ACTIONS(3206), + [anon_sym_goto] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_DOLLARfor] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(3206), + [anon_sym_asm] = ACTIONS(3206), + [anon_sym_AT_LBRACK] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3206), + [sym___single_quote] = ACTIONS(3206), + [sym___c_double_quote] = ACTIONS(3206), + [sym___c_single_quote] = ACTIONS(3206), + [sym___r_double_quote] = ACTIONS(3206), + [sym___r_single_quote] = ACTIONS(3206), + }, + [942] = { + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LF] = ACTIONS(3210), + [anon_sym_CR] = ACTIONS(3210), + [anon_sym_CR_LF] = ACTIONS(3210), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_COMMA] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_EQ] = ACTIONS(3210), + [anon_sym___global] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3210), + [anon_sym_BANG_EQ] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_pub] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3210), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3210), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3210), + [anon_sym_AMP_CARET] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_PIPE_PIPE] = ACTIONS(3210), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3210), + [anon_sym_POUND_LBRACK] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3210), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3210), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_STAR_EQ] = ACTIONS(3210), + [anon_sym_SLASH_EQ] = ACTIONS(3210), + [anon_sym_PERCENT_EQ] = ACTIONS(3210), + [anon_sym_LT_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_GT_EQ] = ACTIONS(3210), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3210), + [anon_sym_AMP_EQ] = ACTIONS(3210), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3210), + [anon_sym_PLUS_EQ] = ACTIONS(3210), + [anon_sym_DASH_EQ] = ACTIONS(3210), + [anon_sym_PIPE_EQ] = ACTIONS(3210), + [anon_sym_CARET_EQ] = ACTIONS(3210), + [anon_sym_COLON_EQ] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3210), + [sym_rune_literal] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3210), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [anon_sym_assert] = ACTIONS(3210), + [anon_sym_defer] = ACTIONS(3210), + [anon_sym_goto] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_DOLLARfor] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_asm] = ACTIONS(3210), + [anon_sym_AT_LBRACK] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3210), + [sym___single_quote] = ACTIONS(3210), + [sym___c_double_quote] = ACTIONS(3210), + [sym___c_single_quote] = ACTIONS(3210), + [sym___r_double_quote] = ACTIONS(3210), + [sym___r_single_quote] = ACTIONS(3210), + }, + [943] = { + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_STAR_EQ] = ACTIONS(2914), + [anon_sym_SLASH_EQ] = ACTIONS(2914), + [anon_sym_PERCENT_EQ] = ACTIONS(2914), + [anon_sym_LT_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_AMP_EQ] = ACTIONS(2914), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), + [anon_sym_PLUS_EQ] = ACTIONS(2914), + [anon_sym_DASH_EQ] = ACTIONS(2914), + [anon_sym_PIPE_EQ] = ACTIONS(2914), + [anon_sym_CARET_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), + }, + [944] = { + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym___global] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_union] = ACTIONS(3214), + [anon_sym_pub] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3214), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3214), + [anon_sym_AMP_CARET] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_PIPE_PIPE] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3214), + [anon_sym_POUND_LBRACK] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_STAR_EQ] = ACTIONS(3214), + [anon_sym_SLASH_EQ] = ACTIONS(3214), + [anon_sym_PERCENT_EQ] = ACTIONS(3214), + [anon_sym_LT_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_GT_EQ] = ACTIONS(3214), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3214), + [anon_sym_AMP_EQ] = ACTIONS(3214), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3214), + [anon_sym_PLUS_EQ] = ACTIONS(3214), + [anon_sym_DASH_EQ] = ACTIONS(3214), + [anon_sym_PIPE_EQ] = ACTIONS(3214), + [anon_sym_CARET_EQ] = ACTIONS(3214), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [anon_sym_assert] = ACTIONS(3214), + [anon_sym_defer] = ACTIONS(3214), + [anon_sym_goto] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_DOLLARfor] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_asm] = ACTIONS(3214), + [anon_sym_AT_LBRACK] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), + }, + [945] = { + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_CR] = ACTIONS(3218), + [anon_sym_CR_LF] = ACTIONS(3218), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym___global] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3218), + [anon_sym_pub] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3218), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3218), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3218), + [anon_sym_AMP_CARET] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3218), + [anon_sym_POUND_LBRACK] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_LT_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_GT_EQ] = ACTIONS(3218), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3218), + [anon_sym_AMP_EQ] = ACTIONS(3218), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_PIPE_EQ] = ACTIONS(3218), + [anon_sym_CARET_EQ] = ACTIONS(3218), + [anon_sym_COLON_EQ] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + [sym_rune_literal] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3218), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [anon_sym_assert] = ACTIONS(3218), + [anon_sym_defer] = ACTIONS(3218), + [anon_sym_goto] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_DOLLARfor] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_asm] = ACTIONS(3218), + [anon_sym_AT_LBRACK] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3218), + [sym___single_quote] = ACTIONS(3218), + [sym___c_double_quote] = ACTIONS(3218), + [sym___c_single_quote] = ACTIONS(3218), + [sym___r_double_quote] = ACTIONS(3218), + [sym___r_single_quote] = ACTIONS(3218), + }, + [946] = { + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LF] = ACTIONS(3222), + [anon_sym_CR] = ACTIONS(3222), + [anon_sym_CR_LF] = ACTIONS(3222), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_EQ] = ACTIONS(3222), + [anon_sym___global] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_union] = ACTIONS(3222), + [anon_sym_pub] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3222), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3222), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3222), + [anon_sym_AMP_CARET] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3222), + [anon_sym_POUND_LBRACK] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_LT_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_GT_EQ] = ACTIONS(3222), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3222), + [anon_sym_AMP_EQ] = ACTIONS(3222), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_PIPE_EQ] = ACTIONS(3222), + [anon_sym_CARET_EQ] = ACTIONS(3222), + [anon_sym_COLON_EQ] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3222), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [anon_sym_assert] = ACTIONS(3222), + [anon_sym_defer] = ACTIONS(3222), + [anon_sym_goto] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_DOLLARfor] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3222), + [anon_sym_AT_LBRACK] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3222), + [sym___single_quote] = ACTIONS(3222), + [sym___c_double_quote] = ACTIONS(3222), + [sym___c_single_quote] = ACTIONS(3222), + [sym___r_double_quote] = ACTIONS(3222), + [sym___r_single_quote] = ACTIONS(3222), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3226), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_CR] = ACTIONS(3226), + [anon_sym_CR_LF] = ACTIONS(3226), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym___global] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_pub] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3226), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3226), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3226), + [anon_sym_AMP_CARET] = ACTIONS(3226), + [anon_sym_AMP_AMP] = ACTIONS(3226), + [anon_sym_PIPE_PIPE] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3226), + [anon_sym_POUND_LBRACK] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3226), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_STAR_EQ] = ACTIONS(3226), + [anon_sym_SLASH_EQ] = ACTIONS(3226), + [anon_sym_PERCENT_EQ] = ACTIONS(3226), + [anon_sym_LT_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_GT_EQ] = ACTIONS(3226), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3226), + [anon_sym_AMP_EQ] = ACTIONS(3226), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3226), + [anon_sym_PLUS_EQ] = ACTIONS(3226), + [anon_sym_DASH_EQ] = ACTIONS(3226), + [anon_sym_PIPE_EQ] = ACTIONS(3226), + [anon_sym_CARET_EQ] = ACTIONS(3226), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3226), + [sym_rune_literal] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3226), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [anon_sym_assert] = ACTIONS(3226), + [anon_sym_defer] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_DOLLARfor] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_POUND] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym_AT_LBRACK] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3226), + [sym___single_quote] = ACTIONS(3226), + [sym___c_double_quote] = ACTIONS(3226), + [sym___c_single_quote] = ACTIONS(3226), + [sym___r_double_quote] = ACTIONS(3226), + [sym___r_single_quote] = ACTIONS(3226), + }, + [948] = { + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_CR] = ACTIONS(3230), + [anon_sym_CR_LF] = ACTIONS(3230), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3230), + [anon_sym___global] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_pub] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_LT_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_GT_EQ] = ACTIONS(3230), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3230), + [anon_sym_AMP_EQ] = ACTIONS(3230), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_PIPE_EQ] = ACTIONS(3230), + [anon_sym_CARET_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_defer] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_DOLLARfor] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym_AT_LBRACK] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), + }, + [949] = { + [ts_builtin_sym_end] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_EQ] = ACTIONS(3237), + [anon_sym___global] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_union] = ACTIONS(3237), + [anon_sym_pub] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_STAR_EQ] = ACTIONS(3237), + [anon_sym_SLASH_EQ] = ACTIONS(3237), + [anon_sym_PERCENT_EQ] = ACTIONS(3237), + [anon_sym_LT_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_GT_EQ] = ACTIONS(3237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3237), + [anon_sym_AMP_EQ] = ACTIONS(3237), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3237), + [anon_sym_PLUS_EQ] = ACTIONS(3237), + [anon_sym_DASH_EQ] = ACTIONS(3237), + [anon_sym_PIPE_EQ] = ACTIONS(3237), + [anon_sym_CARET_EQ] = ACTIONS(3237), + [anon_sym_COLON_EQ] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_defer] = ACTIONS(3237), + [anon_sym_goto] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_DOLLARfor] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_asm] = ACTIONS(3237), + [anon_sym_AT_LBRACK] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3237), + [sym___single_quote] = ACTIONS(3237), + [sym___c_double_quote] = ACTIONS(3237), + [sym___c_single_quote] = ACTIONS(3237), + [sym___r_double_quote] = ACTIONS(3237), + [sym___r_single_quote] = ACTIONS(3237), + }, + [950] = { + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_EQ] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3241), + [anon_sym_pub] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_STAR_EQ] = ACTIONS(3241), + [anon_sym_SLASH_EQ] = ACTIONS(3241), + [anon_sym_PERCENT_EQ] = ACTIONS(3241), + [anon_sym_LT_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_GT_EQ] = ACTIONS(3241), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3241), + [anon_sym_AMP_EQ] = ACTIONS(3241), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3241), + [anon_sym_PLUS_EQ] = ACTIONS(3241), + [anon_sym_DASH_EQ] = ACTIONS(3241), + [anon_sym_PIPE_EQ] = ACTIONS(3241), + [anon_sym_CARET_EQ] = ACTIONS(3241), + [anon_sym_COLON_EQ] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [anon_sym_assert] = ACTIONS(3241), + [anon_sym_defer] = ACTIONS(3241), + [anon_sym_goto] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_DOLLARfor] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_asm] = ACTIONS(3241), + [anon_sym_AT_LBRACK] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3241), + [sym___single_quote] = ACTIONS(3241), + [sym___c_double_quote] = ACTIONS(3241), + [sym___c_single_quote] = ACTIONS(3241), + [sym___r_double_quote] = ACTIONS(3241), + [sym___r_single_quote] = ACTIONS(3241), + }, + [951] = { + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_COMMA] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_EQ] = ACTIONS(3245), + [anon_sym___global] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_pub] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3245), + [anon_sym_POUND_LBRACK] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3245), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_STAR_EQ] = ACTIONS(3245), + [anon_sym_SLASH_EQ] = ACTIONS(3245), + [anon_sym_PERCENT_EQ] = ACTIONS(3245), + [anon_sym_LT_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_GT_EQ] = ACTIONS(3245), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3245), + [anon_sym_AMP_EQ] = ACTIONS(3245), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3245), + [anon_sym_PLUS_EQ] = ACTIONS(3245), + [anon_sym_DASH_EQ] = ACTIONS(3245), + [anon_sym_PIPE_EQ] = ACTIONS(3245), + [anon_sym_CARET_EQ] = ACTIONS(3245), + [anon_sym_COLON_EQ] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [anon_sym_assert] = ACTIONS(3245), + [anon_sym_defer] = ACTIONS(3245), + [anon_sym_goto] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_DOLLARfor] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_asm] = ACTIONS(3245), + [anon_sym_AT_LBRACK] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3249), + [anon_sym___global] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_EQ] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_union] = ACTIONS(3249), + [anon_sym_pub] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3249), + [anon_sym_AMP_CARET] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_STAR_EQ] = ACTIONS(3249), + [anon_sym_SLASH_EQ] = ACTIONS(3249), + [anon_sym_PERCENT_EQ] = ACTIONS(3249), + [anon_sym_LT_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_GT_EQ] = ACTIONS(3249), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3249), + [anon_sym_AMP_EQ] = ACTIONS(3249), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3249), + [anon_sym_PLUS_EQ] = ACTIONS(3249), + [anon_sym_DASH_EQ] = ACTIONS(3249), + [anon_sym_PIPE_EQ] = ACTIONS(3249), + [anon_sym_CARET_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_defer] = ACTIONS(3249), + [anon_sym_goto] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_DOLLARfor] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3249), + [anon_sym_asm] = ACTIONS(3249), + [anon_sym_AT_LBRACK] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3249), + [sym___single_quote] = ACTIONS(3249), + [sym___c_double_quote] = ACTIONS(3249), + [sym___c_single_quote] = ACTIONS(3249), + [sym___r_double_quote] = ACTIONS(3249), + [sym___r_single_quote] = ACTIONS(3249), + }, + [953] = { + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3253), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_CR] = ACTIONS(3253), + [anon_sym_CR_LF] = ACTIONS(3253), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_EQ] = ACTIONS(3253), + [anon_sym___global] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_union] = ACTIONS(3253), + [anon_sym_pub] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3253), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3253), + [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3253), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_STAR_EQ] = ACTIONS(3253), + [anon_sym_SLASH_EQ] = ACTIONS(3253), + [anon_sym_PERCENT_EQ] = ACTIONS(3253), + [anon_sym_LT_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_GT_EQ] = ACTIONS(3253), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3253), + [anon_sym_AMP_EQ] = ACTIONS(3253), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3253), + [anon_sym_PLUS_EQ] = ACTIONS(3253), + [anon_sym_DASH_EQ] = ACTIONS(3253), + [anon_sym_PIPE_EQ] = ACTIONS(3253), + [anon_sym_CARET_EQ] = ACTIONS(3253), + [anon_sym_COLON_EQ] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + [sym_rune_literal] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3253), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [anon_sym_assert] = ACTIONS(3253), + [anon_sym_defer] = ACTIONS(3253), + [anon_sym_goto] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_DOLLARfor] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_asm] = ACTIONS(3253), + [anon_sym_AT_LBRACK] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3253), + [sym___single_quote] = ACTIONS(3253), + [sym___c_double_quote] = ACTIONS(3253), + [sym___c_single_quote] = ACTIONS(3253), + [sym___r_double_quote] = ACTIONS(3253), + [sym___r_single_quote] = ACTIONS(3253), + }, + [954] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3257), + [anon_sym___global] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_union] = ACTIONS(3257), + [anon_sym_pub] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_STAR_EQ] = ACTIONS(3257), + [anon_sym_SLASH_EQ] = ACTIONS(3257), + [anon_sym_PERCENT_EQ] = ACTIONS(3257), + [anon_sym_LT_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_GT_EQ] = ACTIONS(3257), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3257), + [anon_sym_AMP_EQ] = ACTIONS(3257), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3257), + [anon_sym_PLUS_EQ] = ACTIONS(3257), + [anon_sym_DASH_EQ] = ACTIONS(3257), + [anon_sym_PIPE_EQ] = ACTIONS(3257), + [anon_sym_CARET_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_defer] = ACTIONS(3257), + [anon_sym_goto] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_DOLLARfor] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_asm] = ACTIONS(3257), + [anon_sym_AT_LBRACK] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3257), + [sym___single_quote] = ACTIONS(3257), + [sym___c_double_quote] = ACTIONS(3257), + [sym___c_single_quote] = ACTIONS(3257), + [sym___r_double_quote] = ACTIONS(3257), + [sym___r_single_quote] = ACTIONS(3257), + }, + [955] = { + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym___global] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_union] = ACTIONS(3261), + [anon_sym_pub] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_STAR_EQ] = ACTIONS(3261), + [anon_sym_SLASH_EQ] = ACTIONS(3261), + [anon_sym_PERCENT_EQ] = ACTIONS(3261), + [anon_sym_LT_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_GT_EQ] = ACTIONS(3261), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3261), + [anon_sym_AMP_EQ] = ACTIONS(3261), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3261), + [anon_sym_PLUS_EQ] = ACTIONS(3261), + [anon_sym_DASH_EQ] = ACTIONS(3261), + [anon_sym_PIPE_EQ] = ACTIONS(3261), + [anon_sym_CARET_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_defer] = ACTIONS(3261), + [anon_sym_goto] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_DOLLARfor] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_asm] = ACTIONS(3261), + [anon_sym_AT_LBRACK] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), + }, + [956] = { + [ts_builtin_sym_end] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3265), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_CR] = ACTIONS(3265), + [anon_sym_CR_LF] = ACTIONS(3265), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_EQ] = ACTIONS(3265), + [anon_sym___global] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_union] = ACTIONS(3265), + [anon_sym_pub] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3265), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3265), + [anon_sym_POUND_LBRACK] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3265), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3265), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_STAR_EQ] = ACTIONS(3265), + [anon_sym_SLASH_EQ] = ACTIONS(3265), + [anon_sym_PERCENT_EQ] = ACTIONS(3265), + [anon_sym_LT_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_GT_EQ] = ACTIONS(3265), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3265), + [anon_sym_AMP_EQ] = ACTIONS(3265), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3265), + [anon_sym_PLUS_EQ] = ACTIONS(3265), + [anon_sym_DASH_EQ] = ACTIONS(3265), + [anon_sym_PIPE_EQ] = ACTIONS(3265), + [anon_sym_CARET_EQ] = ACTIONS(3265), + [anon_sym_COLON_EQ] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + [sym_rune_literal] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3265), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [anon_sym_assert] = ACTIONS(3265), + [anon_sym_defer] = ACTIONS(3265), + [anon_sym_goto] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_DOLLARfor] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_POUND] = ACTIONS(3265), + [anon_sym_asm] = ACTIONS(3265), + [anon_sym_AT_LBRACK] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3265), + [sym___single_quote] = ACTIONS(3265), + [sym___c_double_quote] = ACTIONS(3265), + [sym___c_single_quote] = ACTIONS(3265), + [sym___r_double_quote] = ACTIONS(3265), + [sym___r_single_quote] = ACTIONS(3265), + }, + [957] = { + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3269), + [anon_sym___global] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_union] = ACTIONS(3269), + [anon_sym_pub] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3269), + [anon_sym_AMP_CARET] = ACTIONS(3269), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3269), + [anon_sym_POUND_LBRACK] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3269), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_STAR_EQ] = ACTIONS(3269), + [anon_sym_SLASH_EQ] = ACTIONS(3269), + [anon_sym_PERCENT_EQ] = ACTIONS(3269), + [anon_sym_LT_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_GT_EQ] = ACTIONS(3269), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3269), + [anon_sym_AMP_EQ] = ACTIONS(3269), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3269), + [anon_sym_DASH_EQ] = ACTIONS(3269), + [anon_sym_PIPE_EQ] = ACTIONS(3269), + [anon_sym_CARET_EQ] = ACTIONS(3269), + [anon_sym_COLON_EQ] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_defer] = ACTIONS(3269), + [anon_sym_goto] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_DOLLARfor] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(3269), + [anon_sym_asm] = ACTIONS(3269), + [anon_sym_AT_LBRACK] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3269), + [sym___single_quote] = ACTIONS(3269), + [sym___c_double_quote] = ACTIONS(3269), + [sym___c_single_quote] = ACTIONS(3269), + [sym___r_double_quote] = ACTIONS(3269), + [sym___r_single_quote] = ACTIONS(3269), + }, + [958] = { + [ts_builtin_sym_end] = ACTIONS(3271), + [sym_identifier] = ACTIONS(3273), + [anon_sym_LF] = ACTIONS(3273), + [anon_sym_CR] = ACTIONS(3273), + [anon_sym_CR_LF] = ACTIONS(3273), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3273), + [anon_sym_as] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_EQ] = ACTIONS(3273), + [anon_sym___global] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_PIPE] = ACTIONS(3273), + [anon_sym_fn] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_PERCENT] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_EQ] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3273), + [anon_sym_pub] = ACTIONS(3273), + [anon_sym_mut] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_go] = ACTIONS(3273), + [anon_sym_spawn] = ACTIONS(3273), + [anon_sym_json_DOTdecode] = ACTIONS(3273), + [anon_sym_LBRACK2] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_CARET] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_LT_DASH] = ACTIONS(3273), + [anon_sym_LT_LT] = ACTIONS(3273), + [anon_sym_GT_GT] = ACTIONS(3273), + [anon_sym_GT_GT_GT] = ACTIONS(3273), + [anon_sym_AMP_CARET] = ACTIONS(3273), + [anon_sym_AMP_AMP] = ACTIONS(3273), + [anon_sym_PIPE_PIPE] = ACTIONS(3273), + [anon_sym_or] = ACTIONS(3273), + [sym_none] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_nil] = ACTIONS(3273), + [anon_sym_QMARK_DOT] = ACTIONS(3273), + [anon_sym_POUND_LBRACK] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_DOLLARif] = ACTIONS(3273), + [anon_sym_is] = ACTIONS(3273), + [anon_sym_BANGis] = ACTIONS(3273), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(3273), + [anon_sym_select] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3273), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_COLON_EQ] = ACTIONS(3273), + [anon_sym_lock] = ACTIONS(3273), + [anon_sym_rlock] = ACTIONS(3273), + [anon_sym_unsafe] = ACTIONS(3273), + [anon_sym_sql] = ACTIONS(3273), + [sym_int_literal] = ACTIONS(3273), + [sym_float_literal] = ACTIONS(3273), + [sym_rune_literal] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_shared] = ACTIONS(3273), + [anon_sym_map_LBRACK] = ACTIONS(3273), + [anon_sym_chan] = ACTIONS(3273), + [anon_sym_thread] = ACTIONS(3273), + [anon_sym_atomic] = ACTIONS(3273), + [anon_sym_assert] = ACTIONS(3273), + [anon_sym_defer] = ACTIONS(3273), + [anon_sym_goto] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_DOLLARfor] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(3273), + [anon_sym_asm] = ACTIONS(3273), + [anon_sym_AT_LBRACK] = ACTIONS(3273), + [sym___double_quote] = ACTIONS(3273), + [sym___single_quote] = ACTIONS(3273), + [sym___c_double_quote] = ACTIONS(3273), + [sym___c_single_quote] = ACTIONS(3273), + [sym___r_double_quote] = ACTIONS(3273), + [sym___r_single_quote] = ACTIONS(3273), + }, + [959] = { + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [anon_sym_LF] = ACTIONS(3277), + [anon_sym_CR] = ACTIONS(3277), + [anon_sym_CR_LF] = ACTIONS(3277), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3277), + [anon_sym_as] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_EQ] = ACTIONS(3277), + [anon_sym___global] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_fn] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_PERCENT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_EQ_EQ] = ACTIONS(3277), + [anon_sym_BANG_EQ] = ACTIONS(3277), + [anon_sym_LT_EQ] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3277), + [anon_sym_union] = ACTIONS(3277), + [anon_sym_pub] = ACTIONS(3277), + [anon_sym_mut] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_QMARK] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_go] = ACTIONS(3277), + [anon_sym_spawn] = ACTIONS(3277), + [anon_sym_json_DOTdecode] = ACTIONS(3277), + [anon_sym_LBRACK2] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(3277), + [anon_sym_GT_GT_GT] = ACTIONS(3277), + [anon_sym_AMP_CARET] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_or] = ACTIONS(3277), + [sym_none] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_nil] = ACTIONS(3277), + [anon_sym_QMARK_DOT] = ACTIONS(3277), + [anon_sym_POUND_LBRACK] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_DOLLARif] = ACTIONS(3277), + [anon_sym_is] = ACTIONS(3277), + [anon_sym_BANGis] = ACTIONS(3277), + [anon_sym_in] = ACTIONS(3277), + [anon_sym_BANGin] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_STAR_EQ] = ACTIONS(3277), + [anon_sym_SLASH_EQ] = ACTIONS(3277), + [anon_sym_PERCENT_EQ] = ACTIONS(3277), + [anon_sym_LT_LT_EQ] = ACTIONS(3277), + [anon_sym_GT_GT_EQ] = ACTIONS(3277), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3277), + [anon_sym_AMP_EQ] = ACTIONS(3277), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3277), + [anon_sym_PLUS_EQ] = ACTIONS(3277), + [anon_sym_DASH_EQ] = ACTIONS(3277), + [anon_sym_PIPE_EQ] = ACTIONS(3277), + [anon_sym_CARET_EQ] = ACTIONS(3277), + [anon_sym_COLON_EQ] = ACTIONS(3277), + [anon_sym_lock] = ACTIONS(3277), + [anon_sym_rlock] = ACTIONS(3277), + [anon_sym_unsafe] = ACTIONS(3277), + [anon_sym_sql] = ACTIONS(3277), + [sym_int_literal] = ACTIONS(3277), + [sym_float_literal] = ACTIONS(3277), + [sym_rune_literal] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_shared] = ACTIONS(3277), + [anon_sym_map_LBRACK] = ACTIONS(3277), + [anon_sym_chan] = ACTIONS(3277), + [anon_sym_thread] = ACTIONS(3277), + [anon_sym_atomic] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_defer] = ACTIONS(3277), + [anon_sym_goto] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_DOLLARfor] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_POUND] = ACTIONS(3277), + [anon_sym_asm] = ACTIONS(3277), + [anon_sym_AT_LBRACK] = ACTIONS(3277), + [sym___double_quote] = ACTIONS(3277), + [sym___single_quote] = ACTIONS(3277), + [sym___c_double_quote] = ACTIONS(3277), + [sym___c_single_quote] = ACTIONS(3277), + [sym___r_double_quote] = ACTIONS(3277), + [sym___r_single_quote] = ACTIONS(3277), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(3279), + [sym_identifier] = ACTIONS(3281), + [anon_sym_LF] = ACTIONS(3281), + [anon_sym_CR] = ACTIONS(3281), + [anon_sym_CR_LF] = ACTIONS(3281), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3281), + [anon_sym___global] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_union] = ACTIONS(3281), + [anon_sym_pub] = ACTIONS(3281), + [anon_sym_mut] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3281), + [anon_sym_spawn] = ACTIONS(3281), + [anon_sym_json_DOTdecode] = ACTIONS(3281), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_GT_GT_GT] = ACTIONS(3281), + [anon_sym_AMP_CARET] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_or] = ACTIONS(3281), + [sym_none] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_nil] = ACTIONS(3281), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_DOLLARif] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_STAR_EQ] = ACTIONS(3281), + [anon_sym_SLASH_EQ] = ACTIONS(3281), + [anon_sym_PERCENT_EQ] = ACTIONS(3281), + [anon_sym_LT_LT_EQ] = ACTIONS(3281), + [anon_sym_GT_GT_EQ] = ACTIONS(3281), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3281), + [anon_sym_AMP_EQ] = ACTIONS(3281), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3281), + [anon_sym_PLUS_EQ] = ACTIONS(3281), + [anon_sym_DASH_EQ] = ACTIONS(3281), + [anon_sym_PIPE_EQ] = ACTIONS(3281), + [anon_sym_CARET_EQ] = ACTIONS(3281), + [anon_sym_COLON_EQ] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_rlock] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_sql] = ACTIONS(3281), + [sym_int_literal] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3281), + [sym_rune_literal] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_shared] = ACTIONS(3281), + [anon_sym_map_LBRACK] = ACTIONS(3281), + [anon_sym_chan] = ACTIONS(3281), + [anon_sym_thread] = ACTIONS(3281), + [anon_sym_atomic] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_defer] = ACTIONS(3281), + [anon_sym_goto] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_DOLLARfor] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_POUND] = ACTIONS(3281), + [anon_sym_asm] = ACTIONS(3281), + [anon_sym_AT_LBRACK] = ACTIONS(3281), + [sym___double_quote] = ACTIONS(3281), + [sym___single_quote] = ACTIONS(3281), + [sym___c_double_quote] = ACTIONS(3281), + [sym___c_single_quote] = ACTIONS(3281), + [sym___r_double_quote] = ACTIONS(3281), + [sym___r_single_quote] = ACTIONS(3281), + }, + [961] = { + [ts_builtin_sym_end] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_CR] = ACTIONS(3285), + [anon_sym_CR_LF] = ACTIONS(3285), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3285), + [anon_sym___global] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_fn] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_LT_EQ] = ACTIONS(3285), + [anon_sym_GT_EQ] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_struct] = ACTIONS(3285), + [anon_sym_union] = ACTIONS(3285), + [anon_sym_pub] = ACTIONS(3285), + [anon_sym_mut] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_go] = ACTIONS(3285), + [anon_sym_spawn] = ACTIONS(3285), + [anon_sym_json_DOTdecode] = ACTIONS(3285), + [anon_sym_LBRACK2] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_GT_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_CARET] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_or] = ACTIONS(3285), + [sym_none] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_nil] = ACTIONS(3285), + [anon_sym_QMARK_DOT] = ACTIONS(3285), + [anon_sym_POUND_LBRACK] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_DOLLARif] = ACTIONS(3285), + [anon_sym_is] = ACTIONS(3285), + [anon_sym_BANGis] = ACTIONS(3285), + [anon_sym_in] = ACTIONS(3285), + [anon_sym_BANGin] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_select] = ACTIONS(3285), + [anon_sym_STAR_EQ] = ACTIONS(3285), + [anon_sym_SLASH_EQ] = ACTIONS(3285), + [anon_sym_PERCENT_EQ] = ACTIONS(3285), + [anon_sym_LT_LT_EQ] = ACTIONS(3285), + [anon_sym_GT_GT_EQ] = ACTIONS(3285), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3285), + [anon_sym_AMP_EQ] = ACTIONS(3285), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3285), + [anon_sym_PLUS_EQ] = ACTIONS(3285), + [anon_sym_DASH_EQ] = ACTIONS(3285), + [anon_sym_PIPE_EQ] = ACTIONS(3285), + [anon_sym_CARET_EQ] = ACTIONS(3285), + [anon_sym_COLON_EQ] = ACTIONS(3285), + [anon_sym_lock] = ACTIONS(3285), + [anon_sym_rlock] = ACTIONS(3285), + [anon_sym_unsafe] = ACTIONS(3285), + [anon_sym_sql] = ACTIONS(3285), + [sym_int_literal] = ACTIONS(3285), + [sym_float_literal] = ACTIONS(3285), + [sym_rune_literal] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_shared] = ACTIONS(3285), + [anon_sym_map_LBRACK] = ACTIONS(3285), + [anon_sym_chan] = ACTIONS(3285), + [anon_sym_thread] = ACTIONS(3285), + [anon_sym_atomic] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_defer] = ACTIONS(3285), + [anon_sym_goto] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_DOLLARfor] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_POUND] = ACTIONS(3285), + [anon_sym_asm] = ACTIONS(3285), + [anon_sym_AT_LBRACK] = ACTIONS(3285), + [sym___double_quote] = ACTIONS(3285), + [sym___single_quote] = ACTIONS(3285), + [sym___c_double_quote] = ACTIONS(3285), + [sym___c_single_quote] = ACTIONS(3285), + [sym___r_double_quote] = ACTIONS(3285), + [sym___r_single_quote] = ACTIONS(3285), + }, + [962] = { + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3289), + [anon_sym_LF] = ACTIONS(3289), + [anon_sym_CR] = ACTIONS(3289), + [anon_sym_CR_LF] = ACTIONS(3289), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym___global] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3289), + [anon_sym_BANG_EQ] = ACTIONS(3289), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_GT_EQ] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_union] = ACTIONS(3289), + [anon_sym_pub] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3289), + [anon_sym_GT_GT_GT] = ACTIONS(3289), + [anon_sym_AMP_CARET] = ACTIONS(3289), + [anon_sym_AMP_AMP] = ACTIONS(3289), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_or] = ACTIONS(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3289), + [anon_sym_POUND_LBRACK] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3289), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_STAR_EQ] = ACTIONS(3289), + [anon_sym_SLASH_EQ] = ACTIONS(3289), + [anon_sym_PERCENT_EQ] = ACTIONS(3289), + [anon_sym_LT_LT_EQ] = ACTIONS(3289), + [anon_sym_GT_GT_EQ] = ACTIONS(3289), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3289), + [anon_sym_AMP_EQ] = ACTIONS(3289), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3289), + [anon_sym_PLUS_EQ] = ACTIONS(3289), + [anon_sym_DASH_EQ] = ACTIONS(3289), + [anon_sym_PIPE_EQ] = ACTIONS(3289), + [anon_sym_CARET_EQ] = ACTIONS(3289), + [anon_sym_COLON_EQ] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [anon_sym_assert] = ACTIONS(3289), + [anon_sym_defer] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_DOLLARfor] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_asm] = ACTIONS(3289), + [anon_sym_AT_LBRACK] = ACTIONS(3289), + [sym___double_quote] = ACTIONS(3289), + [sym___single_quote] = ACTIONS(3289), + [sym___c_double_quote] = ACTIONS(3289), + [sym___c_single_quote] = ACTIONS(3289), + [sym___r_double_quote] = ACTIONS(3289), + [sym___r_single_quote] = ACTIONS(3289), + }, + [963] = { + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym___global] = ACTIONS(3072), + [anon_sym_type] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_union] = ACTIONS(3072), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_enum] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3072), + [anon_sym_POUND_LBRACK] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3072), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_STAR_EQ] = ACTIONS(3072), + [anon_sym_SLASH_EQ] = ACTIONS(3072), + [anon_sym_PERCENT_EQ] = ACTIONS(3072), + [anon_sym_LT_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_GT_EQ] = ACTIONS(3072), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3072), + [anon_sym_AMP_EQ] = ACTIONS(3072), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3072), + [anon_sym_PLUS_EQ] = ACTIONS(3072), + [anon_sym_DASH_EQ] = ACTIONS(3072), + [anon_sym_PIPE_EQ] = ACTIONS(3072), + [anon_sym_CARET_EQ] = ACTIONS(3072), + [anon_sym_COLON_EQ] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_defer] = ACTIONS(3072), + [anon_sym_goto] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_DOLLARfor] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_asm] = ACTIONS(3072), + [anon_sym_AT_LBRACK] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(3100), - [sym_identifier] = ACTIONS(3102), - [anon_sym_LF] = ACTIONS(3102), - [anon_sym_CR] = ACTIONS(3102), - [anon_sym_CR_LF] = ACTIONS(3102), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_COMMA] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_EQ] = ACTIONS(3102), - [anon_sym___global] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_fn] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_LT_EQ] = ACTIONS(3102), - [anon_sym_GT_EQ] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_pub] = ACTIONS(3102), - [anon_sym_mut] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [anon_sym_QMARK] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_go] = ACTIONS(3102), - [anon_sym_spawn] = ACTIONS(3102), - [anon_sym_json_DOTdecode] = ACTIONS(3102), - [anon_sym_LBRACK2] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_LT_DASH] = ACTIONS(3102), - [anon_sym_LT_LT] = ACTIONS(3102), - [anon_sym_GT_GT] = ACTIONS(3102), - [anon_sym_GT_GT_GT] = ACTIONS(3102), - [anon_sym_AMP_CARET] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3102), - [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_or] = ACTIONS(3102), - [sym_none] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_nil] = ACTIONS(3102), - [anon_sym_QMARK_DOT] = ACTIONS(3102), - [anon_sym_POUND_LBRACK] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_DOLLARif] = ACTIONS(3102), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_BANGin] = ACTIONS(3102), - [anon_sym_match] = ACTIONS(3102), - [anon_sym_select] = ACTIONS(3102), - [anon_sym_STAR_EQ] = ACTIONS(3102), - [anon_sym_SLASH_EQ] = ACTIONS(3102), - [anon_sym_PERCENT_EQ] = ACTIONS(3102), - [anon_sym_LT_LT_EQ] = ACTIONS(3102), - [anon_sym_GT_GT_EQ] = ACTIONS(3102), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3102), - [anon_sym_AMP_EQ] = ACTIONS(3102), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3102), - [anon_sym_PLUS_EQ] = ACTIONS(3102), - [anon_sym_DASH_EQ] = ACTIONS(3102), - [anon_sym_PIPE_EQ] = ACTIONS(3102), - [anon_sym_CARET_EQ] = ACTIONS(3102), - [anon_sym_COLON_EQ] = ACTIONS(3102), - [anon_sym_lock] = ACTIONS(3102), - [anon_sym_rlock] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(3102), - [anon_sym_sql] = ACTIONS(3102), - [sym_int_literal] = ACTIONS(3102), - [sym_float_literal] = ACTIONS(3102), - [sym_rune_literal] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_shared] = ACTIONS(3102), - [anon_sym_map_LBRACK] = ACTIONS(3102), - [anon_sym_chan] = ACTIONS(3102), - [anon_sym_thread] = ACTIONS(3102), - [anon_sym_atomic] = ACTIONS(3102), - [anon_sym_assert] = ACTIONS(3102), - [anon_sym_defer] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_DOLLARfor] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_POUND] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym_AT_LBRACK] = ACTIONS(3102), - [sym___double_quote] = ACTIONS(3102), - [sym___single_quote] = ACTIONS(3102), - [sym___c_double_quote] = ACTIONS(3102), - [sym___c_single_quote] = ACTIONS(3102), - [sym___r_double_quote] = ACTIONS(3102), - [sym___r_single_quote] = ACTIONS(3102), + [964] = { + [ts_builtin_sym_end] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3293), + [anon_sym_LF] = ACTIONS(3293), + [anon_sym_CR] = ACTIONS(3293), + [anon_sym_CR_LF] = ACTIONS(3293), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3293), + [anon_sym___global] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [anon_sym_EQ_EQ] = ACTIONS(3293), + [anon_sym_BANG_EQ] = ACTIONS(3293), + [anon_sym_LT_EQ] = ACTIONS(3293), + [anon_sym_GT_EQ] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_union] = ACTIONS(3293), + [anon_sym_pub] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_GT_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_CARET] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_or] = ACTIONS(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3293), + [anon_sym_POUND_LBRACK] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_STAR_EQ] = ACTIONS(3293), + [anon_sym_SLASH_EQ] = ACTIONS(3293), + [anon_sym_PERCENT_EQ] = ACTIONS(3293), + [anon_sym_LT_LT_EQ] = ACTIONS(3293), + [anon_sym_GT_GT_EQ] = ACTIONS(3293), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3293), + [anon_sym_AMP_EQ] = ACTIONS(3293), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3293), + [anon_sym_PLUS_EQ] = ACTIONS(3293), + [anon_sym_DASH_EQ] = ACTIONS(3293), + [anon_sym_PIPE_EQ] = ACTIONS(3293), + [anon_sym_CARET_EQ] = ACTIONS(3293), + [anon_sym_COLON_EQ] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [anon_sym_assert] = ACTIONS(3293), + [anon_sym_defer] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_DOLLARfor] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_asm] = ACTIONS(3293), + [anon_sym_AT_LBRACK] = ACTIONS(3293), + [sym___double_quote] = ACTIONS(3293), + [sym___single_quote] = ACTIONS(3293), + [sym___c_double_quote] = ACTIONS(3293), + [sym___c_single_quote] = ACTIONS(3293), + [sym___r_double_quote] = ACTIONS(3293), + [sym___r_single_quote] = ACTIONS(3293), }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LF] = ACTIONS(3106), - [anon_sym_CR] = ACTIONS(3106), - [anon_sym_CR_LF] = ACTIONS(3106), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3106), - [anon_sym_as] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_COMMA] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym___global] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_fn] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_PERCENT] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_EQ_EQ] = ACTIONS(3106), - [anon_sym_BANG_EQ] = ACTIONS(3106), - [anon_sym_LT_EQ] = ACTIONS(3106), - [anon_sym_GT_EQ] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_union] = ACTIONS(3106), - [anon_sym_pub] = ACTIONS(3106), - [anon_sym_mut] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_QMARK] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_go] = ACTIONS(3106), - [anon_sym_spawn] = ACTIONS(3106), - [anon_sym_json_DOTdecode] = ACTIONS(3106), - [anon_sym_LBRACK2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_CARET] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_LT_DASH] = ACTIONS(3106), - [anon_sym_LT_LT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3106), - [anon_sym_GT_GT_GT] = ACTIONS(3106), - [anon_sym_AMP_CARET] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_or] = ACTIONS(3106), - [sym_none] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_nil] = ACTIONS(3106), - [anon_sym_QMARK_DOT] = ACTIONS(3106), - [anon_sym_POUND_LBRACK] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_DOLLARif] = ACTIONS(3106), - [anon_sym_is] = ACTIONS(3106), - [anon_sym_BANGis] = ACTIONS(3106), - [anon_sym_in] = ACTIONS(3106), - [anon_sym_BANGin] = ACTIONS(3106), - [anon_sym_match] = ACTIONS(3106), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_STAR_EQ] = ACTIONS(3106), - [anon_sym_SLASH_EQ] = ACTIONS(3106), - [anon_sym_PERCENT_EQ] = ACTIONS(3106), - [anon_sym_LT_LT_EQ] = ACTIONS(3106), - [anon_sym_GT_GT_EQ] = ACTIONS(3106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3106), - [anon_sym_AMP_EQ] = ACTIONS(3106), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3106), - [anon_sym_PLUS_EQ] = ACTIONS(3106), - [anon_sym_DASH_EQ] = ACTIONS(3106), - [anon_sym_PIPE_EQ] = ACTIONS(3106), - [anon_sym_CARET_EQ] = ACTIONS(3106), - [anon_sym_COLON_EQ] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(3106), - [anon_sym_sql] = ACTIONS(3106), - [sym_int_literal] = ACTIONS(3106), - [sym_float_literal] = ACTIONS(3106), - [sym_rune_literal] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_shared] = ACTIONS(3106), - [anon_sym_map_LBRACK] = ACTIONS(3106), - [anon_sym_chan] = ACTIONS(3106), - [anon_sym_thread] = ACTIONS(3106), - [anon_sym_atomic] = ACTIONS(3106), - [anon_sym_assert] = ACTIONS(3106), - [anon_sym_defer] = ACTIONS(3106), - [anon_sym_goto] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_DOLLARfor] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_POUND] = ACTIONS(3106), - [anon_sym_asm] = ACTIONS(3106), - [anon_sym_AT_LBRACK] = ACTIONS(3106), - [sym___double_quote] = ACTIONS(3106), - [sym___single_quote] = ACTIONS(3106), - [sym___c_double_quote] = ACTIONS(3106), - [sym___c_single_quote] = ACTIONS(3106), - [sym___r_double_quote] = ACTIONS(3106), - [sym___r_single_quote] = ACTIONS(3106), + [965] = { + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_EQ] = ACTIONS(3297), + [anon_sym___global] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [anon_sym_EQ_EQ] = ACTIONS(3297), + [anon_sym_BANG_EQ] = ACTIONS(3297), + [anon_sym_LT_EQ] = ACTIONS(3297), + [anon_sym_GT_EQ] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_pub] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_GT_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_CARET] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_or] = ACTIONS(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3297), + [anon_sym_POUND_LBRACK] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_STAR_EQ] = ACTIONS(3297), + [anon_sym_SLASH_EQ] = ACTIONS(3297), + [anon_sym_PERCENT_EQ] = ACTIONS(3297), + [anon_sym_LT_LT_EQ] = ACTIONS(3297), + [anon_sym_GT_GT_EQ] = ACTIONS(3297), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3297), + [anon_sym_AMP_EQ] = ACTIONS(3297), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3297), + [anon_sym_PLUS_EQ] = ACTIONS(3297), + [anon_sym_DASH_EQ] = ACTIONS(3297), + [anon_sym_PIPE_EQ] = ACTIONS(3297), + [anon_sym_CARET_EQ] = ACTIONS(3297), + [anon_sym_COLON_EQ] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_defer] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_DOLLARfor] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_asm] = ACTIONS(3297), + [anon_sym_AT_LBRACK] = ACTIONS(3297), + [sym___double_quote] = ACTIONS(3297), + [sym___single_quote] = ACTIONS(3297), + [sym___c_double_quote] = ACTIONS(3297), + [sym___c_single_quote] = ACTIONS(3297), + [sym___r_double_quote] = ACTIONS(3297), + [sym___r_single_quote] = ACTIONS(3297), }, - [934] = { - [ts_builtin_sym_end] = ACTIONS(3108), - [sym_identifier] = ACTIONS(3110), - [anon_sym_LF] = ACTIONS(3110), - [anon_sym_CR] = ACTIONS(3110), - [anon_sym_CR_LF] = ACTIONS(3110), - [sym_comment] = ACTIONS(493), + [966] = { + [ts_builtin_sym_end] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3108), + [anon_sym_LF] = ACTIONS(3108), + [anon_sym_CR] = ACTIONS(3108), + [anon_sym_CR_LF] = ACTIONS(3108), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(3110), [anon_sym_as] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_const] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym___global] = ACTIONS(3110), - [anon_sym_type] = ACTIONS(3110), + [anon_sym_EQ] = ACTIONS(3108), + [anon_sym___global] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_fn] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3108), [anon_sym_PLUS] = ACTIONS(3110), [anon_sym_DASH] = ACTIONS(3110), [anon_sym_STAR] = ACTIONS(3110), @@ -133693,25 +137475,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3110), [anon_sym_LT_EQ] = ACTIONS(3110), [anon_sym_GT_EQ] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3110), - [anon_sym_union] = ACTIONS(3110), - [anon_sym_pub] = ACTIONS(3110), - [anon_sym_mut] = ACTIONS(3110), - [anon_sym_enum] = ACTIONS(3110), - [anon_sym_interface] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(3108), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_mut] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), [anon_sym_PLUS_PLUS] = ACTIONS(3110), [anon_sym_DASH_DASH] = ACTIONS(3110), [anon_sym_QMARK] = ACTIONS(3110), [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_go] = ACTIONS(3110), - [anon_sym_spawn] = ACTIONS(3110), - [anon_sym_json_DOTdecode] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3108), + [anon_sym_spawn] = ACTIONS(3108), + [anon_sym_json_DOTdecode] = ACTIONS(3108), [anon_sym_LBRACK2] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3108), [anon_sym_CARET] = ACTIONS(3110), [anon_sym_AMP] = ACTIONS(3110), - [anon_sym_LT_DASH] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3108), [anon_sym_LT_LT] = ACTIONS(3110), [anon_sym_GT_GT] = ACTIONS(3110), [anon_sym_GT_GT_GT] = ACTIONS(3110), @@ -133719,4606 +137501,4580 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3110), [anon_sym_PIPE_PIPE] = ACTIONS(3110), [anon_sym_or] = ACTIONS(3110), - [sym_none] = ACTIONS(3110), - [sym_true] = ACTIONS(3110), - [sym_false] = ACTIONS(3110), - [sym_nil] = ACTIONS(3110), + [sym_none] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_nil] = ACTIONS(3108), [anon_sym_QMARK_DOT] = ACTIONS(3110), [anon_sym_POUND_LBRACK] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_DOLLARif] = ACTIONS(3108), [anon_sym_is] = ACTIONS(3110), [anon_sym_BANGis] = ACTIONS(3110), [anon_sym_in] = ACTIONS(3110), [anon_sym_BANGin] = ACTIONS(3110), - [anon_sym_match] = ACTIONS(3110), - [anon_sym_select] = ACTIONS(3110), - [anon_sym_STAR_EQ] = ACTIONS(3110), - [anon_sym_SLASH_EQ] = ACTIONS(3110), - [anon_sym_PERCENT_EQ] = ACTIONS(3110), - [anon_sym_LT_LT_EQ] = ACTIONS(3110), - [anon_sym_GT_GT_EQ] = ACTIONS(3110), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3110), - [anon_sym_AMP_EQ] = ACTIONS(3110), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3110), - [anon_sym_PLUS_EQ] = ACTIONS(3110), - [anon_sym_DASH_EQ] = ACTIONS(3110), - [anon_sym_PIPE_EQ] = ACTIONS(3110), - [anon_sym_CARET_EQ] = ACTIONS(3110), - [anon_sym_COLON_EQ] = ACTIONS(3110), - [anon_sym_lock] = ACTIONS(3110), - [anon_sym_rlock] = ACTIONS(3110), - [anon_sym_unsafe] = ACTIONS(3110), - [anon_sym_sql] = ACTIONS(3110), - [sym_int_literal] = ACTIONS(3110), - [sym_float_literal] = ACTIONS(3110), - [sym_rune_literal] = ACTIONS(3110), - [anon_sym_AT] = ACTIONS(3110), - [anon_sym_shared] = ACTIONS(3110), - [anon_sym_map_LBRACK] = ACTIONS(3110), - [anon_sym_chan] = ACTIONS(3110), - [anon_sym_thread] = ACTIONS(3110), - [anon_sym_atomic] = ACTIONS(3110), - [anon_sym_assert] = ACTIONS(3110), - [anon_sym_defer] = ACTIONS(3110), - [anon_sym_goto] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_DOLLARfor] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3110), - [anon_sym_POUND] = ACTIONS(3110), - [anon_sym_asm] = ACTIONS(3110), - [anon_sym_AT_LBRACK] = ACTIONS(3110), - [sym___double_quote] = ACTIONS(3110), - [sym___single_quote] = ACTIONS(3110), - [sym___c_double_quote] = ACTIONS(3110), - [sym___c_single_quote] = ACTIONS(3110), - [sym___r_double_quote] = ACTIONS(3110), - [sym___r_single_quote] = ACTIONS(3110), - }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(3112), - [sym_identifier] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_CR] = ACTIONS(3114), - [anon_sym_CR_LF] = ACTIONS(3114), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_const] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym___global] = ACTIONS(3114), - [anon_sym_type] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_fn] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3114), - [anon_sym_union] = ACTIONS(3114), - [anon_sym_pub] = ACTIONS(3114), - [anon_sym_mut] = ACTIONS(3114), - [anon_sym_enum] = ACTIONS(3114), - [anon_sym_interface] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_go] = ACTIONS(3114), - [anon_sym_spawn] = ACTIONS(3114), - [anon_sym_json_DOTdecode] = ACTIONS(3114), - [anon_sym_LBRACK2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_LT_DASH] = ACTIONS(3114), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_GT_GT_GT] = ACTIONS(3114), - [anon_sym_AMP_CARET] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_or] = ACTIONS(3114), - [sym_none] = ACTIONS(3114), - [sym_true] = ACTIONS(3114), - [sym_false] = ACTIONS(3114), - [sym_nil] = ACTIONS(3114), - [anon_sym_QMARK_DOT] = ACTIONS(3114), - [anon_sym_POUND_LBRACK] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_DOLLARif] = ACTIONS(3114), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3114), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_BANGin] = ACTIONS(3114), - [anon_sym_match] = ACTIONS(3114), - [anon_sym_select] = ACTIONS(3114), - [anon_sym_STAR_EQ] = ACTIONS(3114), - [anon_sym_SLASH_EQ] = ACTIONS(3114), - [anon_sym_PERCENT_EQ] = ACTIONS(3114), - [anon_sym_LT_LT_EQ] = ACTIONS(3114), - [anon_sym_GT_GT_EQ] = ACTIONS(3114), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3114), - [anon_sym_AMP_EQ] = ACTIONS(3114), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3114), - [anon_sym_PLUS_EQ] = ACTIONS(3114), - [anon_sym_DASH_EQ] = ACTIONS(3114), - [anon_sym_PIPE_EQ] = ACTIONS(3114), - [anon_sym_CARET_EQ] = ACTIONS(3114), - [anon_sym_COLON_EQ] = ACTIONS(3114), - [anon_sym_lock] = ACTIONS(3114), - [anon_sym_rlock] = ACTIONS(3114), - [anon_sym_unsafe] = ACTIONS(3114), - [anon_sym_sql] = ACTIONS(3114), - [sym_int_literal] = ACTIONS(3114), - [sym_float_literal] = ACTIONS(3114), - [sym_rune_literal] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_shared] = ACTIONS(3114), - [anon_sym_map_LBRACK] = ACTIONS(3114), - [anon_sym_chan] = ACTIONS(3114), - [anon_sym_thread] = ACTIONS(3114), - [anon_sym_atomic] = ACTIONS(3114), - [anon_sym_assert] = ACTIONS(3114), - [anon_sym_defer] = ACTIONS(3114), - [anon_sym_goto] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_DOLLARfor] = ACTIONS(3114), - [anon_sym_for] = ACTIONS(3114), - [anon_sym_POUND] = ACTIONS(3114), - [anon_sym_asm] = ACTIONS(3114), - [anon_sym_AT_LBRACK] = ACTIONS(3114), - [sym___double_quote] = ACTIONS(3114), - [sym___single_quote] = ACTIONS(3114), - [sym___c_double_quote] = ACTIONS(3114), - [sym___c_single_quote] = ACTIONS(3114), - [sym___r_double_quote] = ACTIONS(3114), - [sym___r_single_quote] = ACTIONS(3114), - }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(3116), - [sym_identifier] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_CR] = ACTIONS(3118), - [anon_sym_CR_LF] = ACTIONS(3118), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3120), - [anon_sym_as] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_const] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(3118), - [anon_sym___global] = ACTIONS(3118), - [anon_sym_type] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_fn] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3118), - [anon_sym_union] = ACTIONS(3118), - [anon_sym_pub] = ACTIONS(3118), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_enum] = ACTIONS(3118), - [anon_sym_interface] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_go] = ACTIONS(3118), - [anon_sym_spawn] = ACTIONS(3118), - [anon_sym_json_DOTdecode] = ACTIONS(3118), - [anon_sym_LBRACK2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_CARET] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_LT_DASH] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_CARET] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3118), - [sym_none] = ACTIONS(3118), - [sym_true] = ACTIONS(3118), - [sym_false] = ACTIONS(3118), - [sym_nil] = ACTIONS(3118), - [anon_sym_QMARK_DOT] = ACTIONS(3118), - [anon_sym_POUND_LBRACK] = ACTIONS(3118), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_DOLLARif] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3118), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_match] = ACTIONS(3118), - [anon_sym_select] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_COLON_EQ] = ACTIONS(3118), - [anon_sym_lock] = ACTIONS(3118), - [anon_sym_rlock] = ACTIONS(3118), - [anon_sym_unsafe] = ACTIONS(3118), - [anon_sym_sql] = ACTIONS(3118), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(3118), - [sym_rune_literal] = ACTIONS(3118), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_shared] = ACTIONS(3118), - [anon_sym_map_LBRACK] = ACTIONS(3118), - [anon_sym_chan] = ACTIONS(3118), - [anon_sym_thread] = ACTIONS(3118), - [anon_sym_atomic] = ACTIONS(3118), - [anon_sym_assert] = ACTIONS(3118), - [anon_sym_defer] = ACTIONS(3118), - [anon_sym_goto] = ACTIONS(3118), - [anon_sym_break] = ACTIONS(3118), - [anon_sym_continue] = ACTIONS(3118), - [anon_sym_return] = ACTIONS(3118), - [anon_sym_DOLLARfor] = ACTIONS(3118), - [anon_sym_for] = ACTIONS(3118), - [anon_sym_POUND] = ACTIONS(3118), - [anon_sym_asm] = ACTIONS(3118), - [anon_sym_AT_LBRACK] = ACTIONS(3118), - [sym___double_quote] = ACTIONS(3118), - [sym___single_quote] = ACTIONS(3118), - [sym___c_double_quote] = ACTIONS(3118), - [sym___c_single_quote] = ACTIONS(3118), - [sym___r_double_quote] = ACTIONS(3118), - [sym___r_single_quote] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3108), + [anon_sym_select] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_COLON_EQ] = ACTIONS(3108), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(3108), + [anon_sym_sql] = ACTIONS(3108), + [sym_int_literal] = ACTIONS(3108), + [sym_float_literal] = ACTIONS(3108), + [sym_rune_literal] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_shared] = ACTIONS(3108), + [anon_sym_map_LBRACK] = ACTIONS(3108), + [anon_sym_chan] = ACTIONS(3108), + [anon_sym_thread] = ACTIONS(3108), + [anon_sym_atomic] = ACTIONS(3108), + [anon_sym_assert] = ACTIONS(3108), + [anon_sym_defer] = ACTIONS(3108), + [anon_sym_goto] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_DOLLARfor] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_POUND] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3108), + [anon_sym_AT_LBRACK] = ACTIONS(3108), + [sym___double_quote] = ACTIONS(3108), + [sym___single_quote] = ACTIONS(3108), + [sym___c_double_quote] = ACTIONS(3108), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3108), + [sym___r_single_quote] = ACTIONS(3108), }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(3123), - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym___global] = ACTIONS(3125), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_pub] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_interface] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_LT_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_GT_EQ] = ACTIONS(3125), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3125), - [anon_sym_AMP_EQ] = ACTIONS(3125), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3125), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_PIPE_EQ] = ACTIONS(3125), - [anon_sym_CARET_EQ] = ACTIONS(3125), - [anon_sym_COLON_EQ] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [anon_sym_assert] = ACTIONS(3125), - [anon_sym_defer] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_DOLLARfor] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_POUND] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym_AT_LBRACK] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), + [967] = { + [ts_builtin_sym_end] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3301), + [anon_sym___global] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [anon_sym_EQ_EQ] = ACTIONS(3301), + [anon_sym_BANG_EQ] = ACTIONS(3301), + [anon_sym_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_EQ] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_union] = ACTIONS(3301), + [anon_sym_pub] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3301), + [anon_sym_PIPE_PIPE] = ACTIONS(3301), + [anon_sym_or] = ACTIONS(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_STAR_EQ] = ACTIONS(3301), + [anon_sym_SLASH_EQ] = ACTIONS(3301), + [anon_sym_PERCENT_EQ] = ACTIONS(3301), + [anon_sym_LT_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3301), + [anon_sym_AMP_EQ] = ACTIONS(3301), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3301), + [anon_sym_PLUS_EQ] = ACTIONS(3301), + [anon_sym_DASH_EQ] = ACTIONS(3301), + [anon_sym_PIPE_EQ] = ACTIONS(3301), + [anon_sym_CARET_EQ] = ACTIONS(3301), + [anon_sym_COLON_EQ] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [anon_sym_assert] = ACTIONS(3301), + [anon_sym_defer] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_DOLLARfor] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_asm] = ACTIONS(3301), + [anon_sym_AT_LBRACK] = ACTIONS(3301), + [sym___double_quote] = ACTIONS(3301), + [sym___single_quote] = ACTIONS(3301), + [sym___c_double_quote] = ACTIONS(3301), + [sym___c_single_quote] = ACTIONS(3301), + [sym___r_double_quote] = ACTIONS(3301), + [sym___r_single_quote] = ACTIONS(3301), }, - [938] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2984), - [anon_sym_LF] = ACTIONS(2984), - [anon_sym_CR] = ACTIONS(2984), - [anon_sym_CR_LF] = ACTIONS(2984), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_as] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2984), - [anon_sym_const] = ACTIONS(2984), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2984), - [anon_sym___global] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2984), - [anon_sym_union] = ACTIONS(2984), - [anon_sym_pub] = ACTIONS(2984), - [anon_sym_mut] = ACTIONS(2984), - [anon_sym_enum] = ACTIONS(2984), - [anon_sym_interface] = ACTIONS(2984), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_go] = ACTIONS(2984), - [anon_sym_spawn] = ACTIONS(2984), - [anon_sym_json_DOTdecode] = ACTIONS(2984), - [anon_sym_LBRACK2] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2984), - [anon_sym_CARET] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2984), - [anon_sym_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_GT_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_CARET] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2984), - [sym_none] = ACTIONS(2984), - [sym_true] = ACTIONS(2984), - [sym_false] = ACTIONS(2984), - [sym_nil] = ACTIONS(2984), - [anon_sym_QMARK_DOT] = ACTIONS(2984), - [anon_sym_POUND_LBRACK] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2984), - [anon_sym_DOLLARif] = ACTIONS(2984), - [anon_sym_is] = ACTIONS(2984), - [anon_sym_BANGis] = ACTIONS(2984), - [anon_sym_in] = ACTIONS(2984), - [anon_sym_BANGin] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2984), - [anon_sym_select] = ACTIONS(2984), - [anon_sym_STAR_EQ] = ACTIONS(2984), - [anon_sym_SLASH_EQ] = ACTIONS(2984), - [anon_sym_PERCENT_EQ] = ACTIONS(2984), - [anon_sym_LT_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_GT_EQ] = ACTIONS(2984), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2984), - [anon_sym_AMP_EQ] = ACTIONS(2984), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2984), - [anon_sym_PLUS_EQ] = ACTIONS(2984), - [anon_sym_DASH_EQ] = ACTIONS(2984), - [anon_sym_PIPE_EQ] = ACTIONS(2984), - [anon_sym_CARET_EQ] = ACTIONS(2984), - [anon_sym_COLON_EQ] = ACTIONS(2984), - [anon_sym_lock] = ACTIONS(2984), - [anon_sym_rlock] = ACTIONS(2984), - [anon_sym_unsafe] = ACTIONS(2984), - [anon_sym_sql] = ACTIONS(2984), - [sym_int_literal] = ACTIONS(2984), - [sym_float_literal] = ACTIONS(2984), - [sym_rune_literal] = ACTIONS(2984), - [anon_sym_AT] = ACTIONS(2984), - [anon_sym_shared] = ACTIONS(2984), - [anon_sym_map_LBRACK] = ACTIONS(2984), - [anon_sym_chan] = ACTIONS(2984), - [anon_sym_thread] = ACTIONS(2984), - [anon_sym_atomic] = ACTIONS(2984), - [anon_sym_assert] = ACTIONS(2984), - [anon_sym_defer] = ACTIONS(2984), - [anon_sym_goto] = ACTIONS(2984), - [anon_sym_break] = ACTIONS(2984), - [anon_sym_continue] = ACTIONS(2984), - [anon_sym_return] = ACTIONS(2984), - [anon_sym_DOLLARfor] = ACTIONS(2984), - [anon_sym_for] = ACTIONS(2984), - [anon_sym_POUND] = ACTIONS(2984), - [anon_sym_asm] = ACTIONS(2984), - [anon_sym_AT_LBRACK] = ACTIONS(2984), - [sym___double_quote] = ACTIONS(2984), - [sym___single_quote] = ACTIONS(2984), - [sym___c_double_quote] = ACTIONS(2984), - [sym___c_single_quote] = ACTIONS(2984), - [sym___r_double_quote] = ACTIONS(2984), - [sym___r_single_quote] = ACTIONS(2984), + [968] = { + [ts_builtin_sym_end] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3160), + [anon_sym_CR] = ACTIONS(3160), + [anon_sym_CR_LF] = ACTIONS(3160), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3160), + [anon_sym___global] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_pub] = ACTIONS(3160), + [anon_sym_mut] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3160), + [anon_sym_spawn] = ACTIONS(3160), + [anon_sym_json_DOTdecode] = ACTIONS(3160), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3160), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_nil] = ACTIONS(3160), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_DOLLARif] = ACTIONS(3160), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3160), + [anon_sym_select] = ACTIONS(3160), + [anon_sym_STAR_EQ] = ACTIONS(3160), + [anon_sym_SLASH_EQ] = ACTIONS(3160), + [anon_sym_PERCENT_EQ] = ACTIONS(3160), + [anon_sym_LT_LT_EQ] = ACTIONS(3160), + [anon_sym_GT_GT_EQ] = ACTIONS(3160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3160), + [anon_sym_AMP_EQ] = ACTIONS(3160), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3160), + [anon_sym_PLUS_EQ] = ACTIONS(3160), + [anon_sym_DASH_EQ] = ACTIONS(3160), + [anon_sym_PIPE_EQ] = ACTIONS(3160), + [anon_sym_CARET_EQ] = ACTIONS(3160), + [anon_sym_COLON_EQ] = ACTIONS(3160), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(3160), + [anon_sym_sql] = ACTIONS(3160), + [sym_int_literal] = ACTIONS(3160), + [sym_float_literal] = ACTIONS(3160), + [sym_rune_literal] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_shared] = ACTIONS(3160), + [anon_sym_map_LBRACK] = ACTIONS(3160), + [anon_sym_chan] = ACTIONS(3160), + [anon_sym_thread] = ACTIONS(3160), + [anon_sym_atomic] = ACTIONS(3160), + [anon_sym_assert] = ACTIONS(3160), + [anon_sym_defer] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_DOLLARfor] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_POUND] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym_AT_LBRACK] = ACTIONS(3160), + [sym___double_quote] = ACTIONS(3160), + [sym___single_quote] = ACTIONS(3160), + [sym___c_double_quote] = ACTIONS(3160), + [sym___c_single_quote] = ACTIONS(3160), + [sym___r_double_quote] = ACTIONS(3160), + [sym___r_single_quote] = ACTIONS(3160), }, - [939] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_LT_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_AMP_EQ] = ACTIONS(2740), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_PIPE_EQ] = ACTIONS(2740), - [anon_sym_CARET_EQ] = ACTIONS(2740), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [969] = { + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_EQ] = ACTIONS(3305), + [anon_sym___global] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_EQ_EQ] = ACTIONS(3305), + [anon_sym_BANG_EQ] = ACTIONS(3305), + [anon_sym_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_union] = ACTIONS(3305), + [anon_sym_pub] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_PIPE_PIPE] = ACTIONS(3305), + [anon_sym_or] = ACTIONS(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_STAR_EQ] = ACTIONS(3305), + [anon_sym_SLASH_EQ] = ACTIONS(3305), + [anon_sym_PERCENT_EQ] = ACTIONS(3305), + [anon_sym_LT_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3305), + [anon_sym_AMP_EQ] = ACTIONS(3305), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3305), + [anon_sym_PLUS_EQ] = ACTIONS(3305), + [anon_sym_DASH_EQ] = ACTIONS(3305), + [anon_sym_PIPE_EQ] = ACTIONS(3305), + [anon_sym_CARET_EQ] = ACTIONS(3305), + [anon_sym_COLON_EQ] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_defer] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_DOLLARfor] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_asm] = ACTIONS(3305), + [anon_sym_AT_LBRACK] = ACTIONS(3305), + [sym___double_quote] = ACTIONS(3305), + [sym___single_quote] = ACTIONS(3305), + [sym___c_double_quote] = ACTIONS(3305), + [sym___c_single_quote] = ACTIONS(3305), + [sym___r_double_quote] = ACTIONS(3305), + [sym___r_single_quote] = ACTIONS(3305), }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_EQ] = ACTIONS(2764), - [anon_sym___global] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2764), - [anon_sym_BANG_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_CARET] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2764), - [anon_sym_POUND_LBRACK] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2764), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_STAR_EQ] = ACTIONS(2764), - [anon_sym_SLASH_EQ] = ACTIONS(2764), - [anon_sym_PERCENT_EQ] = ACTIONS(2764), - [anon_sym_LT_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_GT_EQ] = ACTIONS(2764), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2764), - [anon_sym_AMP_EQ] = ACTIONS(2764), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2764), - [anon_sym_PLUS_EQ] = ACTIONS(2764), - [anon_sym_DASH_EQ] = ACTIONS(2764), - [anon_sym_PIPE_EQ] = ACTIONS(2764), - [anon_sym_CARET_EQ] = ACTIONS(2764), - [anon_sym_COLON_EQ] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [anon_sym_assert] = ACTIONS(2764), - [anon_sym_defer] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_DOLLARfor] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [anon_sym_asm] = ACTIONS(2764), - [anon_sym_AT_LBRACK] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), + [970] = { + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [anon_sym_LF] = ACTIONS(3309), + [anon_sym_CR] = ACTIONS(3309), + [anon_sym_CR_LF] = ACTIONS(3309), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_EQ] = ACTIONS(3309), + [anon_sym___global] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_union] = ACTIONS(3309), + [anon_sym_pub] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3309), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_or] = ACTIONS(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_STAR_EQ] = ACTIONS(3309), + [anon_sym_SLASH_EQ] = ACTIONS(3309), + [anon_sym_PERCENT_EQ] = ACTIONS(3309), + [anon_sym_LT_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_GT_EQ] = ACTIONS(3309), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3309), + [anon_sym_AMP_EQ] = ACTIONS(3309), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3309), + [anon_sym_PLUS_EQ] = ACTIONS(3309), + [anon_sym_DASH_EQ] = ACTIONS(3309), + [anon_sym_PIPE_EQ] = ACTIONS(3309), + [anon_sym_CARET_EQ] = ACTIONS(3309), + [anon_sym_COLON_EQ] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_defer] = ACTIONS(3309), + [anon_sym_goto] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_DOLLARfor] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_POUND] = ACTIONS(3309), + [anon_sym_asm] = ACTIONS(3309), + [anon_sym_AT_LBRACK] = ACTIONS(3309), + [sym___double_quote] = ACTIONS(3309), + [sym___single_quote] = ACTIONS(3309), + [sym___c_double_quote] = ACTIONS(3309), + [sym___c_single_quote] = ACTIONS(3309), + [sym___r_double_quote] = ACTIONS(3309), + [sym___r_single_quote] = ACTIONS(3309), }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_STAR_EQ] = ACTIONS(3129), - [anon_sym_SLASH_EQ] = ACTIONS(3129), - [anon_sym_PERCENT_EQ] = ACTIONS(3129), - [anon_sym_LT_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_GT_EQ] = ACTIONS(3129), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3129), - [anon_sym_AMP_EQ] = ACTIONS(3129), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3129), - [anon_sym_PLUS_EQ] = ACTIONS(3129), - [anon_sym_DASH_EQ] = ACTIONS(3129), - [anon_sym_PIPE_EQ] = ACTIONS(3129), - [anon_sym_CARET_EQ] = ACTIONS(3129), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), + [971] = { + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3162), + [anon_sym_LF] = ACTIONS(3162), + [anon_sym_CR] = ACTIONS(3162), + [anon_sym_CR_LF] = ACTIONS(3162), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym___global] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3162), + [anon_sym_union] = ACTIONS(3162), + [anon_sym_pub] = ACTIONS(3162), + [anon_sym_mut] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3162), + [anon_sym_spawn] = ACTIONS(3162), + [anon_sym_json_DOTdecode] = ACTIONS(3162), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3162), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_nil] = ACTIONS(3162), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_DOLLARif] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3162), + [anon_sym_select] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_LT_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_GT_EQ] = ACTIONS(3162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3162), + [anon_sym_AMP_EQ] = ACTIONS(3162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_PIPE_EQ] = ACTIONS(3162), + [anon_sym_CARET_EQ] = ACTIONS(3162), + [anon_sym_COLON_EQ] = ACTIONS(3162), + [anon_sym_lock] = ACTIONS(3162), + [anon_sym_rlock] = ACTIONS(3162), + [anon_sym_unsafe] = ACTIONS(3162), + [anon_sym_sql] = ACTIONS(3162), + [sym_int_literal] = ACTIONS(3162), + [sym_float_literal] = ACTIONS(3162), + [sym_rune_literal] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_shared] = ACTIONS(3162), + [anon_sym_map_LBRACK] = ACTIONS(3162), + [anon_sym_chan] = ACTIONS(3162), + [anon_sym_thread] = ACTIONS(3162), + [anon_sym_atomic] = ACTIONS(3162), + [anon_sym_assert] = ACTIONS(3162), + [anon_sym_defer] = ACTIONS(3162), + [anon_sym_goto] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_DOLLARfor] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_POUND] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3162), + [anon_sym_AT_LBRACK] = ACTIONS(3162), + [sym___double_quote] = ACTIONS(3162), + [sym___single_quote] = ACTIONS(3162), + [sym___c_double_quote] = ACTIONS(3162), + [sym___c_single_quote] = ACTIONS(3162), + [sym___r_double_quote] = ACTIONS(3162), + [sym___r_single_quote] = ACTIONS(3162), }, - [942] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_STAR_EQ] = ACTIONS(3133), - [anon_sym_SLASH_EQ] = ACTIONS(3133), - [anon_sym_PERCENT_EQ] = ACTIONS(3133), - [anon_sym_LT_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_AMP_EQ] = ACTIONS(3133), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3133), - [anon_sym_PLUS_EQ] = ACTIONS(3133), - [anon_sym_DASH_EQ] = ACTIONS(3133), - [anon_sym_PIPE_EQ] = ACTIONS(3133), - [anon_sym_CARET_EQ] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [972] = { + [ts_builtin_sym_end] = ACTIONS(3311), + [sym_identifier] = ACTIONS(3313), + [anon_sym_LF] = ACTIONS(3313), + [anon_sym_CR] = ACTIONS(3313), + [anon_sym_CR_LF] = ACTIONS(3313), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_COMMA] = ACTIONS(3313), + [anon_sym_const] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(3313), + [anon_sym___global] = ACTIONS(3313), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_PIPE] = ACTIONS(3313), + [anon_sym_fn] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_SLASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_GT] = ACTIONS(3313), + [anon_sym_EQ_EQ] = ACTIONS(3313), + [anon_sym_BANG_EQ] = ACTIONS(3313), + [anon_sym_LT_EQ] = ACTIONS(3313), + [anon_sym_GT_EQ] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_struct] = ACTIONS(3313), + [anon_sym_union] = ACTIONS(3313), + [anon_sym_pub] = ACTIONS(3313), + [anon_sym_mut] = ACTIONS(3313), + [anon_sym_enum] = ACTIONS(3313), + [anon_sym_interface] = ACTIONS(3313), + [anon_sym_PLUS_PLUS] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3313), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_go] = ACTIONS(3313), + [anon_sym_spawn] = ACTIONS(3313), + [anon_sym_json_DOTdecode] = ACTIONS(3313), + [anon_sym_LBRACK2] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_LT_DASH] = ACTIONS(3313), + [anon_sym_LT_LT] = ACTIONS(3313), + [anon_sym_GT_GT] = ACTIONS(3313), + [anon_sym_GT_GT_GT] = ACTIONS(3313), + [anon_sym_AMP_CARET] = ACTIONS(3313), + [anon_sym_AMP_AMP] = ACTIONS(3313), + [anon_sym_PIPE_PIPE] = ACTIONS(3313), + [anon_sym_or] = ACTIONS(3313), + [sym_none] = ACTIONS(3313), + [sym_true] = ACTIONS(3313), + [sym_false] = ACTIONS(3313), + [sym_nil] = ACTIONS(3313), + [anon_sym_QMARK_DOT] = ACTIONS(3313), + [anon_sym_POUND_LBRACK] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_DOLLARif] = ACTIONS(3313), + [anon_sym_is] = ACTIONS(3313), + [anon_sym_BANGis] = ACTIONS(3313), + [anon_sym_in] = ACTIONS(3313), + [anon_sym_BANGin] = ACTIONS(3313), + [anon_sym_match] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_STAR_EQ] = ACTIONS(3313), + [anon_sym_SLASH_EQ] = ACTIONS(3313), + [anon_sym_PERCENT_EQ] = ACTIONS(3313), + [anon_sym_LT_LT_EQ] = ACTIONS(3313), + [anon_sym_GT_GT_EQ] = ACTIONS(3313), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3313), + [anon_sym_AMP_EQ] = ACTIONS(3313), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3313), + [anon_sym_PLUS_EQ] = ACTIONS(3313), + [anon_sym_DASH_EQ] = ACTIONS(3313), + [anon_sym_PIPE_EQ] = ACTIONS(3313), + [anon_sym_CARET_EQ] = ACTIONS(3313), + [anon_sym_COLON_EQ] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_rlock] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_sql] = ACTIONS(3313), + [sym_int_literal] = ACTIONS(3313), + [sym_float_literal] = ACTIONS(3313), + [sym_rune_literal] = ACTIONS(3313), + [anon_sym_AT] = ACTIONS(3313), + [anon_sym_shared] = ACTIONS(3313), + [anon_sym_map_LBRACK] = ACTIONS(3313), + [anon_sym_chan] = ACTIONS(3313), + [anon_sym_thread] = ACTIONS(3313), + [anon_sym_atomic] = ACTIONS(3313), + [anon_sym_assert] = ACTIONS(3313), + [anon_sym_defer] = ACTIONS(3313), + [anon_sym_goto] = ACTIONS(3313), + [anon_sym_break] = ACTIONS(3313), + [anon_sym_continue] = ACTIONS(3313), + [anon_sym_return] = ACTIONS(3313), + [anon_sym_DOLLARfor] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(3313), + [anon_sym_asm] = ACTIONS(3313), + [anon_sym_AT_LBRACK] = ACTIONS(3313), + [sym___double_quote] = ACTIONS(3313), + [sym___single_quote] = ACTIONS(3313), + [sym___c_double_quote] = ACTIONS(3313), + [sym___c_single_quote] = ACTIONS(3313), + [sym___r_double_quote] = ACTIONS(3313), + [sym___r_single_quote] = ACTIONS(3313), }, - [943] = { - [ts_builtin_sym_end] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_STAR_EQ] = ACTIONS(3137), - [anon_sym_SLASH_EQ] = ACTIONS(3137), - [anon_sym_PERCENT_EQ] = ACTIONS(3137), - [anon_sym_LT_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_AMP_EQ] = ACTIONS(3137), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3137), - [anon_sym_PLUS_EQ] = ACTIONS(3137), - [anon_sym_DASH_EQ] = ACTIONS(3137), - [anon_sym_PIPE_EQ] = ACTIONS(3137), - [anon_sym_CARET_EQ] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), + [973] = { + [ts_builtin_sym_end] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3317), + [anon_sym_LF] = ACTIONS(3317), + [anon_sym_CR] = ACTIONS(3317), + [anon_sym_CR_LF] = ACTIONS(3317), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3317), + [anon_sym_as] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_EQ] = ACTIONS(3317), + [anon_sym___global] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [anon_sym_pub] = ACTIONS(3317), + [anon_sym_mut] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_QMARK] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_go] = ACTIONS(3317), + [anon_sym_spawn] = ACTIONS(3317), + [anon_sym_json_DOTdecode] = ACTIONS(3317), + [anon_sym_LBRACK2] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_LT_DASH] = ACTIONS(3317), + [anon_sym_LT_LT] = ACTIONS(3317), + [anon_sym_GT_GT] = ACTIONS(3317), + [anon_sym_GT_GT_GT] = ACTIONS(3317), + [anon_sym_AMP_CARET] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_or] = ACTIONS(3317), + [sym_none] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_nil] = ACTIONS(3317), + [anon_sym_QMARK_DOT] = ACTIONS(3317), + [anon_sym_POUND_LBRACK] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_DOLLARif] = ACTIONS(3317), + [anon_sym_is] = ACTIONS(3317), + [anon_sym_BANGis] = ACTIONS(3317), + [anon_sym_in] = ACTIONS(3317), + [anon_sym_BANGin] = ACTIONS(3317), + [anon_sym_match] = ACTIONS(3317), + [anon_sym_select] = ACTIONS(3317), + [anon_sym_STAR_EQ] = ACTIONS(3317), + [anon_sym_SLASH_EQ] = ACTIONS(3317), + [anon_sym_PERCENT_EQ] = ACTIONS(3317), + [anon_sym_LT_LT_EQ] = ACTIONS(3317), + [anon_sym_GT_GT_EQ] = ACTIONS(3317), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3317), + [anon_sym_AMP_EQ] = ACTIONS(3317), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3317), + [anon_sym_PLUS_EQ] = ACTIONS(3317), + [anon_sym_DASH_EQ] = ACTIONS(3317), + [anon_sym_PIPE_EQ] = ACTIONS(3317), + [anon_sym_CARET_EQ] = ACTIONS(3317), + [anon_sym_COLON_EQ] = ACTIONS(3317), + [anon_sym_lock] = ACTIONS(3317), + [anon_sym_rlock] = ACTIONS(3317), + [anon_sym_unsafe] = ACTIONS(3317), + [anon_sym_sql] = ACTIONS(3317), + [sym_int_literal] = ACTIONS(3317), + [sym_float_literal] = ACTIONS(3317), + [sym_rune_literal] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_shared] = ACTIONS(3317), + [anon_sym_map_LBRACK] = ACTIONS(3317), + [anon_sym_chan] = ACTIONS(3317), + [anon_sym_thread] = ACTIONS(3317), + [anon_sym_atomic] = ACTIONS(3317), + [anon_sym_assert] = ACTIONS(3317), + [anon_sym_defer] = ACTIONS(3317), + [anon_sym_goto] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_DOLLARfor] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_asm] = ACTIONS(3317), + [anon_sym_AT_LBRACK] = ACTIONS(3317), + [sym___double_quote] = ACTIONS(3317), + [sym___single_quote] = ACTIONS(3317), + [sym___c_double_quote] = ACTIONS(3317), + [sym___c_single_quote] = ACTIONS(3317), + [sym___r_double_quote] = ACTIONS(3317), + [sym___r_single_quote] = ACTIONS(3317), }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(2997), - [sym_identifier] = ACTIONS(2994), - [anon_sym_LF] = ACTIONS(2994), - [anon_sym_CR] = ACTIONS(2994), - [anon_sym_CR_LF] = ACTIONS(2994), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_const] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym___global] = ACTIONS(2994), - [anon_sym_type] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_fn] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PERCENT] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2994), - [anon_sym_union] = ACTIONS(2994), - [anon_sym_pub] = ACTIONS(2994), - [anon_sym_mut] = ACTIONS(2994), - [anon_sym_enum] = ACTIONS(2994), - [anon_sym_interface] = ACTIONS(2994), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_go] = ACTIONS(2994), - [anon_sym_spawn] = ACTIONS(2994), - [anon_sym_json_DOTdecode] = ACTIONS(2994), - [anon_sym_LBRACK2] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT_DASH] = ACTIONS(2994), - [anon_sym_LT_LT] = ACTIONS(2994), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2994), - [anon_sym_AMP_CARET] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2994), - [sym_none] = ACTIONS(2994), - [sym_true] = ACTIONS(2994), - [sym_false] = ACTIONS(2994), - [sym_nil] = ACTIONS(2994), - [anon_sym_QMARK_DOT] = ACTIONS(2994), - [anon_sym_POUND_LBRACK] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_DOLLARif] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2994), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_in] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_match] = ACTIONS(2994), - [anon_sym_select] = ACTIONS(2994), - [anon_sym_STAR_EQ] = ACTIONS(2994), - [anon_sym_SLASH_EQ] = ACTIONS(2994), - [anon_sym_PERCENT_EQ] = ACTIONS(2994), - [anon_sym_LT_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_GT_EQ] = ACTIONS(2994), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2994), - [anon_sym_AMP_EQ] = ACTIONS(2994), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2994), - [anon_sym_PLUS_EQ] = ACTIONS(2994), - [anon_sym_DASH_EQ] = ACTIONS(2994), - [anon_sym_PIPE_EQ] = ACTIONS(2994), - [anon_sym_CARET_EQ] = ACTIONS(2994), - [anon_sym_COLON_EQ] = ACTIONS(2994), - [anon_sym_lock] = ACTIONS(2994), - [anon_sym_rlock] = ACTIONS(2994), - [anon_sym_unsafe] = ACTIONS(2994), - [anon_sym_sql] = ACTIONS(2994), - [sym_int_literal] = ACTIONS(2994), - [sym_float_literal] = ACTIONS(2994), - [sym_rune_literal] = ACTIONS(2994), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_shared] = ACTIONS(2994), - [anon_sym_map_LBRACK] = ACTIONS(2994), - [anon_sym_chan] = ACTIONS(2994), - [anon_sym_thread] = ACTIONS(2994), - [anon_sym_atomic] = ACTIONS(2994), - [anon_sym_assert] = ACTIONS(2994), - [anon_sym_defer] = ACTIONS(2994), - [anon_sym_goto] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_DOLLARfor] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2994), - [anon_sym_asm] = ACTIONS(2994), - [anon_sym_AT_LBRACK] = ACTIONS(2994), - [sym___double_quote] = ACTIONS(2994), - [sym___single_quote] = ACTIONS(2994), - [sym___c_double_quote] = ACTIONS(2994), - [sym___c_single_quote] = ACTIONS(2994), - [sym___r_double_quote] = ACTIONS(2994), - [sym___r_single_quote] = ACTIONS(2994), + [974] = { + [ts_builtin_sym_end] = ACTIONS(3319), + [sym_identifier] = ACTIONS(3321), + [anon_sym_LF] = ACTIONS(3321), + [anon_sym_CR] = ACTIONS(3321), + [anon_sym_CR_LF] = ACTIONS(3321), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3321), + [anon_sym_as] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3321), + [anon_sym___global] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3321), + [anon_sym_fn] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_pub] = ACTIONS(3321), + [anon_sym_mut] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_go] = ACTIONS(3321), + [anon_sym_spawn] = ACTIONS(3321), + [anon_sym_json_DOTdecode] = ACTIONS(3321), + [anon_sym_LBRACK2] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_LT_DASH] = ACTIONS(3321), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym_GT_GT_GT] = ACTIONS(3321), + [anon_sym_AMP_CARET] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3321), + [sym_none] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_nil] = ACTIONS(3321), + [anon_sym_QMARK_DOT] = ACTIONS(3321), + [anon_sym_POUND_LBRACK] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_DOLLARif] = ACTIONS(3321), + [anon_sym_is] = ACTIONS(3321), + [anon_sym_BANGis] = ACTIONS(3321), + [anon_sym_in] = ACTIONS(3321), + [anon_sym_BANGin] = ACTIONS(3321), + [anon_sym_match] = ACTIONS(3321), + [anon_sym_select] = ACTIONS(3321), + [anon_sym_STAR_EQ] = ACTIONS(3321), + [anon_sym_SLASH_EQ] = ACTIONS(3321), + [anon_sym_PERCENT_EQ] = ACTIONS(3321), + [anon_sym_LT_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3321), + [anon_sym_AMP_EQ] = ACTIONS(3321), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3321), + [anon_sym_PLUS_EQ] = ACTIONS(3321), + [anon_sym_DASH_EQ] = ACTIONS(3321), + [anon_sym_PIPE_EQ] = ACTIONS(3321), + [anon_sym_CARET_EQ] = ACTIONS(3321), + [anon_sym_COLON_EQ] = ACTIONS(3321), + [anon_sym_lock] = ACTIONS(3321), + [anon_sym_rlock] = ACTIONS(3321), + [anon_sym_unsafe] = ACTIONS(3321), + [anon_sym_sql] = ACTIONS(3321), + [sym_int_literal] = ACTIONS(3321), + [sym_float_literal] = ACTIONS(3321), + [sym_rune_literal] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_shared] = ACTIONS(3321), + [anon_sym_map_LBRACK] = ACTIONS(3321), + [anon_sym_chan] = ACTIONS(3321), + [anon_sym_thread] = ACTIONS(3321), + [anon_sym_atomic] = ACTIONS(3321), + [anon_sym_assert] = ACTIONS(3321), + [anon_sym_defer] = ACTIONS(3321), + [anon_sym_goto] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_DOLLARfor] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_asm] = ACTIONS(3321), + [anon_sym_AT_LBRACK] = ACTIONS(3321), + [sym___double_quote] = ACTIONS(3321), + [sym___single_quote] = ACTIONS(3321), + [sym___c_double_quote] = ACTIONS(3321), + [sym___c_single_quote] = ACTIONS(3321), + [sym___r_double_quote] = ACTIONS(3321), + [sym___r_single_quote] = ACTIONS(3321), }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym___global] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_union] = ACTIONS(3141), - [anon_sym_pub] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_STAR_EQ] = ACTIONS(3141), - [anon_sym_SLASH_EQ] = ACTIONS(3141), - [anon_sym_PERCENT_EQ] = ACTIONS(3141), - [anon_sym_LT_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_GT_EQ] = ACTIONS(3141), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3141), - [anon_sym_AMP_EQ] = ACTIONS(3141), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3141), - [anon_sym_PLUS_EQ] = ACTIONS(3141), - [anon_sym_DASH_EQ] = ACTIONS(3141), - [anon_sym_PIPE_EQ] = ACTIONS(3141), - [anon_sym_CARET_EQ] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), + [975] = { + [ts_builtin_sym_end] = ACTIONS(3323), + [sym_identifier] = ACTIONS(3325), + [anon_sym_LF] = ACTIONS(3325), + [anon_sym_CR] = ACTIONS(3325), + [anon_sym_CR_LF] = ACTIONS(3325), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3325), + [anon_sym_as] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_COMMA] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3325), + [anon_sym___global] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_PIPE] = ACTIONS(3325), + [anon_sym_fn] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3325), + [anon_sym_union] = ACTIONS(3325), + [anon_sym_pub] = ACTIONS(3325), + [anon_sym_mut] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_go] = ACTIONS(3325), + [anon_sym_spawn] = ACTIONS(3325), + [anon_sym_json_DOTdecode] = ACTIONS(3325), + [anon_sym_LBRACK2] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_LT_DASH] = ACTIONS(3325), + [anon_sym_LT_LT] = ACTIONS(3325), + [anon_sym_GT_GT] = ACTIONS(3325), + [anon_sym_GT_GT_GT] = ACTIONS(3325), + [anon_sym_AMP_CARET] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_or] = ACTIONS(3325), + [sym_none] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_nil] = ACTIONS(3325), + [anon_sym_QMARK_DOT] = ACTIONS(3325), + [anon_sym_POUND_LBRACK] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_DOLLARif] = ACTIONS(3325), + [anon_sym_is] = ACTIONS(3325), + [anon_sym_BANGis] = ACTIONS(3325), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3325), + [anon_sym_match] = ACTIONS(3325), + [anon_sym_select] = ACTIONS(3325), + [anon_sym_STAR_EQ] = ACTIONS(3325), + [anon_sym_SLASH_EQ] = ACTIONS(3325), + [anon_sym_PERCENT_EQ] = ACTIONS(3325), + [anon_sym_LT_LT_EQ] = ACTIONS(3325), + [anon_sym_GT_GT_EQ] = ACTIONS(3325), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3325), + [anon_sym_AMP_EQ] = ACTIONS(3325), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3325), + [anon_sym_PLUS_EQ] = ACTIONS(3325), + [anon_sym_DASH_EQ] = ACTIONS(3325), + [anon_sym_PIPE_EQ] = ACTIONS(3325), + [anon_sym_CARET_EQ] = ACTIONS(3325), + [anon_sym_COLON_EQ] = ACTIONS(3325), + [anon_sym_lock] = ACTIONS(3325), + [anon_sym_rlock] = ACTIONS(3325), + [anon_sym_unsafe] = ACTIONS(3325), + [anon_sym_sql] = ACTIONS(3325), + [sym_int_literal] = ACTIONS(3325), + [sym_float_literal] = ACTIONS(3325), + [sym_rune_literal] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_shared] = ACTIONS(3325), + [anon_sym_map_LBRACK] = ACTIONS(3325), + [anon_sym_chan] = ACTIONS(3325), + [anon_sym_thread] = ACTIONS(3325), + [anon_sym_atomic] = ACTIONS(3325), + [anon_sym_assert] = ACTIONS(3325), + [anon_sym_defer] = ACTIONS(3325), + [anon_sym_goto] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_DOLLARfor] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_POUND] = ACTIONS(3325), + [anon_sym_asm] = ACTIONS(3325), + [anon_sym_AT_LBRACK] = ACTIONS(3325), + [sym___double_quote] = ACTIONS(3325), + [sym___single_quote] = ACTIONS(3325), + [sym___c_double_quote] = ACTIONS(3325), + [sym___c_single_quote] = ACTIONS(3325), + [sym___r_double_quote] = ACTIONS(3325), + [sym___r_single_quote] = ACTIONS(3325), }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3147), - [anon_sym___global] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_pub] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_LT_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_AMP_EQ] = ACTIONS(3147), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3147), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_PIPE_EQ] = ACTIONS(3147), - [anon_sym_CARET_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_defer] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_DOLLARfor] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_POUND] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym_AT_LBRACK] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), + [976] = { + [ts_builtin_sym_end] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3329), + [anon_sym_LF] = ACTIONS(3329), + [anon_sym_CR] = ACTIONS(3329), + [anon_sym_CR_LF] = ACTIONS(3329), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(3329), + [anon_sym___global] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_fn] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [anon_sym_pub] = ACTIONS(3329), + [anon_sym_mut] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_QMARK] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_go] = ACTIONS(3329), + [anon_sym_spawn] = ACTIONS(3329), + [anon_sym_json_DOTdecode] = ACTIONS(3329), + [anon_sym_LBRACK2] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_LT_DASH] = ACTIONS(3329), + [anon_sym_LT_LT] = ACTIONS(3329), + [anon_sym_GT_GT] = ACTIONS(3329), + [anon_sym_GT_GT_GT] = ACTIONS(3329), + [anon_sym_AMP_CARET] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_or] = ACTIONS(3329), + [sym_none] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_nil] = ACTIONS(3329), + [anon_sym_QMARK_DOT] = ACTIONS(3329), + [anon_sym_POUND_LBRACK] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_DOLLARif] = ACTIONS(3329), + [anon_sym_is] = ACTIONS(3329), + [anon_sym_BANGis] = ACTIONS(3329), + [anon_sym_in] = ACTIONS(3329), + [anon_sym_BANGin] = ACTIONS(3329), + [anon_sym_match] = ACTIONS(3329), + [anon_sym_select] = ACTIONS(3329), + [anon_sym_STAR_EQ] = ACTIONS(3329), + [anon_sym_SLASH_EQ] = ACTIONS(3329), + [anon_sym_PERCENT_EQ] = ACTIONS(3329), + [anon_sym_LT_LT_EQ] = ACTIONS(3329), + [anon_sym_GT_GT_EQ] = ACTIONS(3329), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3329), + [anon_sym_AMP_EQ] = ACTIONS(3329), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3329), + [anon_sym_PLUS_EQ] = ACTIONS(3329), + [anon_sym_DASH_EQ] = ACTIONS(3329), + [anon_sym_PIPE_EQ] = ACTIONS(3329), + [anon_sym_CARET_EQ] = ACTIONS(3329), + [anon_sym_COLON_EQ] = ACTIONS(3329), + [anon_sym_lock] = ACTIONS(3329), + [anon_sym_rlock] = ACTIONS(3329), + [anon_sym_unsafe] = ACTIONS(3329), + [anon_sym_sql] = ACTIONS(3329), + [sym_int_literal] = ACTIONS(3329), + [sym_float_literal] = ACTIONS(3329), + [sym_rune_literal] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_shared] = ACTIONS(3329), + [anon_sym_map_LBRACK] = ACTIONS(3329), + [anon_sym_chan] = ACTIONS(3329), + [anon_sym_thread] = ACTIONS(3329), + [anon_sym_atomic] = ACTIONS(3329), + [anon_sym_assert] = ACTIONS(3329), + [anon_sym_defer] = ACTIONS(3329), + [anon_sym_goto] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_DOLLARfor] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_asm] = ACTIONS(3329), + [anon_sym_AT_LBRACK] = ACTIONS(3329), + [sym___double_quote] = ACTIONS(3329), + [sym___single_quote] = ACTIONS(3329), + [sym___c_double_quote] = ACTIONS(3329), + [sym___c_single_quote] = ACTIONS(3329), + [sym___r_double_quote] = ACTIONS(3329), + [sym___r_single_quote] = ACTIONS(3329), }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_identifier] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3151), - [anon_sym_CR] = ACTIONS(3151), - [anon_sym_CR_LF] = ACTIONS(3151), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_EQ] = ACTIONS(3151), - [anon_sym___global] = ACTIONS(3151), - [anon_sym_type] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_pub] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_interface] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_LT_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_GT_EQ] = ACTIONS(3151), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3151), - [anon_sym_AMP_EQ] = ACTIONS(3151), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3151), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_PIPE_EQ] = ACTIONS(3151), - [anon_sym_CARET_EQ] = ACTIONS(3151), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [anon_sym_assert] = ACTIONS(3151), - [anon_sym_defer] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_DOLLARfor] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_POUND] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym_AT_LBRACK] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), + [977] = { + [ts_builtin_sym_end] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3333), + [anon_sym_LF] = ACTIONS(3333), + [anon_sym_CR] = ACTIONS(3333), + [anon_sym_CR_LF] = ACTIONS(3333), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_as] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_COMMA] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_EQ] = ACTIONS(3333), + [anon_sym___global] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_PIPE] = ACTIONS(3333), + [anon_sym_fn] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_union] = ACTIONS(3333), + [anon_sym_pub] = ACTIONS(3333), + [anon_sym_mut] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_QMARK] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_go] = ACTIONS(3333), + [anon_sym_spawn] = ACTIONS(3333), + [anon_sym_json_DOTdecode] = ACTIONS(3333), + [anon_sym_LBRACK2] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_LT_DASH] = ACTIONS(3333), + [anon_sym_LT_LT] = ACTIONS(3333), + [anon_sym_GT_GT] = ACTIONS(3333), + [anon_sym_GT_GT_GT] = ACTIONS(3333), + [anon_sym_AMP_CARET] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3333), + [sym_none] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_nil] = ACTIONS(3333), + [anon_sym_QMARK_DOT] = ACTIONS(3333), + [anon_sym_POUND_LBRACK] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_DOLLARif] = ACTIONS(3333), + [anon_sym_is] = ACTIONS(3333), + [anon_sym_BANGis] = ACTIONS(3333), + [anon_sym_in] = ACTIONS(3333), + [anon_sym_BANGin] = ACTIONS(3333), + [anon_sym_match] = ACTIONS(3333), + [anon_sym_select] = ACTIONS(3333), + [anon_sym_STAR_EQ] = ACTIONS(3333), + [anon_sym_SLASH_EQ] = ACTIONS(3333), + [anon_sym_PERCENT_EQ] = ACTIONS(3333), + [anon_sym_LT_LT_EQ] = ACTIONS(3333), + [anon_sym_GT_GT_EQ] = ACTIONS(3333), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3333), + [anon_sym_AMP_EQ] = ACTIONS(3333), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3333), + [anon_sym_PLUS_EQ] = ACTIONS(3333), + [anon_sym_DASH_EQ] = ACTIONS(3333), + [anon_sym_PIPE_EQ] = ACTIONS(3333), + [anon_sym_CARET_EQ] = ACTIONS(3333), + [anon_sym_COLON_EQ] = ACTIONS(3333), + [anon_sym_lock] = ACTIONS(3333), + [anon_sym_rlock] = ACTIONS(3333), + [anon_sym_unsafe] = ACTIONS(3333), + [anon_sym_sql] = ACTIONS(3333), + [sym_int_literal] = ACTIONS(3333), + [sym_float_literal] = ACTIONS(3333), + [sym_rune_literal] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_shared] = ACTIONS(3333), + [anon_sym_map_LBRACK] = ACTIONS(3333), + [anon_sym_chan] = ACTIONS(3333), + [anon_sym_thread] = ACTIONS(3333), + [anon_sym_atomic] = ACTIONS(3333), + [anon_sym_assert] = ACTIONS(3333), + [anon_sym_defer] = ACTIONS(3333), + [anon_sym_goto] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_DOLLARfor] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_POUND] = ACTIONS(3333), + [anon_sym_asm] = ACTIONS(3333), + [anon_sym_AT_LBRACK] = ACTIONS(3333), + [sym___double_quote] = ACTIONS(3333), + [sym___single_quote] = ACTIONS(3333), + [sym___c_double_quote] = ACTIONS(3333), + [sym___c_single_quote] = ACTIONS(3333), + [sym___r_double_quote] = ACTIONS(3333), + [sym___r_single_quote] = ACTIONS(3333), }, - [948] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LF] = ACTIONS(3155), - [anon_sym_CR] = ACTIONS(3155), - [anon_sym_CR_LF] = ACTIONS(3155), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_EQ] = ACTIONS(3155), - [anon_sym___global] = ACTIONS(3155), - [anon_sym_type] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_pub] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_interface] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_LT_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_GT_EQ] = ACTIONS(3155), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3155), - [anon_sym_AMP_EQ] = ACTIONS(3155), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_PIPE_EQ] = ACTIONS(3155), - [anon_sym_CARET_EQ] = ACTIONS(3155), - [anon_sym_COLON_EQ] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [anon_sym_assert] = ACTIONS(3155), - [anon_sym_defer] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_DOLLARfor] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_POUND] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym_AT_LBRACK] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), + [978] = { + [ts_builtin_sym_end] = ACTIONS(3335), + [sym_identifier] = ACTIONS(3337), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_CR] = ACTIONS(3337), + [anon_sym_CR_LF] = ACTIONS(3337), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_as] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(3337), + [anon_sym___global] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3337), + [anon_sym_fn] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3337), + [anon_sym_union] = ACTIONS(3337), + [anon_sym_pub] = ACTIONS(3337), + [anon_sym_mut] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_go] = ACTIONS(3337), + [anon_sym_spawn] = ACTIONS(3337), + [anon_sym_json_DOTdecode] = ACTIONS(3337), + [anon_sym_LBRACK2] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_LT_DASH] = ACTIONS(3337), + [anon_sym_LT_LT] = ACTIONS(3337), + [anon_sym_GT_GT] = ACTIONS(3337), + [anon_sym_GT_GT_GT] = ACTIONS(3337), + [anon_sym_AMP_CARET] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_or] = ACTIONS(3337), + [sym_none] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_nil] = ACTIONS(3337), + [anon_sym_QMARK_DOT] = ACTIONS(3337), + [anon_sym_POUND_LBRACK] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_DOLLARif] = ACTIONS(3337), + [anon_sym_is] = ACTIONS(3337), + [anon_sym_BANGis] = ACTIONS(3337), + [anon_sym_in] = ACTIONS(3337), + [anon_sym_BANGin] = ACTIONS(3337), + [anon_sym_match] = ACTIONS(3337), + [anon_sym_select] = ACTIONS(3337), + [anon_sym_STAR_EQ] = ACTIONS(3337), + [anon_sym_SLASH_EQ] = ACTIONS(3337), + [anon_sym_PERCENT_EQ] = ACTIONS(3337), + [anon_sym_LT_LT_EQ] = ACTIONS(3337), + [anon_sym_GT_GT_EQ] = ACTIONS(3337), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3337), + [anon_sym_AMP_EQ] = ACTIONS(3337), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3337), + [anon_sym_PLUS_EQ] = ACTIONS(3337), + [anon_sym_DASH_EQ] = ACTIONS(3337), + [anon_sym_PIPE_EQ] = ACTIONS(3337), + [anon_sym_CARET_EQ] = ACTIONS(3337), + [anon_sym_COLON_EQ] = ACTIONS(3337), + [anon_sym_lock] = ACTIONS(3337), + [anon_sym_rlock] = ACTIONS(3337), + [anon_sym_unsafe] = ACTIONS(3337), + [anon_sym_sql] = ACTIONS(3337), + [sym_int_literal] = ACTIONS(3337), + [sym_float_literal] = ACTIONS(3337), + [sym_rune_literal] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_shared] = ACTIONS(3337), + [anon_sym_map_LBRACK] = ACTIONS(3337), + [anon_sym_chan] = ACTIONS(3337), + [anon_sym_thread] = ACTIONS(3337), + [anon_sym_atomic] = ACTIONS(3337), + [anon_sym_assert] = ACTIONS(3337), + [anon_sym_defer] = ACTIONS(3337), + [anon_sym_goto] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_DOLLARfor] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_asm] = ACTIONS(3337), + [anon_sym_AT_LBRACK] = ACTIONS(3337), + [sym___double_quote] = ACTIONS(3337), + [sym___single_quote] = ACTIONS(3337), + [sym___c_double_quote] = ACTIONS(3337), + [sym___c_single_quote] = ACTIONS(3337), + [sym___r_double_quote] = ACTIONS(3337), + [sym___r_single_quote] = ACTIONS(3337), }, - [949] = { - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3159), - [anon_sym_CR] = ACTIONS(3159), - [anon_sym_CR_LF] = ACTIONS(3159), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym___global] = ACTIONS(3159), - [anon_sym_type] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_pub] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_interface] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_LT_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_GT_EQ] = ACTIONS(3159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3159), - [anon_sym_AMP_EQ] = ACTIONS(3159), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_PIPE_EQ] = ACTIONS(3159), - [anon_sym_CARET_EQ] = ACTIONS(3159), - [anon_sym_COLON_EQ] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [anon_sym_assert] = ACTIONS(3159), - [anon_sym_defer] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_DOLLARfor] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_POUND] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym_AT_LBRACK] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), + [979] = { + [ts_builtin_sym_end] = ACTIONS(3339), + [sym_identifier] = ACTIONS(3341), + [anon_sym_LF] = ACTIONS(3341), + [anon_sym_CR] = ACTIONS(3341), + [anon_sym_CR_LF] = ACTIONS(3341), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3341), + [anon_sym_as] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_COMMA] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(3341), + [anon_sym___global] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_PIPE] = ACTIONS(3341), + [anon_sym_fn] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_struct] = ACTIONS(3341), + [anon_sym_union] = ACTIONS(3341), + [anon_sym_pub] = ACTIONS(3341), + [anon_sym_mut] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_QMARK] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_go] = ACTIONS(3341), + [anon_sym_spawn] = ACTIONS(3341), + [anon_sym_json_DOTdecode] = ACTIONS(3341), + [anon_sym_LBRACK2] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_LT_DASH] = ACTIONS(3341), + [anon_sym_LT_LT] = ACTIONS(3341), + [anon_sym_GT_GT] = ACTIONS(3341), + [anon_sym_GT_GT_GT] = ACTIONS(3341), + [anon_sym_AMP_CARET] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_or] = ACTIONS(3341), + [sym_none] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_nil] = ACTIONS(3341), + [anon_sym_QMARK_DOT] = ACTIONS(3341), + [anon_sym_POUND_LBRACK] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_DOLLARif] = ACTIONS(3341), + [anon_sym_is] = ACTIONS(3341), + [anon_sym_BANGis] = ACTIONS(3341), + [anon_sym_in] = ACTIONS(3341), + [anon_sym_BANGin] = ACTIONS(3341), + [anon_sym_match] = ACTIONS(3341), + [anon_sym_select] = ACTIONS(3341), + [anon_sym_STAR_EQ] = ACTIONS(3341), + [anon_sym_SLASH_EQ] = ACTIONS(3341), + [anon_sym_PERCENT_EQ] = ACTIONS(3341), + [anon_sym_LT_LT_EQ] = ACTIONS(3341), + [anon_sym_GT_GT_EQ] = ACTIONS(3341), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3341), + [anon_sym_AMP_EQ] = ACTIONS(3341), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3341), + [anon_sym_PLUS_EQ] = ACTIONS(3341), + [anon_sym_DASH_EQ] = ACTIONS(3341), + [anon_sym_PIPE_EQ] = ACTIONS(3341), + [anon_sym_CARET_EQ] = ACTIONS(3341), + [anon_sym_COLON_EQ] = ACTIONS(3341), + [anon_sym_lock] = ACTIONS(3341), + [anon_sym_rlock] = ACTIONS(3341), + [anon_sym_unsafe] = ACTIONS(3341), + [anon_sym_sql] = ACTIONS(3341), + [sym_int_literal] = ACTIONS(3341), + [sym_float_literal] = ACTIONS(3341), + [sym_rune_literal] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_shared] = ACTIONS(3341), + [anon_sym_map_LBRACK] = ACTIONS(3341), + [anon_sym_chan] = ACTIONS(3341), + [anon_sym_thread] = ACTIONS(3341), + [anon_sym_atomic] = ACTIONS(3341), + [anon_sym_assert] = ACTIONS(3341), + [anon_sym_defer] = ACTIONS(3341), + [anon_sym_goto] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_DOLLARfor] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_POUND] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3341), + [anon_sym_AT_LBRACK] = ACTIONS(3341), + [sym___double_quote] = ACTIONS(3341), + [sym___single_quote] = ACTIONS(3341), + [sym___c_double_quote] = ACTIONS(3341), + [sym___c_single_quote] = ACTIONS(3341), + [sym___r_double_quote] = ACTIONS(3341), + [sym___r_single_quote] = ACTIONS(3341), }, - [950] = { - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3163), - [anon_sym_LF] = ACTIONS(3163), - [anon_sym_CR] = ACTIONS(3163), - [anon_sym_CR_LF] = ACTIONS(3163), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym___global] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_pub] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_STAR_EQ] = ACTIONS(3163), - [anon_sym_SLASH_EQ] = ACTIONS(3163), - [anon_sym_PERCENT_EQ] = ACTIONS(3163), - [anon_sym_LT_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_GT_EQ] = ACTIONS(3163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3163), - [anon_sym_AMP_EQ] = ACTIONS(3163), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3163), - [anon_sym_PLUS_EQ] = ACTIONS(3163), - [anon_sym_DASH_EQ] = ACTIONS(3163), - [anon_sym_PIPE_EQ] = ACTIONS(3163), - [anon_sym_CARET_EQ] = ACTIONS(3163), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [anon_sym_assert] = ACTIONS(3163), - [anon_sym_defer] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_DOLLARfor] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym_AT_LBRACK] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), + [980] = { + [ts_builtin_sym_end] = ACTIONS(3343), + [sym_identifier] = ACTIONS(3345), + [anon_sym_LF] = ACTIONS(3345), + [anon_sym_CR] = ACTIONS(3345), + [anon_sym_CR_LF] = ACTIONS(3345), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3345), + [anon_sym_as] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_COMMA] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_EQ] = ACTIONS(3345), + [anon_sym___global] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_PIPE] = ACTIONS(3345), + [anon_sym_fn] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_PERCENT] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_GT] = ACTIONS(3345), + [anon_sym_EQ_EQ] = ACTIONS(3345), + [anon_sym_BANG_EQ] = ACTIONS(3345), + [anon_sym_LT_EQ] = ACTIONS(3345), + [anon_sym_GT_EQ] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3345), + [anon_sym_union] = ACTIONS(3345), + [anon_sym_pub] = ACTIONS(3345), + [anon_sym_mut] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_QMARK] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_go] = ACTIONS(3345), + [anon_sym_spawn] = ACTIONS(3345), + [anon_sym_json_DOTdecode] = ACTIONS(3345), + [anon_sym_LBRACK2] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_CARET] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_LT_DASH] = ACTIONS(3345), + [anon_sym_LT_LT] = ACTIONS(3345), + [anon_sym_GT_GT] = ACTIONS(3345), + [anon_sym_GT_GT_GT] = ACTIONS(3345), + [anon_sym_AMP_CARET] = ACTIONS(3345), + [anon_sym_AMP_AMP] = ACTIONS(3345), + [anon_sym_PIPE_PIPE] = ACTIONS(3345), + [anon_sym_or] = ACTIONS(3345), + [sym_none] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_nil] = ACTIONS(3345), + [anon_sym_QMARK_DOT] = ACTIONS(3345), + [anon_sym_POUND_LBRACK] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_DOLLARif] = ACTIONS(3345), + [anon_sym_is] = ACTIONS(3345), + [anon_sym_BANGis] = ACTIONS(3345), + [anon_sym_in] = ACTIONS(3345), + [anon_sym_BANGin] = ACTIONS(3345), + [anon_sym_match] = ACTIONS(3345), + [anon_sym_select] = ACTIONS(3345), + [anon_sym_STAR_EQ] = ACTIONS(3345), + [anon_sym_SLASH_EQ] = ACTIONS(3345), + [anon_sym_PERCENT_EQ] = ACTIONS(3345), + [anon_sym_LT_LT_EQ] = ACTIONS(3345), + [anon_sym_GT_GT_EQ] = ACTIONS(3345), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3345), + [anon_sym_AMP_EQ] = ACTIONS(3345), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3345), + [anon_sym_PLUS_EQ] = ACTIONS(3345), + [anon_sym_DASH_EQ] = ACTIONS(3345), + [anon_sym_PIPE_EQ] = ACTIONS(3345), + [anon_sym_CARET_EQ] = ACTIONS(3345), + [anon_sym_COLON_EQ] = ACTIONS(3345), + [anon_sym_lock] = ACTIONS(3345), + [anon_sym_rlock] = ACTIONS(3345), + [anon_sym_unsafe] = ACTIONS(3345), + [anon_sym_sql] = ACTIONS(3345), + [sym_int_literal] = ACTIONS(3345), + [sym_float_literal] = ACTIONS(3345), + [sym_rune_literal] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_shared] = ACTIONS(3345), + [anon_sym_map_LBRACK] = ACTIONS(3345), + [anon_sym_chan] = ACTIONS(3345), + [anon_sym_thread] = ACTIONS(3345), + [anon_sym_atomic] = ACTIONS(3345), + [anon_sym_assert] = ACTIONS(3345), + [anon_sym_defer] = ACTIONS(3345), + [anon_sym_goto] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_DOLLARfor] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_POUND] = ACTIONS(3345), + [anon_sym_asm] = ACTIONS(3345), + [anon_sym_AT_LBRACK] = ACTIONS(3345), + [sym___double_quote] = ACTIONS(3345), + [sym___single_quote] = ACTIONS(3345), + [sym___c_double_quote] = ACTIONS(3345), + [sym___c_single_quote] = ACTIONS(3345), + [sym___r_double_quote] = ACTIONS(3345), + [sym___r_single_quote] = ACTIONS(3345), }, - [951] = { - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3167), - [anon_sym_CR] = ACTIONS(3167), - [anon_sym_CR_LF] = ACTIONS(3167), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym___global] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_EQ_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_LT_EQ] = ACTIONS(3167), - [anon_sym_GT_EQ] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_union] = ACTIONS(3167), - [anon_sym_pub] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3167), - [anon_sym_GT_GT_GT] = ACTIONS(3167), - [anon_sym_AMP_CARET] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3167), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(3167), - [anon_sym_POUND_LBRACK] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3167), - [anon_sym_BANGis] = ACTIONS(3167), - [anon_sym_in] = ACTIONS(3167), - [anon_sym_BANGin] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_STAR_EQ] = ACTIONS(3167), - [anon_sym_SLASH_EQ] = ACTIONS(3167), - [anon_sym_PERCENT_EQ] = ACTIONS(3167), - [anon_sym_LT_LT_EQ] = ACTIONS(3167), - [anon_sym_GT_GT_EQ] = ACTIONS(3167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3167), - [anon_sym_AMP_EQ] = ACTIONS(3167), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3167), - [anon_sym_PLUS_EQ] = ACTIONS(3167), - [anon_sym_DASH_EQ] = ACTIONS(3167), - [anon_sym_PIPE_EQ] = ACTIONS(3167), - [anon_sym_CARET_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_defer] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_DOLLARfor] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_POUND] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym_AT_LBRACK] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), + [981] = { + [ts_builtin_sym_end] = ACTIONS(3347), + [sym_identifier] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_CR] = ACTIONS(3349), + [anon_sym_CR_LF] = ACTIONS(3349), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3349), + [anon_sym_as] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_COMMA] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(3349), + [anon_sym___global] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_fn] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_PERCENT] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_BANG_EQ] = ACTIONS(3349), + [anon_sym_LT_EQ] = ACTIONS(3349), + [anon_sym_GT_EQ] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3349), + [anon_sym_union] = ACTIONS(3349), + [anon_sym_pub] = ACTIONS(3349), + [anon_sym_mut] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_go] = ACTIONS(3349), + [anon_sym_spawn] = ACTIONS(3349), + [anon_sym_json_DOTdecode] = ACTIONS(3349), + [anon_sym_LBRACK2] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_GT_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_CARET] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_or] = ACTIONS(3349), + [sym_none] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_nil] = ACTIONS(3349), + [anon_sym_QMARK_DOT] = ACTIONS(3349), + [anon_sym_POUND_LBRACK] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_DOLLARif] = ACTIONS(3349), + [anon_sym_is] = ACTIONS(3349), + [anon_sym_BANGis] = ACTIONS(3349), + [anon_sym_in] = ACTIONS(3349), + [anon_sym_BANGin] = ACTIONS(3349), + [anon_sym_match] = ACTIONS(3349), + [anon_sym_select] = ACTIONS(3349), + [anon_sym_STAR_EQ] = ACTIONS(3349), + [anon_sym_SLASH_EQ] = ACTIONS(3349), + [anon_sym_PERCENT_EQ] = ACTIONS(3349), + [anon_sym_LT_LT_EQ] = ACTIONS(3349), + [anon_sym_GT_GT_EQ] = ACTIONS(3349), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3349), + [anon_sym_AMP_EQ] = ACTIONS(3349), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(3349), + [anon_sym_DASH_EQ] = ACTIONS(3349), + [anon_sym_PIPE_EQ] = ACTIONS(3349), + [anon_sym_CARET_EQ] = ACTIONS(3349), + [anon_sym_COLON_EQ] = ACTIONS(3349), + [anon_sym_lock] = ACTIONS(3349), + [anon_sym_rlock] = ACTIONS(3349), + [anon_sym_unsafe] = ACTIONS(3349), + [anon_sym_sql] = ACTIONS(3349), + [sym_int_literal] = ACTIONS(3349), + [sym_float_literal] = ACTIONS(3349), + [sym_rune_literal] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_shared] = ACTIONS(3349), + [anon_sym_map_LBRACK] = ACTIONS(3349), + [anon_sym_chan] = ACTIONS(3349), + [anon_sym_thread] = ACTIONS(3349), + [anon_sym_atomic] = ACTIONS(3349), + [anon_sym_assert] = ACTIONS(3349), + [anon_sym_defer] = ACTIONS(3349), + [anon_sym_goto] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_DOLLARfor] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_POUND] = ACTIONS(3349), + [anon_sym_asm] = ACTIONS(3349), + [anon_sym_AT_LBRACK] = ACTIONS(3349), + [sym___double_quote] = ACTIONS(3349), + [sym___single_quote] = ACTIONS(3349), + [sym___c_double_quote] = ACTIONS(3349), + [sym___c_single_quote] = ACTIONS(3349), + [sym___r_double_quote] = ACTIONS(3349), + [sym___r_single_quote] = ACTIONS(3349), }, - [952] = { - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LF] = ACTIONS(3171), - [anon_sym_CR] = ACTIONS(3171), - [anon_sym_CR_LF] = ACTIONS(3171), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_EQ] = ACTIONS(3171), - [anon_sym___global] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_pub] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_STAR_EQ] = ACTIONS(3171), - [anon_sym_SLASH_EQ] = ACTIONS(3171), - [anon_sym_PERCENT_EQ] = ACTIONS(3171), - [anon_sym_LT_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_GT_EQ] = ACTIONS(3171), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3171), - [anon_sym_AMP_EQ] = ACTIONS(3171), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3171), - [anon_sym_PLUS_EQ] = ACTIONS(3171), - [anon_sym_DASH_EQ] = ACTIONS(3171), - [anon_sym_PIPE_EQ] = ACTIONS(3171), - [anon_sym_CARET_EQ] = ACTIONS(3171), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [anon_sym_assert] = ACTIONS(3171), - [anon_sym_defer] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_DOLLARfor] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_POUND] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym_AT_LBRACK] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), + [982] = { + [sym_reference_expression] = STATE(4452), + [sym_type_reference_expression] = STATE(3413), + [sym_plain_type] = STATE(3451), + [sym__plain_type_without_special] = STATE(3455), + [sym_anon_struct_type] = STATE(3462), + [sym_multi_return_type] = STATE(3455), + [sym_result_type] = STATE(3455), + [sym_option_type] = STATE(3455), + [sym_qualified_type] = STATE(3413), + [sym_fixed_array_type] = STATE(3462), + [sym_array_type] = STATE(3462), + [sym_pointer_type] = STATE(3462), + [sym_wrong_pointer_type] = STATE(3462), + [sym_map_type] = STATE(3462), + [sym_channel_type] = STATE(3462), + [sym_shared_type] = STATE(3462), + [sym_thread_type] = STATE(3462), + [sym_atomic_type] = STATE(3462), + [sym_generic_type] = STATE(3462), + [sym_function_type] = STATE(3462), + [sym_identifier] = ACTIONS(3351), + [anon_sym_LF] = ACTIONS(2916), + [anon_sym_CR] = ACTIONS(2916), + [anon_sym_CR_LF] = ACTIONS(2916), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym___global] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(2916), + [anon_sym_COLON] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(3367), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(3369), + [anon_sym_map_LBRACK] = ACTIONS(3371), + [anon_sym_chan] = ACTIONS(3373), + [anon_sym_thread] = ACTIONS(3375), + [anon_sym_atomic] = ACTIONS(3377), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, - [953] = { - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LF] = ACTIONS(3175), - [anon_sym_CR] = ACTIONS(3175), - [anon_sym_CR_LF] = ACTIONS(3175), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym___global] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_pub] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_LT_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_GT_EQ] = ACTIONS(3175), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3175), - [anon_sym_AMP_EQ] = ACTIONS(3175), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3175), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_PIPE_EQ] = ACTIONS(3175), - [anon_sym_CARET_EQ] = ACTIONS(3175), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [anon_sym_assert] = ACTIONS(3175), - [anon_sym_defer] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_DOLLARfor] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_POUND] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym_AT_LBRACK] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), + [983] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [aux_sym_strictly_expression_list_repeat1] = STATE(1458), + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1868), + [anon_sym_CR] = ACTIONS(1868), + [anon_sym_CR_LF] = ACTIONS(1868), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_COMMA] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_pub] = ACTIONS(1868), + [anon_sym_mut] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(1868), + [anon_sym_spawn] = ACTIONS(1868), + [anon_sym_json_DOTdecode] = ACTIONS(1868), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(1868), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(1868), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_DOLLARif] = ACTIONS(1868), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_lock] = ACTIONS(1868), + [anon_sym_rlock] = ACTIONS(1868), + [anon_sym_unsafe] = ACTIONS(1868), + [anon_sym_sql] = ACTIONS(1868), + [sym_int_literal] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), + [sym_rune_literal] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1868), + [anon_sym_shared] = ACTIONS(1868), + [anon_sym_map_LBRACK] = ACTIONS(1868), + [anon_sym_chan] = ACTIONS(1868), + [anon_sym_thread] = ACTIONS(1868), + [anon_sym_atomic] = ACTIONS(1868), + [anon_sym_assert] = ACTIONS(1868), + [anon_sym_defer] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_DOLLARfor] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_asm] = ACTIONS(1868), + [anon_sym_AT_LBRACK] = ACTIONS(1868), + [sym___double_quote] = ACTIONS(1868), + [sym___single_quote] = ACTIONS(1868), + [sym___c_double_quote] = ACTIONS(1868), + [sym___c_single_quote] = ACTIONS(1868), + [sym___r_double_quote] = ACTIONS(1868), + [sym___r_single_quote] = ACTIONS(1868), }, - [954] = { - [ts_builtin_sym_end] = ACTIONS(3177), - [sym_identifier] = ACTIONS(3179), - [anon_sym_LF] = ACTIONS(3179), - [anon_sym_CR] = ACTIONS(3179), - [anon_sym_CR_LF] = ACTIONS(3179), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym___global] = ACTIONS(3179), - [anon_sym_type] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_pub] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_interface] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_STAR_EQ] = ACTIONS(3179), - [anon_sym_SLASH_EQ] = ACTIONS(3179), - [anon_sym_PERCENT_EQ] = ACTIONS(3179), - [anon_sym_LT_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_GT_EQ] = ACTIONS(3179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3179), - [anon_sym_AMP_EQ] = ACTIONS(3179), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3179), - [anon_sym_PLUS_EQ] = ACTIONS(3179), - [anon_sym_DASH_EQ] = ACTIONS(3179), - [anon_sym_PIPE_EQ] = ACTIONS(3179), - [anon_sym_CARET_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_defer] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_DOLLARfor] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym_AT_LBRACK] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), + [984] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_CR] = ACTIONS(2392), + [anon_sym_CR_LF] = ACTIONS(2392), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2392), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_union] = ACTIONS(2392), + [anon_sym_pub] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2392), + [anon_sym_spawn] = ACTIONS(2392), + [anon_sym_json_DOTdecode] = ACTIONS(2392), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_CARET] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [sym_none] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_nil] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_DOLLARif] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_BANGis] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_BANGin] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_select] = ACTIONS(2392), + [anon_sym_lock] = ACTIONS(2392), + [anon_sym_rlock] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_sql] = ACTIONS(2392), + [sym_int_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2392), + [sym_rune_literal] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_shared] = ACTIONS(2392), + [anon_sym_map_LBRACK] = ACTIONS(2392), + [anon_sym_chan] = ACTIONS(2392), + [anon_sym_thread] = ACTIONS(2392), + [anon_sym_atomic] = ACTIONS(2392), + [anon_sym_assert] = ACTIONS(2392), + [anon_sym_defer] = ACTIONS(2392), + [anon_sym_goto] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_DOLLARfor] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_asm] = ACTIONS(2392), + [anon_sym_AT_LBRACK] = ACTIONS(2392), + [sym___double_quote] = ACTIONS(2392), + [sym___single_quote] = ACTIONS(2392), + [sym___c_double_quote] = ACTIONS(2392), + [sym___c_single_quote] = ACTIONS(2392), + [sym___r_double_quote] = ACTIONS(2392), + [sym___r_single_quote] = ACTIONS(2392), }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_as] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_EQ] = ACTIONS(3183), - [anon_sym___global] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_PERCENT] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_EQ] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_pub] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_QMARK] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3183), - [anon_sym_GT_GT] = ACTIONS(3183), - [anon_sym_GT_GT_GT] = ACTIONS(3183), - [anon_sym_AMP_CARET] = ACTIONS(3183), - [anon_sym_AMP_AMP] = ACTIONS(3183), - [anon_sym_PIPE_PIPE] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(3183), - [anon_sym_POUND_LBRACK] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(3183), - [anon_sym_BANGis] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_BANGin] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_STAR_EQ] = ACTIONS(3183), - [anon_sym_SLASH_EQ] = ACTIONS(3183), - [anon_sym_PERCENT_EQ] = ACTIONS(3183), - [anon_sym_LT_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_GT_EQ] = ACTIONS(3183), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3183), - [anon_sym_AMP_EQ] = ACTIONS(3183), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3183), - [anon_sym_PLUS_EQ] = ACTIONS(3183), - [anon_sym_DASH_EQ] = ACTIONS(3183), - [anon_sym_PIPE_EQ] = ACTIONS(3183), - [anon_sym_CARET_EQ] = ACTIONS(3183), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [anon_sym_assert] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_DOLLARfor] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_POUND] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym_AT_LBRACK] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [985] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_CR] = ACTIONS(563), + [anon_sym_CR_LF] = ACTIONS(563), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_mut] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_go] = ACTIONS(563), + [anon_sym_spawn] = ACTIONS(563), + [anon_sym_json_DOTdecode] = ACTIONS(563), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_nil] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_DOLLARif] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_match] = ACTIONS(563), + [anon_sym_select] = ACTIONS(563), + [anon_sym_lock] = ACTIONS(563), + [anon_sym_rlock] = ACTIONS(563), + [anon_sym_unsafe] = ACTIONS(563), + [anon_sym_sql] = ACTIONS(563), + [sym_int_literal] = ACTIONS(563), + [sym_float_literal] = ACTIONS(563), + [sym_rune_literal] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(563), + [sym___single_quote] = ACTIONS(563), + [sym___c_double_quote] = ACTIONS(563), + [sym___c_single_quote] = ACTIONS(563), + [sym___r_double_quote] = ACTIONS(563), + [sym___r_single_quote] = ACTIONS(563), }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym___global] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_union] = ACTIONS(3187), - [anon_sym_pub] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_LT_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_GT_EQ] = ACTIONS(3187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3187), - [anon_sym_AMP_EQ] = ACTIONS(3187), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3187), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_PIPE_EQ] = ACTIONS(3187), - [anon_sym_CARET_EQ] = ACTIONS(3187), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [anon_sym_assert] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_DOLLARfor] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_POUND] = ACTIONS(3187), - [anon_sym_asm] = ACTIONS(3187), - [anon_sym_AT_LBRACK] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [986] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2268), + [sym_identifier] = ACTIONS(2270), + [anon_sym_LF] = ACTIONS(2270), + [anon_sym_CR] = ACTIONS(2270), + [anon_sym_CR_LF] = ACTIONS(2270), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2270), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_pub] = ACTIONS(2270), + [anon_sym_mut] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_interface] = ACTIONS(2270), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2270), + [anon_sym_spawn] = ACTIONS(2270), + [anon_sym_json_DOTdecode] = ACTIONS(2270), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2270), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2270), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(2270), + [sym_true] = ACTIONS(2270), + [sym_false] = ACTIONS(2270), + [sym_nil] = ACTIONS(2270), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_DOLLARif] = ACTIONS(2270), + [anon_sym_is] = ACTIONS(3423), + [anon_sym_BANGis] = ACTIONS(3425), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_select] = ACTIONS(2270), + [anon_sym_lock] = ACTIONS(2270), + [anon_sym_rlock] = ACTIONS(2270), + [anon_sym_unsafe] = ACTIONS(2270), + [anon_sym_sql] = ACTIONS(2270), + [sym_int_literal] = ACTIONS(2270), + [sym_float_literal] = ACTIONS(2270), + [sym_rune_literal] = ACTIONS(2270), + [anon_sym_AT] = ACTIONS(2270), + [anon_sym_shared] = ACTIONS(2270), + [anon_sym_map_LBRACK] = ACTIONS(2270), + [anon_sym_chan] = ACTIONS(2270), + [anon_sym_thread] = ACTIONS(2270), + [anon_sym_atomic] = ACTIONS(2270), + [anon_sym_assert] = ACTIONS(2270), + [anon_sym_defer] = ACTIONS(2270), + [anon_sym_goto] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_DOLLARfor] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(2270), + [anon_sym_asm] = ACTIONS(2270), + [anon_sym_AT_LBRACK] = ACTIONS(2270), + [sym___double_quote] = ACTIONS(2270), + [sym___single_quote] = ACTIONS(2270), + [sym___c_double_quote] = ACTIONS(2270), + [sym___c_single_quote] = ACTIONS(2270), + [sym___r_double_quote] = ACTIONS(2270), + [sym___r_single_quote] = ACTIONS(2270), }, - [957] = { - [ts_builtin_sym_end] = ACTIONS(3189), - [sym_identifier] = ACTIONS(3191), - [anon_sym_LF] = ACTIONS(3191), - [anon_sym_CR] = ACTIONS(3191), - [anon_sym_CR_LF] = ACTIONS(3191), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_EQ] = ACTIONS(3191), - [anon_sym___global] = ACTIONS(3191), - [anon_sym_type] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3191), - [anon_sym_fn] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_PERCENT] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_pub] = ACTIONS(3191), - [anon_sym_mut] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_go] = ACTIONS(3191), - [anon_sym_spawn] = ACTIONS(3191), - [anon_sym_json_DOTdecode] = ACTIONS(3191), - [anon_sym_LBRACK2] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_DASH] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3191), - [anon_sym_GT_GT] = ACTIONS(3191), - [anon_sym_GT_GT_GT] = ACTIONS(3191), - [anon_sym_AMP_CARET] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3191), - [sym_none] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_nil] = ACTIONS(3191), - [anon_sym_QMARK_DOT] = ACTIONS(3191), - [anon_sym_POUND_LBRACK] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_DOLLARif] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3191), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_LT_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_GT_EQ] = ACTIONS(3191), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3191), - [anon_sym_AMP_EQ] = ACTIONS(3191), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3191), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_PIPE_EQ] = ACTIONS(3191), - [anon_sym_CARET_EQ] = ACTIONS(3191), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_rlock] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_sql] = ACTIONS(3191), - [sym_int_literal] = ACTIONS(3191), - [sym_float_literal] = ACTIONS(3191), - [sym_rune_literal] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [anon_sym_assert] = ACTIONS(3191), - [anon_sym_defer] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_DOLLARfor] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_POUND] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym_AT_LBRACK] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), + [987] = { + [sym_reference_expression] = STATE(4522), + [sym_type_reference_expression] = STATE(1182), + [sym_plain_type] = STATE(1204), + [sym__plain_type_without_special] = STATE(1264), + [sym_anon_struct_type] = STATE(1200), + [sym_multi_return_type] = STATE(1264), + [sym_result_type] = STATE(1264), + [sym_option_type] = STATE(1264), + [sym_qualified_type] = STATE(1182), + [sym_fixed_array_type] = STATE(1200), + [sym_array_type] = STATE(1200), + [sym_pointer_type] = STATE(1200), + [sym_wrong_pointer_type] = STATE(1200), + [sym_map_type] = STATE(1200), + [sym_channel_type] = STATE(1200), + [sym_shared_type] = STATE(1200), + [sym_thread_type] = STATE(1200), + [sym_atomic_type] = STATE(1200), + [sym_generic_type] = STATE(1200), + [sym_function_type] = STATE(1200), + [sym_identifier] = ACTIONS(3427), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3433), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3435), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3445), + [anon_sym_map_LBRACK] = ACTIONS(3447), + [anon_sym_chan] = ACTIONS(3449), + [anon_sym_thread] = ACTIONS(3451), + [anon_sym_atomic] = ACTIONS(3453), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), }, - [958] = { - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym___global] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_pub] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_LT_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_GT_EQ] = ACTIONS(3195), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3195), - [anon_sym_AMP_EQ] = ACTIONS(3195), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3195), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_PIPE_EQ] = ACTIONS(3195), - [anon_sym_CARET_EQ] = ACTIONS(3195), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_DOLLARfor] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_POUND] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym_AT_LBRACK] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), + [988] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(619), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(619), + [anon_sym_map_LBRACK] = ACTIONS(619), + [anon_sym_chan] = ACTIONS(619), + [anon_sym_thread] = ACTIONS(619), + [anon_sym_atomic] = ACTIONS(619), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym___global] = ACTIONS(3199), - [anon_sym_type] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_pub] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_STAR_EQ] = ACTIONS(3199), - [anon_sym_SLASH_EQ] = ACTIONS(3199), - [anon_sym_PERCENT_EQ] = ACTIONS(3199), - [anon_sym_LT_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_GT_EQ] = ACTIONS(3199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3199), - [anon_sym_AMP_EQ] = ACTIONS(3199), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3199), - [anon_sym_PLUS_EQ] = ACTIONS(3199), - [anon_sym_DASH_EQ] = ACTIONS(3199), - [anon_sym_PIPE_EQ] = ACTIONS(3199), - [anon_sym_CARET_EQ] = ACTIONS(3199), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [anon_sym_AT] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [anon_sym_assert] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_DOLLARfor] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym_AT_LBRACK] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [989] = { + [sym_reference_expression] = STATE(4522), + [sym_type_reference_expression] = STATE(1182), + [sym_plain_type] = STATE(1217), + [sym__plain_type_without_special] = STATE(1264), + [sym_anon_struct_type] = STATE(1200), + [sym_multi_return_type] = STATE(1264), + [sym_result_type] = STATE(1264), + [sym_option_type] = STATE(1264), + [sym_qualified_type] = STATE(1182), + [sym_fixed_array_type] = STATE(1200), + [sym_array_type] = STATE(1200), + [sym_pointer_type] = STATE(1200), + [sym_wrong_pointer_type] = STATE(1200), + [sym_map_type] = STATE(1200), + [sym_channel_type] = STATE(1200), + [sym_shared_type] = STATE(1200), + [sym_thread_type] = STATE(1200), + [sym_atomic_type] = STATE(1200), + [sym_generic_type] = STATE(1200), + [sym_function_type] = STATE(1200), + [sym_identifier] = ACTIONS(3427), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3433), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3435), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(3445), + [anon_sym_map_LBRACK] = ACTIONS(3447), + [anon_sym_chan] = ACTIONS(3449), + [anon_sym_thread] = ACTIONS(3451), + [anon_sym_atomic] = ACTIONS(3453), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), }, - [960] = { - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_EQ] = ACTIONS(3203), - [anon_sym___global] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_pub] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_STAR_EQ] = ACTIONS(3203), - [anon_sym_SLASH_EQ] = ACTIONS(3203), - [anon_sym_PERCENT_EQ] = ACTIONS(3203), - [anon_sym_LT_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_GT_EQ] = ACTIONS(3203), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3203), - [anon_sym_AMP_EQ] = ACTIONS(3203), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3203), - [anon_sym_PLUS_EQ] = ACTIONS(3203), - [anon_sym_DASH_EQ] = ACTIONS(3203), - [anon_sym_PIPE_EQ] = ACTIONS(3203), - [anon_sym_CARET_EQ] = ACTIONS(3203), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [anon_sym_assert] = ACTIONS(3203), - [anon_sym_defer] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_DOLLARfor] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_POUND] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym_AT_LBRACK] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [990] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [961] = { - [sym_reference_expression] = STATE(4425), - [sym_type_reference_expression] = STATE(3388), - [sym_plain_type] = STATE(3421), - [sym__plain_type_without_special] = STATE(3431), - [sym_anon_struct_type] = STATE(3438), - [sym_multi_return_type] = STATE(3431), - [sym_result_type] = STATE(3431), - [sym_option_type] = STATE(3431), - [sym_qualified_type] = STATE(3388), - [sym_fixed_array_type] = STATE(3438), - [sym_array_type] = STATE(3438), - [sym_pointer_type] = STATE(3438), - [sym_wrong_pointer_type] = STATE(3438), - [sym_map_type] = STATE(3438), - [sym_channel_type] = STATE(3438), - [sym_shared_type] = STATE(3438), - [sym_thread_type] = STATE(3438), - [sym_atomic_type] = STATE(3438), - [sym_generic_type] = STATE(3438), - [sym_function_type] = STATE(3438), - [sym_identifier] = ACTIONS(3205), - [anon_sym_LF] = ACTIONS(2742), - [anon_sym_CR] = ACTIONS(2742), - [anon_sym_CR_LF] = ACTIONS(2742), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(3213), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2742), - [anon_sym_COLON] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(3221), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3225), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3229), - [anon_sym_atomic] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [991] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [962] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [aux_sym_strictly_expression_list_repeat1] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(1780), - [anon_sym_LF] = ACTIONS(1780), - [anon_sym_CR] = ACTIONS(1780), - [anon_sym_CR_LF] = ACTIONS(1780), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_mut] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_interface] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(1780), - [anon_sym_spawn] = ACTIONS(1780), - [anon_sym_json_DOTdecode] = ACTIONS(1780), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(1780), - [sym_true] = ACTIONS(1780), - [sym_false] = ACTIONS(1780), - [sym_nil] = ACTIONS(1780), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_DOLLARif] = ACTIONS(1780), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_select] = ACTIONS(1780), - [anon_sym_lock] = ACTIONS(1780), - [anon_sym_rlock] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_sql] = ACTIONS(1780), - [sym_int_literal] = ACTIONS(1780), - [sym_float_literal] = ACTIONS(1780), - [sym_rune_literal] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_shared] = ACTIONS(1780), - [anon_sym_map_LBRACK] = ACTIONS(1780), - [anon_sym_chan] = ACTIONS(1780), - [anon_sym_thread] = ACTIONS(1780), - [anon_sym_atomic] = ACTIONS(1780), - [anon_sym_assert] = ACTIONS(1780), - [anon_sym_defer] = ACTIONS(1780), - [anon_sym_goto] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_DOLLARfor] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_asm] = ACTIONS(1780), - [anon_sym_AT_LBRACK] = ACTIONS(1780), - [sym___double_quote] = ACTIONS(1780), - [sym___single_quote] = ACTIONS(1780), - [sym___c_double_quote] = ACTIONS(1780), - [sym___c_single_quote] = ACTIONS(1780), - [sym___r_double_quote] = ACTIONS(1780), - [sym___r_single_quote] = ACTIONS(1780), + [992] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2314), + [anon_sym_LF] = ACTIONS(2314), + [anon_sym_CR] = ACTIONS(2314), + [anon_sym_CR_LF] = ACTIONS(2314), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_fn] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2314), + [anon_sym_GT_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2314), + [anon_sym_union] = ACTIONS(2314), + [anon_sym_pub] = ACTIONS(2314), + [anon_sym_mut] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_interface] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2314), + [anon_sym_spawn] = ACTIONS(2314), + [anon_sym_json_DOTdecode] = ACTIONS(2314), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_LT_DASH] = ACTIONS(2314), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2314), + [anon_sym_AMP_CARET] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_or] = ACTIONS(2314), + [sym_none] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_nil] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_DOLLARif] = ACTIONS(2314), + [anon_sym_is] = ACTIONS(2314), + [anon_sym_BANGis] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_BANGin] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_select] = ACTIONS(2314), + [anon_sym_lock] = ACTIONS(2314), + [anon_sym_rlock] = ACTIONS(2314), + [anon_sym_unsafe] = ACTIONS(2314), + [anon_sym_sql] = ACTIONS(2314), + [sym_int_literal] = ACTIONS(2314), + [sym_float_literal] = ACTIONS(2314), + [sym_rune_literal] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_shared] = ACTIONS(2314), + [anon_sym_map_LBRACK] = ACTIONS(2314), + [anon_sym_chan] = ACTIONS(2314), + [anon_sym_thread] = ACTIONS(2314), + [anon_sym_atomic] = ACTIONS(2314), + [anon_sym_assert] = ACTIONS(2314), + [anon_sym_defer] = ACTIONS(2314), + [anon_sym_goto] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_DOLLARfor] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [anon_sym_asm] = ACTIONS(2314), + [anon_sym_AT_LBRACK] = ACTIONS(2314), + [sym___double_quote] = ACTIONS(2314), + [sym___single_quote] = ACTIONS(2314), + [sym___c_double_quote] = ACTIONS(2314), + [sym___c_single_quote] = ACTIONS(2314), + [sym___r_double_quote] = ACTIONS(2314), + [sym___r_single_quote] = ACTIONS(2314), }, - [963] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LF] = ACTIONS(2144), - [anon_sym_CR] = ACTIONS(2144), - [anon_sym_CR_LF] = ACTIONS(2144), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_interface] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2144), - [anon_sym_spawn] = ACTIONS(2144), - [anon_sym_json_DOTdecode] = ACTIONS(2144), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_or] = ACTIONS(2144), - [sym_none] = ACTIONS(2144), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_nil] = ACTIONS(2144), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_DOLLARif] = ACTIONS(2144), - [anon_sym_is] = ACTIONS(2144), - [anon_sym_BANGis] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_BANGin] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_select] = ACTIONS(2144), - [anon_sym_lock] = ACTIONS(2144), - [anon_sym_rlock] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_sql] = ACTIONS(2144), - [sym_int_literal] = ACTIONS(2144), - [sym_float_literal] = ACTIONS(2144), - [sym_rune_literal] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_shared] = ACTIONS(2144), - [anon_sym_map_LBRACK] = ACTIONS(2144), - [anon_sym_chan] = ACTIONS(2144), - [anon_sym_thread] = ACTIONS(2144), - [anon_sym_atomic] = ACTIONS(2144), - [anon_sym_assert] = ACTIONS(2144), - [anon_sym_defer] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_DOLLARfor] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym_AT_LBRACK] = ACTIONS(2144), - [sym___double_quote] = ACTIONS(2144), - [sym___single_quote] = ACTIONS(2144), - [sym___c_double_quote] = ACTIONS(2144), - [sym___c_single_quote] = ACTIONS(2144), - [sym___r_double_quote] = ACTIONS(2144), - [sym___r_single_quote] = ACTIONS(2144), + [993] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3457), + [anon_sym_LF] = ACTIONS(3457), + [anon_sym_CR] = ACTIONS(3457), + [anon_sym_CR_LF] = ACTIONS(3457), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_COMMA] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(3457), + [anon_sym_type] = ACTIONS(3457), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_union] = ACTIONS(3457), + [anon_sym_pub] = ACTIONS(3457), + [anon_sym_mut] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_interface] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(3457), + [anon_sym_spawn] = ACTIONS(3457), + [anon_sym_json_DOTdecode] = ACTIONS(3457), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(3457), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(3457), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [sym_nil] = ACTIONS(3457), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_DOLLARif] = ACTIONS(3457), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(3457), + [anon_sym_select] = ACTIONS(3457), + [anon_sym_lock] = ACTIONS(3457), + [anon_sym_rlock] = ACTIONS(3457), + [anon_sym_unsafe] = ACTIONS(3457), + [anon_sym_sql] = ACTIONS(3457), + [sym_int_literal] = ACTIONS(3457), + [sym_float_literal] = ACTIONS(3457), + [sym_rune_literal] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_shared] = ACTIONS(3457), + [anon_sym_map_LBRACK] = ACTIONS(3457), + [anon_sym_chan] = ACTIONS(3457), + [anon_sym_thread] = ACTIONS(3457), + [anon_sym_atomic] = ACTIONS(3457), + [anon_sym_assert] = ACTIONS(3457), + [anon_sym_defer] = ACTIONS(3457), + [anon_sym_goto] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_DOLLARfor] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_POUND] = ACTIONS(3457), + [anon_sym_asm] = ACTIONS(3457), + [anon_sym_AT_LBRACK] = ACTIONS(3457), + [sym___double_quote] = ACTIONS(3457), + [sym___single_quote] = ACTIONS(3457), + [sym___c_double_quote] = ACTIONS(3457), + [sym___c_single_quote] = ACTIONS(3457), + [sym___r_double_quote] = ACTIONS(3457), + [sym___r_single_quote] = ACTIONS(3457), }, - [964] = { - [sym_reference_expression] = STATE(4511), - [sym_type_reference_expression] = STATE(1167), - [sym_plain_type] = STATE(1227), - [sym__plain_type_without_special] = STATE(1254), - [sym_anon_struct_type] = STATE(1255), - [sym_multi_return_type] = STATE(1254), - [sym_result_type] = STATE(1254), - [sym_option_type] = STATE(1254), - [sym_qualified_type] = STATE(1167), - [sym_fixed_array_type] = STATE(1255), - [sym_array_type] = STATE(1255), - [sym_pointer_type] = STATE(1255), - [sym_wrong_pointer_type] = STATE(1255), - [sym_map_type] = STATE(1255), - [sym_channel_type] = STATE(1255), - [sym_shared_type] = STATE(1255), - [sym_thread_type] = STATE(1255), - [sym_atomic_type] = STATE(1255), - [sym_generic_type] = STATE(1255), - [sym_function_type] = STATE(1255), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(621), - [anon_sym_spawn] = ACTIONS(621), - [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_nil] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_if] = ACTIONS(621), - [anon_sym_DOLLARif] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_match] = ACTIONS(621), - [anon_sym_select] = ACTIONS(621), - [anon_sym_lock] = ACTIONS(621), - [anon_sym_rlock] = ACTIONS(621), - [anon_sym_unsafe] = ACTIONS(621), - [anon_sym_sql] = ACTIONS(621), - [sym_int_literal] = ACTIONS(621), - [sym_float_literal] = ACTIONS(621), - [sym_rune_literal] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3293), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3297), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3301), - [sym___double_quote] = ACTIONS(621), - [sym___single_quote] = ACTIONS(621), - [sym___c_double_quote] = ACTIONS(621), - [sym___c_single_quote] = ACTIONS(621), - [sym___r_double_quote] = ACTIONS(621), - [sym___r_single_quote] = ACTIONS(621), + [994] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2346), + [anon_sym_LF] = ACTIONS(2346), + [anon_sym_CR] = ACTIONS(2346), + [anon_sym_CR_LF] = ACTIONS(2346), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_COMMA] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2346), + [anon_sym_BANG_EQ] = ACTIONS(2346), + [anon_sym_LT_EQ] = ACTIONS(2346), + [anon_sym_GT_EQ] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_pub] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_interface] = ACTIONS(2346), + [anon_sym_PLUS_PLUS] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2346), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2346), + [anon_sym_spawn] = ACTIONS(2346), + [anon_sym_json_DOTdecode] = ACTIONS(2346), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(2346), + [anon_sym_PIPE_PIPE] = ACTIONS(2346), + [anon_sym_or] = ACTIONS(2346), + [sym_none] = ACTIONS(2346), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_nil] = ACTIONS(2346), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_DOLLARif] = ACTIONS(2346), + [anon_sym_is] = ACTIONS(2346), + [anon_sym_BANGis] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_BANGin] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_select] = ACTIONS(2346), + [anon_sym_lock] = ACTIONS(2346), + [anon_sym_rlock] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2346), + [sym_int_literal] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2346), + [sym_rune_literal] = ACTIONS(2346), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_shared] = ACTIONS(2346), + [anon_sym_map_LBRACK] = ACTIONS(2346), + [anon_sym_chan] = ACTIONS(2346), + [anon_sym_thread] = ACTIONS(2346), + [anon_sym_atomic] = ACTIONS(2346), + [anon_sym_assert] = ACTIONS(2346), + [anon_sym_defer] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_DOLLARfor] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym_AT_LBRACK] = ACTIONS(2346), + [sym___double_quote] = ACTIONS(2346), + [sym___single_quote] = ACTIONS(2346), + [sym___c_double_quote] = ACTIONS(2346), + [sym___c_single_quote] = ACTIONS(2346), + [sym___r_double_quote] = ACTIONS(2346), + [sym___r_single_quote] = ACTIONS(2346), }, - [965] = { - [sym_reference_expression] = STATE(4511), - [sym_type_reference_expression] = STATE(1167), - [sym_plain_type] = STATE(1231), - [sym__plain_type_without_special] = STATE(1254), - [sym_anon_struct_type] = STATE(1255), - [sym_multi_return_type] = STATE(1254), - [sym_result_type] = STATE(1254), - [sym_option_type] = STATE(1254), - [sym_qualified_type] = STATE(1167), - [sym_fixed_array_type] = STATE(1255), - [sym_array_type] = STATE(1255), - [sym_pointer_type] = STATE(1255), - [sym_wrong_pointer_type] = STATE(1255), - [sym_map_type] = STATE(1255), - [sym_channel_type] = STATE(1255), - [sym_shared_type] = STATE(1255), - [sym_thread_type] = STATE(1255), - [sym_atomic_type] = STATE(1255), - [sym_generic_type] = STATE(1255), - [sym_function_type] = STATE(1255), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(613), - [anon_sym_spawn] = ACTIONS(613), - [anon_sym_json_DOTdecode] = ACTIONS(613), - [anon_sym_LBRACK2] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(613), - [sym_none] = ACTIONS(613), - [sym_true] = ACTIONS(613), - [sym_false] = ACTIONS(613), - [sym_nil] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_if] = ACTIONS(613), - [anon_sym_DOLLARif] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_match] = ACTIONS(613), - [anon_sym_select] = ACTIONS(613), - [anon_sym_lock] = ACTIONS(613), - [anon_sym_rlock] = ACTIONS(613), - [anon_sym_unsafe] = ACTIONS(613), - [anon_sym_sql] = ACTIONS(613), - [sym_int_literal] = ACTIONS(613), - [sym_float_literal] = ACTIONS(613), - [sym_rune_literal] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3293), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3297), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3301), - [sym___double_quote] = ACTIONS(613), - [sym___single_quote] = ACTIONS(613), - [sym___c_double_quote] = ACTIONS(613), - [sym___c_single_quote] = ACTIONS(613), - [sym___r_double_quote] = ACTIONS(613), - [sym___r_single_quote] = ACTIONS(613), + [995] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_LF] = ACTIONS(2220), + [anon_sym_CR] = ACTIONS(2220), + [anon_sym_CR_LF] = ACTIONS(2220), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_COMMA] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2220), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_pub] = ACTIONS(2220), + [anon_sym_mut] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_interface] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2220), + [anon_sym_spawn] = ACTIONS(2220), + [anon_sym_json_DOTdecode] = ACTIONS(2220), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_nil] = ACTIONS(2220), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_DOLLARif] = ACTIONS(2220), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_select] = ACTIONS(2220), + [anon_sym_lock] = ACTIONS(2220), + [anon_sym_rlock] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_sql] = ACTIONS(2220), + [sym_int_literal] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), + [sym_rune_literal] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2220), + [anon_sym_shared] = ACTIONS(2220), + [anon_sym_map_LBRACK] = ACTIONS(2220), + [anon_sym_chan] = ACTIONS(2220), + [anon_sym_thread] = ACTIONS(2220), + [anon_sym_atomic] = ACTIONS(2220), + [anon_sym_assert] = ACTIONS(2220), + [anon_sym_defer] = ACTIONS(2220), + [anon_sym_goto] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_DOLLARfor] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_asm] = ACTIONS(2220), + [anon_sym_AT_LBRACK] = ACTIONS(2220), + [sym___double_quote] = ACTIONS(2220), + [sym___single_quote] = ACTIONS(2220), + [sym___c_double_quote] = ACTIONS(2220), + [sym___c_single_quote] = ACTIONS(2220), + [sym___r_double_quote] = ACTIONS(2220), + [sym___r_single_quote] = ACTIONS(2220), }, - [966] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2172), - [anon_sym_LF] = ACTIONS(2172), - [anon_sym_CR] = ACTIONS(2172), - [anon_sym_CR_LF] = ACTIONS(2172), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_const] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2172), - [anon_sym_type] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2172), - [anon_sym_union] = ACTIONS(2172), - [anon_sym_pub] = ACTIONS(2172), - [anon_sym_mut] = ACTIONS(2172), - [anon_sym_enum] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2172), - [anon_sym_spawn] = ACTIONS(2172), - [anon_sym_json_DOTdecode] = ACTIONS(2172), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(2172), - [sym_true] = ACTIONS(2172), - [sym_false] = ACTIONS(2172), - [sym_nil] = ACTIONS(2172), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_DOLLARif] = ACTIONS(2172), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_BANGis] = ACTIONS(3305), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(2172), - [anon_sym_select] = ACTIONS(2172), - [anon_sym_lock] = ACTIONS(2172), - [anon_sym_rlock] = ACTIONS(2172), - [anon_sym_unsafe] = ACTIONS(2172), - [anon_sym_sql] = ACTIONS(2172), - [sym_int_literal] = ACTIONS(2172), - [sym_float_literal] = ACTIONS(2172), - [sym_rune_literal] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_shared] = ACTIONS(2172), - [anon_sym_map_LBRACK] = ACTIONS(2172), - [anon_sym_chan] = ACTIONS(2172), - [anon_sym_thread] = ACTIONS(2172), - [anon_sym_atomic] = ACTIONS(2172), - [anon_sym_assert] = ACTIONS(2172), - [anon_sym_defer] = ACTIONS(2172), - [anon_sym_goto] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_DOLLARfor] = ACTIONS(2172), - [anon_sym_for] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_asm] = ACTIONS(2172), - [anon_sym_AT_LBRACK] = ACTIONS(2172), - [sym___double_quote] = ACTIONS(2172), - [sym___single_quote] = ACTIONS(2172), - [sym___c_double_quote] = ACTIONS(2172), - [sym___c_single_quote] = ACTIONS(2172), - [sym___r_double_quote] = ACTIONS(2172), - [sym___r_single_quote] = ACTIONS(2172), + [996] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_CR] = ACTIONS(2234), + [anon_sym_CR_LF] = ACTIONS(2234), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + [sym_rune_literal] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2234), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [anon_sym_assert] = ACTIONS(2234), + [anon_sym_defer] = ACTIONS(2234), + [anon_sym_goto] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_DOLLARfor] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_asm] = ACTIONS(2234), + [anon_sym_AT_LBRACK] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2234), + [sym___single_quote] = ACTIONS(2234), + [sym___c_double_quote] = ACTIONS(2234), + [sym___c_single_quote] = ACTIONS(2234), + [sym___r_double_quote] = ACTIONS(2234), + [sym___r_single_quote] = ACTIONS(2234), }, - [967] = { - [sym_reference_expression] = STATE(4511), - [sym_type_reference_expression] = STATE(1167), - [sym_plain_type] = STATE(1261), - [sym__plain_type_without_special] = STATE(1254), - [sym_anon_struct_type] = STATE(1255), - [sym_multi_return_type] = STATE(1254), - [sym_result_type] = STATE(1254), - [sym_option_type] = STATE(1254), - [sym_qualified_type] = STATE(1167), - [sym_fixed_array_type] = STATE(1255), - [sym_array_type] = STATE(1255), - [sym_pointer_type] = STATE(1255), - [sym_wrong_pointer_type] = STATE(1255), - [sym_map_type] = STATE(1255), - [sym_channel_type] = STATE(1255), - [sym_shared_type] = STATE(1255), - [sym_thread_type] = STATE(1255), - [sym_atomic_type] = STATE(1255), - [sym_generic_type] = STATE(1255), - [sym_function_type] = STATE(1255), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(561), - [anon_sym_spawn] = ACTIONS(561), - [anon_sym_json_DOTdecode] = ACTIONS(561), - [anon_sym_LBRACK2] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_or] = ACTIONS(561), - [sym_none] = ACTIONS(561), - [sym_true] = ACTIONS(561), - [sym_false] = ACTIONS(561), - [sym_nil] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(561), - [anon_sym_POUND_LBRACK] = ACTIONS(561), - [anon_sym_if] = ACTIONS(561), - [anon_sym_DOLLARif] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(561), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(561), - [anon_sym_match] = ACTIONS(561), - [anon_sym_select] = ACTIONS(561), - [anon_sym_lock] = ACTIONS(561), - [anon_sym_rlock] = ACTIONS(561), - [anon_sym_unsafe] = ACTIONS(561), - [anon_sym_sql] = ACTIONS(561), - [sym_int_literal] = ACTIONS(561), - [sym_float_literal] = ACTIONS(561), - [sym_rune_literal] = ACTIONS(561), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(3293), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3297), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3301), - [sym___double_quote] = ACTIONS(561), - [sym___single_quote] = ACTIONS(561), - [sym___c_double_quote] = ACTIONS(561), - [sym___c_single_quote] = ACTIONS(561), - [sym___r_double_quote] = ACTIONS(561), - [sym___r_single_quote] = ACTIONS(561), + [997] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [968] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [998] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_CR] = ACTIONS(2342), + [anon_sym_CR_LF] = ACTIONS(2342), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_pub] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2342), + [anon_sym_spawn] = ACTIONS(2342), + [anon_sym_json_DOTdecode] = ACTIONS(2342), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_or] = ACTIONS(2342), + [sym_none] = ACTIONS(2342), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_nil] = ACTIONS(2342), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_DOLLARif] = ACTIONS(2342), + [anon_sym_is] = ACTIONS(2342), + [anon_sym_BANGis] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_BANGin] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_select] = ACTIONS(2342), + [anon_sym_lock] = ACTIONS(2342), + [anon_sym_rlock] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_sql] = ACTIONS(2342), + [sym_int_literal] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2342), + [sym_rune_literal] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_shared] = ACTIONS(2342), + [anon_sym_map_LBRACK] = ACTIONS(2342), + [anon_sym_chan] = ACTIONS(2342), + [anon_sym_thread] = ACTIONS(2342), + [anon_sym_atomic] = ACTIONS(2342), + [anon_sym_assert] = ACTIONS(2342), + [anon_sym_defer] = ACTIONS(2342), + [anon_sym_goto] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_DOLLARfor] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_asm] = ACTIONS(2342), + [anon_sym_AT_LBRACK] = ACTIONS(2342), + [sym___double_quote] = ACTIONS(2342), + [sym___single_quote] = ACTIONS(2342), + [sym___c_double_quote] = ACTIONS(2342), + [sym___c_single_quote] = ACTIONS(2342), + [sym___r_double_quote] = ACTIONS(2342), + [sym___r_single_quote] = ACTIONS(2342), }, - [969] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [999] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_CARET] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [970] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2244), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LF] = ACTIONS(2246), - [anon_sym_CR] = ACTIONS(2246), - [anon_sym_CR_LF] = ACTIONS(2246), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2246), - [anon_sym_union] = ACTIONS(2246), - [anon_sym_pub] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2246), - [anon_sym_spawn] = ACTIONS(2246), - [anon_sym_json_DOTdecode] = ACTIONS(2246), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_LT_DASH] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_AMP_CARET] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_or] = ACTIONS(2246), - [sym_none] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_nil] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_DOLLARif] = ACTIONS(2246), - [anon_sym_is] = ACTIONS(2246), - [anon_sym_BANGis] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_BANGin] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_select] = ACTIONS(2246), - [anon_sym_lock] = ACTIONS(2246), - [anon_sym_rlock] = ACTIONS(2246), - [anon_sym_unsafe] = ACTIONS(2246), - [anon_sym_sql] = ACTIONS(2246), - [sym_int_literal] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), - [sym_rune_literal] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_shared] = ACTIONS(2246), - [anon_sym_map_LBRACK] = ACTIONS(2246), - [anon_sym_chan] = ACTIONS(2246), - [anon_sym_thread] = ACTIONS(2246), - [anon_sym_atomic] = ACTIONS(2246), - [anon_sym_assert] = ACTIONS(2246), - [anon_sym_defer] = ACTIONS(2246), - [anon_sym_goto] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_DOLLARfor] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_asm] = ACTIONS(2246), - [anon_sym_AT_LBRACK] = ACTIONS(2246), - [sym___double_quote] = ACTIONS(2246), - [sym___single_quote] = ACTIONS(2246), - [sym___c_double_quote] = ACTIONS(2246), - [sym___c_single_quote] = ACTIONS(2246), - [sym___r_double_quote] = ACTIONS(2246), - [sym___r_single_quote] = ACTIONS(2246), + [1000] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [971] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(593), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_DASH] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_or] = ACTIONS(593), - [sym_none] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_nil] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(593), - [anon_sym_POUND_LBRACK] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_DOLLARif] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(593), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(593), - [anon_sym_match] = ACTIONS(593), - [anon_sym_select] = ACTIONS(593), - [anon_sym_lock] = ACTIONS(593), - [anon_sym_rlock] = ACTIONS(593), - [anon_sym_unsafe] = ACTIONS(593), - [anon_sym_sql] = ACTIONS(593), - [sym_int_literal] = ACTIONS(593), - [sym_float_literal] = ACTIONS(593), - [sym_rune_literal] = ACTIONS(593), - [anon_sym_AT] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(593), - [sym___single_quote] = ACTIONS(593), - [sym___c_double_quote] = ACTIONS(593), - [sym___c_single_quote] = ACTIONS(593), - [sym___r_double_quote] = ACTIONS(593), - [sym___r_single_quote] = ACTIONS(593), + [1001] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_CR] = ACTIONS(1930), + [anon_sym_CR_LF] = ACTIONS(1930), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_EQ_EQ] = ACTIONS(3393), + [anon_sym_BANG_EQ] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_mut] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_interface] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(1930), + [anon_sym_spawn] = ACTIONS(1930), + [anon_sym_json_DOTdecode] = ACTIONS(1930), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(3389), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_LT_DASH] = ACTIONS(1930), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3391), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3409), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(1930), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_nil] = ACTIONS(1930), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_DOLLARif] = ACTIONS(1930), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3417), + [anon_sym_BANGin] = ACTIONS(3419), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_select] = ACTIONS(1930), + [anon_sym_lock] = ACTIONS(1930), + [anon_sym_rlock] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_sql] = ACTIONS(1930), + [sym_int_literal] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), + [sym_rune_literal] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [anon_sym_shared] = ACTIONS(1930), + [anon_sym_map_LBRACK] = ACTIONS(1930), + [anon_sym_chan] = ACTIONS(1930), + [anon_sym_thread] = ACTIONS(1930), + [anon_sym_atomic] = ACTIONS(1930), + [anon_sym_assert] = ACTIONS(1930), + [anon_sym_defer] = ACTIONS(1930), + [anon_sym_goto] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_DOLLARfor] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_asm] = ACTIONS(1930), + [anon_sym_AT_LBRACK] = ACTIONS(1930), + [sym___double_quote] = ACTIONS(1930), + [sym___single_quote] = ACTIONS(1930), + [sym___c_double_quote] = ACTIONS(1930), + [sym___c_single_quote] = ACTIONS(1930), + [sym___r_double_quote] = ACTIONS(1930), + [sym___r_single_quote] = ACTIONS(1930), }, - [972] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [1002] = { + [sym_reference_expression] = STATE(4522), + [sym_type_reference_expression] = STATE(1182), + [sym_plain_type] = STATE(1241), + [sym__plain_type_without_special] = STATE(1264), + [sym_anon_struct_type] = STATE(1200), + [sym_multi_return_type] = STATE(1264), + [sym_result_type] = STATE(1264), + [sym_option_type] = STATE(1264), + [sym_qualified_type] = STATE(1182), + [sym_fixed_array_type] = STATE(1200), + [sym_array_type] = STATE(1200), + [sym_pointer_type] = STATE(1200), + [sym_wrong_pointer_type] = STATE(1200), + [sym_map_type] = STATE(1200), + [sym_channel_type] = STATE(1200), + [sym_shared_type] = STATE(1200), + [sym_thread_type] = STATE(1200), + [sym_atomic_type] = STATE(1200), + [sym_generic_type] = STATE(1200), + [sym_function_type] = STATE(1200), + [sym_identifier] = ACTIONS(3427), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3433), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3435), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3445), + [anon_sym_map_LBRACK] = ACTIONS(3447), + [anon_sym_chan] = ACTIONS(3449), + [anon_sym_thread] = ACTIONS(3451), + [anon_sym_atomic] = ACTIONS(3453), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, - [973] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [1003] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [974] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2052), - [anon_sym_CR] = ACTIONS(2052), - [anon_sym_CR_LF] = ACTIONS(2052), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_mut] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_interface] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2052), - [anon_sym_json_DOTdecode] = ACTIONS(2052), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2052), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_nil] = ACTIONS(2052), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_DOLLARif] = ACTIONS(2052), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_select] = ACTIONS(2052), - [anon_sym_lock] = ACTIONS(2052), - [anon_sym_rlock] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_sql] = ACTIONS(2052), - [sym_int_literal] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), - [sym_rune_literal] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_shared] = ACTIONS(2052), - [anon_sym_map_LBRACK] = ACTIONS(2052), - [anon_sym_chan] = ACTIONS(2052), - [anon_sym_thread] = ACTIONS(2052), - [anon_sym_atomic] = ACTIONS(2052), - [anon_sym_assert] = ACTIONS(2052), - [anon_sym_defer] = ACTIONS(2052), - [anon_sym_goto] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_DOLLARfor] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_asm] = ACTIONS(2052), - [anon_sym_AT_LBRACK] = ACTIONS(2052), - [sym___double_quote] = ACTIONS(2052), - [sym___single_quote] = ACTIONS(2052), - [sym___c_double_quote] = ACTIONS(2052), - [sym___c_single_quote] = ACTIONS(2052), - [sym___r_double_quote] = ACTIONS(2052), - [sym___r_single_quote] = ACTIONS(2052), + [1004] = { + [sym_else_branch] = STATE(1107), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_LF] = ACTIONS(2548), + [anon_sym_CR] = ACTIONS(2548), + [anon_sym_CR_LF] = ACTIONS(2548), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2548), + [anon_sym_as] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym___global] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_GT] = ACTIONS(2548), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_EQ] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2548), + [anon_sym_mut] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_interface] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2548), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_go] = ACTIONS(2548), + [anon_sym_spawn] = ACTIONS(2548), + [anon_sym_json_DOTdecode] = ACTIONS(2548), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_LT_DASH] = ACTIONS(2548), + [anon_sym_LT_LT] = ACTIONS(2548), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2548), + [anon_sym_AMP_CARET] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_or] = ACTIONS(2548), + [sym_none] = ACTIONS(2548), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [sym_nil] = ACTIONS(2548), + [anon_sym_QMARK_DOT] = ACTIONS(2548), + [anon_sym_POUND_LBRACK] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_DOLLARif] = ACTIONS(2548), + [anon_sym_is] = ACTIONS(2548), + [anon_sym_BANGis] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_BANGin] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_select] = ACTIONS(2548), + [anon_sym_lock] = ACTIONS(2548), + [anon_sym_rlock] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_sql] = ACTIONS(2548), + [sym_int_literal] = ACTIONS(2548), + [sym_float_literal] = ACTIONS(2548), + [sym_rune_literal] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_shared] = ACTIONS(2548), + [anon_sym_map_LBRACK] = ACTIONS(2548), + [anon_sym_chan] = ACTIONS(2548), + [anon_sym_thread] = ACTIONS(2548), + [anon_sym_atomic] = ACTIONS(2548), + [anon_sym_assert] = ACTIONS(2548), + [anon_sym_defer] = ACTIONS(2548), + [anon_sym_goto] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_DOLLARfor] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_asm] = ACTIONS(2548), + [anon_sym_AT_LBRACK] = ACTIONS(2548), + [sym___double_quote] = ACTIONS(2548), + [sym___single_quote] = ACTIONS(2548), + [sym___c_double_quote] = ACTIONS(2548), + [sym___c_single_quote] = ACTIONS(2548), + [sym___r_double_quote] = ACTIONS(2548), + [sym___r_single_quote] = ACTIONS(2548), }, - [975] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [1005] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [976] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), + [1006] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3479), + [anon_sym_LF] = ACTIONS(3479), + [anon_sym_CR] = ACTIONS(3479), + [anon_sym_CR_LF] = ACTIONS(3479), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3479), + [anon_sym_const] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(3479), + [anon_sym_type] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_union] = ACTIONS(3479), + [anon_sym_pub] = ACTIONS(3479), + [anon_sym_mut] = ACTIONS(3479), + [anon_sym_enum] = ACTIONS(3479), + [anon_sym_interface] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(3479), + [anon_sym_spawn] = ACTIONS(3479), + [anon_sym_json_DOTdecode] = ACTIONS(3479), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3479), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(3479), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(3479), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [sym_nil] = ACTIONS(3479), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_DOLLARif] = ACTIONS(3479), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_select] = ACTIONS(3479), + [anon_sym_lock] = ACTIONS(3479), + [anon_sym_rlock] = ACTIONS(3479), + [anon_sym_unsafe] = ACTIONS(3479), + [anon_sym_sql] = ACTIONS(3479), + [sym_int_literal] = ACTIONS(3479), + [sym_float_literal] = ACTIONS(3479), + [sym_rune_literal] = ACTIONS(3479), + [anon_sym_AT] = ACTIONS(3479), + [anon_sym_shared] = ACTIONS(3479), + [anon_sym_map_LBRACK] = ACTIONS(3479), + [anon_sym_chan] = ACTIONS(3479), + [anon_sym_thread] = ACTIONS(3479), + [anon_sym_atomic] = ACTIONS(3479), + [anon_sym_assert] = ACTIONS(3479), + [anon_sym_defer] = ACTIONS(3479), + [anon_sym_goto] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_DOLLARfor] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_POUND] = ACTIONS(3479), + [anon_sym_asm] = ACTIONS(3479), + [anon_sym_AT_LBRACK] = ACTIONS(3479), + [sym___double_quote] = ACTIONS(3479), + [sym___single_quote] = ACTIONS(3479), + [sym___c_double_quote] = ACTIONS(3479), + [sym___c_single_quote] = ACTIONS(3479), + [sym___r_double_quote] = ACTIONS(3479), + [sym___r_single_quote] = ACTIONS(3479), + }, + [1007] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), + }, + [1008] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(3483), + [sym_identifier] = ACTIONS(3485), + [anon_sym_LF] = ACTIONS(3485), + [anon_sym_CR] = ACTIONS(3485), + [anon_sym_CR_LF] = ACTIONS(3485), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_const] = ACTIONS(3485), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(3485), + [anon_sym_type] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(3485), + [anon_sym_PLUS] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3485), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3485), + [anon_sym_union] = ACTIONS(3485), + [anon_sym_pub] = ACTIONS(3485), + [anon_sym_mut] = ACTIONS(3485), + [anon_sym_enum] = ACTIONS(3485), + [anon_sym_interface] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(3485), + [anon_sym_spawn] = ACTIONS(3485), + [anon_sym_json_DOTdecode] = ACTIONS(3485), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_CARET] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3485), + [anon_sym_LT_DASH] = ACTIONS(3485), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(3485), + [sym_true] = ACTIONS(3485), + [sym_false] = ACTIONS(3485), + [sym_nil] = ACTIONS(3485), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3485), + [anon_sym_DOLLARif] = ACTIONS(3485), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), + [anon_sym_match] = ACTIONS(3485), + [anon_sym_select] = ACTIONS(3485), + [anon_sym_lock] = ACTIONS(3485), + [anon_sym_rlock] = ACTIONS(3485), + [anon_sym_unsafe] = ACTIONS(3485), + [anon_sym_sql] = ACTIONS(3485), + [sym_int_literal] = ACTIONS(3485), + [sym_float_literal] = ACTIONS(3485), + [sym_rune_literal] = ACTIONS(3485), + [anon_sym_AT] = ACTIONS(3485), + [anon_sym_shared] = ACTIONS(3485), + [anon_sym_map_LBRACK] = ACTIONS(3485), + [anon_sym_chan] = ACTIONS(3485), + [anon_sym_thread] = ACTIONS(3485), + [anon_sym_atomic] = ACTIONS(3485), + [anon_sym_assert] = ACTIONS(3485), + [anon_sym_defer] = ACTIONS(3485), + [anon_sym_goto] = ACTIONS(3485), + [anon_sym_break] = ACTIONS(3485), + [anon_sym_continue] = ACTIONS(3485), + [anon_sym_return] = ACTIONS(3485), + [anon_sym_DOLLARfor] = ACTIONS(3485), + [anon_sym_for] = ACTIONS(3485), + [anon_sym_POUND] = ACTIONS(3485), + [anon_sym_asm] = ACTIONS(3485), + [anon_sym_AT_LBRACK] = ACTIONS(3485), + [sym___double_quote] = ACTIONS(3485), + [sym___single_quote] = ACTIONS(3485), + [sym___c_double_quote] = ACTIONS(3485), + [sym___c_single_quote] = ACTIONS(3485), + [sym___r_double_quote] = ACTIONS(3485), + [sym___r_single_quote] = ACTIONS(3485), + }, + [1009] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), [ts_builtin_sym_end] = ACTIONS(2232), [sym_identifier] = ACTIONS(2234), [anon_sym_LF] = ACTIONS(2234), [anon_sym_CR] = ACTIONS(2234), [anon_sym_CR_LF] = ACTIONS(2234), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_const] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3387), [anon_sym___global] = ACTIONS(2234), [anon_sym_type] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(3463), [anon_sym_fn] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), [anon_sym_struct] = ACTIONS(2234), [anon_sym_union] = ACTIONS(2234), [anon_sym_pub] = ACTIONS(2234), [anon_sym_mut] = ACTIONS(2234), [anon_sym_enum] = ACTIONS(2234), [anon_sym_interface] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), [anon_sym_go] = ACTIONS(2234), [anon_sym_spawn] = ACTIONS(2234), [anon_sym_json_DOTdecode] = ACTIONS(2234), - [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_LBRACK2] = ACTIONS(3405), [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), [anon_sym_LT_DASH] = ACTIONS(2234), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3411), [sym_none] = ACTIONS(2234), [sym_true] = ACTIONS(2234), [sym_false] = ACTIONS(2234), [sym_nil] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), [anon_sym_if] = ACTIONS(2234), [anon_sym_DOLLARif] = ACTIONS(2234), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), [anon_sym_match] = ACTIONS(2234), [anon_sym_select] = ACTIONS(2234), [anon_sym_lock] = ACTIONS(2234), @@ -138352,101 +142108,1306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2234), [sym___r_single_quote] = ACTIONS(2234), }, - [977] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_CR] = ACTIONS(617), - [anon_sym_CR_LF] = ACTIONS(617), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), + [1010] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3489), + [anon_sym_LF] = ACTIONS(3489), + [anon_sym_CR] = ACTIONS(3489), + [anon_sym_CR_LF] = ACTIONS(3489), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_const] = ACTIONS(3489), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(3489), + [anon_sym_type] = ACTIONS(3489), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3489), + [anon_sym_union] = ACTIONS(3489), + [anon_sym_pub] = ACTIONS(3489), + [anon_sym_mut] = ACTIONS(3489), + [anon_sym_enum] = ACTIONS(3489), + [anon_sym_interface] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(3489), + [anon_sym_spawn] = ACTIONS(3489), + [anon_sym_json_DOTdecode] = ACTIONS(3489), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(3489), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(3489), + [sym_true] = ACTIONS(3489), + [sym_false] = ACTIONS(3489), + [sym_nil] = ACTIONS(3489), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3489), + [anon_sym_DOLLARif] = ACTIONS(3489), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), + [anon_sym_match] = ACTIONS(3489), + [anon_sym_select] = ACTIONS(3489), + [anon_sym_lock] = ACTIONS(3489), + [anon_sym_rlock] = ACTIONS(3489), + [anon_sym_unsafe] = ACTIONS(3489), + [anon_sym_sql] = ACTIONS(3489), + [sym_int_literal] = ACTIONS(3489), + [sym_float_literal] = ACTIONS(3489), + [sym_rune_literal] = ACTIONS(3489), + [anon_sym_AT] = ACTIONS(3489), + [anon_sym_shared] = ACTIONS(3489), + [anon_sym_map_LBRACK] = ACTIONS(3489), + [anon_sym_chan] = ACTIONS(3489), + [anon_sym_thread] = ACTIONS(3489), + [anon_sym_atomic] = ACTIONS(3489), + [anon_sym_assert] = ACTIONS(3489), + [anon_sym_defer] = ACTIONS(3489), + [anon_sym_goto] = ACTIONS(3489), + [anon_sym_break] = ACTIONS(3489), + [anon_sym_continue] = ACTIONS(3489), + [anon_sym_return] = ACTIONS(3489), + [anon_sym_DOLLARfor] = ACTIONS(3489), + [anon_sym_for] = ACTIONS(3489), + [anon_sym_POUND] = ACTIONS(3489), + [anon_sym_asm] = ACTIONS(3489), + [anon_sym_AT_LBRACK] = ACTIONS(3489), + [sym___double_quote] = ACTIONS(3489), + [sym___single_quote] = ACTIONS(3489), + [sym___c_double_quote] = ACTIONS(3489), + [sym___c_single_quote] = ACTIONS(3489), + [sym___r_double_quote] = ACTIONS(3489), + [sym___r_single_quote] = ACTIONS(3489), + }, + [1011] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3493), + [anon_sym_LF] = ACTIONS(3493), + [anon_sym_CR] = ACTIONS(3493), + [anon_sym_CR_LF] = ACTIONS(3493), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(3493), + [anon_sym_type] = ACTIONS(3493), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_pub] = ACTIONS(3493), + [anon_sym_mut] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_interface] = ACTIONS(3493), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(3493), + [anon_sym_spawn] = ACTIONS(3493), + [anon_sym_json_DOTdecode] = ACTIONS(3493), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3493), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(3493), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(3493), + [sym_true] = ACTIONS(3493), + [sym_false] = ACTIONS(3493), + [sym_nil] = ACTIONS(3493), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_DOLLARif] = ACTIONS(3493), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), + [anon_sym_match] = ACTIONS(3493), + [anon_sym_select] = ACTIONS(3493), + [anon_sym_lock] = ACTIONS(3493), + [anon_sym_rlock] = ACTIONS(3493), + [anon_sym_unsafe] = ACTIONS(3493), + [anon_sym_sql] = ACTIONS(3493), + [sym_int_literal] = ACTIONS(3493), + [sym_float_literal] = ACTIONS(3493), + [sym_rune_literal] = ACTIONS(3493), + [anon_sym_AT] = ACTIONS(3493), + [anon_sym_shared] = ACTIONS(3493), + [anon_sym_map_LBRACK] = ACTIONS(3493), + [anon_sym_chan] = ACTIONS(3493), + [anon_sym_thread] = ACTIONS(3493), + [anon_sym_atomic] = ACTIONS(3493), + [anon_sym_assert] = ACTIONS(3493), + [anon_sym_defer] = ACTIONS(3493), + [anon_sym_goto] = ACTIONS(3493), + [anon_sym_break] = ACTIONS(3493), + [anon_sym_continue] = ACTIONS(3493), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_DOLLARfor] = ACTIONS(3493), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_POUND] = ACTIONS(3493), + [anon_sym_asm] = ACTIONS(3493), + [anon_sym_AT_LBRACK] = ACTIONS(3493), + [sym___double_quote] = ACTIONS(3493), + [sym___single_quote] = ACTIONS(3493), + [sym___c_double_quote] = ACTIONS(3493), + [sym___c_single_quote] = ACTIONS(3493), + [sym___r_double_quote] = ACTIONS(3493), + [sym___r_single_quote] = ACTIONS(3493), + }, + [1012] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_CR] = ACTIONS(2342), + [anon_sym_CR_LF] = ACTIONS(2342), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_pub] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2342), + [anon_sym_spawn] = ACTIONS(2342), + [anon_sym_json_DOTdecode] = ACTIONS(2342), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_or] = ACTIONS(2342), + [sym_none] = ACTIONS(2342), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_nil] = ACTIONS(2342), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_DOLLARif] = ACTIONS(2342), + [anon_sym_is] = ACTIONS(2342), + [anon_sym_BANGis] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_BANGin] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_select] = ACTIONS(2342), + [anon_sym_lock] = ACTIONS(2342), + [anon_sym_rlock] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_sql] = ACTIONS(2342), + [sym_int_literal] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2342), + [sym_rune_literal] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_shared] = ACTIONS(2342), + [anon_sym_map_LBRACK] = ACTIONS(2342), + [anon_sym_chan] = ACTIONS(2342), + [anon_sym_thread] = ACTIONS(2342), + [anon_sym_atomic] = ACTIONS(2342), + [anon_sym_assert] = ACTIONS(2342), + [anon_sym_defer] = ACTIONS(2342), + [anon_sym_goto] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_DOLLARfor] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_asm] = ACTIONS(2342), + [anon_sym_AT_LBRACK] = ACTIONS(2342), + [sym___double_quote] = ACTIONS(2342), + [sym___single_quote] = ACTIONS(2342), + [sym___c_double_quote] = ACTIONS(2342), + [sym___c_single_quote] = ACTIONS(2342), + [sym___r_double_quote] = ACTIONS(2342), + [sym___r_single_quote] = ACTIONS(2342), + }, + [1013] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2346), + [anon_sym_LF] = ACTIONS(2346), + [anon_sym_CR] = ACTIONS(2346), + [anon_sym_CR_LF] = ACTIONS(2346), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2346), + [anon_sym_BANG_EQ] = ACTIONS(2346), + [anon_sym_LT_EQ] = ACTIONS(2346), + [anon_sym_GT_EQ] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_pub] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_interface] = ACTIONS(2346), + [anon_sym_PLUS_PLUS] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2346), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2346), + [anon_sym_spawn] = ACTIONS(2346), + [anon_sym_json_DOTdecode] = ACTIONS(2346), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(2346), + [anon_sym_PIPE_PIPE] = ACTIONS(2346), + [anon_sym_or] = ACTIONS(2346), + [sym_none] = ACTIONS(2346), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_nil] = ACTIONS(2346), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_DOLLARif] = ACTIONS(2346), + [anon_sym_is] = ACTIONS(2346), + [anon_sym_BANGis] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_BANGin] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_select] = ACTIONS(2346), + [anon_sym_lock] = ACTIONS(2346), + [anon_sym_rlock] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2346), + [sym_int_literal] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2346), + [sym_rune_literal] = ACTIONS(2346), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_shared] = ACTIONS(2346), + [anon_sym_map_LBRACK] = ACTIONS(2346), + [anon_sym_chan] = ACTIONS(2346), + [anon_sym_thread] = ACTIONS(2346), + [anon_sym_atomic] = ACTIONS(2346), + [anon_sym_assert] = ACTIONS(2346), + [anon_sym_defer] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_DOLLARfor] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(2346), + [anon_sym_asm] = ACTIONS(2346), + [anon_sym_AT_LBRACK] = ACTIONS(2346), + [sym___double_quote] = ACTIONS(2346), + [sym___single_quote] = ACTIONS(2346), + [sym___c_double_quote] = ACTIONS(2346), + [sym___c_single_quote] = ACTIONS(2346), + [sym___r_double_quote] = ACTIONS(2346), + [sym___r_single_quote] = ACTIONS(2346), + }, + [1014] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), + [anon_sym_LF] = ACTIONS(2220), + [anon_sym_CR] = ACTIONS(2220), + [anon_sym_CR_LF] = ACTIONS(2220), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2220), + [anon_sym_type] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_union] = ACTIONS(2220), + [anon_sym_pub] = ACTIONS(2220), + [anon_sym_mut] = ACTIONS(2220), + [anon_sym_enum] = ACTIONS(2220), + [anon_sym_interface] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2220), + [anon_sym_spawn] = ACTIONS(2220), + [anon_sym_json_DOTdecode] = ACTIONS(2220), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(3481), + [anon_sym_or] = ACTIONS(3411), + [sym_none] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_nil] = ACTIONS(2220), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_DOLLARif] = ACTIONS(2220), + [anon_sym_is] = ACTIONS(3413), + [anon_sym_BANGis] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_select] = ACTIONS(2220), + [anon_sym_lock] = ACTIONS(2220), + [anon_sym_rlock] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_sql] = ACTIONS(2220), + [sym_int_literal] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), + [sym_rune_literal] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2220), + [anon_sym_shared] = ACTIONS(2220), + [anon_sym_map_LBRACK] = ACTIONS(2220), + [anon_sym_chan] = ACTIONS(2220), + [anon_sym_thread] = ACTIONS(2220), + [anon_sym_atomic] = ACTIONS(2220), + [anon_sym_assert] = ACTIONS(2220), + [anon_sym_defer] = ACTIONS(2220), + [anon_sym_goto] = ACTIONS(2220), + [anon_sym_break] = ACTIONS(2220), + [anon_sym_continue] = ACTIONS(2220), + [anon_sym_return] = ACTIONS(2220), + [anon_sym_DOLLARfor] = ACTIONS(2220), + [anon_sym_for] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_asm] = ACTIONS(2220), + [anon_sym_AT_LBRACK] = ACTIONS(2220), + [sym___double_quote] = ACTIONS(2220), + [sym___single_quote] = ACTIONS(2220), + [sym___c_double_quote] = ACTIONS(2220), + [sym___c_single_quote] = ACTIONS(2220), + [sym___r_double_quote] = ACTIONS(2220), + [sym___r_single_quote] = ACTIONS(2220), + }, + [1015] = { + [sym_type_parameters] = STATE(4323), + [sym_argument_list] = STATE(1050), + [sym_or_block] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym___global] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(3463), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3463), + [anon_sym_DASH] = ACTIONS(3463), + [anon_sym_STAR] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3465), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3465), + [anon_sym_AMP_CARET] = ACTIONS(3465), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3381), + [anon_sym_POUND_LBRACK] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(3471), + [anon_sym_BANGin] = ACTIONS(3473), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [anon_sym_assert] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_goto] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_DOLLARfor] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_asm] = ACTIONS(2360), + [anon_sym_AT_LBRACK] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), + }, + [1016] = { + [sym_else_branch] = STATE(1114), + [ts_builtin_sym_end] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2558), + [anon_sym_LF] = ACTIONS(2558), + [anon_sym_CR] = ACTIONS(2558), + [anon_sym_CR_LF] = ACTIONS(2558), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_as] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym___global] = ACTIONS(2558), + [anon_sym_type] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_fn] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2558), + [anon_sym_union] = ACTIONS(2558), + [anon_sym_pub] = ACTIONS(2558), + [anon_sym_mut] = ACTIONS(2558), + [anon_sym_enum] = ACTIONS(2558), + [anon_sym_interface] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_go] = ACTIONS(2558), + [anon_sym_spawn] = ACTIONS(2558), + [anon_sym_json_DOTdecode] = ACTIONS(2558), + [anon_sym_LBRACK2] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2558), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_AMP_CARET] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_or] = ACTIONS(2558), + [sym_none] = ACTIONS(2558), + [sym_true] = ACTIONS(2558), + [sym_false] = ACTIONS(2558), + [sym_nil] = ACTIONS(2558), + [anon_sym_QMARK_DOT] = ACTIONS(2558), + [anon_sym_POUND_LBRACK] = ACTIONS(2558), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_is] = ACTIONS(2558), + [anon_sym_BANGis] = ACTIONS(2558), + [anon_sym_in] = ACTIONS(2558), + [anon_sym_BANGin] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2558), + [anon_sym_select] = ACTIONS(2558), + [anon_sym_lock] = ACTIONS(2558), + [anon_sym_rlock] = ACTIONS(2558), + [anon_sym_unsafe] = ACTIONS(2558), + [anon_sym_sql] = ACTIONS(2558), + [sym_int_literal] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), + [sym_rune_literal] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_shared] = ACTIONS(2558), + [anon_sym_map_LBRACK] = ACTIONS(2558), + [anon_sym_chan] = ACTIONS(2558), + [anon_sym_thread] = ACTIONS(2558), + [anon_sym_atomic] = ACTIONS(2558), + [anon_sym_assert] = ACTIONS(2558), + [anon_sym_defer] = ACTIONS(2558), + [anon_sym_goto] = ACTIONS(2558), + [anon_sym_break] = ACTIONS(2558), + [anon_sym_continue] = ACTIONS(2558), + [anon_sym_return] = ACTIONS(2558), + [anon_sym_DOLLARfor] = ACTIONS(2558), + [anon_sym_for] = ACTIONS(2558), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_asm] = ACTIONS(2558), + [anon_sym_AT_LBRACK] = ACTIONS(2558), + [sym___double_quote] = ACTIONS(2558), + [sym___single_quote] = ACTIONS(2558), + [sym___c_double_quote] = ACTIONS(2558), + [sym___c_single_quote] = ACTIONS(2558), + [sym___r_double_quote] = ACTIONS(2558), + [sym___r_single_quote] = ACTIONS(2558), + }, + [1017] = { + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_else] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), + }, + [1018] = { + [sym_reference_expression] = STATE(4488), + [sym_type_reference_expression] = STATE(1332), + [sym_plain_type] = STATE(1415), + [sym__plain_type_without_special] = STATE(1403), + [sym_anon_struct_type] = STATE(1402), + [sym_multi_return_type] = STATE(1403), + [sym_result_type] = STATE(1403), + [sym_option_type] = STATE(1403), + [sym_qualified_type] = STATE(1332), + [sym_fixed_array_type] = STATE(1402), + [sym_array_type] = STATE(1402), + [sym_pointer_type] = STATE(1402), + [sym_wrong_pointer_type] = STATE(1402), + [sym_map_type] = STATE(1402), + [sym_channel_type] = STATE(1402), + [sym_shared_type] = STATE(1402), + [sym_thread_type] = STATE(1402), + [sym_atomic_type] = STATE(1402), + [sym_generic_type] = STATE(1402), + [sym_function_type] = STATE(1402), + [sym_identifier] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_RBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3505), + [anon_sym_BANG] = ACTIONS(3507), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(613), + [anon_sym_LBRACK2] = ACTIONS(3509), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(613), + [sym_rune_literal] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(3513), + [anon_sym_map_LBRACK] = ACTIONS(3515), + [anon_sym_chan] = ACTIONS(3517), + [anon_sym_thread] = ACTIONS(3519), + [anon_sym_atomic] = ACTIONS(3521), + [sym___double_quote] = ACTIONS(613), + [sym___single_quote] = ACTIONS(613), + [sym___c_double_quote] = ACTIONS(613), + [sym___c_single_quote] = ACTIONS(613), + [sym___r_double_quote] = ACTIONS(613), + [sym___r_single_quote] = ACTIONS(613), + }, + [1019] = { + [sym_type_parameters] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), + }, + [1020] = { + [ts_builtin_sym_end] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_CR] = ACTIONS(2926), + [anon_sym_CR_LF] = ACTIONS(2926), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_COMMA] = ACTIONS(2926), + [anon_sym_const] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym___global] = ACTIONS(2926), + [anon_sym_type] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PERCENT] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_union] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2926), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2926), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2926), + [anon_sym_AMP_CARET] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_or] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_QMARK_DOT] = ACTIONS(2926), + [anon_sym_POUND_LBRACK] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_DOLLARelse] = ACTIONS(3523), + [anon_sym_is] = ACTIONS(2926), + [anon_sym_BANGis] = ACTIONS(2926), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_BANGin] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + [sym_rune_literal] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2926), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [anon_sym_assert] = ACTIONS(2926), + [anon_sym_defer] = ACTIONS(2926), + [anon_sym_goto] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_DOLLARfor] = ACTIONS(2926), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_asm] = ACTIONS(2926), + [anon_sym_AT_LBRACK] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2926), + [sym___single_quote] = ACTIONS(2926), + [sym___c_double_quote] = ACTIONS(2926), + [sym___c_single_quote] = ACTIONS(2926), + [sym___r_double_quote] = ACTIONS(2926), + [sym___r_single_quote] = ACTIONS(2926), + }, + [1021] = { + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_DOLLARelse] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), + }, + [1022] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(619), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), [anon_sym_LBRACE] = ACTIONS(617), [anon_sym_COMMA] = ACTIONS(617), [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(619), [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), [anon_sym_EQ_EQ] = ACTIONS(617), [anon_sym_BANG_EQ] = ACTIONS(617), [anon_sym_LT_EQ] = ACTIONS(617), [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(617), - [anon_sym_mut] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(617), [anon_sym_PLUS_PLUS] = ACTIONS(617), [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_go] = ACTIONS(617), - [anon_sym_spawn] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), [anon_sym_json_DOTdecode] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(619), [anon_sym_TILDE] = ACTIONS(617), [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(619), [anon_sym_LT_DASH] = ACTIONS(617), [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), [anon_sym_GT_GT_GT] = ACTIONS(617), [anon_sym_AMP_CARET] = ACTIONS(617), [anon_sym_AMP_AMP] = ACTIONS(617), [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(617), - [sym_none] = ACTIONS(617), - [sym_true] = ACTIONS(617), - [sym_false] = ACTIONS(617), - [sym_nil] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), [anon_sym_QMARK_DOT] = ACTIONS(617), [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_if] = ACTIONS(617), - [anon_sym_DOLLARif] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_match] = ACTIONS(617), - [anon_sym_select] = ACTIONS(617), - [anon_sym_lock] = ACTIONS(617), - [anon_sym_rlock] = ACTIONS(617), - [anon_sym_unsafe] = ACTIONS(617), - [anon_sym_sql] = ACTIONS(617), - [sym_int_literal] = ACTIONS(617), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), [sym_float_literal] = ACTIONS(617), [sym_rune_literal] = ACTIONS(617), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(619), [anon_sym_map_LBRACK] = ACTIONS(617), - [anon_sym_chan] = ACTIONS(617), - [anon_sym_thread] = ACTIONS(617), - [anon_sym_atomic] = ACTIONS(617), + [anon_sym_chan] = ACTIONS(619), + [anon_sym_thread] = ACTIONS(619), + [anon_sym_atomic] = ACTIONS(619), [sym___double_quote] = ACTIONS(617), [sym___single_quote] = ACTIONS(617), [sym___c_double_quote] = ACTIONS(617), @@ -138454,2734 +143415,1703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(617), [sym___r_single_quote] = ACTIONS(617), }, - [978] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_LF] = ACTIONS(2224), - [anon_sym_CR] = ACTIONS(2224), - [anon_sym_CR_LF] = ACTIONS(2224), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_SLASH] = ACTIONS(2224), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_pub] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2224), - [anon_sym_spawn] = ACTIONS(2224), - [anon_sym_json_DOTdecode] = ACTIONS(2224), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_LT_DASH] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_AMP_CARET] = ACTIONS(2224), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_or] = ACTIONS(2224), - [sym_none] = ACTIONS(2224), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [sym_nil] = ACTIONS(2224), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_DOLLARif] = ACTIONS(2224), - [anon_sym_is] = ACTIONS(2224), - [anon_sym_BANGis] = ACTIONS(2224), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_BANGin] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_select] = ACTIONS(2224), - [anon_sym_lock] = ACTIONS(2224), - [anon_sym_rlock] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_sql] = ACTIONS(2224), - [sym_int_literal] = ACTIONS(2224), - [sym_float_literal] = ACTIONS(2224), - [sym_rune_literal] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(2224), - [anon_sym_shared] = ACTIONS(2224), - [anon_sym_map_LBRACK] = ACTIONS(2224), - [anon_sym_chan] = ACTIONS(2224), - [anon_sym_thread] = ACTIONS(2224), - [anon_sym_atomic] = ACTIONS(2224), - [anon_sym_assert] = ACTIONS(2224), - [anon_sym_defer] = ACTIONS(2224), - [anon_sym_goto] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_DOLLARfor] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_POUND] = ACTIONS(2224), - [anon_sym_asm] = ACTIONS(2224), - [anon_sym_AT_LBRACK] = ACTIONS(2224), - [sym___double_quote] = ACTIONS(2224), - [sym___single_quote] = ACTIONS(2224), - [sym___c_double_quote] = ACTIONS(2224), - [sym___c_single_quote] = ACTIONS(2224), - [sym___r_double_quote] = ACTIONS(2224), - [sym___r_single_quote] = ACTIONS(2224), - }, - [979] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_LF] = ACTIONS(2156), - [anon_sym_CR] = ACTIONS(2156), - [anon_sym_CR_LF] = ACTIONS(2156), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2156), - [anon_sym_GT_EQ] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_mut] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2156), - [anon_sym_spawn] = ACTIONS(2156), - [anon_sym_json_DOTdecode] = ACTIONS(2156), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [anon_sym_or] = ACTIONS(2156), - [sym_none] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nil] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_DOLLARif] = ACTIONS(2156), - [anon_sym_is] = ACTIONS(2156), - [anon_sym_BANGis] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_BANGin] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_select] = ACTIONS(2156), - [anon_sym_lock] = ACTIONS(2156), - [anon_sym_rlock] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_sql] = ACTIONS(2156), - [sym_int_literal] = ACTIONS(2156), - [sym_float_literal] = ACTIONS(2156), - [sym_rune_literal] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_shared] = ACTIONS(2156), - [anon_sym_map_LBRACK] = ACTIONS(2156), - [anon_sym_chan] = ACTIONS(2156), - [anon_sym_thread] = ACTIONS(2156), - [anon_sym_atomic] = ACTIONS(2156), - [anon_sym_assert] = ACTIONS(2156), - [anon_sym_defer] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_DOLLARfor] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_asm] = ACTIONS(2156), - [anon_sym_AT_LBRACK] = ACTIONS(2156), - [sym___double_quote] = ACTIONS(2156), - [sym___single_quote] = ACTIONS(2156), - [sym___c_double_quote] = ACTIONS(2156), - [sym___c_single_quote] = ACTIONS(2156), - [sym___r_double_quote] = ACTIONS(2156), - [sym___r_single_quote] = ACTIONS(2156), - }, - [980] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LF] = ACTIONS(1716), - [anon_sym_CR] = ACTIONS(1716), - [anon_sym_CR_LF] = ACTIONS(1716), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(1716), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(1716), - [anon_sym_union] = ACTIONS(1716), - [anon_sym_pub] = ACTIONS(1716), - [anon_sym_mut] = ACTIONS(1716), - [anon_sym_enum] = ACTIONS(1716), - [anon_sym_interface] = ACTIONS(1716), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(1716), - [anon_sym_spawn] = ACTIONS(1716), - [anon_sym_json_DOTdecode] = ACTIONS(1716), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(1716), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(1716), - [sym_true] = ACTIONS(1716), - [sym_false] = ACTIONS(1716), - [sym_nil] = ACTIONS(1716), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_DOLLARif] = ACTIONS(1716), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(1716), - [anon_sym_select] = ACTIONS(1716), - [anon_sym_lock] = ACTIONS(1716), - [anon_sym_rlock] = ACTIONS(1716), - [anon_sym_unsafe] = ACTIONS(1716), - [anon_sym_sql] = ACTIONS(1716), - [sym_int_literal] = ACTIONS(1716), - [sym_float_literal] = ACTIONS(1716), - [sym_rune_literal] = ACTIONS(1716), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_shared] = ACTIONS(1716), - [anon_sym_map_LBRACK] = ACTIONS(1716), - [anon_sym_chan] = ACTIONS(1716), - [anon_sym_thread] = ACTIONS(1716), - [anon_sym_atomic] = ACTIONS(1716), - [anon_sym_assert] = ACTIONS(1716), - [anon_sym_defer] = ACTIONS(1716), - [anon_sym_goto] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_DOLLARfor] = ACTIONS(1716), - [anon_sym_for] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1716), - [anon_sym_asm] = ACTIONS(1716), - [anon_sym_AT_LBRACK] = ACTIONS(1716), - [sym___double_quote] = ACTIONS(1716), - [sym___single_quote] = ACTIONS(1716), - [sym___c_double_quote] = ACTIONS(1716), - [sym___c_single_quote] = ACTIONS(1716), - [sym___r_double_quote] = ACTIONS(1716), - [sym___r_single_quote] = ACTIONS(1716), - }, - [981] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3311), - [sym_identifier] = ACTIONS(3313), - [anon_sym_LF] = ACTIONS(3313), - [anon_sym_CR] = ACTIONS(3313), - [anon_sym_CR_LF] = ACTIONS(3313), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_union] = ACTIONS(3313), - [anon_sym_pub] = ACTIONS(3313), - [anon_sym_mut] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3313), - [anon_sym_spawn] = ACTIONS(3313), - [anon_sym_json_DOTdecode] = ACTIONS(3313), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3245), - [anon_sym_LT_DASH] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3245), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(3313), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [sym_nil] = ACTIONS(3313), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_DOLLARif] = ACTIONS(3313), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(3313), - [anon_sym_select] = ACTIONS(3313), - [anon_sym_lock] = ACTIONS(3313), - [anon_sym_rlock] = ACTIONS(3313), - [anon_sym_unsafe] = ACTIONS(3313), - [anon_sym_sql] = ACTIONS(3313), - [sym_int_literal] = ACTIONS(3313), - [sym_float_literal] = ACTIONS(3313), - [sym_rune_literal] = ACTIONS(3313), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_shared] = ACTIONS(3313), - [anon_sym_map_LBRACK] = ACTIONS(3313), - [anon_sym_chan] = ACTIONS(3313), - [anon_sym_thread] = ACTIONS(3313), - [anon_sym_atomic] = ACTIONS(3313), - [anon_sym_assert] = ACTIONS(3313), - [anon_sym_defer] = ACTIONS(3313), - [anon_sym_goto] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_DOLLARfor] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_asm] = ACTIONS(3313), - [anon_sym_AT_LBRACK] = ACTIONS(3313), - [sym___double_quote] = ACTIONS(3313), - [sym___single_quote] = ACTIONS(3313), - [sym___c_double_quote] = ACTIONS(3313), - [sym___c_single_quote] = ACTIONS(3313), - [sym___r_double_quote] = ACTIONS(3313), - [sym___r_single_quote] = ACTIONS(3313), - }, - [982] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), - }, - [983] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LF] = ACTIONS(2144), - [anon_sym_CR] = ACTIONS(2144), - [anon_sym_CR_LF] = ACTIONS(2144), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2144), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2144), - [anon_sym_pub] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_enum] = ACTIONS(2144), - [anon_sym_interface] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2144), - [anon_sym_spawn] = ACTIONS(2144), - [anon_sym_json_DOTdecode] = ACTIONS(2144), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_or] = ACTIONS(2144), - [sym_none] = ACTIONS(2144), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_nil] = ACTIONS(2144), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_DOLLARif] = ACTIONS(2144), - [anon_sym_is] = ACTIONS(2144), - [anon_sym_BANGis] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_BANGin] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_select] = ACTIONS(2144), - [anon_sym_lock] = ACTIONS(2144), - [anon_sym_rlock] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_sql] = ACTIONS(2144), - [sym_int_literal] = ACTIONS(2144), - [sym_float_literal] = ACTIONS(2144), - [sym_rune_literal] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_shared] = ACTIONS(2144), - [anon_sym_map_LBRACK] = ACTIONS(2144), - [anon_sym_chan] = ACTIONS(2144), - [anon_sym_thread] = ACTIONS(2144), - [anon_sym_atomic] = ACTIONS(2144), - [anon_sym_assert] = ACTIONS(2144), - [anon_sym_defer] = ACTIONS(2144), - [anon_sym_goto] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_DOLLARfor] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(2144), - [anon_sym_asm] = ACTIONS(2144), - [anon_sym_AT_LBRACK] = ACTIONS(2144), - [sym___double_quote] = ACTIONS(2144), - [sym___single_quote] = ACTIONS(2144), - [sym___c_double_quote] = ACTIONS(2144), - [sym___c_single_quote] = ACTIONS(2144), - [sym___r_double_quote] = ACTIONS(2144), - [sym___r_single_quote] = ACTIONS(2144), - }, - [984] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LF] = ACTIONS(3331), - [anon_sym_CR] = ACTIONS(3331), - [anon_sym_CR_LF] = ACTIONS(3331), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_union] = ACTIONS(3331), - [anon_sym_pub] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_DOLLARfor] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_asm] = ACTIONS(3331), - [anon_sym_AT_LBRACK] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), - }, - [985] = { - [sym_else_branch] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_CR] = ACTIONS(2398), - [anon_sym_CR_LF] = ACTIONS(2398), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym___global] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2398), - [anon_sym_PERCENT] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_union] = ACTIONS(2398), - [anon_sym_pub] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - [anon_sym_interface] = ACTIONS(2398), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2398), - [anon_sym_go] = ACTIONS(2398), - [anon_sym_spawn] = ACTIONS(2398), - [anon_sym_json_DOTdecode] = ACTIONS(2398), - [anon_sym_LBRACK2] = ACTIONS(2398), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_CARET] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - [anon_sym_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_GT_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_CARET] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_or] = ACTIONS(2398), - [sym_none] = ACTIONS(2398), - [sym_true] = ACTIONS(2398), - [sym_false] = ACTIONS(2398), - [sym_nil] = ACTIONS(2398), - [anon_sym_QMARK_DOT] = ACTIONS(2398), - [anon_sym_POUND_LBRACK] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(2398), - [anon_sym_is] = ACTIONS(2398), - [anon_sym_BANGis] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2398), - [anon_sym_BANGin] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_select] = ACTIONS(2398), - [anon_sym_lock] = ACTIONS(2398), - [anon_sym_rlock] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_sql] = ACTIONS(2398), - [sym_int_literal] = ACTIONS(2398), - [sym_float_literal] = ACTIONS(2398), - [sym_rune_literal] = ACTIONS(2398), - [anon_sym_AT] = ACTIONS(2398), - [anon_sym_shared] = ACTIONS(2398), - [anon_sym_map_LBRACK] = ACTIONS(2398), - [anon_sym_chan] = ACTIONS(2398), - [anon_sym_thread] = ACTIONS(2398), - [anon_sym_atomic] = ACTIONS(2398), - [anon_sym_assert] = ACTIONS(2398), - [anon_sym_defer] = ACTIONS(2398), - [anon_sym_goto] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_DOLLARfor] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(2398), - [anon_sym_asm] = ACTIONS(2398), - [anon_sym_AT_LBRACK] = ACTIONS(2398), - [sym___double_quote] = ACTIONS(2398), - [sym___single_quote] = ACTIONS(2398), - [sym___c_double_quote] = ACTIONS(2398), - [sym___c_single_quote] = ACTIONS(2398), - [sym___r_double_quote] = ACTIONS(2398), - [sym___r_single_quote] = ACTIONS(2398), - }, - [986] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_pub] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_defer] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_DOLLARfor] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_POUND] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym_AT_LBRACK] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), - }, - [987] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2156), - [anon_sym_LF] = ACTIONS(2156), - [anon_sym_CR] = ACTIONS(2156), - [anon_sym_CR_LF] = ACTIONS(2156), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2156), - [anon_sym_GT_EQ] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [anon_sym_pub] = ACTIONS(2156), - [anon_sym_mut] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2156), - [anon_sym_spawn] = ACTIONS(2156), - [anon_sym_json_DOTdecode] = ACTIONS(2156), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [anon_sym_or] = ACTIONS(2156), - [sym_none] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nil] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_DOLLARif] = ACTIONS(2156), - [anon_sym_is] = ACTIONS(2156), - [anon_sym_BANGis] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_BANGin] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_select] = ACTIONS(2156), - [anon_sym_lock] = ACTIONS(2156), - [anon_sym_rlock] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_sql] = ACTIONS(2156), - [sym_int_literal] = ACTIONS(2156), - [sym_float_literal] = ACTIONS(2156), - [sym_rune_literal] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_shared] = ACTIONS(2156), - [anon_sym_map_LBRACK] = ACTIONS(2156), - [anon_sym_chan] = ACTIONS(2156), - [anon_sym_thread] = ACTIONS(2156), - [anon_sym_atomic] = ACTIONS(2156), - [anon_sym_assert] = ACTIONS(2156), - [anon_sym_defer] = ACTIONS(2156), - [anon_sym_goto] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_DOLLARfor] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_asm] = ACTIONS(2156), - [anon_sym_AT_LBRACK] = ACTIONS(2156), - [sym___double_quote] = ACTIONS(2156), - [sym___single_quote] = ACTIONS(2156), - [sym___c_double_quote] = ACTIONS(2156), - [sym___c_single_quote] = ACTIONS(2156), - [sym___r_double_quote] = ACTIONS(2156), - [sym___r_single_quote] = ACTIONS(2156), - }, - [988] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [anon_sym_LF] = ACTIONS(3343), - [anon_sym_CR] = ACTIONS(3343), - [anon_sym_CR_LF] = ACTIONS(3343), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_union] = ACTIONS(3343), - [anon_sym_pub] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3343), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3343), - [sym_rune_literal] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3343), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_defer] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_DOLLARfor] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_POUND] = ACTIONS(3343), - [anon_sym_asm] = ACTIONS(3343), - [anon_sym_AT_LBRACK] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3343), - [sym___single_quote] = ACTIONS(3343), - [sym___c_double_quote] = ACTIONS(3343), - [sym___c_single_quote] = ACTIONS(3343), - [sym___r_double_quote] = ACTIONS(3343), - [sym___r_single_quote] = ACTIONS(3343), - }, - [989] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [1023] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_mut] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_go] = ACTIONS(563), + [anon_sym_spawn] = ACTIONS(563), + [anon_sym_json_DOTdecode] = ACTIONS(559), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_nil] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_DOLLARif] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_match] = ACTIONS(563), + [anon_sym_select] = ACTIONS(563), + [anon_sym_lock] = ACTIONS(563), + [anon_sym_rlock] = ACTIONS(563), + [anon_sym_unsafe] = ACTIONS(563), + [anon_sym_sql] = ACTIONS(563), + [sym_int_literal] = ACTIONS(563), + [sym_float_literal] = ACTIONS(559), + [sym_rune_literal] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(559), + [sym___single_quote] = ACTIONS(559), + [sym___c_double_quote] = ACTIONS(559), + [sym___c_single_quote] = ACTIONS(559), + [sym___r_double_quote] = ACTIONS(559), + [sym___r_single_quote] = ACTIONS(559), }, - [990] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [1024] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, - [991] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_pub] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [anon_sym_assert] = ACTIONS(2162), - [anon_sym_defer] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_DOLLARfor] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_asm] = ACTIONS(2162), - [anon_sym_AT_LBRACK] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [1025] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_LF] = ACTIONS(2884), + [anon_sym_CR] = ACTIONS(2884), + [anon_sym_CR_LF] = ACTIONS(2884), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_as] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym___global] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_fn] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_GT] = ACTIONS(2884), + [anon_sym_EQ_EQ] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2884), + [anon_sym_LT_EQ] = ACTIONS(2884), + [anon_sym_GT_EQ] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_pub] = ACTIONS(2884), + [anon_sym_mut] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_go] = ACTIONS(2884), + [anon_sym_spawn] = ACTIONS(2884), + [anon_sym_json_DOTdecode] = ACTIONS(2884), + [anon_sym_LBRACK2] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_CARET] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_LT_LT] = ACTIONS(2884), + [anon_sym_GT_GT] = ACTIONS(2884), + [anon_sym_GT_GT_GT] = ACTIONS(2884), + [anon_sym_AMP_CARET] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_or] = ACTIONS(2884), + [sym_none] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_nil] = ACTIONS(2884), + [anon_sym_QMARK_DOT] = ACTIONS(2884), + [anon_sym_POUND_LBRACK] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_DOLLARif] = ACTIONS(2884), + [anon_sym_DOLLARelse] = ACTIONS(3531), + [anon_sym_is] = ACTIONS(2884), + [anon_sym_BANGis] = ACTIONS(2884), + [anon_sym_in] = ACTIONS(2884), + [anon_sym_BANGin] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_select] = ACTIONS(2884), + [anon_sym_lock] = ACTIONS(2884), + [anon_sym_rlock] = ACTIONS(2884), + [anon_sym_unsafe] = ACTIONS(2884), + [anon_sym_sql] = ACTIONS(2884), + [sym_int_literal] = ACTIONS(2884), + [sym_float_literal] = ACTIONS(2884), + [sym_rune_literal] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_shared] = ACTIONS(2884), + [anon_sym_map_LBRACK] = ACTIONS(2884), + [anon_sym_chan] = ACTIONS(2884), + [anon_sym_thread] = ACTIONS(2884), + [anon_sym_atomic] = ACTIONS(2884), + [anon_sym_assert] = ACTIONS(2884), + [anon_sym_defer] = ACTIONS(2884), + [anon_sym_goto] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_DOLLARfor] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2884), + [anon_sym_asm] = ACTIONS(2884), + [anon_sym_AT_LBRACK] = ACTIONS(2884), + [sym___double_quote] = ACTIONS(2884), + [sym___single_quote] = ACTIONS(2884), + [sym___c_double_quote] = ACTIONS(2884), + [sym___c_single_quote] = ACTIONS(2884), + [sym___r_double_quote] = ACTIONS(2884), + [sym___r_single_quote] = ACTIONS(2884), }, - [992] = { - [sym_else_branch] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2392), - [anon_sym_LF] = ACTIONS(2392), - [anon_sym_CR] = ACTIONS(2392), - [anon_sym_CR_LF] = ACTIONS(2392), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2392), - [anon_sym_as] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_COMMA] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym___global] = ACTIONS(2392), - [anon_sym_type] = ACTIONS(2392), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_fn] = ACTIONS(2392), - [anon_sym_PLUS] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), - [anon_sym_SLASH] = ACTIONS(2392), - [anon_sym_PERCENT] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_GT] = ACTIONS(2392), - [anon_sym_EQ_EQ] = ACTIONS(2392), - [anon_sym_BANG_EQ] = ACTIONS(2392), - [anon_sym_LT_EQ] = ACTIONS(2392), - [anon_sym_GT_EQ] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2392), - [anon_sym_union] = ACTIONS(2392), - [anon_sym_pub] = ACTIONS(2392), - [anon_sym_mut] = ACTIONS(2392), - [anon_sym_enum] = ACTIONS(2392), - [anon_sym_interface] = ACTIONS(2392), - [anon_sym_PLUS_PLUS] = ACTIONS(2392), - [anon_sym_DASH_DASH] = ACTIONS(2392), - [anon_sym_QMARK] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_go] = ACTIONS(2392), - [anon_sym_spawn] = ACTIONS(2392), - [anon_sym_json_DOTdecode] = ACTIONS(2392), - [anon_sym_LBRACK2] = ACTIONS(2392), - [anon_sym_TILDE] = ACTIONS(2392), - [anon_sym_CARET] = ACTIONS(2392), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_LT_DASH] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), - [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_AMP_CARET] = ACTIONS(2392), - [anon_sym_AMP_AMP] = ACTIONS(2392), - [anon_sym_PIPE_PIPE] = ACTIONS(2392), - [anon_sym_or] = ACTIONS(2392), - [sym_none] = ACTIONS(2392), - [sym_true] = ACTIONS(2392), - [sym_false] = ACTIONS(2392), - [sym_nil] = ACTIONS(2392), - [anon_sym_QMARK_DOT] = ACTIONS(2392), - [anon_sym_POUND_LBRACK] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(2392), - [anon_sym_is] = ACTIONS(2392), - [anon_sym_BANGis] = ACTIONS(2392), - [anon_sym_in] = ACTIONS(2392), - [anon_sym_BANGin] = ACTIONS(2392), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_select] = ACTIONS(2392), - [anon_sym_lock] = ACTIONS(2392), - [anon_sym_rlock] = ACTIONS(2392), - [anon_sym_unsafe] = ACTIONS(2392), - [anon_sym_sql] = ACTIONS(2392), - [sym_int_literal] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), - [sym_rune_literal] = ACTIONS(2392), - [anon_sym_AT] = ACTIONS(2392), - [anon_sym_shared] = ACTIONS(2392), - [anon_sym_map_LBRACK] = ACTIONS(2392), - [anon_sym_chan] = ACTIONS(2392), - [anon_sym_thread] = ACTIONS(2392), - [anon_sym_atomic] = ACTIONS(2392), - [anon_sym_assert] = ACTIONS(2392), - [anon_sym_defer] = ACTIONS(2392), - [anon_sym_goto] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_DOLLARfor] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(2392), - [anon_sym_asm] = ACTIONS(2392), - [anon_sym_AT_LBRACK] = ACTIONS(2392), - [sym___double_quote] = ACTIONS(2392), - [sym___single_quote] = ACTIONS(2392), - [sym___c_double_quote] = ACTIONS(2392), - [sym___c_single_quote] = ACTIONS(2392), - [sym___r_double_quote] = ACTIONS(2392), - [sym___r_single_quote] = ACTIONS(2392), + [1026] = { + [sym_reference_expression] = STATE(4488), + [sym_type_reference_expression] = STATE(1332), + [sym_plain_type] = STATE(1380), + [sym__plain_type_without_special] = STATE(1403), + [sym_anon_struct_type] = STATE(1402), + [sym_multi_return_type] = STATE(1403), + [sym_result_type] = STATE(1403), + [sym_option_type] = STATE(1403), + [sym_qualified_type] = STATE(1332), + [sym_fixed_array_type] = STATE(1402), + [sym_array_type] = STATE(1402), + [sym_pointer_type] = STATE(1402), + [sym_wrong_pointer_type] = STATE(1402), + [sym_map_type] = STATE(1402), + [sym_channel_type] = STATE(1402), + [sym_shared_type] = STATE(1402), + [sym_thread_type] = STATE(1402), + [sym_atomic_type] = STATE(1402), + [sym_generic_type] = STATE(1402), + [sym_function_type] = STATE(1402), + [sym_identifier] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3505), + [anon_sym_BANG] = ACTIONS(3507), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(621), + [anon_sym_LBRACK2] = ACTIONS(3509), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(621), + [sym_rune_literal] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3513), + [anon_sym_map_LBRACK] = ACTIONS(3515), + [anon_sym_chan] = ACTIONS(3517), + [anon_sym_thread] = ACTIONS(3519), + [anon_sym_atomic] = ACTIONS(3521), + [sym___double_quote] = ACTIONS(621), + [sym___single_quote] = ACTIONS(621), + [sym___c_double_quote] = ACTIONS(621), + [sym___c_single_quote] = ACTIONS(621), + [sym___r_double_quote] = ACTIONS(621), + [sym___r_single_quote] = ACTIONS(621), }, - [993] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2052), - [anon_sym_CR] = ACTIONS(2052), - [anon_sym_CR_LF] = ACTIONS(2052), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_const] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2052), - [anon_sym_type] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_union] = ACTIONS(2052), - [anon_sym_pub] = ACTIONS(2052), - [anon_sym_mut] = ACTIONS(2052), - [anon_sym_enum] = ACTIONS(2052), - [anon_sym_interface] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2052), - [anon_sym_json_DOTdecode] = ACTIONS(2052), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2052), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_nil] = ACTIONS(2052), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_DOLLARif] = ACTIONS(2052), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_select] = ACTIONS(2052), - [anon_sym_lock] = ACTIONS(2052), - [anon_sym_rlock] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_sql] = ACTIONS(2052), - [sym_int_literal] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), - [sym_rune_literal] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_shared] = ACTIONS(2052), - [anon_sym_map_LBRACK] = ACTIONS(2052), - [anon_sym_chan] = ACTIONS(2052), - [anon_sym_thread] = ACTIONS(2052), - [anon_sym_atomic] = ACTIONS(2052), - [anon_sym_assert] = ACTIONS(2052), - [anon_sym_defer] = ACTIONS(2052), - [anon_sym_goto] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_DOLLARfor] = ACTIONS(2052), - [anon_sym_for] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2052), - [anon_sym_asm] = ACTIONS(2052), - [anon_sym_AT_LBRACK] = ACTIONS(2052), - [sym___double_quote] = ACTIONS(2052), - [sym___single_quote] = ACTIONS(2052), - [sym___c_double_quote] = ACTIONS(2052), - [sym___c_single_quote] = ACTIONS(2052), - [sym___r_double_quote] = ACTIONS(2052), - [sym___r_single_quote] = ACTIONS(2052), + [1027] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_DOLLARelse] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, - [994] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_identifier] = ACTIONS(2234), - [anon_sym_LF] = ACTIONS(2234), - [anon_sym_CR] = ACTIONS(2234), - [anon_sym_CR_LF] = ACTIONS(2234), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [anon_sym_pub] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_interface] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(2234), - [anon_sym_spawn] = ACTIONS(2234), - [anon_sym_json_DOTdecode] = ACTIONS(2234), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(2234), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_nil] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_DOLLARif] = ACTIONS(2234), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_select] = ACTIONS(2234), - [anon_sym_lock] = ACTIONS(2234), - [anon_sym_rlock] = ACTIONS(2234), - [anon_sym_unsafe] = ACTIONS(2234), - [anon_sym_sql] = ACTIONS(2234), - [sym_int_literal] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), - [sym_rune_literal] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_shared] = ACTIONS(2234), - [anon_sym_map_LBRACK] = ACTIONS(2234), - [anon_sym_chan] = ACTIONS(2234), - [anon_sym_thread] = ACTIONS(2234), - [anon_sym_atomic] = ACTIONS(2234), - [anon_sym_assert] = ACTIONS(2234), - [anon_sym_defer] = ACTIONS(2234), - [anon_sym_goto] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_DOLLARfor] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_asm] = ACTIONS(2234), - [anon_sym_AT_LBRACK] = ACTIONS(2234), - [sym___double_quote] = ACTIONS(2234), - [sym___single_quote] = ACTIONS(2234), - [sym___c_double_quote] = ACTIONS(2234), - [sym___c_single_quote] = ACTIONS(2234), - [sym___r_double_quote] = ACTIONS(2234), - [sym___r_single_quote] = ACTIONS(2234), + [1028] = { + [sym_reference_expression] = STATE(4488), + [sym_type_reference_expression] = STATE(1332), + [sym_plain_type] = STATE(1395), + [sym__plain_type_without_special] = STATE(1403), + [sym_anon_struct_type] = STATE(1402), + [sym_multi_return_type] = STATE(1403), + [sym_result_type] = STATE(1403), + [sym_option_type] = STATE(1403), + [sym_qualified_type] = STATE(1332), + [sym_fixed_array_type] = STATE(1402), + [sym_array_type] = STATE(1402), + [sym_pointer_type] = STATE(1402), + [sym_wrong_pointer_type] = STATE(1402), + [sym_map_type] = STATE(1402), + [sym_channel_type] = STATE(1402), + [sym_shared_type] = STATE(1402), + [sym_thread_type] = STATE(1402), + [sym_atomic_type] = STATE(1402), + [sym_generic_type] = STATE(1402), + [sym_function_type] = STATE(1402), + [sym_identifier] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(3505), + [anon_sym_BANG] = ACTIONS(3507), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(581), + [anon_sym_LBRACK2] = ACTIONS(3509), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_LT_DASH] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(581), + [anon_sym_AMP_CARET] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(581), + [sym_rune_literal] = ACTIONS(581), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3513), + [anon_sym_map_LBRACK] = ACTIONS(3515), + [anon_sym_chan] = ACTIONS(3517), + [anon_sym_thread] = ACTIONS(3519), + [anon_sym_atomic] = ACTIONS(3521), + [sym___double_quote] = ACTIONS(581), + [sym___single_quote] = ACTIONS(581), + [sym___c_double_quote] = ACTIONS(581), + [sym___c_single_quote] = ACTIONS(581), + [sym___r_double_quote] = ACTIONS(581), + [sym___r_single_quote] = ACTIONS(581), }, - [995] = { - [sym_type_parameters] = STATE(4109), - [sym_argument_list] = STATE(1029), - [sym_or_block] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3345), - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym___global] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3321), - [anon_sym_GT] = ACTIONS(3321), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_pub] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3265), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [anon_sym_assert] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_DOLLARfor] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_asm] = ACTIONS(3347), - [anon_sym_AT_LBRACK] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), + [1029] = { + [ts_builtin_sym_end] = ACTIONS(3335), + [sym_identifier] = ACTIONS(3337), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_CR] = ACTIONS(3337), + [anon_sym_CR_LF] = ACTIONS(3337), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_as] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym___global] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3337), + [anon_sym_fn] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3337), + [anon_sym_union] = ACTIONS(3337), + [anon_sym_pub] = ACTIONS(3337), + [anon_sym_mut] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_go] = ACTIONS(3337), + [anon_sym_spawn] = ACTIONS(3337), + [anon_sym_json_DOTdecode] = ACTIONS(3337), + [anon_sym_LBRACK2] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_LT_DASH] = ACTIONS(3337), + [anon_sym_LT_LT] = ACTIONS(3337), + [anon_sym_GT_GT] = ACTIONS(3337), + [anon_sym_GT_GT_GT] = ACTIONS(3337), + [anon_sym_AMP_CARET] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_or] = ACTIONS(3337), + [sym_none] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_nil] = ACTIONS(3337), + [anon_sym_QMARK_DOT] = ACTIONS(3337), + [anon_sym_POUND_LBRACK] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_DOLLARif] = ACTIONS(3337), + [anon_sym_is] = ACTIONS(3337), + [anon_sym_BANGis] = ACTIONS(3337), + [anon_sym_in] = ACTIONS(3337), + [anon_sym_BANGin] = ACTIONS(3337), + [anon_sym_match] = ACTIONS(3337), + [anon_sym_select] = ACTIONS(3337), + [anon_sym_lock] = ACTIONS(3337), + [anon_sym_rlock] = ACTIONS(3337), + [anon_sym_unsafe] = ACTIONS(3337), + [anon_sym_sql] = ACTIONS(3337), + [sym_int_literal] = ACTIONS(3337), + [sym_float_literal] = ACTIONS(3337), + [sym_rune_literal] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_shared] = ACTIONS(3337), + [anon_sym_map_LBRACK] = ACTIONS(3337), + [anon_sym_chan] = ACTIONS(3337), + [anon_sym_thread] = ACTIONS(3337), + [anon_sym_atomic] = ACTIONS(3337), + [anon_sym_assert] = ACTIONS(3337), + [anon_sym_defer] = ACTIONS(3337), + [anon_sym_goto] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_DOLLARfor] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_asm] = ACTIONS(3337), + [anon_sym_AT_LBRACK] = ACTIONS(3337), + [sym___double_quote] = ACTIONS(3337), + [sym___single_quote] = ACTIONS(3337), + [sym___c_double_quote] = ACTIONS(3337), + [sym___c_single_quote] = ACTIONS(3337), + [sym___r_double_quote] = ACTIONS(3337), + [sym___r_single_quote] = ACTIONS(3337), }, - [996] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_DOLLARelse] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [1030] = { + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_CR] = ACTIONS(3218), + [anon_sym_CR_LF] = ACTIONS(3218), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym___global] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3218), + [anon_sym_pub] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3218), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3218), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3218), + [anon_sym_AMP_CARET] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3218), + [anon_sym_POUND_LBRACK] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + [sym_rune_literal] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3218), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [anon_sym_assert] = ACTIONS(3218), + [anon_sym_defer] = ACTIONS(3218), + [anon_sym_goto] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_DOLLARfor] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_asm] = ACTIONS(3218), + [anon_sym_AT_LBRACK] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3218), + [sym___single_quote] = ACTIONS(3218), + [sym___c_double_quote] = ACTIONS(3218), + [sym___c_single_quote] = ACTIONS(3218), + [sym___r_double_quote] = ACTIONS(3218), + [sym___r_single_quote] = ACTIONS(3218), }, - [997] = { - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2758), - [anon_sym_CR] = ACTIONS(2758), - [anon_sym_CR_LF] = ACTIONS(2758), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_as] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym___global] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_fn] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_pub] = ACTIONS(2758), - [anon_sym_mut] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_interface] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_go] = ACTIONS(2758), - [anon_sym_spawn] = ACTIONS(2758), - [anon_sym_json_DOTdecode] = ACTIONS(2758), - [anon_sym_LBRACK2] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_LT_DASH] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_GT_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_CARET] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2758), - [sym_none] = ACTIONS(2758), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_nil] = ACTIONS(2758), - [anon_sym_QMARK_DOT] = ACTIONS(2758), - [anon_sym_POUND_LBRACK] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_DOLLARif] = ACTIONS(2758), - [anon_sym_DOLLARelse] = ACTIONS(3349), - [anon_sym_is] = ACTIONS(2758), - [anon_sym_BANGis] = ACTIONS(2758), - [anon_sym_in] = ACTIONS(2758), - [anon_sym_BANGin] = ACTIONS(2758), - [anon_sym_match] = ACTIONS(2758), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2758), - [anon_sym_rlock] = ACTIONS(2758), - [anon_sym_unsafe] = ACTIONS(2758), - [anon_sym_sql] = ACTIONS(2758), - [sym_int_literal] = ACTIONS(2758), - [sym_float_literal] = ACTIONS(2758), - [sym_rune_literal] = ACTIONS(2758), - [anon_sym_AT] = ACTIONS(2758), - [anon_sym_shared] = ACTIONS(2758), - [anon_sym_map_LBRACK] = ACTIONS(2758), - [anon_sym_chan] = ACTIONS(2758), - [anon_sym_thread] = ACTIONS(2758), - [anon_sym_atomic] = ACTIONS(2758), - [anon_sym_assert] = ACTIONS(2758), - [anon_sym_defer] = ACTIONS(2758), - [anon_sym_goto] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_DOLLARfor] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_asm] = ACTIONS(2758), - [anon_sym_AT_LBRACK] = ACTIONS(2758), - [sym___double_quote] = ACTIONS(2758), - [sym___single_quote] = ACTIONS(2758), - [sym___c_double_quote] = ACTIONS(2758), - [sym___c_single_quote] = ACTIONS(2758), - [sym___r_double_quote] = ACTIONS(2758), - [sym___r_single_quote] = ACTIONS(2758), + [1031] = { + [ts_builtin_sym_end] = ACTIONS(2752), + [sym_identifier] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_CR] = ACTIONS(2750), + [anon_sym_CR_LF] = ACTIONS(2750), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym___global] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_union] = ACTIONS(2750), + [anon_sym_pub] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_enum] = ACTIONS(2750), + [anon_sym_interface] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2750), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2750), + [anon_sym_POUND_LBRACK] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + [sym_rune_literal] = ACTIONS(2750), + [anon_sym_AT] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2750), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [anon_sym_assert] = ACTIONS(2750), + [anon_sym_defer] = ACTIONS(2750), + [anon_sym_goto] = ACTIONS(2750), + [anon_sym_break] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2750), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_DOLLARfor] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_asm] = ACTIONS(2750), + [anon_sym_AT_LBRACK] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2750), + [sym___single_quote] = ACTIONS(2750), + [sym___c_double_quote] = ACTIONS(2750), + [sym___c_single_quote] = ACTIONS(2750), + [sym___r_double_quote] = ACTIONS(2750), + [sym___r_single_quote] = ACTIONS(2750), }, - [998] = { - [ts_builtin_sym_end] = ACTIONS(2614), - [sym_identifier] = ACTIONS(2616), - [anon_sym_LF] = ACTIONS(2616), - [anon_sym_CR] = ACTIONS(2616), - [anon_sym_CR_LF] = ACTIONS(2616), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_as] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_COMMA] = ACTIONS(2616), - [anon_sym_const] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym___global] = ACTIONS(2616), - [anon_sym_type] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_fn] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_SLASH] = ACTIONS(2616), - [anon_sym_PERCENT] = ACTIONS(2616), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2616), - [anon_sym_BANG_EQ] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2616), - [anon_sym_GT_EQ] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2616), - [anon_sym_union] = ACTIONS(2616), - [anon_sym_pub] = ACTIONS(2616), - [anon_sym_mut] = ACTIONS(2616), - [anon_sym_enum] = ACTIONS(2616), - [anon_sym_interface] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_go] = ACTIONS(2616), - [anon_sym_spawn] = ACTIONS(2616), - [anon_sym_json_DOTdecode] = ACTIONS(2616), - [anon_sym_LBRACK2] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2616), - [anon_sym_LT_LT] = ACTIONS(2616), - [anon_sym_GT_GT] = ACTIONS(2616), - [anon_sym_GT_GT_GT] = ACTIONS(2616), - [anon_sym_AMP_CARET] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2616), - [anon_sym_or] = ACTIONS(2616), - [sym_none] = ACTIONS(2616), - [sym_true] = ACTIONS(2616), - [sym_false] = ACTIONS(2616), - [sym_nil] = ACTIONS(2616), - [anon_sym_QMARK_DOT] = ACTIONS(2616), - [anon_sym_POUND_LBRACK] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_DOLLARif] = ACTIONS(2616), - [anon_sym_DOLLARelse] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(2616), - [anon_sym_BANGis] = ACTIONS(2616), - [anon_sym_in] = ACTIONS(2616), - [anon_sym_BANGin] = ACTIONS(2616), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_select] = ACTIONS(2616), - [anon_sym_lock] = ACTIONS(2616), - [anon_sym_rlock] = ACTIONS(2616), - [anon_sym_unsafe] = ACTIONS(2616), - [anon_sym_sql] = ACTIONS(2616), - [sym_int_literal] = ACTIONS(2616), - [sym_float_literal] = ACTIONS(2616), - [sym_rune_literal] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_shared] = ACTIONS(2616), - [anon_sym_map_LBRACK] = ACTIONS(2616), - [anon_sym_chan] = ACTIONS(2616), - [anon_sym_thread] = ACTIONS(2616), - [anon_sym_atomic] = ACTIONS(2616), - [anon_sym_assert] = ACTIONS(2616), - [anon_sym_defer] = ACTIONS(2616), - [anon_sym_goto] = ACTIONS(2616), - [anon_sym_break] = ACTIONS(2616), - [anon_sym_continue] = ACTIONS(2616), - [anon_sym_return] = ACTIONS(2616), - [anon_sym_DOLLARfor] = ACTIONS(2616), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_POUND] = ACTIONS(2616), - [anon_sym_asm] = ACTIONS(2616), - [anon_sym_AT_LBRACK] = ACTIONS(2616), - [sym___double_quote] = ACTIONS(2616), - [sym___single_quote] = ACTIONS(2616), - [sym___c_double_quote] = ACTIONS(2616), - [sym___c_single_quote] = ACTIONS(2616), - [sym___r_double_quote] = ACTIONS(2616), - [sym___r_single_quote] = ACTIONS(2616), + [1032] = { + [ts_builtin_sym_end] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3170), + [anon_sym_LF] = ACTIONS(3170), + [anon_sym_CR] = ACTIONS(3170), + [anon_sym_CR_LF] = ACTIONS(3170), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym___global] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_pub] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3170), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3170), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3170), + [anon_sym_AMP_CARET] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_PIPE_PIPE] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3170), + [anon_sym_POUND_LBRACK] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3170), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3170), + [sym_rune_literal] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3170), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [anon_sym_assert] = ACTIONS(3170), + [anon_sym_defer] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_DOLLARfor] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym_AT_LBRACK] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3170), + [sym___single_quote] = ACTIONS(3170), + [sym___c_double_quote] = ACTIONS(3170), + [sym___c_single_quote] = ACTIONS(3170), + [sym___r_double_quote] = ACTIONS(3170), + [sym___r_single_quote] = ACTIONS(3170), }, - [999] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym___global] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [anon_sym_assert] = ACTIONS(2736), - [anon_sym_defer] = ACTIONS(2736), - [anon_sym_goto] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_DOLLARfor] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_asm] = ACTIONS(2736), - [anon_sym_AT_LBRACK] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), + [1033] = { + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3174), + [anon_sym_LF] = ACTIONS(3174), + [anon_sym_CR] = ACTIONS(3174), + [anon_sym_CR_LF] = ACTIONS(3174), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym___global] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_pub] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3174), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3174), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3174), + [anon_sym_AMP_CARET] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3174), + [anon_sym_POUND_LBRACK] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3174), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + [sym_rune_literal] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3174), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_defer] = ACTIONS(3174), + [anon_sym_goto] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_DOLLARfor] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3174), + [anon_sym_asm] = ACTIONS(3174), + [anon_sym_AT_LBRACK] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3174), + [sym___single_quote] = ACTIONS(3174), + [sym___c_double_quote] = ACTIONS(3174), + [sym___c_single_quote] = ACTIONS(3174), + [sym___r_double_quote] = ACTIONS(3174), + [sym___r_single_quote] = ACTIONS(3174), }, - [1000] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [1034] = { + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_CR] = ACTIONS(3182), + [anon_sym_CR_LF] = ACTIONS(3182), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym___global] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_pub] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3182), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3182), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3182), + [anon_sym_AMP_CARET] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3182), + [anon_sym_POUND_LBRACK] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3182), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3182), + [sym_rune_literal] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3182), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [anon_sym_assert] = ACTIONS(3182), + [anon_sym_defer] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_DOLLARfor] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_POUND] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym_AT_LBRACK] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3182), + [sym___single_quote] = ACTIONS(3182), + [sym___c_double_quote] = ACTIONS(3182), + [sym___c_single_quote] = ACTIONS(3182), + [sym___r_double_quote] = ACTIONS(3182), + [sym___r_single_quote] = ACTIONS(3182), }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym___global] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_DOLLARelse] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [anon_sym_assert] = ACTIONS(2736), - [anon_sym_defer] = ACTIONS(2736), - [anon_sym_goto] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_DOLLARfor] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_asm] = ACTIONS(2736), - [anon_sym_AT_LBRACK] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), + [1035] = { + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_CR] = ACTIONS(3190), + [anon_sym_CR_LF] = ACTIONS(3190), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym___global] = ACTIONS(3190), + [anon_sym_type] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_pub] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3190), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3190), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3190), + [anon_sym_AMP_CARET] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(3190), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_POUND_LBRACK] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3190), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + [sym_rune_literal] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3190), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [anon_sym_assert] = ACTIONS(3190), + [anon_sym_defer] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_DOLLARfor] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3190), + [anon_sym_asm] = ACTIONS(3190), + [anon_sym_AT_LBRACK] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3190), + [sym___single_quote] = ACTIONS(3190), + [sym___c_double_quote] = ACTIONS(3190), + [sym___c_single_quote] = ACTIONS(3190), + [sym___r_double_quote] = ACTIONS(3190), + [sym___r_single_quote] = ACTIONS(3190), }, - [1002] = { - [sym_type_parameters] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym___global] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2764), - [anon_sym_BANG_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_CARET] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2764), - [anon_sym_POUND_LBRACK] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2764), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [anon_sym_assert] = ACTIONS(2764), - [anon_sym_defer] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_DOLLARfor] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [anon_sym_asm] = ACTIONS(2764), - [anon_sym_AT_LBRACK] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), + [1036] = { + [ts_builtin_sym_end] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3265), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_CR] = ACTIONS(3265), + [anon_sym_CR_LF] = ACTIONS(3265), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym___global] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_union] = ACTIONS(3265), + [anon_sym_pub] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3265), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3265), + [anon_sym_POUND_LBRACK] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3265), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3265), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + [sym_rune_literal] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3265), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [anon_sym_assert] = ACTIONS(3265), + [anon_sym_defer] = ACTIONS(3265), + [anon_sym_goto] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_DOLLARfor] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_POUND] = ACTIONS(3265), + [anon_sym_asm] = ACTIONS(3265), + [anon_sym_AT_LBRACK] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3265), + [sym___single_quote] = ACTIONS(3265), + [sym___c_double_quote] = ACTIONS(3265), + [sym___c_single_quote] = ACTIONS(3265), + [sym___r_double_quote] = ACTIONS(3265), + [sym___r_single_quote] = ACTIONS(3265), }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(3123), - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym___global] = ACTIONS(3125), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_pub] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_interface] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [anon_sym_assert] = ACTIONS(3125), - [anon_sym_defer] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_DOLLARfor] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_POUND] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym_AT_LBRACK] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), + [1037] = { + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_identifier] = ACTIONS(3277), + [anon_sym_LF] = ACTIONS(3277), + [anon_sym_CR] = ACTIONS(3277), + [anon_sym_CR_LF] = ACTIONS(3277), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3277), + [anon_sym_as] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym___global] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_fn] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_PERCENT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_EQ_EQ] = ACTIONS(3277), + [anon_sym_BANG_EQ] = ACTIONS(3277), + [anon_sym_LT_EQ] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3277), + [anon_sym_union] = ACTIONS(3277), + [anon_sym_pub] = ACTIONS(3277), + [anon_sym_mut] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_QMARK] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_go] = ACTIONS(3277), + [anon_sym_spawn] = ACTIONS(3277), + [anon_sym_json_DOTdecode] = ACTIONS(3277), + [anon_sym_LBRACK2] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(3277), + [anon_sym_GT_GT_GT] = ACTIONS(3277), + [anon_sym_AMP_CARET] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_or] = ACTIONS(3277), + [sym_none] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_nil] = ACTIONS(3277), + [anon_sym_QMARK_DOT] = ACTIONS(3277), + [anon_sym_POUND_LBRACK] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_DOLLARif] = ACTIONS(3277), + [anon_sym_is] = ACTIONS(3277), + [anon_sym_BANGis] = ACTIONS(3277), + [anon_sym_in] = ACTIONS(3277), + [anon_sym_BANGin] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_lock] = ACTIONS(3277), + [anon_sym_rlock] = ACTIONS(3277), + [anon_sym_unsafe] = ACTIONS(3277), + [anon_sym_sql] = ACTIONS(3277), + [sym_int_literal] = ACTIONS(3277), + [sym_float_literal] = ACTIONS(3277), + [sym_rune_literal] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_shared] = ACTIONS(3277), + [anon_sym_map_LBRACK] = ACTIONS(3277), + [anon_sym_chan] = ACTIONS(3277), + [anon_sym_thread] = ACTIONS(3277), + [anon_sym_atomic] = ACTIONS(3277), + [anon_sym_assert] = ACTIONS(3277), + [anon_sym_defer] = ACTIONS(3277), + [anon_sym_goto] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_DOLLARfor] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_POUND] = ACTIONS(3277), + [anon_sym_asm] = ACTIONS(3277), + [anon_sym_AT_LBRACK] = ACTIONS(3277), + [sym___double_quote] = ACTIONS(3277), + [sym___single_quote] = ACTIONS(3277), + [sym___c_double_quote] = ACTIONS(3277), + [sym___c_single_quote] = ACTIONS(3277), + [sym___r_double_quote] = ACTIONS(3277), + [sym___r_single_quote] = ACTIONS(3277), }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym___global] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_union] = ACTIONS(3054), - [anon_sym_pub] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [anon_sym_assert] = ACTIONS(3054), - [anon_sym_defer] = ACTIONS(3054), - [anon_sym_goto] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_DOLLARfor] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_POUND] = ACTIONS(3054), - [anon_sym_asm] = ACTIONS(3054), - [anon_sym_AT_LBRACK] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), + [1038] = { + [ts_builtin_sym_end] = ACTIONS(3271), + [sym_identifier] = ACTIONS(3273), + [anon_sym_LF] = ACTIONS(3273), + [anon_sym_CR] = ACTIONS(3273), + [anon_sym_CR_LF] = ACTIONS(3273), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3273), + [anon_sym_as] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym___global] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_PIPE] = ACTIONS(3273), + [anon_sym_fn] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_PERCENT] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_EQ] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_union] = ACTIONS(3273), + [anon_sym_pub] = ACTIONS(3273), + [anon_sym_mut] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_go] = ACTIONS(3273), + [anon_sym_spawn] = ACTIONS(3273), + [anon_sym_json_DOTdecode] = ACTIONS(3273), + [anon_sym_LBRACK2] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_CARET] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_LT_DASH] = ACTIONS(3273), + [anon_sym_LT_LT] = ACTIONS(3273), + [anon_sym_GT_GT] = ACTIONS(3273), + [anon_sym_GT_GT_GT] = ACTIONS(3273), + [anon_sym_AMP_CARET] = ACTIONS(3273), + [anon_sym_AMP_AMP] = ACTIONS(3273), + [anon_sym_PIPE_PIPE] = ACTIONS(3273), + [anon_sym_or] = ACTIONS(3273), + [sym_none] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_nil] = ACTIONS(3273), + [anon_sym_QMARK_DOT] = ACTIONS(3273), + [anon_sym_POUND_LBRACK] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_DOLLARif] = ACTIONS(3273), + [anon_sym_is] = ACTIONS(3273), + [anon_sym_BANGis] = ACTIONS(3273), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(3273), + [anon_sym_select] = ACTIONS(3273), + [anon_sym_lock] = ACTIONS(3273), + [anon_sym_rlock] = ACTIONS(3273), + [anon_sym_unsafe] = ACTIONS(3273), + [anon_sym_sql] = ACTIONS(3273), + [sym_int_literal] = ACTIONS(3273), + [sym_float_literal] = ACTIONS(3273), + [sym_rune_literal] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_shared] = ACTIONS(3273), + [anon_sym_map_LBRACK] = ACTIONS(3273), + [anon_sym_chan] = ACTIONS(3273), + [anon_sym_thread] = ACTIONS(3273), + [anon_sym_atomic] = ACTIONS(3273), + [anon_sym_assert] = ACTIONS(3273), + [anon_sym_defer] = ACTIONS(3273), + [anon_sym_goto] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_DOLLARfor] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(3273), + [anon_sym_asm] = ACTIONS(3273), + [anon_sym_AT_LBRACK] = ACTIONS(3273), + [sym___double_quote] = ACTIONS(3273), + [sym___single_quote] = ACTIONS(3273), + [sym___c_double_quote] = ACTIONS(3273), + [sym___c_single_quote] = ACTIONS(3273), + [sym___r_double_quote] = ACTIONS(3273), + [sym___r_single_quote] = ACTIONS(3273), }, - [1005] = { + [1039] = { + [ts_builtin_sym_end] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3333), + [anon_sym_LF] = ACTIONS(3333), + [anon_sym_CR] = ACTIONS(3333), + [anon_sym_CR_LF] = ACTIONS(3333), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_as] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_COMMA] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym___global] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_PIPE] = ACTIONS(3333), + [anon_sym_fn] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_union] = ACTIONS(3333), + [anon_sym_pub] = ACTIONS(3333), + [anon_sym_mut] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_QMARK] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_go] = ACTIONS(3333), + [anon_sym_spawn] = ACTIONS(3333), + [anon_sym_json_DOTdecode] = ACTIONS(3333), + [anon_sym_LBRACK2] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_LT_DASH] = ACTIONS(3333), + [anon_sym_LT_LT] = ACTIONS(3333), + [anon_sym_GT_GT] = ACTIONS(3333), + [anon_sym_GT_GT_GT] = ACTIONS(3333), + [anon_sym_AMP_CARET] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3333), + [sym_none] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_nil] = ACTIONS(3333), + [anon_sym_QMARK_DOT] = ACTIONS(3333), + [anon_sym_POUND_LBRACK] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_DOLLARif] = ACTIONS(3333), + [anon_sym_is] = ACTIONS(3333), + [anon_sym_BANGis] = ACTIONS(3333), + [anon_sym_in] = ACTIONS(3333), + [anon_sym_BANGin] = ACTIONS(3333), + [anon_sym_match] = ACTIONS(3333), + [anon_sym_select] = ACTIONS(3333), + [anon_sym_lock] = ACTIONS(3333), + [anon_sym_rlock] = ACTIONS(3333), + [anon_sym_unsafe] = ACTIONS(3333), + [anon_sym_sql] = ACTIONS(3333), + [sym_int_literal] = ACTIONS(3333), + [sym_float_literal] = ACTIONS(3333), + [sym_rune_literal] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_shared] = ACTIONS(3333), + [anon_sym_map_LBRACK] = ACTIONS(3333), + [anon_sym_chan] = ACTIONS(3333), + [anon_sym_thread] = ACTIONS(3333), + [anon_sym_atomic] = ACTIONS(3333), + [anon_sym_assert] = ACTIONS(3333), + [anon_sym_defer] = ACTIONS(3333), + [anon_sym_goto] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_DOLLARfor] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_POUND] = ACTIONS(3333), + [anon_sym_asm] = ACTIONS(3333), + [anon_sym_AT_LBRACK] = ACTIONS(3333), + [sym___double_quote] = ACTIONS(3333), + [sym___single_quote] = ACTIONS(3333), + [sym___c_double_quote] = ACTIONS(3333), + [sym___c_single_quote] = ACTIONS(3333), + [sym___r_double_quote] = ACTIONS(3333), + [sym___r_single_quote] = ACTIONS(3333), + }, + [1040] = { [ts_builtin_sym_end] = ACTIONS(3116), [sym_identifier] = ACTIONS(3118), [anon_sym_LF] = ACTIONS(3118), [anon_sym_CR] = ACTIONS(3118), [anon_sym_CR_LF] = ACTIONS(3118), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3120), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3118), [anon_sym_as] = ACTIONS(3118), [anon_sym_LBRACE] = ACTIONS(3118), [anon_sym_COMMA] = ACTIONS(3118), @@ -141273,1102 +145203,3478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3118), [sym___r_single_quote] = ACTIONS(3118), }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), + [1041] = { + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3309), + [anon_sym_LF] = ACTIONS(3309), + [anon_sym_CR] = ACTIONS(3309), + [anon_sym_CR_LF] = ACTIONS(3309), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym___global] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_union] = ACTIONS(3309), + [anon_sym_pub] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3309), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_or] = ACTIONS(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [anon_sym_assert] = ACTIONS(3309), + [anon_sym_defer] = ACTIONS(3309), + [anon_sym_goto] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_DOLLARfor] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_POUND] = ACTIONS(3309), + [anon_sym_asm] = ACTIONS(3309), + [anon_sym_AT_LBRACK] = ACTIONS(3309), + [sym___double_quote] = ACTIONS(3309), + [sym___single_quote] = ACTIONS(3309), + [sym___c_double_quote] = ACTIONS(3309), + [sym___c_single_quote] = ACTIONS(3309), + [sym___r_double_quote] = ACTIONS(3309), + [sym___r_single_quote] = ACTIONS(3309), }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [1042] = { + [ts_builtin_sym_end] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym___global] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [anon_sym_EQ_EQ] = ACTIONS(3301), + [anon_sym_BANG_EQ] = ACTIONS(3301), + [anon_sym_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_EQ] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_union] = ACTIONS(3301), + [anon_sym_pub] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3301), + [anon_sym_PIPE_PIPE] = ACTIONS(3301), + [anon_sym_or] = ACTIONS(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [anon_sym_assert] = ACTIONS(3301), + [anon_sym_defer] = ACTIONS(3301), + [anon_sym_goto] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_DOLLARfor] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_asm] = ACTIONS(3301), + [anon_sym_AT_LBRACK] = ACTIONS(3301), + [sym___double_quote] = ACTIONS(3301), + [sym___single_quote] = ACTIONS(3301), + [sym___c_double_quote] = ACTIONS(3301), + [sym___c_single_quote] = ACTIONS(3301), + [sym___r_double_quote] = ACTIONS(3301), + [sym___r_single_quote] = ACTIONS(3301), }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [1043] = { + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LF] = ACTIONS(3222), + [anon_sym_CR] = ACTIONS(3222), + [anon_sym_CR_LF] = ACTIONS(3222), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym___global] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_union] = ACTIONS(3222), + [anon_sym_pub] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3222), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3222), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3222), + [anon_sym_AMP_CARET] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3222), + [anon_sym_POUND_LBRACK] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3222), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [anon_sym_assert] = ACTIONS(3222), + [anon_sym_defer] = ACTIONS(3222), + [anon_sym_goto] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_DOLLARfor] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3222), + [anon_sym_AT_LBRACK] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3222), + [sym___single_quote] = ACTIONS(3222), + [sym___c_double_quote] = ACTIONS(3222), + [sym___c_single_quote] = ACTIONS(3222), + [sym___r_double_quote] = ACTIONS(3222), + [sym___r_single_quote] = ACTIONS(3222), }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LF] = ACTIONS(3002), - [anon_sym_CR] = ACTIONS(3002), - [anon_sym_CR_LF] = ACTIONS(3002), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_as] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3002), - [anon_sym_const] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym___global] = ACTIONS(3002), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_fn] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_EQ_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_LT_EQ] = ACTIONS(3002), - [anon_sym_GT_EQ] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3002), - [anon_sym_union] = ACTIONS(3002), - [anon_sym_pub] = ACTIONS(3002), - [anon_sym_mut] = ACTIONS(3002), - [anon_sym_enum] = ACTIONS(3002), - [anon_sym_interface] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3002), - [anon_sym_DASH_DASH] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_go] = ACTIONS(3002), - [anon_sym_spawn] = ACTIONS(3002), - [anon_sym_json_DOTdecode] = ACTIONS(3002), - [anon_sym_LBRACK2] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3002), - [anon_sym_GT_GT] = ACTIONS(3002), - [anon_sym_GT_GT_GT] = ACTIONS(3002), - [anon_sym_AMP_CARET] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_or] = ACTIONS(3002), - [sym_none] = ACTIONS(3002), - [sym_true] = ACTIONS(3002), - [sym_false] = ACTIONS(3002), - [sym_nil] = ACTIONS(3002), - [anon_sym_QMARK_DOT] = ACTIONS(3002), - [anon_sym_POUND_LBRACK] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_DOLLARif] = ACTIONS(3002), - [anon_sym_is] = ACTIONS(3002), - [anon_sym_BANGis] = ACTIONS(3002), - [anon_sym_in] = ACTIONS(3002), - [anon_sym_BANGin] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_select] = ACTIONS(3002), - [anon_sym_lock] = ACTIONS(3002), - [anon_sym_rlock] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_sql] = ACTIONS(3002), - [sym_int_literal] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3002), - [sym_rune_literal] = ACTIONS(3002), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_shared] = ACTIONS(3002), - [anon_sym_map_LBRACK] = ACTIONS(3002), - [anon_sym_chan] = ACTIONS(3002), - [anon_sym_thread] = ACTIONS(3002), - [anon_sym_atomic] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_defer] = ACTIONS(3002), - [anon_sym_goto] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_DOLLARfor] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [anon_sym_asm] = ACTIONS(3002), - [anon_sym_AT_LBRACK] = ACTIONS(3002), - [sym___double_quote] = ACTIONS(3002), - [sym___single_quote] = ACTIONS(3002), - [sym___c_double_quote] = ACTIONS(3002), - [sym___c_single_quote] = ACTIONS(3002), - [sym___r_double_quote] = ACTIONS(3002), - [sym___r_single_quote] = ACTIONS(3002), + [1044] = { + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_CR] = ACTIONS(2948), + [anon_sym_CR_LF] = ACTIONS(2948), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_as] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym___global] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2948), + [anon_sym_fn] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [anon_sym_LT_EQ] = ACTIONS(2948), + [anon_sym_GT_EQ] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_pub] = ACTIONS(2948), + [anon_sym_mut] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_interface] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2948), + [anon_sym_go] = ACTIONS(2948), + [anon_sym_spawn] = ACTIONS(2948), + [anon_sym_json_DOTdecode] = ACTIONS(2948), + [anon_sym_LBRACK2] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2948), + [anon_sym_CARET] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_LT_LT] = ACTIONS(2948), + [anon_sym_GT_GT] = ACTIONS(2948), + [anon_sym_GT_GT_GT] = ACTIONS(2948), + [anon_sym_AMP_CARET] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_or] = ACTIONS(2948), + [sym_none] = ACTIONS(2948), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [sym_nil] = ACTIONS(2948), + [anon_sym_QMARK_DOT] = ACTIONS(2948), + [anon_sym_POUND_LBRACK] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_DOLLARif] = ACTIONS(2948), + [anon_sym_is] = ACTIONS(2948), + [anon_sym_BANGis] = ACTIONS(2948), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_BANGin] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_select] = ACTIONS(2948), + [anon_sym_lock] = ACTIONS(2948), + [anon_sym_rlock] = ACTIONS(2948), + [anon_sym_unsafe] = ACTIONS(2948), + [anon_sym_sql] = ACTIONS(2948), + [sym_int_literal] = ACTIONS(2948), + [sym_float_literal] = ACTIONS(2948), + [sym_rune_literal] = ACTIONS(2948), + [anon_sym_AT] = ACTIONS(2948), + [anon_sym_shared] = ACTIONS(2948), + [anon_sym_map_LBRACK] = ACTIONS(2948), + [anon_sym_chan] = ACTIONS(2948), + [anon_sym_thread] = ACTIONS(2948), + [anon_sym_atomic] = ACTIONS(2948), + [anon_sym_assert] = ACTIONS(2948), + [anon_sym_defer] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_DOLLARfor] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym_AT_LBRACK] = ACTIONS(2948), + [sym___double_quote] = ACTIONS(2948), + [sym___single_quote] = ACTIONS(2948), + [sym___c_double_quote] = ACTIONS(2948), + [sym___c_single_quote] = ACTIONS(2948), + [sym___r_double_quote] = ACTIONS(2948), + [sym___r_single_quote] = ACTIONS(2948), + }, + [1045] = { + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_LF] = ACTIONS(2940), + [anon_sym_CR] = ACTIONS(2940), + [anon_sym_CR_LF] = ACTIONS(2940), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2940), + [anon_sym_as] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym___global] = ACTIONS(2940), + [anon_sym_type] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(2940), + [anon_sym_fn] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_PERCENT] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_GT] = ACTIONS(2940), + [anon_sym_EQ_EQ] = ACTIONS(2940), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_LT_EQ] = ACTIONS(2940), + [anon_sym_GT_EQ] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_pub] = ACTIONS(2940), + [anon_sym_mut] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_interface] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_QMARK] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2940), + [anon_sym_go] = ACTIONS(2940), + [anon_sym_spawn] = ACTIONS(2940), + [anon_sym_json_DOTdecode] = ACTIONS(2940), + [anon_sym_LBRACK2] = ACTIONS(2940), + [anon_sym_TILDE] = ACTIONS(2940), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_LT_DASH] = ACTIONS(2940), + [anon_sym_LT_LT] = ACTIONS(2940), + [anon_sym_GT_GT] = ACTIONS(2940), + [anon_sym_GT_GT_GT] = ACTIONS(2940), + [anon_sym_AMP_CARET] = ACTIONS(2940), + [anon_sym_AMP_AMP] = ACTIONS(2940), + [anon_sym_PIPE_PIPE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2940), + [sym_none] = ACTIONS(2940), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [sym_nil] = ACTIONS(2940), + [anon_sym_QMARK_DOT] = ACTIONS(2940), + [anon_sym_POUND_LBRACK] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_DOLLARif] = ACTIONS(2940), + [anon_sym_is] = ACTIONS(2940), + [anon_sym_BANGis] = ACTIONS(2940), + [anon_sym_in] = ACTIONS(2940), + [anon_sym_BANGin] = ACTIONS(2940), + [anon_sym_match] = ACTIONS(2940), + [anon_sym_select] = ACTIONS(2940), + [anon_sym_lock] = ACTIONS(2940), + [anon_sym_rlock] = ACTIONS(2940), + [anon_sym_unsafe] = ACTIONS(2940), + [anon_sym_sql] = ACTIONS(2940), + [sym_int_literal] = ACTIONS(2940), + [sym_float_literal] = ACTIONS(2940), + [sym_rune_literal] = ACTIONS(2940), + [anon_sym_AT] = ACTIONS(2940), + [anon_sym_shared] = ACTIONS(2940), + [anon_sym_map_LBRACK] = ACTIONS(2940), + [anon_sym_chan] = ACTIONS(2940), + [anon_sym_thread] = ACTIONS(2940), + [anon_sym_atomic] = ACTIONS(2940), + [anon_sym_assert] = ACTIONS(2940), + [anon_sym_defer] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_DOLLARfor] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_POUND] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym_AT_LBRACK] = ACTIONS(2940), + [sym___double_quote] = ACTIONS(2940), + [sym___single_quote] = ACTIONS(2940), + [sym___c_double_quote] = ACTIONS(2940), + [sym___c_single_quote] = ACTIONS(2940), + [sym___r_double_quote] = ACTIONS(2940), + [sym___r_single_quote] = ACTIONS(2940), + }, + [1046] = { + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LF] = ACTIONS(3024), + [anon_sym_CR] = ACTIONS(3024), + [anon_sym_CR_LF] = ACTIONS(3024), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym___global] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_pub] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3024), + [anon_sym_POUND_LBRACK] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_defer] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_DOLLARfor] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym_AT_LBRACK] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), + }, + [1047] = { + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [anon_sym_AT] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), + }, + [1048] = { + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3012), + [anon_sym_LF] = ACTIONS(3012), + [anon_sym_CR] = ACTIONS(3012), + [anon_sym_CR_LF] = ACTIONS(3012), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_as] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym___global] = ACTIONS(3012), + [anon_sym_type] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3012), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_GT] = ACTIONS(3012), + [anon_sym_EQ_EQ] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_LT_EQ] = ACTIONS(3012), + [anon_sym_GT_EQ] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_pub] = ACTIONS(3012), + [anon_sym_mut] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_interface] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_go] = ACTIONS(3012), + [anon_sym_spawn] = ACTIONS(3012), + [anon_sym_json_DOTdecode] = ACTIONS(3012), + [anon_sym_LBRACK2] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_CARET] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_LT_LT] = ACTIONS(3012), + [anon_sym_GT_GT] = ACTIONS(3012), + [anon_sym_GT_GT_GT] = ACTIONS(3012), + [anon_sym_AMP_CARET] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_or] = ACTIONS(3012), + [sym_none] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_nil] = ACTIONS(3012), + [anon_sym_QMARK_DOT] = ACTIONS(3012), + [anon_sym_POUND_LBRACK] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_DOLLARif] = ACTIONS(3012), + [anon_sym_is] = ACTIONS(3012), + [anon_sym_BANGis] = ACTIONS(3012), + [anon_sym_in] = ACTIONS(3012), + [anon_sym_BANGin] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_select] = ACTIONS(3012), + [anon_sym_lock] = ACTIONS(3012), + [anon_sym_rlock] = ACTIONS(3012), + [anon_sym_unsafe] = ACTIONS(3012), + [anon_sym_sql] = ACTIONS(3012), + [sym_int_literal] = ACTIONS(3012), + [sym_float_literal] = ACTIONS(3012), + [sym_rune_literal] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_shared] = ACTIONS(3012), + [anon_sym_map_LBRACK] = ACTIONS(3012), + [anon_sym_chan] = ACTIONS(3012), + [anon_sym_thread] = ACTIONS(3012), + [anon_sym_atomic] = ACTIONS(3012), + [anon_sym_assert] = ACTIONS(3012), + [anon_sym_defer] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_DOLLARfor] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym_AT_LBRACK] = ACTIONS(3012), + [sym___double_quote] = ACTIONS(3012), + [sym___single_quote] = ACTIONS(3012), + [sym___c_double_quote] = ACTIONS(3012), + [sym___c_single_quote] = ACTIONS(3012), + [sym___r_double_quote] = ACTIONS(3012), + [sym___r_single_quote] = ACTIONS(3012), + }, + [1049] = { + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LF] = ACTIONS(2960), + [anon_sym_CR] = ACTIONS(2960), + [anon_sym_CR_LF] = ACTIONS(2960), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2960), + [anon_sym_as] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym___global] = ACTIONS(2960), + [anon_sym_type] = ACTIONS(2960), + [anon_sym_PIPE] = ACTIONS(2960), + [anon_sym_fn] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_GT] = ACTIONS(2960), + [anon_sym_EQ_EQ] = ACTIONS(2960), + [anon_sym_BANG_EQ] = ACTIONS(2960), + [anon_sym_LT_EQ] = ACTIONS(2960), + [anon_sym_GT_EQ] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_struct] = ACTIONS(2960), + [anon_sym_union] = ACTIONS(2960), + [anon_sym_pub] = ACTIONS(2960), + [anon_sym_mut] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2960), + [anon_sym_QMARK] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2960), + [anon_sym_go] = ACTIONS(2960), + [anon_sym_spawn] = ACTIONS(2960), + [anon_sym_json_DOTdecode] = ACTIONS(2960), + [anon_sym_LBRACK2] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [anon_sym_CARET] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2960), + [anon_sym_LT_DASH] = ACTIONS(2960), + [anon_sym_LT_LT] = ACTIONS(2960), + [anon_sym_GT_GT] = ACTIONS(2960), + [anon_sym_GT_GT_GT] = ACTIONS(2960), + [anon_sym_AMP_CARET] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_PIPE_PIPE] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2960), + [sym_none] = ACTIONS(2960), + [sym_true] = ACTIONS(2960), + [sym_false] = ACTIONS(2960), + [sym_nil] = ACTIONS(2960), + [anon_sym_QMARK_DOT] = ACTIONS(2960), + [anon_sym_POUND_LBRACK] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_DOLLARif] = ACTIONS(2960), + [anon_sym_is] = ACTIONS(2960), + [anon_sym_BANGis] = ACTIONS(2960), + [anon_sym_in] = ACTIONS(2960), + [anon_sym_BANGin] = ACTIONS(2960), + [anon_sym_match] = ACTIONS(2960), + [anon_sym_select] = ACTIONS(2960), + [anon_sym_lock] = ACTIONS(2960), + [anon_sym_rlock] = ACTIONS(2960), + [anon_sym_unsafe] = ACTIONS(2960), + [anon_sym_sql] = ACTIONS(2960), + [sym_int_literal] = ACTIONS(2960), + [sym_float_literal] = ACTIONS(2960), + [sym_rune_literal] = ACTIONS(2960), + [anon_sym_AT] = ACTIONS(2960), + [anon_sym_shared] = ACTIONS(2960), + [anon_sym_map_LBRACK] = ACTIONS(2960), + [anon_sym_chan] = ACTIONS(2960), + [anon_sym_thread] = ACTIONS(2960), + [anon_sym_atomic] = ACTIONS(2960), + [anon_sym_assert] = ACTIONS(2960), + [anon_sym_defer] = ACTIONS(2960), + [anon_sym_goto] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_DOLLARfor] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_POUND] = ACTIONS(2960), + [anon_sym_asm] = ACTIONS(2960), + [anon_sym_AT_LBRACK] = ACTIONS(2960), + [sym___double_quote] = ACTIONS(2960), + [sym___single_quote] = ACTIONS(2960), + [sym___c_double_quote] = ACTIONS(2960), + [sym___c_single_quote] = ACTIONS(2960), + [sym___r_double_quote] = ACTIONS(2960), + [sym___r_single_quote] = ACTIONS(2960), + }, + [1050] = { + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_LF] = ACTIONS(2964), + [anon_sym_CR] = ACTIONS(2964), + [anon_sym_CR_LF] = ACTIONS(2964), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_const] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym___global] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2964), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2964), + [anon_sym_union] = ACTIONS(2964), + [anon_sym_pub] = ACTIONS(2964), + [anon_sym_mut] = ACTIONS(2964), + [anon_sym_enum] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_go] = ACTIONS(2964), + [anon_sym_spawn] = ACTIONS(2964), + [anon_sym_json_DOTdecode] = ACTIONS(2964), + [anon_sym_LBRACK2] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_LT_LT] = ACTIONS(2964), + [anon_sym_GT_GT] = ACTIONS(2964), + [anon_sym_GT_GT_GT] = ACTIONS(2964), + [anon_sym_AMP_CARET] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [sym_none] = ACTIONS(2964), + [sym_true] = ACTIONS(2964), + [sym_false] = ACTIONS(2964), + [sym_nil] = ACTIONS(2964), + [anon_sym_QMARK_DOT] = ACTIONS(2964), + [anon_sym_POUND_LBRACK] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_DOLLARif] = ACTIONS(2964), + [anon_sym_is] = ACTIONS(2964), + [anon_sym_BANGis] = ACTIONS(2964), + [anon_sym_in] = ACTIONS(2964), + [anon_sym_BANGin] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_select] = ACTIONS(2964), + [anon_sym_lock] = ACTIONS(2964), + [anon_sym_rlock] = ACTIONS(2964), + [anon_sym_unsafe] = ACTIONS(2964), + [anon_sym_sql] = ACTIONS(2964), + [sym_int_literal] = ACTIONS(2964), + [sym_float_literal] = ACTIONS(2964), + [sym_rune_literal] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_shared] = ACTIONS(2964), + [anon_sym_map_LBRACK] = ACTIONS(2964), + [anon_sym_chan] = ACTIONS(2964), + [anon_sym_thread] = ACTIONS(2964), + [anon_sym_atomic] = ACTIONS(2964), + [anon_sym_assert] = ACTIONS(2964), + [anon_sym_defer] = ACTIONS(2964), + [anon_sym_goto] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_DOLLARfor] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_POUND] = ACTIONS(2964), + [anon_sym_asm] = ACTIONS(2964), + [anon_sym_AT_LBRACK] = ACTIONS(2964), + [sym___double_quote] = ACTIONS(2964), + [sym___single_quote] = ACTIONS(2964), + [sym___c_double_quote] = ACTIONS(2964), + [sym___c_single_quote] = ACTIONS(2964), + [sym___r_double_quote] = ACTIONS(2964), + [sym___r_single_quote] = ACTIONS(2964), + }, + [1051] = { + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LF] = ACTIONS(2952), + [anon_sym_CR] = ACTIONS(2952), + [anon_sym_CR_LF] = ACTIONS(2952), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_as] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym___global] = ACTIONS(2952), + [anon_sym_type] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2952), + [anon_sym_fn] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_PERCENT] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2952), + [anon_sym_GT] = ACTIONS(2952), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_pub] = ACTIONS(2952), + [anon_sym_mut] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_interface] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_go] = ACTIONS(2952), + [anon_sym_spawn] = ACTIONS(2952), + [anon_sym_json_DOTdecode] = ACTIONS(2952), + [anon_sym_LBRACK2] = ACTIONS(2952), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_LT_DASH] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2952), + [anon_sym_GT_GT] = ACTIONS(2952), + [anon_sym_GT_GT_GT] = ACTIONS(2952), + [anon_sym_AMP_CARET] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_or] = ACTIONS(2952), + [sym_none] = ACTIONS(2952), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [sym_nil] = ACTIONS(2952), + [anon_sym_QMARK_DOT] = ACTIONS(2952), + [anon_sym_POUND_LBRACK] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_DOLLARif] = ACTIONS(2952), + [anon_sym_is] = ACTIONS(2952), + [anon_sym_BANGis] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(2952), + [anon_sym_BANGin] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_select] = ACTIONS(2952), + [anon_sym_lock] = ACTIONS(2952), + [anon_sym_rlock] = ACTIONS(2952), + [anon_sym_unsafe] = ACTIONS(2952), + [anon_sym_sql] = ACTIONS(2952), + [sym_int_literal] = ACTIONS(2952), + [sym_float_literal] = ACTIONS(2952), + [sym_rune_literal] = ACTIONS(2952), + [anon_sym_AT] = ACTIONS(2952), + [anon_sym_shared] = ACTIONS(2952), + [anon_sym_map_LBRACK] = ACTIONS(2952), + [anon_sym_chan] = ACTIONS(2952), + [anon_sym_thread] = ACTIONS(2952), + [anon_sym_atomic] = ACTIONS(2952), + [anon_sym_assert] = ACTIONS(2952), + [anon_sym_defer] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_DOLLARfor] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_POUND] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym_AT_LBRACK] = ACTIONS(2952), + [sym___double_quote] = ACTIONS(2952), + [sym___single_quote] = ACTIONS(2952), + [sym___c_double_quote] = ACTIONS(2952), + [sym___c_single_quote] = ACTIONS(2952), + [sym___r_double_quote] = ACTIONS(2952), + [sym___r_single_quote] = ACTIONS(2952), + }, + [1052] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3032), + [anon_sym_CR] = ACTIONS(3032), + [anon_sym_CR_LF] = ACTIONS(3032), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym___global] = ACTIONS(3032), + [anon_sym_type] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_fn] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_pub] = ACTIONS(3032), + [anon_sym_mut] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_interface] = ACTIONS(3032), + [anon_sym_PLUS_PLUS] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_go] = ACTIONS(3032), + [anon_sym_spawn] = ACTIONS(3032), + [anon_sym_json_DOTdecode] = ACTIONS(3032), + [anon_sym_LBRACK2] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_CARET] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3032), + [anon_sym_GT_GT_GT] = ACTIONS(3032), + [anon_sym_AMP_CARET] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_or] = ACTIONS(3032), + [sym_none] = ACTIONS(3032), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [sym_nil] = ACTIONS(3032), + [anon_sym_QMARK_DOT] = ACTIONS(3032), + [anon_sym_POUND_LBRACK] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_DOLLARif] = ACTIONS(3032), + [anon_sym_is] = ACTIONS(3032), + [anon_sym_BANGis] = ACTIONS(3032), + [anon_sym_in] = ACTIONS(3032), + [anon_sym_BANGin] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_select] = ACTIONS(3032), + [anon_sym_lock] = ACTIONS(3032), + [anon_sym_rlock] = ACTIONS(3032), + [anon_sym_unsafe] = ACTIONS(3032), + [anon_sym_sql] = ACTIONS(3032), + [sym_int_literal] = ACTIONS(3032), + [sym_float_literal] = ACTIONS(3032), + [sym_rune_literal] = ACTIONS(3032), + [anon_sym_AT] = ACTIONS(3032), + [anon_sym_shared] = ACTIONS(3032), + [anon_sym_map_LBRACK] = ACTIONS(3032), + [anon_sym_chan] = ACTIONS(3032), + [anon_sym_thread] = ACTIONS(3032), + [anon_sym_atomic] = ACTIONS(3032), + [anon_sym_assert] = ACTIONS(3032), + [anon_sym_defer] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_DOLLARfor] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_POUND] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym_AT_LBRACK] = ACTIONS(3032), + [sym___double_quote] = ACTIONS(3032), + [sym___single_quote] = ACTIONS(3032), + [sym___c_double_quote] = ACTIONS(3032), + [sym___c_single_quote] = ACTIONS(3032), + [sym___r_double_quote] = ACTIONS(3032), + [sym___r_single_quote] = ACTIONS(3032), + }, + [1053] = { + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_CR] = ACTIONS(2944), + [anon_sym_CR_LF] = ACTIONS(2944), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_as] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym___global] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_fn] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_GT] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_pub] = ACTIONS(2944), + [anon_sym_mut] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_interface] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_go] = ACTIONS(2944), + [anon_sym_spawn] = ACTIONS(2944), + [anon_sym_json_DOTdecode] = ACTIONS(2944), + [anon_sym_LBRACK2] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_CARET] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2944), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_GT_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_CARET] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_or] = ACTIONS(2944), + [sym_none] = ACTIONS(2944), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [sym_nil] = ACTIONS(2944), + [anon_sym_QMARK_DOT] = ACTIONS(2944), + [anon_sym_POUND_LBRACK] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_DOLLARif] = ACTIONS(2944), + [anon_sym_is] = ACTIONS(2944), + [anon_sym_BANGis] = ACTIONS(2944), + [anon_sym_in] = ACTIONS(2944), + [anon_sym_BANGin] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_select] = ACTIONS(2944), + [anon_sym_lock] = ACTIONS(2944), + [anon_sym_rlock] = ACTIONS(2944), + [anon_sym_unsafe] = ACTIONS(2944), + [anon_sym_sql] = ACTIONS(2944), + [sym_int_literal] = ACTIONS(2944), + [sym_float_literal] = ACTIONS(2944), + [sym_rune_literal] = ACTIONS(2944), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_shared] = ACTIONS(2944), + [anon_sym_map_LBRACK] = ACTIONS(2944), + [anon_sym_chan] = ACTIONS(2944), + [anon_sym_thread] = ACTIONS(2944), + [anon_sym_atomic] = ACTIONS(2944), + [anon_sym_assert] = ACTIONS(2944), + [anon_sym_defer] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_DOLLARfor] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym_AT_LBRACK] = ACTIONS(2944), + [sym___double_quote] = ACTIONS(2944), + [sym___single_quote] = ACTIONS(2944), + [sym___c_double_quote] = ACTIONS(2944), + [sym___c_single_quote] = ACTIONS(2944), + [sym___r_double_quote] = ACTIONS(2944), + [sym___r_single_quote] = ACTIONS(2944), + }, + [1054] = { + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3008), + [anon_sym_LF] = ACTIONS(3008), + [anon_sym_CR] = ACTIONS(3008), + [anon_sym_CR_LF] = ACTIONS(3008), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym___global] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_fn] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_PERCENT] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3006), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_pub] = ACTIONS(3008), + [anon_sym_mut] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_interface] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [anon_sym_QMARK] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_go] = ACTIONS(3008), + [anon_sym_spawn] = ACTIONS(3008), + [anon_sym_json_DOTdecode] = ACTIONS(3008), + [anon_sym_LBRACK2] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_CARET] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT_DASH] = ACTIONS(3008), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(3008), + [anon_sym_GT_GT_GT] = ACTIONS(3008), + [anon_sym_AMP_CARET] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_or] = ACTIONS(3008), + [sym_none] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_nil] = ACTIONS(3008), + [anon_sym_QMARK_DOT] = ACTIONS(3008), + [anon_sym_POUND_LBRACK] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_DOLLARif] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3008), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_match] = ACTIONS(3008), + [anon_sym_select] = ACTIONS(3008), + [anon_sym_lock] = ACTIONS(3008), + [anon_sym_rlock] = ACTIONS(3008), + [anon_sym_unsafe] = ACTIONS(3008), + [anon_sym_sql] = ACTIONS(3008), + [sym_int_literal] = ACTIONS(3008), + [sym_float_literal] = ACTIONS(3008), + [sym_rune_literal] = ACTIONS(3008), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_shared] = ACTIONS(3008), + [anon_sym_map_LBRACK] = ACTIONS(3008), + [anon_sym_chan] = ACTIONS(3008), + [anon_sym_thread] = ACTIONS(3008), + [anon_sym_atomic] = ACTIONS(3008), + [anon_sym_assert] = ACTIONS(3008), + [anon_sym_defer] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_DOLLARfor] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_POUND] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym_AT_LBRACK] = ACTIONS(3008), + [sym___double_quote] = ACTIONS(3008), + [sym___single_quote] = ACTIONS(3008), + [sym___c_double_quote] = ACTIONS(3008), + [sym___c_single_quote] = ACTIONS(3008), + [sym___r_double_quote] = ACTIONS(3008), + [sym___r_single_quote] = ACTIONS(3008), + }, + [1055] = { + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym___global] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_union] = ACTIONS(3214), + [anon_sym_pub] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3214), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3214), + [anon_sym_AMP_CARET] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_PIPE_PIPE] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3214), + [anon_sym_POUND_LBRACK] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [anon_sym_assert] = ACTIONS(3214), + [anon_sym_defer] = ACTIONS(3214), + [anon_sym_goto] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_DOLLARfor] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_asm] = ACTIONS(3214), + [anon_sym_AT_LBRACK] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), + }, + [1056] = { + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_CR] = ACTIONS(3230), + [anon_sym_CR_LF] = ACTIONS(3230), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym___global] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_pub] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_defer] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_DOLLARfor] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym_AT_LBRACK] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(2968), + [anon_sym_CR] = ACTIONS(2968), + [anon_sym_CR_LF] = ACTIONS(2968), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2968), + [anon_sym_as] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym___global] = ACTIONS(2968), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_fn] = ACTIONS(2968), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2968), + [anon_sym_PERCENT] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2968), + [anon_sym_EQ_EQ] = ACTIONS(2968), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_LT_EQ] = ACTIONS(2968), + [anon_sym_GT_EQ] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2968), + [anon_sym_union] = ACTIONS(2968), + [anon_sym_pub] = ACTIONS(2968), + [anon_sym_mut] = ACTIONS(2968), + [anon_sym_enum] = ACTIONS(2968), + [anon_sym_interface] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_QMARK] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_go] = ACTIONS(2968), + [anon_sym_spawn] = ACTIONS(2968), + [anon_sym_json_DOTdecode] = ACTIONS(2968), + [anon_sym_LBRACK2] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_LT_DASH] = ACTIONS(2968), + [anon_sym_LT_LT] = ACTIONS(2968), + [anon_sym_GT_GT] = ACTIONS(2968), + [anon_sym_GT_GT_GT] = ACTIONS(2968), + [anon_sym_AMP_CARET] = ACTIONS(2968), + [anon_sym_AMP_AMP] = ACTIONS(2968), + [anon_sym_PIPE_PIPE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2968), + [sym_none] = ACTIONS(2968), + [sym_true] = ACTIONS(2968), + [sym_false] = ACTIONS(2968), + [sym_nil] = ACTIONS(2968), + [anon_sym_QMARK_DOT] = ACTIONS(2968), + [anon_sym_POUND_LBRACK] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_DOLLARif] = ACTIONS(2968), + [anon_sym_is] = ACTIONS(2968), + [anon_sym_BANGis] = ACTIONS(2968), + [anon_sym_in] = ACTIONS(2968), + [anon_sym_BANGin] = ACTIONS(2968), + [anon_sym_match] = ACTIONS(2968), + [anon_sym_select] = ACTIONS(2968), + [anon_sym_lock] = ACTIONS(2968), + [anon_sym_rlock] = ACTIONS(2968), + [anon_sym_unsafe] = ACTIONS(2968), + [anon_sym_sql] = ACTIONS(2968), + [sym_int_literal] = ACTIONS(2968), + [sym_float_literal] = ACTIONS(2968), + [sym_rune_literal] = ACTIONS(2968), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_shared] = ACTIONS(2968), + [anon_sym_map_LBRACK] = ACTIONS(2968), + [anon_sym_chan] = ACTIONS(2968), + [anon_sym_thread] = ACTIONS(2968), + [anon_sym_atomic] = ACTIONS(2968), + [anon_sym_assert] = ACTIONS(2968), + [anon_sym_defer] = ACTIONS(2968), + [anon_sym_goto] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_DOLLARfor] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_POUND] = ACTIONS(2968), + [anon_sym_asm] = ACTIONS(2968), + [anon_sym_AT_LBRACK] = ACTIONS(2968), + [sym___double_quote] = ACTIONS(2968), + [sym___single_quote] = ACTIONS(2968), + [sym___c_double_quote] = ACTIONS(2968), + [sym___c_single_quote] = ACTIONS(2968), + [sym___r_double_quote] = ACTIONS(2968), + [sym___r_single_quote] = ACTIONS(2968), + }, + [1060] = { + [ts_builtin_sym_end] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LF] = ACTIONS(2972), + [anon_sym_CR] = ACTIONS(2972), + [anon_sym_CR_LF] = ACTIONS(2972), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2972), + [anon_sym_as] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_const] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym___global] = ACTIONS(2972), + [anon_sym_type] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_fn] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_LT_EQ] = ACTIONS(2972), + [anon_sym_GT_EQ] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2972), + [anon_sym_union] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(2972), + [anon_sym_mut] = ACTIONS(2972), + [anon_sym_enum] = ACTIONS(2972), + [anon_sym_interface] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_QMARK] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_go] = ACTIONS(2972), + [anon_sym_spawn] = ACTIONS(2972), + [anon_sym_json_DOTdecode] = ACTIONS(2972), + [anon_sym_LBRACK2] = ACTIONS(2972), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_LT_DASH] = ACTIONS(2972), + [anon_sym_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT] = ACTIONS(2972), + [anon_sym_GT_GT_GT] = ACTIONS(2972), + [anon_sym_AMP_CARET] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2972), + [sym_none] = ACTIONS(2972), + [sym_true] = ACTIONS(2972), + [sym_false] = ACTIONS(2972), + [sym_nil] = ACTIONS(2972), + [anon_sym_QMARK_DOT] = ACTIONS(2972), + [anon_sym_POUND_LBRACK] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_DOLLARif] = ACTIONS(2972), + [anon_sym_is] = ACTIONS(2972), + [anon_sym_BANGis] = ACTIONS(2972), + [anon_sym_in] = ACTIONS(2972), + [anon_sym_BANGin] = ACTIONS(2972), + [anon_sym_match] = ACTIONS(2972), + [anon_sym_select] = ACTIONS(2972), + [anon_sym_lock] = ACTIONS(2972), + [anon_sym_rlock] = ACTIONS(2972), + [anon_sym_unsafe] = ACTIONS(2972), + [anon_sym_sql] = ACTIONS(2972), + [sym_int_literal] = ACTIONS(2972), + [sym_float_literal] = ACTIONS(2972), + [sym_rune_literal] = ACTIONS(2972), + [anon_sym_AT] = ACTIONS(2972), + [anon_sym_shared] = ACTIONS(2972), + [anon_sym_map_LBRACK] = ACTIONS(2972), + [anon_sym_chan] = ACTIONS(2972), + [anon_sym_thread] = ACTIONS(2972), + [anon_sym_atomic] = ACTIONS(2972), + [anon_sym_assert] = ACTIONS(2972), + [anon_sym_defer] = ACTIONS(2972), + [anon_sym_goto] = ACTIONS(2972), + [anon_sym_break] = ACTIONS(2972), + [anon_sym_continue] = ACTIONS(2972), + [anon_sym_return] = ACTIONS(2972), + [anon_sym_DOLLARfor] = ACTIONS(2972), + [anon_sym_for] = ACTIONS(2972), + [anon_sym_POUND] = ACTIONS(2972), + [anon_sym_asm] = ACTIONS(2972), + [anon_sym_AT_LBRACK] = ACTIONS(2972), + [sym___double_quote] = ACTIONS(2972), + [sym___single_quote] = ACTIONS(2972), + [sym___c_double_quote] = ACTIONS(2972), + [sym___c_single_quote] = ACTIONS(2972), + [sym___r_double_quote] = ACTIONS(2972), + [sym___r_single_quote] = ACTIONS(2972), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3004), + [anon_sym_LF] = ACTIONS(3004), + [anon_sym_CR] = ACTIONS(3004), + [anon_sym_CR_LF] = ACTIONS(3004), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym___global] = ACTIONS(3004), + [anon_sym_type] = ACTIONS(3004), + [anon_sym_PIPE] = ACTIONS(3004), + [anon_sym_fn] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_SLASH] = ACTIONS(3004), + [anon_sym_PERCENT] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3004), + [anon_sym_GT] = ACTIONS(3004), + [anon_sym_EQ_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3004), + [anon_sym_LT_EQ] = ACTIONS(3004), + [anon_sym_GT_EQ] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_pub] = ACTIONS(3004), + [anon_sym_mut] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_interface] = ACTIONS(3004), + [anon_sym_PLUS_PLUS] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3004), + [anon_sym_QMARK] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3004), + [anon_sym_go] = ACTIONS(3004), + [anon_sym_spawn] = ACTIONS(3004), + [anon_sym_json_DOTdecode] = ACTIONS(3004), + [anon_sym_LBRACK2] = ACTIONS(3004), + [anon_sym_TILDE] = ACTIONS(3004), + [anon_sym_CARET] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_LT_DASH] = ACTIONS(3004), + [anon_sym_LT_LT] = ACTIONS(3004), + [anon_sym_GT_GT] = ACTIONS(3004), + [anon_sym_GT_GT_GT] = ACTIONS(3004), + [anon_sym_AMP_CARET] = ACTIONS(3004), + [anon_sym_AMP_AMP] = ACTIONS(3004), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_or] = ACTIONS(3004), + [sym_none] = ACTIONS(3004), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [sym_nil] = ACTIONS(3004), + [anon_sym_QMARK_DOT] = ACTIONS(3004), + [anon_sym_POUND_LBRACK] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_DOLLARif] = ACTIONS(3004), + [anon_sym_is] = ACTIONS(3004), + [anon_sym_BANGis] = ACTIONS(3004), + [anon_sym_in] = ACTIONS(3004), + [anon_sym_BANGin] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_select] = ACTIONS(3004), + [anon_sym_lock] = ACTIONS(3004), + [anon_sym_rlock] = ACTIONS(3004), + [anon_sym_unsafe] = ACTIONS(3004), + [anon_sym_sql] = ACTIONS(3004), + [sym_int_literal] = ACTIONS(3004), + [sym_float_literal] = ACTIONS(3004), + [sym_rune_literal] = ACTIONS(3004), + [anon_sym_AT] = ACTIONS(3004), + [anon_sym_shared] = ACTIONS(3004), + [anon_sym_map_LBRACK] = ACTIONS(3004), + [anon_sym_chan] = ACTIONS(3004), + [anon_sym_thread] = ACTIONS(3004), + [anon_sym_atomic] = ACTIONS(3004), + [anon_sym_assert] = ACTIONS(3004), + [anon_sym_defer] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_DOLLARfor] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_POUND] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym_AT_LBRACK] = ACTIONS(3004), + [sym___double_quote] = ACTIONS(3004), + [sym___single_quote] = ACTIONS(3004), + [sym___c_double_quote] = ACTIONS(3004), + [sym___c_single_quote] = ACTIONS(3004), + [sym___r_double_quote] = ACTIONS(3004), + [sym___r_single_quote] = ACTIONS(3004), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(2994), + [sym_identifier] = ACTIONS(2996), + [anon_sym_LF] = ACTIONS(2996), + [anon_sym_CR] = ACTIONS(2996), + [anon_sym_CR_LF] = ACTIONS(2996), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2996), + [anon_sym_as] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym___global] = ACTIONS(2996), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2996), + [anon_sym_fn] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_SLASH] = ACTIONS(2996), + [anon_sym_PERCENT] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_GT] = ACTIONS(2996), + [anon_sym_EQ_EQ] = ACTIONS(2996), + [anon_sym_BANG_EQ] = ACTIONS(2996), + [anon_sym_LT_EQ] = ACTIONS(2996), + [anon_sym_GT_EQ] = ACTIONS(2996), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_mut] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_interface] = ACTIONS(2996), + [anon_sym_PLUS_PLUS] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2996), + [anon_sym_QMARK] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [anon_sym_go] = ACTIONS(2996), + [anon_sym_spawn] = ACTIONS(2996), + [anon_sym_json_DOTdecode] = ACTIONS(2996), + [anon_sym_LBRACK2] = ACTIONS(2996), + [anon_sym_TILDE] = ACTIONS(2996), + [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_LT_DASH] = ACTIONS(2996), + [anon_sym_LT_LT] = ACTIONS(2996), + [anon_sym_GT_GT] = ACTIONS(2996), + [anon_sym_GT_GT_GT] = ACTIONS(2996), + [anon_sym_AMP_CARET] = ACTIONS(2996), + [anon_sym_AMP_AMP] = ACTIONS(2996), + [anon_sym_PIPE_PIPE] = ACTIONS(2996), + [anon_sym_or] = ACTIONS(2996), + [sym_none] = ACTIONS(2996), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_nil] = ACTIONS(2996), + [anon_sym_QMARK_DOT] = ACTIONS(2996), + [anon_sym_POUND_LBRACK] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_DOLLARif] = ACTIONS(2996), + [anon_sym_is] = ACTIONS(2996), + [anon_sym_BANGis] = ACTIONS(2996), + [anon_sym_in] = ACTIONS(2996), + [anon_sym_BANGin] = ACTIONS(2996), + [anon_sym_match] = ACTIONS(2996), + [anon_sym_select] = ACTIONS(2996), + [anon_sym_lock] = ACTIONS(2996), + [anon_sym_rlock] = ACTIONS(2996), + [anon_sym_unsafe] = ACTIONS(2996), + [anon_sym_sql] = ACTIONS(2996), + [sym_int_literal] = ACTIONS(2996), + [sym_float_literal] = ACTIONS(2996), + [sym_rune_literal] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(2996), + [anon_sym_shared] = ACTIONS(2996), + [anon_sym_map_LBRACK] = ACTIONS(2996), + [anon_sym_chan] = ACTIONS(2996), + [anon_sym_thread] = ACTIONS(2996), + [anon_sym_atomic] = ACTIONS(2996), + [anon_sym_assert] = ACTIONS(2996), + [anon_sym_defer] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_DOLLARfor] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym_AT_LBRACK] = ACTIONS(2996), + [sym___double_quote] = ACTIONS(2996), + [sym___single_quote] = ACTIONS(2996), + [sym___c_double_quote] = ACTIONS(2996), + [sym___c_single_quote] = ACTIONS(2996), + [sym___r_double_quote] = ACTIONS(2996), + [sym___r_single_quote] = ACTIONS(2996), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(3146), + [sym_identifier] = ACTIONS(3148), + [anon_sym_LF] = ACTIONS(3148), + [anon_sym_CR] = ACTIONS(3148), + [anon_sym_CR_LF] = ACTIONS(3148), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_COMMA] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym___global] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_PIPE] = ACTIONS(3148), + [anon_sym_fn] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_LT_EQ] = ACTIONS(3148), + [anon_sym_GT_EQ] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3148), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_pub] = ACTIONS(3148), + [anon_sym_mut] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_QMARK] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3148), + [anon_sym_spawn] = ACTIONS(3148), + [anon_sym_json_DOTdecode] = ACTIONS(3148), + [anon_sym_LBRACK2] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_CARET] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_LT_DASH] = ACTIONS(3148), + [anon_sym_LT_LT] = ACTIONS(3148), + [anon_sym_GT_GT] = ACTIONS(3148), + [anon_sym_GT_GT_GT] = ACTIONS(3148), + [anon_sym_AMP_CARET] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_PIPE_PIPE] = ACTIONS(3148), + [anon_sym_or] = ACTIONS(3148), + [sym_none] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nil] = ACTIONS(3148), + [anon_sym_QMARK_DOT] = ACTIONS(3148), + [anon_sym_POUND_LBRACK] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_DOLLARif] = ACTIONS(3148), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_BANGin] = ACTIONS(3148), + [anon_sym_match] = ACTIONS(3148), + [anon_sym_select] = ACTIONS(3148), + [anon_sym_lock] = ACTIONS(3148), + [anon_sym_rlock] = ACTIONS(3148), + [anon_sym_unsafe] = ACTIONS(3148), + [anon_sym_sql] = ACTIONS(3148), + [sym_int_literal] = ACTIONS(3148), + [sym_float_literal] = ACTIONS(3148), + [sym_rune_literal] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_shared] = ACTIONS(3148), + [anon_sym_map_LBRACK] = ACTIONS(3148), + [anon_sym_chan] = ACTIONS(3148), + [anon_sym_thread] = ACTIONS(3148), + [anon_sym_atomic] = ACTIONS(3148), + [anon_sym_assert] = ACTIONS(3148), + [anon_sym_defer] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_DOLLARfor] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_POUND] = ACTIONS(3148), + [anon_sym_asm] = ACTIONS(3148), + [anon_sym_AT_LBRACK] = ACTIONS(3148), + [sym___double_quote] = ACTIONS(3148), + [sym___single_quote] = ACTIONS(3148), + [sym___c_double_quote] = ACTIONS(3148), + [sym___c_single_quote] = ACTIONS(3148), + [sym___r_double_quote] = ACTIONS(3148), + [sym___r_single_quote] = ACTIONS(3148), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3140), + [anon_sym_LF] = ACTIONS(3140), + [anon_sym_CR] = ACTIONS(3140), + [anon_sym_CR_LF] = ACTIONS(3140), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_const] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym___global] = ACTIONS(3140), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3140), + [anon_sym_fn] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3140), + [anon_sym_union] = ACTIONS(3140), + [anon_sym_pub] = ACTIONS(3140), + [anon_sym_mut] = ACTIONS(3140), + [anon_sym_enum] = ACTIONS(3140), + [anon_sym_interface] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_go] = ACTIONS(3140), + [anon_sym_spawn] = ACTIONS(3140), + [anon_sym_json_DOTdecode] = ACTIONS(3140), + [anon_sym_LBRACK2] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_GT_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_CARET] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_or] = ACTIONS(3140), + [sym_none] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_nil] = ACTIONS(3140), + [anon_sym_QMARK_DOT] = ACTIONS(3140), + [anon_sym_POUND_LBRACK] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_DOLLARif] = ACTIONS(3140), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3140), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_BANGin] = ACTIONS(3140), + [anon_sym_match] = ACTIONS(3140), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(3140), + [anon_sym_sql] = ACTIONS(3140), + [sym_int_literal] = ACTIONS(3140), + [sym_float_literal] = ACTIONS(3140), + [sym_rune_literal] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_shared] = ACTIONS(3140), + [anon_sym_map_LBRACK] = ACTIONS(3140), + [anon_sym_chan] = ACTIONS(3140), + [anon_sym_thread] = ACTIONS(3140), + [anon_sym_atomic] = ACTIONS(3140), + [anon_sym_assert] = ACTIONS(3140), + [anon_sym_defer] = ACTIONS(3140), + [anon_sym_goto] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_DOLLARfor] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3140), + [anon_sym_asm] = ACTIONS(3140), + [anon_sym_AT_LBRACK] = ACTIONS(3140), + [sym___double_quote] = ACTIONS(3140), + [sym___single_quote] = ACTIONS(3140), + [sym___c_double_quote] = ACTIONS(3140), + [sym___c_single_quote] = ACTIONS(3140), + [sym___r_double_quote] = ACTIONS(3140), + [sym___r_single_quote] = ACTIONS(3140), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(3150), + [sym_identifier] = ACTIONS(3152), + [anon_sym_LF] = ACTIONS(3152), + [anon_sym_CR] = ACTIONS(3152), + [anon_sym_CR_LF] = ACTIONS(3152), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym___global] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3152), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_pub] = ACTIONS(3152), + [anon_sym_mut] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_go] = ACTIONS(3152), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(3152), + [anon_sym_LBRACK2] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_LT_DASH] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_GT_GT_GT] = ACTIONS(3152), + [anon_sym_AMP_CARET] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_PIPE_PIPE] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [sym_none] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_nil] = ACTIONS(3152), + [anon_sym_QMARK_DOT] = ACTIONS(3152), + [anon_sym_POUND_LBRACK] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_DOLLARif] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_BANGin] = ACTIONS(3152), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_select] = ACTIONS(3152), + [anon_sym_lock] = ACTIONS(3152), + [anon_sym_rlock] = ACTIONS(3152), + [anon_sym_unsafe] = ACTIONS(3152), + [anon_sym_sql] = ACTIONS(3152), + [sym_int_literal] = ACTIONS(3152), + [sym_float_literal] = ACTIONS(3152), + [sym_rune_literal] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_shared] = ACTIONS(3152), + [anon_sym_map_LBRACK] = ACTIONS(3152), + [anon_sym_chan] = ACTIONS(3152), + [anon_sym_thread] = ACTIONS(3152), + [anon_sym_atomic] = ACTIONS(3152), + [anon_sym_assert] = ACTIONS(3152), + [anon_sym_defer] = ACTIONS(3152), + [anon_sym_goto] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_DOLLARfor] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(3152), + [anon_sym_asm] = ACTIONS(3152), + [anon_sym_AT_LBRACK] = ACTIONS(3152), + [sym___double_quote] = ACTIONS(3152), + [sym___single_quote] = ACTIONS(3152), + [sym___c_double_quote] = ACTIONS(3152), + [sym___c_single_quote] = ACTIONS(3152), + [sym___r_double_quote] = ACTIONS(3152), + [sym___r_single_quote] = ACTIONS(3152), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym___global] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_EQ] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_union] = ACTIONS(3249), + [anon_sym_pub] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3249), + [anon_sym_AMP_CARET] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_defer] = ACTIONS(3249), + [anon_sym_goto] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_DOLLARfor] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3249), + [anon_sym_asm] = ACTIONS(3249), + [anon_sym_AT_LBRACK] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3249), + [sym___single_quote] = ACTIONS(3249), + [sym___c_double_quote] = ACTIONS(3249), + [sym___c_single_quote] = ACTIONS(3249), + [sym___r_double_quote] = ACTIONS(3249), + [sym___r_single_quote] = ACTIONS(3249), + }, + [1067] = { + [ts_builtin_sym_end] = ACTIONS(3142), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LF] = ACTIONS(3144), + [anon_sym_CR] = ACTIONS(3144), + [anon_sym_CR_LF] = ACTIONS(3144), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_as] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym___global] = ACTIONS(3144), + [anon_sym_type] = ACTIONS(3144), + [anon_sym_PIPE] = ACTIONS(3144), + [anon_sym_fn] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_LT_EQ] = ACTIONS(3144), + [anon_sym_GT_EQ] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_struct] = ACTIONS(3144), + [anon_sym_union] = ACTIONS(3144), + [anon_sym_pub] = ACTIONS(3144), + [anon_sym_mut] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3144), + [anon_sym_interface] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_go] = ACTIONS(3144), + [anon_sym_spawn] = ACTIONS(3144), + [anon_sym_json_DOTdecode] = ACTIONS(3144), + [anon_sym_LBRACK2] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_LT_LT] = ACTIONS(3144), + [anon_sym_GT_GT] = ACTIONS(3144), + [anon_sym_GT_GT_GT] = ACTIONS(3144), + [anon_sym_AMP_CARET] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [sym_none] = ACTIONS(3144), + [sym_true] = ACTIONS(3144), + [sym_false] = ACTIONS(3144), + [sym_nil] = ACTIONS(3144), + [anon_sym_QMARK_DOT] = ACTIONS(3144), + [anon_sym_POUND_LBRACK] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_DOLLARif] = ACTIONS(3144), + [anon_sym_is] = ACTIONS(3144), + [anon_sym_BANGis] = ACTIONS(3144), + [anon_sym_in] = ACTIONS(3144), + [anon_sym_BANGin] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3144), + [anon_sym_rlock] = ACTIONS(3144), + [anon_sym_unsafe] = ACTIONS(3144), + [anon_sym_sql] = ACTIONS(3144), + [sym_int_literal] = ACTIONS(3144), + [sym_float_literal] = ACTIONS(3144), + [sym_rune_literal] = ACTIONS(3144), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_shared] = ACTIONS(3144), + [anon_sym_map_LBRACK] = ACTIONS(3144), + [anon_sym_chan] = ACTIONS(3144), + [anon_sym_thread] = ACTIONS(3144), + [anon_sym_atomic] = ACTIONS(3144), + [anon_sym_assert] = ACTIONS(3144), + [anon_sym_defer] = ACTIONS(3144), + [anon_sym_goto] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_DOLLARfor] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_POUND] = ACTIONS(3144), + [anon_sym_asm] = ACTIONS(3144), + [anon_sym_AT_LBRACK] = ACTIONS(3144), + [sym___double_quote] = ACTIONS(3144), + [sym___single_quote] = ACTIONS(3144), + [sym___c_double_quote] = ACTIONS(3144), + [sym___c_single_quote] = ACTIONS(3144), + [sym___r_double_quote] = ACTIONS(3144), + [sym___r_single_quote] = ACTIONS(3144), + }, + [1068] = { + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym___global] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [anon_sym_AT] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [anon_sym_assert] = ACTIONS(3044), + [anon_sym_defer] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_DOLLARfor] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym_AT_LBRACK] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2842), - [anon_sym_LF] = ACTIONS(2842), - [anon_sym_CR] = ACTIONS(2842), - [anon_sym_CR_LF] = ACTIONS(2842), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_as] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym___global] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2842), - [anon_sym_EQ_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_LT_EQ] = ACTIONS(2842), - [anon_sym_GT_EQ] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_pub] = ACTIONS(2842), - [anon_sym_mut] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_interface] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_go] = ACTIONS(2842), - [anon_sym_spawn] = ACTIONS(2842), - [anon_sym_json_DOTdecode] = ACTIONS(2842), - [anon_sym_LBRACK2] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2842), - [anon_sym_GT_GT] = ACTIONS(2842), - [anon_sym_GT_GT_GT] = ACTIONS(2842), - [anon_sym_AMP_CARET] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_or] = ACTIONS(2842), - [sym_none] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_nil] = ACTIONS(2842), - [anon_sym_QMARK_DOT] = ACTIONS(2842), - [anon_sym_POUND_LBRACK] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_DOLLARif] = ACTIONS(2842), - [anon_sym_is] = ACTIONS(2842), - [anon_sym_BANGis] = ACTIONS(2842), - [anon_sym_in] = ACTIONS(2842), - [anon_sym_BANGin] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_select] = ACTIONS(2842), - [anon_sym_lock] = ACTIONS(2842), - [anon_sym_rlock] = ACTIONS(2842), - [anon_sym_unsafe] = ACTIONS(2842), - [anon_sym_sql] = ACTIONS(2842), - [sym_int_literal] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2842), - [sym_rune_literal] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2842), - [anon_sym_shared] = ACTIONS(2842), - [anon_sym_map_LBRACK] = ACTIONS(2842), - [anon_sym_chan] = ACTIONS(2842), - [anon_sym_thread] = ACTIONS(2842), - [anon_sym_atomic] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_defer] = ACTIONS(2842), - [anon_sym_goto] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_DOLLARfor] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_asm] = ACTIONS(2842), - [anon_sym_AT_LBRACK] = ACTIONS(2842), - [sym___double_quote] = ACTIONS(2842), - [sym___single_quote] = ACTIONS(2842), - [sym___c_double_quote] = ACTIONS(2842), - [sym___c_single_quote] = ACTIONS(2842), - [sym___r_double_quote] = ACTIONS(2842), - [sym___r_single_quote] = ACTIONS(2842), + [1069] = { + [ts_builtin_sym_end] = ACTIONS(3130), + [sym_identifier] = ACTIONS(3132), + [anon_sym_LF] = ACTIONS(3132), + [anon_sym_CR] = ACTIONS(3132), + [anon_sym_CR_LF] = ACTIONS(3132), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym___global] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_PIPE] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [anon_sym_pub] = ACTIONS(3132), + [anon_sym_mut] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3132), + [anon_sym_json_DOTdecode] = ACTIONS(3132), + [anon_sym_LBRACK2] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_CARET] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_LT_LT] = ACTIONS(3132), + [anon_sym_GT_GT] = ACTIONS(3132), + [anon_sym_GT_GT_GT] = ACTIONS(3132), + [anon_sym_AMP_CARET] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [sym_none] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_nil] = ACTIONS(3132), + [anon_sym_QMARK_DOT] = ACTIONS(3132), + [anon_sym_POUND_LBRACK] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_DOLLARif] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3132), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_in] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_select] = ACTIONS(3132), + [anon_sym_lock] = ACTIONS(3132), + [anon_sym_rlock] = ACTIONS(3132), + [anon_sym_unsafe] = ACTIONS(3132), + [anon_sym_sql] = ACTIONS(3132), + [sym_int_literal] = ACTIONS(3132), + [sym_float_literal] = ACTIONS(3132), + [sym_rune_literal] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_shared] = ACTIONS(3132), + [anon_sym_map_LBRACK] = ACTIONS(3132), + [anon_sym_chan] = ACTIONS(3132), + [anon_sym_thread] = ACTIONS(3132), + [anon_sym_atomic] = ACTIONS(3132), + [anon_sym_assert] = ACTIONS(3132), + [anon_sym_defer] = ACTIONS(3132), + [anon_sym_goto] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_DOLLARfor] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_POUND] = ACTIONS(3132), + [anon_sym_asm] = ACTIONS(3132), + [anon_sym_AT_LBRACK] = ACTIONS(3132), + [sym___double_quote] = ACTIONS(3132), + [sym___single_quote] = ACTIONS(3132), + [sym___c_double_quote] = ACTIONS(3132), + [sym___c_single_quote] = ACTIONS(3132), + [sym___r_double_quote] = ACTIONS(3132), + [sym___r_single_quote] = ACTIONS(3132), }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(2990), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2992), - [anon_sym_CR] = ACTIONS(2992), - [anon_sym_CR_LF] = ACTIONS(2992), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym___global] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_fn] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PERCENT] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2992), - [anon_sym_union] = ACTIONS(2992), - [anon_sym_pub] = ACTIONS(2992), - [anon_sym_mut] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_go] = ACTIONS(2992), - [anon_sym_spawn] = ACTIONS(2992), - [anon_sym_json_DOTdecode] = ACTIONS(2992), - [anon_sym_LBRACK2] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2992), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_LT_LT] = ACTIONS(2994), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2994), - [anon_sym_AMP_CARET] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2994), - [sym_none] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_nil] = ACTIONS(2992), - [anon_sym_QMARK_DOT] = ACTIONS(2994), - [anon_sym_POUND_LBRACK] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_DOLLARif] = ACTIONS(2992), - [anon_sym_is] = ACTIONS(2994), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_in] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_select] = ACTIONS(2992), - [anon_sym_lock] = ACTIONS(2992), - [anon_sym_rlock] = ACTIONS(2992), - [anon_sym_unsafe] = ACTIONS(2992), - [anon_sym_sql] = ACTIONS(2992), - [sym_int_literal] = ACTIONS(2992), - [sym_float_literal] = ACTIONS(2992), - [sym_rune_literal] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2992), - [anon_sym_shared] = ACTIONS(2992), - [anon_sym_map_LBRACK] = ACTIONS(2992), - [anon_sym_chan] = ACTIONS(2992), - [anon_sym_thread] = ACTIONS(2992), - [anon_sym_atomic] = ACTIONS(2992), - [anon_sym_assert] = ACTIONS(2992), - [anon_sym_defer] = ACTIONS(2992), - [anon_sym_goto] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_DOLLARfor] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_POUND] = ACTIONS(2992), - [anon_sym_asm] = ACTIONS(2992), - [anon_sym_AT_LBRACK] = ACTIONS(2992), - [sym___double_quote] = ACTIONS(2992), - [sym___single_quote] = ACTIONS(2992), - [sym___c_double_quote] = ACTIONS(2992), - [sym___c_single_quote] = ACTIONS(2992), - [sym___r_double_quote] = ACTIONS(2992), - [sym___r_single_quote] = ACTIONS(2992), + [1070] = { + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_COMMA] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym___global] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_pub] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3245), + [anon_sym_POUND_LBRACK] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3245), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [anon_sym_assert] = ACTIONS(3245), + [anon_sym_defer] = ACTIONS(3245), + [anon_sym_goto] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_DOLLARfor] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_asm] = ACTIONS(3245), + [anon_sym_AT_LBRACK] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LF] = ACTIONS(2982), - [anon_sym_CR] = ACTIONS(2982), - [anon_sym_CR_LF] = ACTIONS(2982), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_as] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2982), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym___global] = ACTIONS(2982), - [anon_sym_type] = ACTIONS(2982), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2982), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(2984), - [anon_sym_SLASH] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2984), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2984), - [anon_sym_BANG_EQ] = ACTIONS(2984), - [anon_sym_LT_EQ] = ACTIONS(2984), - [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2982), - [anon_sym_union] = ACTIONS(2982), - [anon_sym_pub] = ACTIONS(2982), - [anon_sym_mut] = ACTIONS(2982), - [anon_sym_enum] = ACTIONS(2982), - [anon_sym_interface] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2984), - [anon_sym_DASH_DASH] = ACTIONS(2984), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_go] = ACTIONS(2982), - [anon_sym_spawn] = ACTIONS(2982), - [anon_sym_json_DOTdecode] = ACTIONS(2982), - [anon_sym_LBRACK2] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2982), - [anon_sym_CARET] = ACTIONS(2984), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2982), - [anon_sym_LT_LT] = ACTIONS(2984), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_GT_GT_GT] = ACTIONS(2984), - [anon_sym_AMP_CARET] = ACTIONS(2984), - [anon_sym_AMP_AMP] = ACTIONS(2984), - [anon_sym_PIPE_PIPE] = ACTIONS(2984), - [anon_sym_or] = ACTIONS(2984), - [sym_none] = ACTIONS(2982), - [sym_true] = ACTIONS(2982), - [sym_false] = ACTIONS(2982), - [sym_nil] = ACTIONS(2982), - [anon_sym_QMARK_DOT] = ACTIONS(2984), - [anon_sym_POUND_LBRACK] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_DOLLARif] = ACTIONS(2982), - [anon_sym_is] = ACTIONS(2984), - [anon_sym_BANGis] = ACTIONS(2984), - [anon_sym_in] = ACTIONS(2984), - [anon_sym_BANGin] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2982), - [anon_sym_select] = ACTIONS(2982), - [anon_sym_lock] = ACTIONS(2982), - [anon_sym_rlock] = ACTIONS(2982), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_sql] = ACTIONS(2982), - [sym_int_literal] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2982), - [sym_rune_literal] = ACTIONS(2982), - [anon_sym_AT] = ACTIONS(2982), - [anon_sym_shared] = ACTIONS(2982), - [anon_sym_map_LBRACK] = ACTIONS(2982), - [anon_sym_chan] = ACTIONS(2982), - [anon_sym_thread] = ACTIONS(2982), - [anon_sym_atomic] = ACTIONS(2982), - [anon_sym_assert] = ACTIONS(2982), - [anon_sym_defer] = ACTIONS(2982), - [anon_sym_goto] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_DOLLARfor] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_POUND] = ACTIONS(2982), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym_AT_LBRACK] = ACTIONS(2982), - [sym___double_quote] = ACTIONS(2982), - [sym___single_quote] = ACTIONS(2982), - [sym___c_double_quote] = ACTIONS(2982), - [sym___c_single_quote] = ACTIONS(2982), - [sym___r_double_quote] = ACTIONS(2982), - [sym___r_single_quote] = ACTIONS(2982), + [1071] = { + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym___global] = ACTIONS(3072), + [anon_sym_type] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_union] = ACTIONS(3072), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_enum] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3072), + [anon_sym_POUND_LBRACK] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3072), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_defer] = ACTIONS(3072), + [anon_sym_goto] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_DOLLARfor] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_asm] = ACTIONS(3072), + [anon_sym_AT_LBRACK] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LF] = ACTIONS(3171), - [anon_sym_CR] = ACTIONS(3171), - [anon_sym_CR_LF] = ACTIONS(3171), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym___global] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_pub] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [anon_sym_assert] = ACTIONS(3171), - [anon_sym_defer] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_DOLLARfor] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_POUND] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym_AT_LBRACK] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), + [1072] = { + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3126), + [anon_sym_LF] = ACTIONS(3126), + [anon_sym_CR] = ACTIONS(3126), + [anon_sym_CR_LF] = ACTIONS(3126), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_as] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_COMMA] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym___global] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_fn] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3126), + [anon_sym_BANG_EQ] = ACTIONS(3126), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_pub] = ACTIONS(3126), + [anon_sym_mut] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3533), + [anon_sym_go] = ACTIONS(3126), + [anon_sym_spawn] = ACTIONS(3126), + [anon_sym_json_DOTdecode] = ACTIONS(3126), + [anon_sym_LBRACK2] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_LT_DASH] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_GT_GT_GT] = ACTIONS(3126), + [anon_sym_AMP_CARET] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3126), + [anon_sym_or] = ACTIONS(3126), + [sym_none] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_nil] = ACTIONS(3126), + [anon_sym_QMARK_DOT] = ACTIONS(3126), + [anon_sym_POUND_LBRACK] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_DOLLARif] = ACTIONS(3126), + [anon_sym_is] = ACTIONS(3126), + [anon_sym_BANGis] = ACTIONS(3126), + [anon_sym_in] = ACTIONS(3126), + [anon_sym_BANGin] = ACTIONS(3126), + [anon_sym_match] = ACTIONS(3126), + [anon_sym_select] = ACTIONS(3126), + [anon_sym_lock] = ACTIONS(3126), + [anon_sym_rlock] = ACTIONS(3126), + [anon_sym_unsafe] = ACTIONS(3126), + [anon_sym_sql] = ACTIONS(3126), + [sym_int_literal] = ACTIONS(3126), + [sym_float_literal] = ACTIONS(3126), + [sym_rune_literal] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_shared] = ACTIONS(3126), + [anon_sym_map_LBRACK] = ACTIONS(3126), + [anon_sym_chan] = ACTIONS(3126), + [anon_sym_thread] = ACTIONS(3126), + [anon_sym_atomic] = ACTIONS(3126), + [anon_sym_assert] = ACTIONS(3126), + [anon_sym_defer] = ACTIONS(3126), + [anon_sym_goto] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_DOLLARfor] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_POUND] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym_AT_LBRACK] = ACTIONS(3126), + [sym___double_quote] = ACTIONS(3126), + [sym___single_quote] = ACTIONS(3126), + [sym___c_double_quote] = ACTIONS(3126), + [sym___c_single_quote] = ACTIONS(3126), + [sym___r_double_quote] = ACTIONS(3126), + [sym___r_single_quote] = ACTIONS(3126), }, - [1014] = { - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym___global] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_pub] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [anon_sym_assert] = ACTIONS(2794), - [anon_sym_defer] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_DOLLARfor] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_asm] = ACTIONS(2794), - [anon_sym_AT_LBRACK] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), + [1073] = { + [ts_builtin_sym_end] = ACTIONS(2998), + [sym_identifier] = ACTIONS(3000), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_CR] = ACTIONS(3000), + [anon_sym_CR_LF] = ACTIONS(3000), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym___global] = ACTIONS(3000), + [anon_sym_type] = ACTIONS(3000), + [anon_sym_PIPE] = ACTIONS(3000), + [anon_sym_fn] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_SLASH] = ACTIONS(3000), + [anon_sym_PERCENT] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(3000), + [anon_sym_EQ_EQ] = ACTIONS(3000), + [anon_sym_BANG_EQ] = ACTIONS(3000), + [anon_sym_LT_EQ] = ACTIONS(3000), + [anon_sym_GT_EQ] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_pub] = ACTIONS(3000), + [anon_sym_mut] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_interface] = ACTIONS(3000), + [anon_sym_PLUS_PLUS] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3000), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(3000), + [anon_sym_go] = ACTIONS(3000), + [anon_sym_spawn] = ACTIONS(3000), + [anon_sym_json_DOTdecode] = ACTIONS(3000), + [anon_sym_LBRACK2] = ACTIONS(3000), + [anon_sym_TILDE] = ACTIONS(3000), + [anon_sym_CARET] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_LT_DASH] = ACTIONS(3000), + [anon_sym_LT_LT] = ACTIONS(3000), + [anon_sym_GT_GT] = ACTIONS(3000), + [anon_sym_GT_GT_GT] = ACTIONS(3000), + [anon_sym_AMP_CARET] = ACTIONS(3000), + [anon_sym_AMP_AMP] = ACTIONS(3000), + [anon_sym_PIPE_PIPE] = ACTIONS(3000), + [anon_sym_or] = ACTIONS(3000), + [sym_none] = ACTIONS(3000), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [sym_nil] = ACTIONS(3000), + [anon_sym_QMARK_DOT] = ACTIONS(3000), + [anon_sym_POUND_LBRACK] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_DOLLARif] = ACTIONS(3000), + [anon_sym_is] = ACTIONS(3000), + [anon_sym_BANGis] = ACTIONS(3000), + [anon_sym_in] = ACTIONS(3000), + [anon_sym_BANGin] = ACTIONS(3000), + [anon_sym_match] = ACTIONS(3000), + [anon_sym_select] = ACTIONS(3000), + [anon_sym_lock] = ACTIONS(3000), + [anon_sym_rlock] = ACTIONS(3000), + [anon_sym_unsafe] = ACTIONS(3000), + [anon_sym_sql] = ACTIONS(3000), + [sym_int_literal] = ACTIONS(3000), + [sym_float_literal] = ACTIONS(3000), + [sym_rune_literal] = ACTIONS(3000), + [anon_sym_AT] = ACTIONS(3000), + [anon_sym_shared] = ACTIONS(3000), + [anon_sym_map_LBRACK] = ACTIONS(3000), + [anon_sym_chan] = ACTIONS(3000), + [anon_sym_thread] = ACTIONS(3000), + [anon_sym_atomic] = ACTIONS(3000), + [anon_sym_assert] = ACTIONS(3000), + [anon_sym_defer] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_DOLLARfor] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym_AT_LBRACK] = ACTIONS(3000), + [sym___double_quote] = ACTIONS(3000), + [sym___single_quote] = ACTIONS(3000), + [sym___c_double_quote] = ACTIONS(3000), + [sym___c_single_quote] = ACTIONS(3000), + [sym___r_double_quote] = ACTIONS(3000), + [sym___r_single_quote] = ACTIONS(3000), }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(3016), - [sym_identifier] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3018), - [anon_sym_CR] = ACTIONS(3018), - [anon_sym_CR_LF] = ACTIONS(3018), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_const] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym___global] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_fn] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_struct] = ACTIONS(3018), - [anon_sym_union] = ACTIONS(3018), - [anon_sym_pub] = ACTIONS(3018), - [anon_sym_mut] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_go] = ACTIONS(3018), - [anon_sym_spawn] = ACTIONS(3018), - [anon_sym_json_DOTdecode] = ACTIONS(3018), - [anon_sym_LBRACK2] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_CARET] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_GT_GT_GT] = ACTIONS(3018), - [anon_sym_AMP_CARET] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_or] = ACTIONS(3018), - [sym_none] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_nil] = ACTIONS(3018), - [anon_sym_QMARK_DOT] = ACTIONS(3018), - [anon_sym_POUND_LBRACK] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_DOLLARif] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3018), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_select] = ACTIONS(3018), - [anon_sym_lock] = ACTIONS(3018), - [anon_sym_rlock] = ACTIONS(3018), - [anon_sym_unsafe] = ACTIONS(3018), - [anon_sym_sql] = ACTIONS(3018), - [sym_int_literal] = ACTIONS(3018), - [sym_float_literal] = ACTIONS(3018), - [sym_rune_literal] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_shared] = ACTIONS(3018), - [anon_sym_map_LBRACK] = ACTIONS(3018), - [anon_sym_chan] = ACTIONS(3018), - [anon_sym_thread] = ACTIONS(3018), - [anon_sym_atomic] = ACTIONS(3018), - [anon_sym_assert] = ACTIONS(3018), - [anon_sym_defer] = ACTIONS(3018), - [anon_sym_goto] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_DOLLARfor] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_POUND] = ACTIONS(3018), - [anon_sym_asm] = ACTIONS(3018), - [anon_sym_AT_LBRACK] = ACTIONS(3018), - [sym___double_quote] = ACTIONS(3018), - [sym___single_quote] = ACTIONS(3018), - [sym___c_double_quote] = ACTIONS(3018), - [sym___c_single_quote] = ACTIONS(3018), - [sym___r_double_quote] = ACTIONS(3018), - [sym___r_single_quote] = ACTIONS(3018), + [1074] = { + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3253), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_CR] = ACTIONS(3253), + [anon_sym_CR_LF] = ACTIONS(3253), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym___global] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_union] = ACTIONS(3253), + [anon_sym_pub] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3253), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3253), + [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3253), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + [sym_rune_literal] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3253), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [anon_sym_assert] = ACTIONS(3253), + [anon_sym_defer] = ACTIONS(3253), + [anon_sym_goto] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_DOLLARfor] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_asm] = ACTIONS(3253), + [anon_sym_AT_LBRACK] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3253), + [sym___single_quote] = ACTIONS(3253), + [sym___c_double_quote] = ACTIONS(3253), + [sym___c_single_quote] = ACTIONS(3253), + [sym___r_double_quote] = ACTIONS(3253), + [sym___r_single_quote] = ACTIONS(3253), }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_LF] = ACTIONS(2850), - [anon_sym_CR] = ACTIONS(2850), - [anon_sym_CR_LF] = ACTIONS(2850), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_const] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym___global] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_union] = ACTIONS(2850), - [anon_sym_pub] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_enum] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [anon_sym_assert] = ACTIONS(2850), - [anon_sym_defer] = ACTIONS(2850), - [anon_sym_goto] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_DOLLARfor] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_asm] = ACTIONS(2850), - [anon_sym_AT_LBRACK] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), + [1075] = { + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym___global] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_pub] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [anon_sym_assert] = ACTIONS(3198), + [anon_sym_defer] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_DOLLARfor] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym_AT_LBRACK] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), }, - [1017] = { + [1076] = { [ts_builtin_sym_end] = ACTIONS(2888), [sym_identifier] = ACTIONS(2890), [anon_sym_LF] = ACTIONS(2890), [anon_sym_CR] = ACTIONS(2890), [anon_sym_CR_LF] = ACTIONS(2890), - [sym_comment] = ACTIONS(493), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(2890), [anon_sym_as] = ACTIONS(2890), [anon_sym_LBRACE] = ACTIONS(2890), @@ -142461,1013 +148767,1112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2890), [sym___r_single_quote] = ACTIONS(2890), }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_LF] = ACTIONS(2898), - [anon_sym_CR] = ACTIONS(2898), - [anon_sym_CR_LF] = ACTIONS(2898), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym___global] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_pub] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2898), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2898), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2898), - [anon_sym_AMP_CARET] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2898), - [anon_sym_POUND_LBRACK] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2898), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), - [sym_rune_literal] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2898), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [anon_sym_assert] = ACTIONS(2898), - [anon_sym_defer] = ACTIONS(2898), - [anon_sym_goto] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_DOLLARfor] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [anon_sym_asm] = ACTIONS(2898), - [anon_sym_AT_LBRACK] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2898), - [sym___single_quote] = ACTIONS(2898), - [sym___c_double_quote] = ACTIONS(2898), - [sym___c_single_quote] = ACTIONS(2898), - [sym___r_double_quote] = ACTIONS(2898), - [sym___r_single_quote] = ACTIONS(2898), + [1077] = { + [ts_builtin_sym_end] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3293), + [anon_sym_LF] = ACTIONS(3293), + [anon_sym_CR] = ACTIONS(3293), + [anon_sym_CR_LF] = ACTIONS(3293), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym___global] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [anon_sym_EQ_EQ] = ACTIONS(3293), + [anon_sym_BANG_EQ] = ACTIONS(3293), + [anon_sym_LT_EQ] = ACTIONS(3293), + [anon_sym_GT_EQ] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_union] = ACTIONS(3293), + [anon_sym_pub] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_GT_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_CARET] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_or] = ACTIONS(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3293), + [anon_sym_POUND_LBRACK] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [anon_sym_assert] = ACTIONS(3293), + [anon_sym_defer] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_DOLLARfor] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_asm] = ACTIONS(3293), + [anon_sym_AT_LBRACK] = ACTIONS(3293), + [sym___double_quote] = ACTIONS(3293), + [sym___single_quote] = ACTIONS(3293), + [sym___c_double_quote] = ACTIONS(3293), + [sym___c_single_quote] = ACTIONS(3293), + [sym___r_double_quote] = ACTIONS(3293), + [sym___r_single_quote] = ACTIONS(3293), }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_LF] = ACTIONS(2902), - [anon_sym_CR] = ACTIONS(2902), - [anon_sym_CR_LF] = ACTIONS(2902), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym___global] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2902), - [anon_sym_BANG_EQ] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_union] = ACTIONS(2902), - [anon_sym_pub] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2902), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2902), - [anon_sym_AMP_CARET] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2902), - [anon_sym_POUND_LBRACK] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2902), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [anon_sym_assert] = ACTIONS(2902), - [anon_sym_defer] = ACTIONS(2902), - [anon_sym_goto] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_DOLLARfor] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_asm] = ACTIONS(2902), - [anon_sym_AT_LBRACK] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), + [1078] = { + [ts_builtin_sym_end] = ACTIONS(3347), + [sym_identifier] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_CR] = ACTIONS(3349), + [anon_sym_CR_LF] = ACTIONS(3349), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3349), + [anon_sym_as] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_COMMA] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym___global] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_fn] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_PERCENT] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_BANG_EQ] = ACTIONS(3349), + [anon_sym_LT_EQ] = ACTIONS(3349), + [anon_sym_GT_EQ] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3349), + [anon_sym_union] = ACTIONS(3349), + [anon_sym_pub] = ACTIONS(3349), + [anon_sym_mut] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_go] = ACTIONS(3349), + [anon_sym_spawn] = ACTIONS(3349), + [anon_sym_json_DOTdecode] = ACTIONS(3349), + [anon_sym_LBRACK2] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_GT_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_CARET] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_or] = ACTIONS(3349), + [sym_none] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_nil] = ACTIONS(3349), + [anon_sym_QMARK_DOT] = ACTIONS(3349), + [anon_sym_POUND_LBRACK] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_DOLLARif] = ACTIONS(3349), + [anon_sym_is] = ACTIONS(3349), + [anon_sym_BANGis] = ACTIONS(3349), + [anon_sym_in] = ACTIONS(3349), + [anon_sym_BANGin] = ACTIONS(3349), + [anon_sym_match] = ACTIONS(3349), + [anon_sym_select] = ACTIONS(3349), + [anon_sym_lock] = ACTIONS(3349), + [anon_sym_rlock] = ACTIONS(3349), + [anon_sym_unsafe] = ACTIONS(3349), + [anon_sym_sql] = ACTIONS(3349), + [sym_int_literal] = ACTIONS(3349), + [sym_float_literal] = ACTIONS(3349), + [sym_rune_literal] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_shared] = ACTIONS(3349), + [anon_sym_map_LBRACK] = ACTIONS(3349), + [anon_sym_chan] = ACTIONS(3349), + [anon_sym_thread] = ACTIONS(3349), + [anon_sym_atomic] = ACTIONS(3349), + [anon_sym_assert] = ACTIONS(3349), + [anon_sym_defer] = ACTIONS(3349), + [anon_sym_goto] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_DOLLARfor] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_POUND] = ACTIONS(3349), + [anon_sym_asm] = ACTIONS(3349), + [anon_sym_AT_LBRACK] = ACTIONS(3349), + [sym___double_quote] = ACTIONS(3349), + [sym___single_quote] = ACTIONS(3349), + [sym___c_double_quote] = ACTIONS(3349), + [sym___c_single_quote] = ACTIONS(3349), + [sym___r_double_quote] = ACTIONS(3349), + [sym___r_single_quote] = ACTIONS(3349), }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LF] = ACTIONS(2930), - [anon_sym_CR] = ACTIONS(2930), - [anon_sym_CR_LF] = ACTIONS(2930), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_as] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym___global] = ACTIONS(2930), - [anon_sym_type] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_fn] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_GT] = ACTIONS(2930), - [anon_sym_EQ_EQ] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_pub] = ACTIONS(2930), - [anon_sym_mut] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2930), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_go] = ACTIONS(2930), - [anon_sym_spawn] = ACTIONS(2930), - [anon_sym_json_DOTdecode] = ACTIONS(2930), - [anon_sym_LBRACK2] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2930), - [anon_sym_LT_LT] = ACTIONS(2930), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_GT_GT_GT] = ACTIONS(2930), - [anon_sym_AMP_CARET] = ACTIONS(2930), - [anon_sym_AMP_AMP] = ACTIONS(2930), - [anon_sym_PIPE_PIPE] = ACTIONS(2930), - [anon_sym_or] = ACTIONS(2930), - [sym_none] = ACTIONS(2930), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_nil] = ACTIONS(2930), - [anon_sym_QMARK_DOT] = ACTIONS(2930), - [anon_sym_POUND_LBRACK] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_DOLLARif] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2930), - [anon_sym_BANGis] = ACTIONS(2930), - [anon_sym_in] = ACTIONS(2930), - [anon_sym_BANGin] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_select] = ACTIONS(2930), - [anon_sym_lock] = ACTIONS(2930), - [anon_sym_rlock] = ACTIONS(2930), - [anon_sym_unsafe] = ACTIONS(2930), - [anon_sym_sql] = ACTIONS(2930), - [sym_int_literal] = ACTIONS(2930), - [sym_float_literal] = ACTIONS(2930), - [sym_rune_literal] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2930), - [anon_sym_shared] = ACTIONS(2930), - [anon_sym_map_LBRACK] = ACTIONS(2930), - [anon_sym_chan] = ACTIONS(2930), - [anon_sym_thread] = ACTIONS(2930), - [anon_sym_atomic] = ACTIONS(2930), - [anon_sym_assert] = ACTIONS(2930), - [anon_sym_defer] = ACTIONS(2930), - [anon_sym_goto] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_DOLLARfor] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2930), - [anon_sym_asm] = ACTIONS(2930), - [anon_sym_AT_LBRACK] = ACTIONS(2930), - [sym___double_quote] = ACTIONS(2930), - [sym___single_quote] = ACTIONS(2930), - [sym___c_double_quote] = ACTIONS(2930), - [sym___c_single_quote] = ACTIONS(2930), - [sym___r_double_quote] = ACTIONS(2930), - [sym___r_single_quote] = ACTIONS(2930), + [1079] = { + [ts_builtin_sym_end] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3156), + [anon_sym_LF] = ACTIONS(3156), + [anon_sym_CR] = ACTIONS(3156), + [anon_sym_CR_LF] = ACTIONS(3156), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym___global] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_PIPE] = ACTIONS(3156), + [anon_sym_fn] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_GT] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_pub] = ACTIONS(3156), + [anon_sym_mut] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3156), + [anon_sym_json_DOTdecode] = ACTIONS(3156), + [anon_sym_LBRACK2] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_CARET] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_LT_DASH] = ACTIONS(3156), + [anon_sym_LT_LT] = ACTIONS(3156), + [anon_sym_GT_GT] = ACTIONS(3156), + [anon_sym_GT_GT_GT] = ACTIONS(3156), + [anon_sym_AMP_CARET] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_or] = ACTIONS(3156), + [sym_none] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_nil] = ACTIONS(3156), + [anon_sym_QMARK_DOT] = ACTIONS(3156), + [anon_sym_POUND_LBRACK] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_DOLLARif] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3156), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_match] = ACTIONS(3156), + [anon_sym_select] = ACTIONS(3156), + [anon_sym_lock] = ACTIONS(3156), + [anon_sym_rlock] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(3156), + [anon_sym_sql] = ACTIONS(3156), + [sym_int_literal] = ACTIONS(3156), + [sym_float_literal] = ACTIONS(3156), + [sym_rune_literal] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_shared] = ACTIONS(3156), + [anon_sym_map_LBRACK] = ACTIONS(3156), + [anon_sym_chan] = ACTIONS(3156), + [anon_sym_thread] = ACTIONS(3156), + [anon_sym_atomic] = ACTIONS(3156), + [anon_sym_assert] = ACTIONS(3156), + [anon_sym_defer] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_DOLLARfor] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_POUND] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym_AT_LBRACK] = ACTIONS(3156), + [sym___double_quote] = ACTIONS(3156), + [sym___single_quote] = ACTIONS(3156), + [sym___c_double_quote] = ACTIONS(3156), + [sym___c_single_quote] = ACTIONS(3156), + [sym___r_double_quote] = ACTIONS(3156), + [sym___r_single_quote] = ACTIONS(3156), }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(3056), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LF] = ACTIONS(3058), - [anon_sym_CR] = ACTIONS(3058), - [anon_sym_CR_LF] = ACTIONS(3058), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_const] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym___global] = ACTIONS(3058), - [anon_sym_type] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_union] = ACTIONS(3058), - [anon_sym_pub] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_enum] = ACTIONS(3058), - [anon_sym_interface] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3058), - [anon_sym_AMP_CARET] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3058), - [anon_sym_POUND_LBRACK] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [anon_sym_assert] = ACTIONS(3058), - [anon_sym_defer] = ACTIONS(3058), - [anon_sym_goto] = ACTIONS(3058), - [anon_sym_break] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(3058), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_DOLLARfor] = ACTIONS(3058), - [anon_sym_for] = ACTIONS(3058), - [anon_sym_POUND] = ACTIONS(3058), - [anon_sym_asm] = ACTIONS(3058), - [anon_sym_AT_LBRACK] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3058), - [sym___single_quote] = ACTIONS(3058), - [sym___c_double_quote] = ACTIONS(3058), - [sym___c_single_quote] = ACTIONS(3058), - [sym___r_double_quote] = ACTIONS(3058), - [sym___r_single_quote] = ACTIONS(3058), + [1080] = { + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_CR] = ACTIONS(2980), + [anon_sym_CR_LF] = ACTIONS(2980), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2980), + [anon_sym_as] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym___global] = ACTIONS(2980), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_pub] = ACTIONS(2980), + [anon_sym_mut] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_go] = ACTIONS(2980), + [anon_sym_spawn] = ACTIONS(2980), + [anon_sym_json_DOTdecode] = ACTIONS(2980), + [anon_sym_LBRACK2] = ACTIONS(2980), + [anon_sym_TILDE] = ACTIONS(2980), + [anon_sym_CARET] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2980), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_GT_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_CARET] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2980), + [sym_none] = ACTIONS(2980), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [sym_nil] = ACTIONS(2980), + [anon_sym_QMARK_DOT] = ACTIONS(2980), + [anon_sym_POUND_LBRACK] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_DOLLARif] = ACTIONS(2980), + [anon_sym_is] = ACTIONS(2980), + [anon_sym_BANGis] = ACTIONS(2980), + [anon_sym_in] = ACTIONS(2980), + [anon_sym_BANGin] = ACTIONS(2980), + [anon_sym_match] = ACTIONS(2980), + [anon_sym_select] = ACTIONS(2980), + [anon_sym_lock] = ACTIONS(2980), + [anon_sym_rlock] = ACTIONS(2980), + [anon_sym_unsafe] = ACTIONS(2980), + [anon_sym_sql] = ACTIONS(2980), + [sym_int_literal] = ACTIONS(2980), + [sym_float_literal] = ACTIONS(2980), + [sym_rune_literal] = ACTIONS(2980), + [anon_sym_AT] = ACTIONS(2980), + [anon_sym_shared] = ACTIONS(2980), + [anon_sym_map_LBRACK] = ACTIONS(2980), + [anon_sym_chan] = ACTIONS(2980), + [anon_sym_thread] = ACTIONS(2980), + [anon_sym_atomic] = ACTIONS(2980), + [anon_sym_assert] = ACTIONS(2980), + [anon_sym_defer] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_DOLLARfor] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym_AT_LBRACK] = ACTIONS(2980), + [sym___double_quote] = ACTIONS(2980), + [sym___single_quote] = ACTIONS(2980), + [sym___c_double_quote] = ACTIONS(2980), + [sym___c_single_quote] = ACTIONS(2980), + [sym___r_double_quote] = ACTIONS(2980), + [sym___r_single_quote] = ACTIONS(2980), }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(3064), - [sym_identifier] = ACTIONS(3066), - [anon_sym_LF] = ACTIONS(3066), - [anon_sym_CR] = ACTIONS(3066), - [anon_sym_CR_LF] = ACTIONS(3066), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym___global] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_fn] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_union] = ACTIONS(3066), - [anon_sym_pub] = ACTIONS(3066), - [anon_sym_mut] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_go] = ACTIONS(3066), - [anon_sym_spawn] = ACTIONS(3066), - [anon_sym_json_DOTdecode] = ACTIONS(3066), - [anon_sym_LBRACK2] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3066), - [anon_sym_AMP_CARET] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3066), - [sym_none] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_nil] = ACTIONS(3066), - [anon_sym_QMARK_DOT] = ACTIONS(3066), - [anon_sym_POUND_LBRACK] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_DOLLARif] = ACTIONS(3066), - [anon_sym_is] = ACTIONS(3066), - [anon_sym_BANGis] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_BANGin] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_rlock] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_sql] = ACTIONS(3066), - [sym_int_literal] = ACTIONS(3066), - [sym_float_literal] = ACTIONS(3066), - [sym_rune_literal] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_shared] = ACTIONS(3066), - [anon_sym_map_LBRACK] = ACTIONS(3066), - [anon_sym_chan] = ACTIONS(3066), - [anon_sym_thread] = ACTIONS(3066), - [anon_sym_atomic] = ACTIONS(3066), - [anon_sym_assert] = ACTIONS(3066), - [anon_sym_defer] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_DOLLARfor] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_POUND] = ACTIONS(3066), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym_AT_LBRACK] = ACTIONS(3066), - [sym___double_quote] = ACTIONS(3066), - [sym___single_quote] = ACTIONS(3066), - [sym___c_double_quote] = ACTIONS(3066), - [sym___c_single_quote] = ACTIONS(3066), - [sym___r_double_quote] = ACTIONS(3066), - [sym___r_single_quote] = ACTIONS(3066), + [1081] = { + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_CR] = ACTIONS(3040), + [anon_sym_CR_LF] = ACTIONS(3040), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym___global] = ACTIONS(3040), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_pub] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_interface] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3040), + [anon_sym_POUND_LBRACK] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [anon_sym_AT] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [anon_sym_assert] = ACTIONS(3040), + [anon_sym_defer] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_DOLLARfor] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym_AT_LBRACK] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(3072), - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_const] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym___global] = ACTIONS(3074), - [anon_sym_type] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_pub] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_enum] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [anon_sym_assert] = ACTIONS(3074), - [anon_sym_defer] = ACTIONS(3074), - [anon_sym_goto] = ACTIONS(3074), - [anon_sym_break] = ACTIONS(3074), - [anon_sym_continue] = ACTIONS(3074), - [anon_sym_return] = ACTIONS(3074), - [anon_sym_DOLLARfor] = ACTIONS(3074), - [anon_sym_for] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_asm] = ACTIONS(3074), - [anon_sym_AT_LBRACK] = ACTIONS(3074), - [sym___double_quote] = ACTIONS(3074), - [sym___single_quote] = ACTIONS(3074), - [sym___c_double_quote] = ACTIONS(3074), - [sym___c_single_quote] = ACTIONS(3074), - [sym___r_double_quote] = ACTIONS(3074), - [sym___r_single_quote] = ACTIONS(3074), + [1082] = { + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LF] = ACTIONS(2988), + [anon_sym_CR] = ACTIONS(2988), + [anon_sym_CR_LF] = ACTIONS(2988), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym___global] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2988), + [anon_sym_fn] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_LT_EQ] = ACTIONS(2988), + [anon_sym_GT_EQ] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_pub] = ACTIONS(2988), + [anon_sym_mut] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_interface] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_go] = ACTIONS(2988), + [anon_sym_spawn] = ACTIONS(2988), + [anon_sym_json_DOTdecode] = ACTIONS(2988), + [anon_sym_LBRACK2] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2988), + [anon_sym_CARET] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_LT_LT] = ACTIONS(2988), + [anon_sym_GT_GT] = ACTIONS(2988), + [anon_sym_GT_GT_GT] = ACTIONS(2988), + [anon_sym_AMP_CARET] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_or] = ACTIONS(2988), + [sym_none] = ACTIONS(2988), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [sym_nil] = ACTIONS(2988), + [anon_sym_QMARK_DOT] = ACTIONS(2988), + [anon_sym_POUND_LBRACK] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_DOLLARif] = ACTIONS(2988), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2988), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_BANGin] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_select] = ACTIONS(2988), + [anon_sym_lock] = ACTIONS(2988), + [anon_sym_rlock] = ACTIONS(2988), + [anon_sym_unsafe] = ACTIONS(2988), + [anon_sym_sql] = ACTIONS(2988), + [sym_int_literal] = ACTIONS(2988), + [sym_float_literal] = ACTIONS(2988), + [sym_rune_literal] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2988), + [anon_sym_shared] = ACTIONS(2988), + [anon_sym_map_LBRACK] = ACTIONS(2988), + [anon_sym_chan] = ACTIONS(2988), + [anon_sym_thread] = ACTIONS(2988), + [anon_sym_atomic] = ACTIONS(2988), + [anon_sym_assert] = ACTIONS(2988), + [anon_sym_defer] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_DOLLARfor] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_POUND] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym_AT_LBRACK] = ACTIONS(2988), + [sym___double_quote] = ACTIONS(2988), + [sym___single_quote] = ACTIONS(2988), + [sym___c_double_quote] = ACTIONS(2988), + [sym___c_single_quote] = ACTIONS(2988), + [sym___r_double_quote] = ACTIONS(2988), + [sym___r_single_quote] = ACTIONS(2988), }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LF] = ACTIONS(2978), - [anon_sym_CR] = ACTIONS(2978), - [anon_sym_CR_LF] = ACTIONS(2978), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2978), - [anon_sym_as] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_const] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2978), - [anon_sym___global] = ACTIONS(2978), - [anon_sym_type] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_fn] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_PERCENT] = ACTIONS(2978), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_GT] = ACTIONS(2978), - [anon_sym_EQ_EQ] = ACTIONS(2978), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_LT_EQ] = ACTIONS(2978), - [anon_sym_GT_EQ] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2978), - [anon_sym_union] = ACTIONS(2978), - [anon_sym_pub] = ACTIONS(2978), - [anon_sym_mut] = ACTIONS(2978), - [anon_sym_enum] = ACTIONS(2978), - [anon_sym_interface] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2978), - [anon_sym_DASH_DASH] = ACTIONS(2978), - [anon_sym_QMARK] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_go] = ACTIONS(2978), - [anon_sym_spawn] = ACTIONS(2978), - [anon_sym_json_DOTdecode] = ACTIONS(2978), - [anon_sym_LBRACK2] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_LT_DASH] = ACTIONS(2978), - [anon_sym_LT_LT] = ACTIONS(2978), - [anon_sym_GT_GT] = ACTIONS(2978), - [anon_sym_GT_GT_GT] = ACTIONS(2978), - [anon_sym_AMP_CARET] = ACTIONS(2978), - [anon_sym_AMP_AMP] = ACTIONS(2978), - [anon_sym_PIPE_PIPE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2978), - [sym_none] = ACTIONS(2978), - [sym_true] = ACTIONS(2978), - [sym_false] = ACTIONS(2978), - [sym_nil] = ACTIONS(2978), - [anon_sym_QMARK_DOT] = ACTIONS(2978), - [anon_sym_POUND_LBRACK] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_DOLLARif] = ACTIONS(2978), - [anon_sym_is] = ACTIONS(2978), - [anon_sym_BANGis] = ACTIONS(2978), - [anon_sym_in] = ACTIONS(2978), - [anon_sym_BANGin] = ACTIONS(2978), - [anon_sym_match] = ACTIONS(2978), - [anon_sym_select] = ACTIONS(2978), - [anon_sym_lock] = ACTIONS(2978), - [anon_sym_rlock] = ACTIONS(2978), - [anon_sym_unsafe] = ACTIONS(2978), - [anon_sym_sql] = ACTIONS(2978), - [sym_int_literal] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2978), - [sym_rune_literal] = ACTIONS(2978), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_shared] = ACTIONS(2978), - [anon_sym_map_LBRACK] = ACTIONS(2978), - [anon_sym_chan] = ACTIONS(2978), - [anon_sym_thread] = ACTIONS(2978), - [anon_sym_atomic] = ACTIONS(2978), - [anon_sym_assert] = ACTIONS(2978), - [anon_sym_defer] = ACTIONS(2978), - [anon_sym_goto] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_DOLLARfor] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [anon_sym_asm] = ACTIONS(2978), - [anon_sym_AT_LBRACK] = ACTIONS(2978), - [sym___double_quote] = ACTIONS(2978), - [sym___single_quote] = ACTIONS(2978), - [sym___c_double_quote] = ACTIONS(2978), - [sym___c_single_quote] = ACTIONS(2978), - [sym___r_double_quote] = ACTIONS(2978), - [sym___r_single_quote] = ACTIONS(2978), + [1083] = { + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2790), - [anon_sym_CR] = ACTIONS(2790), - [anon_sym_CR_LF] = ACTIONS(2790), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym___global] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_pub] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_interface] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [anon_sym_assert] = ACTIONS(2790), - [anon_sym_defer] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_DOLLARfor] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_asm] = ACTIONS(2790), - [anon_sym_AT_LBRACK] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), + [1084] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_const] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym___global] = ACTIONS(3090), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_union] = ACTIONS(3090), - [anon_sym_pub] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_enum] = ACTIONS(3090), - [anon_sym_interface] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_AT] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [anon_sym_assert] = ACTIONS(3090), - [anon_sym_defer] = ACTIONS(3090), - [anon_sym_goto] = ACTIONS(3090), - [anon_sym_break] = ACTIONS(3090), - [anon_sym_continue] = ACTIONS(3090), - [anon_sym_return] = ACTIONS(3090), - [anon_sym_DOLLARfor] = ACTIONS(3090), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_POUND] = ACTIONS(3090), - [anon_sym_asm] = ACTIONS(3090), - [anon_sym_AT_LBRACK] = ACTIONS(3090), - [sym___double_quote] = ACTIONS(3090), - [sym___single_quote] = ACTIONS(3090), - [sym___c_double_quote] = ACTIONS(3090), - [sym___c_single_quote] = ACTIONS(3090), - [sym___r_double_quote] = ACTIONS(3090), - [sym___r_single_quote] = ACTIONS(3090), + [1085] = { + [ts_builtin_sym_end] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2992), + [anon_sym_LF] = ACTIONS(2992), + [anon_sym_CR] = ACTIONS(2992), + [anon_sym_CR_LF] = ACTIONS(2992), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_as] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym___global] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2992), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2992), + [anon_sym_PERCENT] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2992), + [anon_sym_EQ_EQ] = ACTIONS(2992), + [anon_sym_BANG_EQ] = ACTIONS(2992), + [anon_sym_LT_EQ] = ACTIONS(2992), + [anon_sym_GT_EQ] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_pub] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2992), + [anon_sym_LBRACK2] = ACTIONS(2992), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_CARET] = ACTIONS(2992), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_LT_DASH] = ACTIONS(2992), + [anon_sym_LT_LT] = ACTIONS(2992), + [anon_sym_GT_GT] = ACTIONS(2992), + [anon_sym_GT_GT_GT] = ACTIONS(2992), + [anon_sym_AMP_CARET] = ACTIONS(2992), + [anon_sym_AMP_AMP] = ACTIONS(2992), + [anon_sym_PIPE_PIPE] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(2992), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2992), + [anon_sym_POUND_LBRACK] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2992), + [anon_sym_BANGis] = ACTIONS(2992), + [anon_sym_in] = ACTIONS(2992), + [anon_sym_BANGin] = ACTIONS(2992), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), + [sym_rune_literal] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2992), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [anon_sym_assert] = ACTIONS(2992), + [anon_sym_defer] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_DOLLARfor] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym_AT_LBRACK] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2992), + [sym___single_quote] = ACTIONS(2992), + [sym___c_double_quote] = ACTIONS(2992), + [sym___c_single_quote] = ACTIONS(2992), + [sym___r_double_quote] = ACTIONS(2992), + [sym___r_single_quote] = ACTIONS(2992), }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(3096), - [sym_identifier] = ACTIONS(3098), - [anon_sym_LF] = ACTIONS(3098), - [anon_sym_CR] = ACTIONS(3098), - [anon_sym_CR_LF] = ACTIONS(3098), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3098), - [anon_sym_as] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_COMMA] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym___global] = ACTIONS(3098), - [anon_sym_type] = ACTIONS(3098), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3098), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_PERCENT] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3098), - [anon_sym_BANG_EQ] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3098), - [anon_sym_GT_EQ] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_pub] = ACTIONS(3098), - [anon_sym_mut] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [anon_sym_QMARK] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_go] = ACTIONS(3098), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(3098), - [anon_sym_LBRACK2] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_LT_DASH] = ACTIONS(3098), - [anon_sym_LT_LT] = ACTIONS(3098), - [anon_sym_GT_GT] = ACTIONS(3098), - [anon_sym_GT_GT_GT] = ACTIONS(3098), - [anon_sym_AMP_CARET] = ACTIONS(3098), - [anon_sym_AMP_AMP] = ACTIONS(3098), - [anon_sym_PIPE_PIPE] = ACTIONS(3098), - [anon_sym_or] = ACTIONS(3098), - [sym_none] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_nil] = ACTIONS(3098), - [anon_sym_QMARK_DOT] = ACTIONS(3098), - [anon_sym_POUND_LBRACK] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_DOLLARif] = ACTIONS(3098), - [anon_sym_is] = ACTIONS(3098), - [anon_sym_BANGis] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_BANGin] = ACTIONS(3098), - [anon_sym_match] = ACTIONS(3098), - [anon_sym_select] = ACTIONS(3098), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(3098), - [anon_sym_sql] = ACTIONS(3098), - [sym_int_literal] = ACTIONS(3098), - [sym_float_literal] = ACTIONS(3098), - [sym_rune_literal] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_shared] = ACTIONS(3098), - [anon_sym_map_LBRACK] = ACTIONS(3098), - [anon_sym_chan] = ACTIONS(3098), - [anon_sym_thread] = ACTIONS(3098), - [anon_sym_atomic] = ACTIONS(3098), - [anon_sym_assert] = ACTIONS(3098), - [anon_sym_defer] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_DOLLARfor] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_POUND] = ACTIONS(3098), - [anon_sym_asm] = ACTIONS(3098), - [anon_sym_AT_LBRACK] = ACTIONS(3098), - [sym___double_quote] = ACTIONS(3098), - [sym___single_quote] = ACTIONS(3098), - [sym___c_double_quote] = ACTIONS(3098), - [sym___c_single_quote] = ACTIONS(3098), - [sym___r_double_quote] = ACTIONS(3098), - [sym___r_single_quote] = ACTIONS(3098), + [1086] = { + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3241), + [anon_sym_pub] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [anon_sym_assert] = ACTIONS(3241), + [anon_sym_defer] = ACTIONS(3241), + [anon_sym_goto] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_DOLLARfor] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_asm] = ACTIONS(3241), + [anon_sym_AT_LBRACK] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3241), + [sym___single_quote] = ACTIONS(3241), + [sym___c_double_quote] = ACTIONS(3241), + [sym___c_single_quote] = ACTIONS(3241), + [sym___r_double_quote] = ACTIONS(3241), + [sym___r_single_quote] = ACTIONS(3241), }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(3108), - [sym_identifier] = ACTIONS(3110), - [anon_sym_LF] = ACTIONS(3110), - [anon_sym_CR] = ACTIONS(3110), - [anon_sym_CR_LF] = ACTIONS(3110), - [sym_comment] = ACTIONS(493), + [1087] = { + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LF] = ACTIONS(2956), + [anon_sym_CR] = ACTIONS(2956), + [anon_sym_CR_LF] = ACTIONS(2956), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2956), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym___global] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_fn] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_EQ_EQ] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2956), + [anon_sym_GT_EQ] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_pub] = ACTIONS(2956), + [anon_sym_mut] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_go] = ACTIONS(2956), + [anon_sym_spawn] = ACTIONS(2956), + [anon_sym_json_DOTdecode] = ACTIONS(2956), + [anon_sym_LBRACK2] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_GT_GT_GT] = ACTIONS(2956), + [anon_sym_AMP_CARET] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [sym_none] = ACTIONS(2956), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [sym_nil] = ACTIONS(2956), + [anon_sym_QMARK_DOT] = ACTIONS(2956), + [anon_sym_POUND_LBRACK] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_DOLLARif] = ACTIONS(2956), + [anon_sym_is] = ACTIONS(2956), + [anon_sym_BANGis] = ACTIONS(2956), + [anon_sym_in] = ACTIONS(2956), + [anon_sym_BANGin] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_select] = ACTIONS(2956), + [anon_sym_lock] = ACTIONS(2956), + [anon_sym_rlock] = ACTIONS(2956), + [anon_sym_unsafe] = ACTIONS(2956), + [anon_sym_sql] = ACTIONS(2956), + [sym_int_literal] = ACTIONS(2956), + [sym_float_literal] = ACTIONS(2956), + [sym_rune_literal] = ACTIONS(2956), + [anon_sym_AT] = ACTIONS(2956), + [anon_sym_shared] = ACTIONS(2956), + [anon_sym_map_LBRACK] = ACTIONS(2956), + [anon_sym_chan] = ACTIONS(2956), + [anon_sym_thread] = ACTIONS(2956), + [anon_sym_atomic] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_defer] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_DOLLARfor] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym_AT_LBRACK] = ACTIONS(2956), + [sym___double_quote] = ACTIONS(2956), + [sym___single_quote] = ACTIONS(2956), + [sym___c_double_quote] = ACTIONS(2956), + [sym___c_single_quote] = ACTIONS(2956), + [sym___r_double_quote] = ACTIONS(2956), + [sym___r_single_quote] = ACTIONS(2956), + }, + [1088] = { + [ts_builtin_sym_end] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3108), + [anon_sym_LF] = ACTIONS(3108), + [anon_sym_CR] = ACTIONS(3108), + [anon_sym_CR_LF] = ACTIONS(3108), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(3110), [anon_sym_as] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_const] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym___global] = ACTIONS(3110), - [anon_sym_type] = ACTIONS(3110), + [anon_sym___global] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_fn] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3108), [anon_sym_PLUS] = ACTIONS(3110), [anon_sym_DASH] = ACTIONS(3110), [anon_sym_STAR] = ACTIONS(3110), @@ -143479,25 +149884,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3110), [anon_sym_LT_EQ] = ACTIONS(3110), [anon_sym_GT_EQ] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3110), - [anon_sym_union] = ACTIONS(3110), - [anon_sym_pub] = ACTIONS(3110), - [anon_sym_mut] = ACTIONS(3110), - [anon_sym_enum] = ACTIONS(3110), - [anon_sym_interface] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(3108), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_mut] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), [anon_sym_PLUS_PLUS] = ACTIONS(3110), [anon_sym_DASH_DASH] = ACTIONS(3110), [anon_sym_QMARK] = ACTIONS(3110), [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_go] = ACTIONS(3110), - [anon_sym_spawn] = ACTIONS(3110), - [anon_sym_json_DOTdecode] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3108), + [anon_sym_spawn] = ACTIONS(3108), + [anon_sym_json_DOTdecode] = ACTIONS(3108), [anon_sym_LBRACK2] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3108), [anon_sym_CARET] = ACTIONS(3110), [anon_sym_AMP] = ACTIONS(3110), - [anon_sym_LT_DASH] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3108), [anon_sym_LT_LT] = ACTIONS(3110), [anon_sym_GT_GT] = ACTIONS(3110), [anon_sym_GT_GT_GT] = ACTIONS(3110), @@ -143505,2731 +149910,1939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3110), [anon_sym_PIPE_PIPE] = ACTIONS(3110), [anon_sym_or] = ACTIONS(3110), - [sym_none] = ACTIONS(3110), - [sym_true] = ACTIONS(3110), - [sym_false] = ACTIONS(3110), - [sym_nil] = ACTIONS(3110), + [sym_none] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_nil] = ACTIONS(3108), [anon_sym_QMARK_DOT] = ACTIONS(3110), [anon_sym_POUND_LBRACK] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_DOLLARif] = ACTIONS(3108), [anon_sym_is] = ACTIONS(3110), [anon_sym_BANGis] = ACTIONS(3110), [anon_sym_in] = ACTIONS(3110), [anon_sym_BANGin] = ACTIONS(3110), - [anon_sym_match] = ACTIONS(3110), - [anon_sym_select] = ACTIONS(3110), - [anon_sym_lock] = ACTIONS(3110), - [anon_sym_rlock] = ACTIONS(3110), - [anon_sym_unsafe] = ACTIONS(3110), - [anon_sym_sql] = ACTIONS(3110), - [sym_int_literal] = ACTIONS(3110), - [sym_float_literal] = ACTIONS(3110), - [sym_rune_literal] = ACTIONS(3110), - [anon_sym_AT] = ACTIONS(3110), - [anon_sym_shared] = ACTIONS(3110), - [anon_sym_map_LBRACK] = ACTIONS(3110), - [anon_sym_chan] = ACTIONS(3110), - [anon_sym_thread] = ACTIONS(3110), - [anon_sym_atomic] = ACTIONS(3110), - [anon_sym_assert] = ACTIONS(3110), - [anon_sym_defer] = ACTIONS(3110), - [anon_sym_goto] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_DOLLARfor] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3110), - [anon_sym_POUND] = ACTIONS(3110), - [anon_sym_asm] = ACTIONS(3110), - [anon_sym_AT_LBRACK] = ACTIONS(3110), - [sym___double_quote] = ACTIONS(3110), - [sym___single_quote] = ACTIONS(3110), - [sym___c_double_quote] = ACTIONS(3110), - [sym___c_single_quote] = ACTIONS(3110), - [sym___r_double_quote] = ACTIONS(3110), - [sym___r_single_quote] = ACTIONS(3110), - }, - [1029] = { - [ts_builtin_sym_end] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym___global] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_pub] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_defer] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_DOLLARfor] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_POUND] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym_AT_LBRACK] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), - }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3163), - [anon_sym_LF] = ACTIONS(3163), - [anon_sym_CR] = ACTIONS(3163), - [anon_sym_CR_LF] = ACTIONS(3163), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym___global] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_pub] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [anon_sym_assert] = ACTIONS(3163), - [anon_sym_defer] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_DOLLARfor] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym_AT_LBRACK] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), - }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym___global] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_pub] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_DOLLARfor] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_POUND] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym_AT_LBRACK] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_as] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym___global] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_PERCENT] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_EQ] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_pub] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_QMARK] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3183), - [anon_sym_GT_GT] = ACTIONS(3183), - [anon_sym_GT_GT_GT] = ACTIONS(3183), - [anon_sym_AMP_CARET] = ACTIONS(3183), - [anon_sym_AMP_AMP] = ACTIONS(3183), - [anon_sym_PIPE_PIPE] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(3183), - [anon_sym_POUND_LBRACK] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(3183), - [anon_sym_BANGis] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_BANGin] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [anon_sym_assert] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_DOLLARfor] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_POUND] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym_AT_LBRACK] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), - }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LF] = ACTIONS(3175), - [anon_sym_CR] = ACTIONS(3175), - [anon_sym_CR_LF] = ACTIONS(3175), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym___global] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_pub] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [anon_sym_assert] = ACTIONS(3175), - [anon_sym_defer] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_DOLLARfor] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_POUND] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym_AT_LBRACK] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), - }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym___global] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_union] = ACTIONS(3141), - [anon_sym_pub] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), - }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_LF] = ACTIONS(2966), - [anon_sym_CR] = ACTIONS(2966), - [anon_sym_CR_LF] = ACTIONS(2966), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2966), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym___global] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_fn] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_EQ_EQ] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_LT_EQ] = ACTIONS(2966), - [anon_sym_GT_EQ] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_union] = ACTIONS(2966), - [anon_sym_pub] = ACTIONS(2966), - [anon_sym_mut] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2966), - [anon_sym_DASH_DASH] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_go] = ACTIONS(2966), - [anon_sym_spawn] = ACTIONS(2966), - [anon_sym_json_DOTdecode] = ACTIONS(2966), - [anon_sym_LBRACK2] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_LT_LT] = ACTIONS(2966), - [anon_sym_GT_GT] = ACTIONS(2966), - [anon_sym_GT_GT_GT] = ACTIONS(2966), - [anon_sym_AMP_CARET] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2966), - [sym_none] = ACTIONS(2966), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_nil] = ACTIONS(2966), - [anon_sym_QMARK_DOT] = ACTIONS(2966), - [anon_sym_POUND_LBRACK] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_DOLLARif] = ACTIONS(2966), - [anon_sym_is] = ACTIONS(2966), - [anon_sym_BANGis] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(2966), - [anon_sym_BANGin] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_select] = ACTIONS(2966), - [anon_sym_lock] = ACTIONS(2966), - [anon_sym_rlock] = ACTIONS(2966), - [anon_sym_unsafe] = ACTIONS(2966), - [anon_sym_sql] = ACTIONS(2966), - [sym_int_literal] = ACTIONS(2966), - [sym_float_literal] = ACTIONS(2966), - [sym_rune_literal] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_shared] = ACTIONS(2966), - [anon_sym_map_LBRACK] = ACTIONS(2966), - [anon_sym_chan] = ACTIONS(2966), - [anon_sym_thread] = ACTIONS(2966), - [anon_sym_atomic] = ACTIONS(2966), - [anon_sym_assert] = ACTIONS(2966), - [anon_sym_defer] = ACTIONS(2966), - [anon_sym_goto] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_DOLLARfor] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2966), - [anon_sym_asm] = ACTIONS(2966), - [anon_sym_AT_LBRACK] = ACTIONS(2966), - [sym___double_quote] = ACTIONS(2966), - [sym___single_quote] = ACTIONS(2966), - [sym___c_double_quote] = ACTIONS(2966), - [sym___c_single_quote] = ACTIONS(2966), - [sym___r_double_quote] = ACTIONS(2966), - [sym___r_single_quote] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(3108), + [anon_sym_select] = ACTIONS(3108), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(3108), + [anon_sym_sql] = ACTIONS(3108), + [sym_int_literal] = ACTIONS(3108), + [sym_float_literal] = ACTIONS(3108), + [sym_rune_literal] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_shared] = ACTIONS(3108), + [anon_sym_map_LBRACK] = ACTIONS(3108), + [anon_sym_chan] = ACTIONS(3108), + [anon_sym_thread] = ACTIONS(3108), + [anon_sym_atomic] = ACTIONS(3108), + [anon_sym_assert] = ACTIONS(3108), + [anon_sym_defer] = ACTIONS(3108), + [anon_sym_goto] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_DOLLARfor] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_POUND] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3108), + [anon_sym_AT_LBRACK] = ACTIONS(3108), + [sym___double_quote] = ACTIONS(3108), + [sym___single_quote] = ACTIONS(3108), + [sym___c_double_quote] = ACTIONS(3108), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3108), + [sym___r_single_quote] = ACTIONS(3108), }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(3012), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LF] = ACTIONS(3014), - [anon_sym_CR] = ACTIONS(3014), - [anon_sym_CR_LF] = ACTIONS(3014), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_const] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym___global] = ACTIONS(3014), - [anon_sym_type] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_fn] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_GT] = ACTIONS(3014), - [anon_sym_EQ_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3014), - [anon_sym_LT_EQ] = ACTIONS(3014), - [anon_sym_GT_EQ] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3014), - [anon_sym_union] = ACTIONS(3014), - [anon_sym_pub] = ACTIONS(3014), - [anon_sym_mut] = ACTIONS(3014), - [anon_sym_enum] = ACTIONS(3014), - [anon_sym_interface] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3014), - [anon_sym_DASH_DASH] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_go] = ACTIONS(3014), - [anon_sym_spawn] = ACTIONS(3014), - [anon_sym_json_DOTdecode] = ACTIONS(3014), - [anon_sym_LBRACK2] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3014), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_LT_LT] = ACTIONS(3014), - [anon_sym_GT_GT] = ACTIONS(3014), - [anon_sym_GT_GT_GT] = ACTIONS(3014), - [anon_sym_AMP_CARET] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_or] = ACTIONS(3014), - [sym_none] = ACTIONS(3014), - [sym_true] = ACTIONS(3014), - [sym_false] = ACTIONS(3014), - [sym_nil] = ACTIONS(3014), - [anon_sym_QMARK_DOT] = ACTIONS(3014), - [anon_sym_POUND_LBRACK] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_DOLLARif] = ACTIONS(3014), - [anon_sym_is] = ACTIONS(3014), - [anon_sym_BANGis] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(3014), - [anon_sym_BANGin] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_select] = ACTIONS(3014), - [anon_sym_lock] = ACTIONS(3014), - [anon_sym_rlock] = ACTIONS(3014), - [anon_sym_unsafe] = ACTIONS(3014), - [anon_sym_sql] = ACTIONS(3014), - [sym_int_literal] = ACTIONS(3014), - [sym_float_literal] = ACTIONS(3014), - [sym_rune_literal] = ACTIONS(3014), - [anon_sym_AT] = ACTIONS(3014), - [anon_sym_shared] = ACTIONS(3014), - [anon_sym_map_LBRACK] = ACTIONS(3014), - [anon_sym_chan] = ACTIONS(3014), - [anon_sym_thread] = ACTIONS(3014), - [anon_sym_atomic] = ACTIONS(3014), - [anon_sym_assert] = ACTIONS(3014), - [anon_sym_defer] = ACTIONS(3014), - [anon_sym_goto] = ACTIONS(3014), - [anon_sym_break] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(3014), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_DOLLARfor] = ACTIONS(3014), - [anon_sym_for] = ACTIONS(3014), - [anon_sym_POUND] = ACTIONS(3014), - [anon_sym_asm] = ACTIONS(3014), - [anon_sym_AT_LBRACK] = ACTIONS(3014), - [sym___double_quote] = ACTIONS(3014), - [sym___single_quote] = ACTIONS(3014), - [sym___c_double_quote] = ACTIONS(3014), - [sym___c_single_quote] = ACTIONS(3014), - [sym___r_double_quote] = ACTIONS(3014), - [sym___r_single_quote] = ACTIONS(3014), + [1089] = { + [ts_builtin_sym_end] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3160), + [anon_sym_CR] = ACTIONS(3160), + [anon_sym_CR_LF] = ACTIONS(3160), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym___global] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_pub] = ACTIONS(3160), + [anon_sym_mut] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3160), + [anon_sym_spawn] = ACTIONS(3160), + [anon_sym_json_DOTdecode] = ACTIONS(3160), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3160), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_nil] = ACTIONS(3160), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_DOLLARif] = ACTIONS(3160), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3160), + [anon_sym_select] = ACTIONS(3160), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(3160), + [anon_sym_sql] = ACTIONS(3160), + [sym_int_literal] = ACTIONS(3160), + [sym_float_literal] = ACTIONS(3160), + [sym_rune_literal] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_shared] = ACTIONS(3160), + [anon_sym_map_LBRACK] = ACTIONS(3160), + [anon_sym_chan] = ACTIONS(3160), + [anon_sym_thread] = ACTIONS(3160), + [anon_sym_atomic] = ACTIONS(3160), + [anon_sym_assert] = ACTIONS(3160), + [anon_sym_defer] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_DOLLARfor] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_POUND] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym_AT_LBRACK] = ACTIONS(3160), + [sym___double_quote] = ACTIONS(3160), + [sym___single_quote] = ACTIONS(3160), + [sym___c_double_quote] = ACTIONS(3160), + [sym___c_single_quote] = ACTIONS(3160), + [sym___r_double_quote] = ACTIONS(3160), + [sym___r_single_quote] = ACTIONS(3160), }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_LF] = ACTIONS(2970), - [anon_sym_CR] = ACTIONS(2970), - [anon_sym_CR_LF] = ACTIONS(2970), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym___global] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [anon_sym_pub] = ACTIONS(2970), - [anon_sym_mut] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(2970), - [anon_sym_spawn] = ACTIONS(2970), - [anon_sym_json_DOTdecode] = ACTIONS(2970), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_nil] = ACTIONS(2970), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_DOLLARif] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_select] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(2970), - [anon_sym_rlock] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_sql] = ACTIONS(2970), - [sym_int_literal] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), - [sym_rune_literal] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2970), - [anon_sym_shared] = ACTIONS(2970), - [anon_sym_map_LBRACK] = ACTIONS(2970), - [anon_sym_chan] = ACTIONS(2970), - [anon_sym_thread] = ACTIONS(2970), - [anon_sym_atomic] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_defer] = ACTIONS(2970), - [anon_sym_goto] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_DOLLARfor] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_asm] = ACTIONS(2970), - [anon_sym_AT_LBRACK] = ACTIONS(2970), - [sym___double_quote] = ACTIONS(2970), - [sym___single_quote] = ACTIONS(2970), - [sym___c_double_quote] = ACTIONS(2970), - [sym___c_single_quote] = ACTIONS(2970), - [sym___r_double_quote] = ACTIONS(2970), - [sym___r_single_quote] = ACTIONS(2970), + [1090] = { + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_CR] = ACTIONS(3016), + [anon_sym_CR_LF] = ACTIONS(3016), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3016), + [anon_sym_as] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym___global] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3016), + [anon_sym_fn] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_PERCENT] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [anon_sym_LT_EQ] = ACTIONS(3016), + [anon_sym_GT_EQ] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_pub] = ACTIONS(3016), + [anon_sym_mut] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_interface] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3016), + [anon_sym_QMARK] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3016), + [anon_sym_go] = ACTIONS(3016), + [anon_sym_spawn] = ACTIONS(3016), + [anon_sym_json_DOTdecode] = ACTIONS(3016), + [anon_sym_LBRACK2] = ACTIONS(3016), + [anon_sym_TILDE] = ACTIONS(3016), + [anon_sym_CARET] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_LT_DASH] = ACTIONS(3016), + [anon_sym_LT_LT] = ACTIONS(3016), + [anon_sym_GT_GT] = ACTIONS(3016), + [anon_sym_GT_GT_GT] = ACTIONS(3016), + [anon_sym_AMP_CARET] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_or] = ACTIONS(3016), + [sym_none] = ACTIONS(3016), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [sym_nil] = ACTIONS(3016), + [anon_sym_QMARK_DOT] = ACTIONS(3016), + [anon_sym_POUND_LBRACK] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_DOLLARif] = ACTIONS(3016), + [anon_sym_is] = ACTIONS(3016), + [anon_sym_BANGis] = ACTIONS(3016), + [anon_sym_in] = ACTIONS(3016), + [anon_sym_BANGin] = ACTIONS(3016), + [anon_sym_match] = ACTIONS(3016), + [anon_sym_select] = ACTIONS(3016), + [anon_sym_lock] = ACTIONS(3016), + [anon_sym_rlock] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(3016), + [anon_sym_sql] = ACTIONS(3016), + [sym_int_literal] = ACTIONS(3016), + [sym_float_literal] = ACTIONS(3016), + [sym_rune_literal] = ACTIONS(3016), + [anon_sym_AT] = ACTIONS(3016), + [anon_sym_shared] = ACTIONS(3016), + [anon_sym_map_LBRACK] = ACTIONS(3016), + [anon_sym_chan] = ACTIONS(3016), + [anon_sym_thread] = ACTIONS(3016), + [anon_sym_atomic] = ACTIONS(3016), + [anon_sym_assert] = ACTIONS(3016), + [anon_sym_defer] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_DOLLARfor] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym_AT_LBRACK] = ACTIONS(3016), + [sym___double_quote] = ACTIONS(3016), + [sym___single_quote] = ACTIONS(3016), + [sym___c_double_quote] = ACTIONS(3016), + [sym___c_single_quote] = ACTIONS(3016), + [sym___r_double_quote] = ACTIONS(3016), + [sym___r_single_quote] = ACTIONS(3016), }, - [1039] = { - [ts_builtin_sym_end] = ACTIONS(3004), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LF] = ACTIONS(3006), - [anon_sym_CR] = ACTIONS(3006), - [anon_sym_CR_LF] = ACTIONS(3006), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_as] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3006), - [anon_sym_const] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym___global] = ACTIONS(3006), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_fn] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_GT] = ACTIONS(3006), - [anon_sym_EQ_EQ] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3006), - [anon_sym_LT_EQ] = ACTIONS(3006), - [anon_sym_GT_EQ] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3006), - [anon_sym_union] = ACTIONS(3006), - [anon_sym_pub] = ACTIONS(3006), - [anon_sym_mut] = ACTIONS(3006), - [anon_sym_enum] = ACTIONS(3006), - [anon_sym_interface] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3006), - [anon_sym_DASH_DASH] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_go] = ACTIONS(3006), - [anon_sym_spawn] = ACTIONS(3006), - [anon_sym_json_DOTdecode] = ACTIONS(3006), - [anon_sym_LBRACK2] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_LT_LT] = ACTIONS(3006), - [anon_sym_GT_GT] = ACTIONS(3006), - [anon_sym_GT_GT_GT] = ACTIONS(3006), - [anon_sym_AMP_CARET] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_or] = ACTIONS(3006), - [sym_none] = ACTIONS(3006), - [sym_true] = ACTIONS(3006), - [sym_false] = ACTIONS(3006), - [sym_nil] = ACTIONS(3006), - [anon_sym_QMARK_DOT] = ACTIONS(3006), - [anon_sym_POUND_LBRACK] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_DOLLARif] = ACTIONS(3006), - [anon_sym_is] = ACTIONS(3006), - [anon_sym_BANGis] = ACTIONS(3006), - [anon_sym_in] = ACTIONS(3006), - [anon_sym_BANGin] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_select] = ACTIONS(3006), - [anon_sym_lock] = ACTIONS(3006), - [anon_sym_rlock] = ACTIONS(3006), - [anon_sym_unsafe] = ACTIONS(3006), - [anon_sym_sql] = ACTIONS(3006), - [sym_int_literal] = ACTIONS(3006), - [sym_float_literal] = ACTIONS(3006), - [sym_rune_literal] = ACTIONS(3006), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_shared] = ACTIONS(3006), - [anon_sym_map_LBRACK] = ACTIONS(3006), - [anon_sym_chan] = ACTIONS(3006), - [anon_sym_thread] = ACTIONS(3006), - [anon_sym_atomic] = ACTIONS(3006), - [anon_sym_assert] = ACTIONS(3006), - [anon_sym_defer] = ACTIONS(3006), - [anon_sym_goto] = ACTIONS(3006), - [anon_sym_break] = ACTIONS(3006), - [anon_sym_continue] = ACTIONS(3006), - [anon_sym_return] = ACTIONS(3006), - [anon_sym_DOLLARfor] = ACTIONS(3006), - [anon_sym_for] = ACTIONS(3006), - [anon_sym_POUND] = ACTIONS(3006), - [anon_sym_asm] = ACTIONS(3006), - [anon_sym_AT_LBRACK] = ACTIONS(3006), - [sym___double_quote] = ACTIONS(3006), - [sym___single_quote] = ACTIONS(3006), - [sym___c_double_quote] = ACTIONS(3006), - [sym___c_single_quote] = ACTIONS(3006), - [sym___r_double_quote] = ACTIONS(3006), - [sym___r_single_quote] = ACTIONS(3006), + [1091] = { + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_CR] = ACTIONS(3048), + [anon_sym_CR_LF] = ACTIONS(3048), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_as] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym___global] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_fn] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3048), + [anon_sym_GT] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_LT_EQ] = ACTIONS(3048), + [anon_sym_GT_EQ] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_pub] = ACTIONS(3048), + [anon_sym_mut] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(3048), + [anon_sym_spawn] = ACTIONS(3048), + [anon_sym_json_DOTdecode] = ACTIONS(3048), + [anon_sym_LBRACK2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_CARET] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_LT] = ACTIONS(3048), + [anon_sym_GT_GT] = ACTIONS(3048), + [anon_sym_GT_GT_GT] = ACTIONS(3048), + [anon_sym_AMP_CARET] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_or] = ACTIONS(3048), + [sym_none] = ACTIONS(3048), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [sym_nil] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(3048), + [anon_sym_POUND_LBRACK] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_DOLLARif] = ACTIONS(3048), + [anon_sym_is] = ACTIONS(3048), + [anon_sym_BANGis] = ACTIONS(3048), + [anon_sym_in] = ACTIONS(3048), + [anon_sym_BANGin] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_select] = ACTIONS(3048), + [anon_sym_lock] = ACTIONS(3048), + [anon_sym_rlock] = ACTIONS(3048), + [anon_sym_unsafe] = ACTIONS(3048), + [anon_sym_sql] = ACTIONS(3048), + [sym_int_literal] = ACTIONS(3048), + [sym_float_literal] = ACTIONS(3048), + [sym_rune_literal] = ACTIONS(3048), + [anon_sym_AT] = ACTIONS(3048), + [anon_sym_shared] = ACTIONS(3048), + [anon_sym_map_LBRACK] = ACTIONS(3048), + [anon_sym_chan] = ACTIONS(3048), + [anon_sym_thread] = ACTIONS(3048), + [anon_sym_atomic] = ACTIONS(3048), + [anon_sym_assert] = ACTIONS(3048), + [anon_sym_defer] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_DOLLARfor] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_POUND] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym_AT_LBRACK] = ACTIONS(3048), + [sym___double_quote] = ACTIONS(3048), + [sym___single_quote] = ACTIONS(3048), + [sym___c_double_quote] = ACTIONS(3048), + [sym___c_single_quote] = ACTIONS(3048), + [sym___r_double_quote] = ACTIONS(3048), + [sym___r_single_quote] = ACTIONS(3048), }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3010), - [anon_sym_LF] = ACTIONS(3010), - [anon_sym_CR] = ACTIONS(3010), - [anon_sym_CR_LF] = ACTIONS(3010), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_as] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3010), - [anon_sym_const] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym___global] = ACTIONS(3010), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_fn] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_EQ_EQ] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3010), - [anon_sym_LT_EQ] = ACTIONS(3010), - [anon_sym_GT_EQ] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3010), - [anon_sym_union] = ACTIONS(3010), - [anon_sym_pub] = ACTIONS(3010), - [anon_sym_mut] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(3010), - [anon_sym_interface] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_go] = ACTIONS(3010), - [anon_sym_spawn] = ACTIONS(3010), - [anon_sym_json_DOTdecode] = ACTIONS(3010), - [anon_sym_LBRACK2] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3010), - [anon_sym_GT_GT] = ACTIONS(3010), - [anon_sym_GT_GT_GT] = ACTIONS(3010), - [anon_sym_AMP_CARET] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_or] = ACTIONS(3010), - [sym_none] = ACTIONS(3010), - [sym_true] = ACTIONS(3010), - [sym_false] = ACTIONS(3010), - [sym_nil] = ACTIONS(3010), - [anon_sym_QMARK_DOT] = ACTIONS(3010), - [anon_sym_POUND_LBRACK] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_DOLLARif] = ACTIONS(3010), - [anon_sym_is] = ACTIONS(3010), - [anon_sym_BANGis] = ACTIONS(3010), - [anon_sym_in] = ACTIONS(3010), - [anon_sym_BANGin] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_select] = ACTIONS(3010), - [anon_sym_lock] = ACTIONS(3010), - [anon_sym_rlock] = ACTIONS(3010), - [anon_sym_unsafe] = ACTIONS(3010), - [anon_sym_sql] = ACTIONS(3010), - [sym_int_literal] = ACTIONS(3010), - [sym_float_literal] = ACTIONS(3010), - [sym_rune_literal] = ACTIONS(3010), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_shared] = ACTIONS(3010), - [anon_sym_map_LBRACK] = ACTIONS(3010), - [anon_sym_chan] = ACTIONS(3010), - [anon_sym_thread] = ACTIONS(3010), - [anon_sym_atomic] = ACTIONS(3010), - [anon_sym_assert] = ACTIONS(3010), - [anon_sym_defer] = ACTIONS(3010), - [anon_sym_goto] = ACTIONS(3010), - [anon_sym_break] = ACTIONS(3010), - [anon_sym_continue] = ACTIONS(3010), - [anon_sym_return] = ACTIONS(3010), - [anon_sym_DOLLARfor] = ACTIONS(3010), - [anon_sym_for] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3010), - [anon_sym_asm] = ACTIONS(3010), - [anon_sym_AT_LBRACK] = ACTIONS(3010), - [sym___double_quote] = ACTIONS(3010), - [sym___single_quote] = ACTIONS(3010), - [sym___c_double_quote] = ACTIONS(3010), - [sym___c_single_quote] = ACTIONS(3010), - [sym___r_double_quote] = ACTIONS(3010), - [sym___r_single_quote] = ACTIONS(3010), + [1092] = { + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3289), + [anon_sym_LF] = ACTIONS(3289), + [anon_sym_CR] = ACTIONS(3289), + [anon_sym_CR_LF] = ACTIONS(3289), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym___global] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3289), + [anon_sym_BANG_EQ] = ACTIONS(3289), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_GT_EQ] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_union] = ACTIONS(3289), + [anon_sym_pub] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3289), + [anon_sym_GT_GT_GT] = ACTIONS(3289), + [anon_sym_AMP_CARET] = ACTIONS(3289), + [anon_sym_AMP_AMP] = ACTIONS(3289), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_or] = ACTIONS(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3289), + [anon_sym_POUND_LBRACK] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3289), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [anon_sym_assert] = ACTIONS(3289), + [anon_sym_defer] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_DOLLARfor] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_asm] = ACTIONS(3289), + [anon_sym_AT_LBRACK] = ACTIONS(3289), + [sym___double_quote] = ACTIONS(3289), + [sym___single_quote] = ACTIONS(3289), + [sym___c_double_quote] = ACTIONS(3289), + [sym___c_single_quote] = ACTIONS(3289), + [sym___r_double_quote] = ACTIONS(3289), + [sym___r_single_quote] = ACTIONS(3289), }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_const] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym___global] = ACTIONS(3050), - [anon_sym_type] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_union] = ACTIONS(3050), - [anon_sym_pub] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_enum] = ACTIONS(3050), - [anon_sym_interface] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [anon_sym_assert] = ACTIONS(3050), - [anon_sym_defer] = ACTIONS(3050), - [anon_sym_goto] = ACTIONS(3050), - [anon_sym_break] = ACTIONS(3050), - [anon_sym_continue] = ACTIONS(3050), - [anon_sym_return] = ACTIONS(3050), - [anon_sym_DOLLARfor] = ACTIONS(3050), - [anon_sym_for] = ACTIONS(3050), - [anon_sym_POUND] = ACTIONS(3050), - [anon_sym_asm] = ACTIONS(3050), - [anon_sym_AT_LBRACK] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), + [1093] = { + [ts_builtin_sym_end] = ACTIONS(3283), + [sym_identifier] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_CR] = ACTIONS(3285), + [anon_sym_CR_LF] = ACTIONS(3285), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym___global] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_fn] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_LT_EQ] = ACTIONS(3285), + [anon_sym_GT_EQ] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_struct] = ACTIONS(3285), + [anon_sym_union] = ACTIONS(3285), + [anon_sym_pub] = ACTIONS(3285), + [anon_sym_mut] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_go] = ACTIONS(3285), + [anon_sym_spawn] = ACTIONS(3285), + [anon_sym_json_DOTdecode] = ACTIONS(3285), + [anon_sym_LBRACK2] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_GT_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_CARET] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_or] = ACTIONS(3285), + [sym_none] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_nil] = ACTIONS(3285), + [anon_sym_QMARK_DOT] = ACTIONS(3285), + [anon_sym_POUND_LBRACK] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_DOLLARif] = ACTIONS(3285), + [anon_sym_is] = ACTIONS(3285), + [anon_sym_BANGis] = ACTIONS(3285), + [anon_sym_in] = ACTIONS(3285), + [anon_sym_BANGin] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_select] = ACTIONS(3285), + [anon_sym_lock] = ACTIONS(3285), + [anon_sym_rlock] = ACTIONS(3285), + [anon_sym_unsafe] = ACTIONS(3285), + [anon_sym_sql] = ACTIONS(3285), + [sym_int_literal] = ACTIONS(3285), + [sym_float_literal] = ACTIONS(3285), + [sym_rune_literal] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_shared] = ACTIONS(3285), + [anon_sym_map_LBRACK] = ACTIONS(3285), + [anon_sym_chan] = ACTIONS(3285), + [anon_sym_thread] = ACTIONS(3285), + [anon_sym_atomic] = ACTIONS(3285), + [anon_sym_assert] = ACTIONS(3285), + [anon_sym_defer] = ACTIONS(3285), + [anon_sym_goto] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_DOLLARfor] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_POUND] = ACTIONS(3285), + [anon_sym_asm] = ACTIONS(3285), + [anon_sym_AT_LBRACK] = ACTIONS(3285), + [sym___double_quote] = ACTIONS(3285), + [sym___single_quote] = ACTIONS(3285), + [sym___c_double_quote] = ACTIONS(3285), + [sym___c_single_quote] = ACTIONS(3285), + [sym___r_double_quote] = ACTIONS(3285), + [sym___r_single_quote] = ACTIONS(3285), }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(3092), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LF] = ACTIONS(3094), - [anon_sym_CR] = ACTIONS(3094), - [anon_sym_CR_LF] = ACTIONS(3094), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3094), - [anon_sym_as] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3094), - [anon_sym___global] = ACTIONS(3094), - [anon_sym_type] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3094), - [anon_sym_fn] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_PERCENT] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_GT] = ACTIONS(3094), - [anon_sym_EQ_EQ] = ACTIONS(3094), - [anon_sym_BANG_EQ] = ACTIONS(3094), - [anon_sym_LT_EQ] = ACTIONS(3094), - [anon_sym_GT_EQ] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_union] = ACTIONS(3094), - [anon_sym_pub] = ACTIONS(3094), - [anon_sym_mut] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3094), - [anon_sym_spawn] = ACTIONS(3094), - [anon_sym_json_DOTdecode] = ACTIONS(3094), - [anon_sym_LBRACK2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_CARET] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_LT_DASH] = ACTIONS(3094), - [anon_sym_LT_LT] = ACTIONS(3094), - [anon_sym_GT_GT] = ACTIONS(3094), - [anon_sym_GT_GT_GT] = ACTIONS(3094), - [anon_sym_AMP_CARET] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_PIPE_PIPE] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3094), - [sym_none] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_nil] = ACTIONS(3094), - [anon_sym_QMARK_DOT] = ACTIONS(3094), - [anon_sym_POUND_LBRACK] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_DOLLARif] = ACTIONS(3094), - [anon_sym_is] = ACTIONS(3094), - [anon_sym_BANGis] = ACTIONS(3094), - [anon_sym_in] = ACTIONS(3094), - [anon_sym_BANGin] = ACTIONS(3094), - [anon_sym_match] = ACTIONS(3094), - [anon_sym_select] = ACTIONS(3094), - [anon_sym_lock] = ACTIONS(3094), - [anon_sym_rlock] = ACTIONS(3094), - [anon_sym_unsafe] = ACTIONS(3094), - [anon_sym_sql] = ACTIONS(3094), - [sym_int_literal] = ACTIONS(3094), - [sym_float_literal] = ACTIONS(3094), - [sym_rune_literal] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_shared] = ACTIONS(3094), - [anon_sym_map_LBRACK] = ACTIONS(3094), - [anon_sym_chan] = ACTIONS(3094), - [anon_sym_thread] = ACTIONS(3094), - [anon_sym_atomic] = ACTIONS(3094), - [anon_sym_assert] = ACTIONS(3094), - [anon_sym_defer] = ACTIONS(3094), - [anon_sym_goto] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_DOLLARfor] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_POUND] = ACTIONS(3094), - [anon_sym_asm] = ACTIONS(3094), - [anon_sym_AT_LBRACK] = ACTIONS(3094), - [sym___double_quote] = ACTIONS(3094), - [sym___single_quote] = ACTIONS(3094), - [sym___c_double_quote] = ACTIONS(3094), - [sym___c_single_quote] = ACTIONS(3094), - [sym___r_double_quote] = ACTIONS(3094), - [sym___r_single_quote] = ACTIONS(3094), + [1094] = { + [ts_builtin_sym_end] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LF] = ACTIONS(3136), + [anon_sym_CR] = ACTIONS(3136), + [anon_sym_CR_LF] = ACTIONS(3136), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3136), + [anon_sym_as] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_COMMA] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym___global] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(3136), + [anon_sym_fn] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_PERCENT] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_GT] = ACTIONS(3136), + [anon_sym_EQ_EQ] = ACTIONS(3136), + [anon_sym_BANG_EQ] = ACTIONS(3136), + [anon_sym_LT_EQ] = ACTIONS(3136), + [anon_sym_GT_EQ] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3136), + [anon_sym_pub] = ACTIONS(3136), + [anon_sym_mut] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3136), + [anon_sym_json_DOTdecode] = ACTIONS(3136), + [anon_sym_LBRACK2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_CARET] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3136), + [anon_sym_LT_LT] = ACTIONS(3136), + [anon_sym_GT_GT] = ACTIONS(3136), + [anon_sym_GT_GT_GT] = ACTIONS(3136), + [anon_sym_AMP_CARET] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_PIPE_PIPE] = ACTIONS(3136), + [anon_sym_or] = ACTIONS(3136), + [sym_none] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_nil] = ACTIONS(3136), + [anon_sym_QMARK_DOT] = ACTIONS(3136), + [anon_sym_POUND_LBRACK] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_DOLLARif] = ACTIONS(3136), + [anon_sym_is] = ACTIONS(3136), + [anon_sym_BANGis] = ACTIONS(3136), + [anon_sym_in] = ACTIONS(3136), + [anon_sym_BANGin] = ACTIONS(3136), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3136), + [anon_sym_rlock] = ACTIONS(3136), + [anon_sym_unsafe] = ACTIONS(3136), + [anon_sym_sql] = ACTIONS(3136), + [sym_int_literal] = ACTIONS(3136), + [sym_float_literal] = ACTIONS(3136), + [sym_rune_literal] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_shared] = ACTIONS(3136), + [anon_sym_map_LBRACK] = ACTIONS(3136), + [anon_sym_chan] = ACTIONS(3136), + [anon_sym_thread] = ACTIONS(3136), + [anon_sym_atomic] = ACTIONS(3136), + [anon_sym_assert] = ACTIONS(3136), + [anon_sym_defer] = ACTIONS(3136), + [anon_sym_goto] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_DOLLARfor] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_POUND] = ACTIONS(3136), + [anon_sym_asm] = ACTIONS(3136), + [anon_sym_AT_LBRACK] = ACTIONS(3136), + [sym___double_quote] = ACTIONS(3136), + [sym___single_quote] = ACTIONS(3136), + [sym___c_double_quote] = ACTIONS(3136), + [sym___c_single_quote] = ACTIONS(3136), + [sym___r_double_quote] = ACTIONS(3136), + [sym___r_single_quote] = ACTIONS(3136), }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2922), - [anon_sym_CR] = ACTIONS(2922), - [anon_sym_CR_LF] = ACTIONS(2922), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_as] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym___global] = ACTIONS(2922), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_fn] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2922), - [anon_sym_LT_EQ] = ACTIONS(2922), - [anon_sym_GT_EQ] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2922), - [anon_sym_pub] = ACTIONS(2922), - [anon_sym_mut] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_go] = ACTIONS(2922), - [anon_sym_spawn] = ACTIONS(2922), - [anon_sym_json_DOTdecode] = ACTIONS(2922), - [anon_sym_LBRACK2] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_GT_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_CARET] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2922), - [sym_none] = ACTIONS(2922), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_nil] = ACTIONS(2922), - [anon_sym_QMARK_DOT] = ACTIONS(2922), - [anon_sym_POUND_LBRACK] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_DOLLARif] = ACTIONS(2922), - [anon_sym_is] = ACTIONS(2922), - [anon_sym_BANGis] = ACTIONS(2922), - [anon_sym_in] = ACTIONS(2922), - [anon_sym_BANGin] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_select] = ACTIONS(2922), - [anon_sym_lock] = ACTIONS(2922), - [anon_sym_rlock] = ACTIONS(2922), - [anon_sym_unsafe] = ACTIONS(2922), - [anon_sym_sql] = ACTIONS(2922), - [sym_int_literal] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), - [sym_rune_literal] = ACTIONS(2922), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_shared] = ACTIONS(2922), - [anon_sym_map_LBRACK] = ACTIONS(2922), - [anon_sym_chan] = ACTIONS(2922), - [anon_sym_thread] = ACTIONS(2922), - [anon_sym_atomic] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_defer] = ACTIONS(2922), - [anon_sym_goto] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_DOLLARfor] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_asm] = ACTIONS(2922), - [anon_sym_AT_LBRACK] = ACTIONS(2922), - [sym___double_quote] = ACTIONS(2922), - [sym___single_quote] = ACTIONS(2922), - [sym___c_double_quote] = ACTIONS(2922), - [sym___c_single_quote] = ACTIONS(2922), - [sym___r_double_quote] = ACTIONS(2922), - [sym___r_single_quote] = ACTIONS(2922), + [1095] = { + [ts_builtin_sym_end] = ACTIONS(3279), + [sym_identifier] = ACTIONS(3281), + [anon_sym_LF] = ACTIONS(3281), + [anon_sym_CR] = ACTIONS(3281), + [anon_sym_CR_LF] = ACTIONS(3281), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym___global] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_union] = ACTIONS(3281), + [anon_sym_pub] = ACTIONS(3281), + [anon_sym_mut] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3281), + [anon_sym_spawn] = ACTIONS(3281), + [anon_sym_json_DOTdecode] = ACTIONS(3281), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_GT_GT_GT] = ACTIONS(3281), + [anon_sym_AMP_CARET] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_or] = ACTIONS(3281), + [sym_none] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_nil] = ACTIONS(3281), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_DOLLARif] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_rlock] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_sql] = ACTIONS(3281), + [sym_int_literal] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3281), + [sym_rune_literal] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_shared] = ACTIONS(3281), + [anon_sym_map_LBRACK] = ACTIONS(3281), + [anon_sym_chan] = ACTIONS(3281), + [anon_sym_thread] = ACTIONS(3281), + [anon_sym_atomic] = ACTIONS(3281), + [anon_sym_assert] = ACTIONS(3281), + [anon_sym_defer] = ACTIONS(3281), + [anon_sym_goto] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_DOLLARfor] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_POUND] = ACTIONS(3281), + [anon_sym_asm] = ACTIONS(3281), + [anon_sym_AT_LBRACK] = ACTIONS(3281), + [sym___double_quote] = ACTIONS(3281), + [sym___single_quote] = ACTIONS(3281), + [sym___c_double_quote] = ACTIONS(3281), + [sym___c_single_quote] = ACTIONS(3281), + [sym___r_double_quote] = ACTIONS(3281), + [sym___r_single_quote] = ACTIONS(3281), }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2818), - [anon_sym_LF] = ACTIONS(2818), - [anon_sym_CR] = ACTIONS(2818), - [anon_sym_CR_LF] = ACTIONS(2818), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym___global] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_fn] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_pub] = ACTIONS(2818), - [anon_sym_mut] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_interface] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_go] = ACTIONS(2818), - [anon_sym_spawn] = ACTIONS(2818), - [anon_sym_json_DOTdecode] = ACTIONS(2818), - [anon_sym_LBRACK2] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_or] = ACTIONS(2818), - [sym_none] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nil] = ACTIONS(2818), - [anon_sym_QMARK_DOT] = ACTIONS(2818), - [anon_sym_POUND_LBRACK] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_DOLLARif] = ACTIONS(2818), - [anon_sym_is] = ACTIONS(2818), - [anon_sym_BANGis] = ACTIONS(2818), - [anon_sym_in] = ACTIONS(2818), - [anon_sym_BANGin] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_select] = ACTIONS(2818), - [anon_sym_lock] = ACTIONS(2818), - [anon_sym_rlock] = ACTIONS(2818), - [anon_sym_unsafe] = ACTIONS(2818), - [anon_sym_sql] = ACTIONS(2818), - [sym_int_literal] = ACTIONS(2818), - [sym_float_literal] = ACTIONS(2818), - [sym_rune_literal] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_shared] = ACTIONS(2818), - [anon_sym_map_LBRACK] = ACTIONS(2818), - [anon_sym_chan] = ACTIONS(2818), - [anon_sym_thread] = ACTIONS(2818), - [anon_sym_atomic] = ACTIONS(2818), - [anon_sym_assert] = ACTIONS(2818), - [anon_sym_defer] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_DOLLARfor] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(2818), - [anon_sym_asm] = ACTIONS(2818), - [anon_sym_AT_LBRACK] = ACTIONS(2818), - [sym___double_quote] = ACTIONS(2818), - [sym___single_quote] = ACTIONS(2818), - [sym___c_double_quote] = ACTIONS(2818), - [sym___c_single_quote] = ACTIONS(2818), - [sym___r_double_quote] = ACTIONS(2818), - [sym___r_single_quote] = ACTIONS(2818), + [1096] = { + [ts_builtin_sym_end] = ACTIONS(3343), + [sym_identifier] = ACTIONS(3345), + [anon_sym_LF] = ACTIONS(3345), + [anon_sym_CR] = ACTIONS(3345), + [anon_sym_CR_LF] = ACTIONS(3345), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3345), + [anon_sym_as] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_COMMA] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym___global] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_PIPE] = ACTIONS(3345), + [anon_sym_fn] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_PERCENT] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_GT] = ACTIONS(3345), + [anon_sym_EQ_EQ] = ACTIONS(3345), + [anon_sym_BANG_EQ] = ACTIONS(3345), + [anon_sym_LT_EQ] = ACTIONS(3345), + [anon_sym_GT_EQ] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3345), + [anon_sym_union] = ACTIONS(3345), + [anon_sym_pub] = ACTIONS(3345), + [anon_sym_mut] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_QMARK] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_go] = ACTIONS(3345), + [anon_sym_spawn] = ACTIONS(3345), + [anon_sym_json_DOTdecode] = ACTIONS(3345), + [anon_sym_LBRACK2] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_CARET] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_LT_DASH] = ACTIONS(3345), + [anon_sym_LT_LT] = ACTIONS(3345), + [anon_sym_GT_GT] = ACTIONS(3345), + [anon_sym_GT_GT_GT] = ACTIONS(3345), + [anon_sym_AMP_CARET] = ACTIONS(3345), + [anon_sym_AMP_AMP] = ACTIONS(3345), + [anon_sym_PIPE_PIPE] = ACTIONS(3345), + [anon_sym_or] = ACTIONS(3345), + [sym_none] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_nil] = ACTIONS(3345), + [anon_sym_QMARK_DOT] = ACTIONS(3345), + [anon_sym_POUND_LBRACK] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_DOLLARif] = ACTIONS(3345), + [anon_sym_is] = ACTIONS(3345), + [anon_sym_BANGis] = ACTIONS(3345), + [anon_sym_in] = ACTIONS(3345), + [anon_sym_BANGin] = ACTIONS(3345), + [anon_sym_match] = ACTIONS(3345), + [anon_sym_select] = ACTIONS(3345), + [anon_sym_lock] = ACTIONS(3345), + [anon_sym_rlock] = ACTIONS(3345), + [anon_sym_unsafe] = ACTIONS(3345), + [anon_sym_sql] = ACTIONS(3345), + [sym_int_literal] = ACTIONS(3345), + [sym_float_literal] = ACTIONS(3345), + [sym_rune_literal] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_shared] = ACTIONS(3345), + [anon_sym_map_LBRACK] = ACTIONS(3345), + [anon_sym_chan] = ACTIONS(3345), + [anon_sym_thread] = ACTIONS(3345), + [anon_sym_atomic] = ACTIONS(3345), + [anon_sym_assert] = ACTIONS(3345), + [anon_sym_defer] = ACTIONS(3345), + [anon_sym_goto] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_DOLLARfor] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_POUND] = ACTIONS(3345), + [anon_sym_asm] = ACTIONS(3345), + [anon_sym_AT_LBRACK] = ACTIONS(3345), + [sym___double_quote] = ACTIONS(3345), + [sym___single_quote] = ACTIONS(3345), + [sym___c_double_quote] = ACTIONS(3345), + [sym___c_single_quote] = ACTIONS(3345), + [sym___r_double_quote] = ACTIONS(3345), + [sym___r_single_quote] = ACTIONS(3345), }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_LF] = ACTIONS(2862), - [anon_sym_CR] = ACTIONS(2862), - [anon_sym_CR_LF] = ACTIONS(2862), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym___global] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_union] = ACTIONS(2862), - [anon_sym_pub] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [anon_sym_assert] = ACTIONS(2862), - [anon_sym_defer] = ACTIONS(2862), - [anon_sym_goto] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_DOLLARfor] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_asm] = ACTIONS(2862), - [anon_sym_AT_LBRACK] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), + [1097] = { + [ts_builtin_sym_end] = ACTIONS(3339), + [sym_identifier] = ACTIONS(3341), + [anon_sym_LF] = ACTIONS(3341), + [anon_sym_CR] = ACTIONS(3341), + [anon_sym_CR_LF] = ACTIONS(3341), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3341), + [anon_sym_as] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_COMMA] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym___global] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_PIPE] = ACTIONS(3341), + [anon_sym_fn] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_struct] = ACTIONS(3341), + [anon_sym_union] = ACTIONS(3341), + [anon_sym_pub] = ACTIONS(3341), + [anon_sym_mut] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_QMARK] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_go] = ACTIONS(3341), + [anon_sym_spawn] = ACTIONS(3341), + [anon_sym_json_DOTdecode] = ACTIONS(3341), + [anon_sym_LBRACK2] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_LT_DASH] = ACTIONS(3341), + [anon_sym_LT_LT] = ACTIONS(3341), + [anon_sym_GT_GT] = ACTIONS(3341), + [anon_sym_GT_GT_GT] = ACTIONS(3341), + [anon_sym_AMP_CARET] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_or] = ACTIONS(3341), + [sym_none] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_nil] = ACTIONS(3341), + [anon_sym_QMARK_DOT] = ACTIONS(3341), + [anon_sym_POUND_LBRACK] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_DOLLARif] = ACTIONS(3341), + [anon_sym_is] = ACTIONS(3341), + [anon_sym_BANGis] = ACTIONS(3341), + [anon_sym_in] = ACTIONS(3341), + [anon_sym_BANGin] = ACTIONS(3341), + [anon_sym_match] = ACTIONS(3341), + [anon_sym_select] = ACTIONS(3341), + [anon_sym_lock] = ACTIONS(3341), + [anon_sym_rlock] = ACTIONS(3341), + [anon_sym_unsafe] = ACTIONS(3341), + [anon_sym_sql] = ACTIONS(3341), + [sym_int_literal] = ACTIONS(3341), + [sym_float_literal] = ACTIONS(3341), + [sym_rune_literal] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_shared] = ACTIONS(3341), + [anon_sym_map_LBRACK] = ACTIONS(3341), + [anon_sym_chan] = ACTIONS(3341), + [anon_sym_thread] = ACTIONS(3341), + [anon_sym_atomic] = ACTIONS(3341), + [anon_sym_assert] = ACTIONS(3341), + [anon_sym_defer] = ACTIONS(3341), + [anon_sym_goto] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_DOLLARfor] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_POUND] = ACTIONS(3341), + [anon_sym_asm] = ACTIONS(3341), + [anon_sym_AT_LBRACK] = ACTIONS(3341), + [sym___double_quote] = ACTIONS(3341), + [sym___single_quote] = ACTIONS(3341), + [sym___c_double_quote] = ACTIONS(3341), + [sym___c_single_quote] = ACTIONS(3341), + [sym___r_double_quote] = ACTIONS(3341), + [sym___r_single_quote] = ACTIONS(3341), }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym___global] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_union] = ACTIONS(2870), - [anon_sym_pub] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [anon_sym_assert] = ACTIONS(2870), - [anon_sym_defer] = ACTIONS(2870), - [anon_sym_goto] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_DOLLARfor] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_asm] = ACTIONS(2870), - [anon_sym_AT_LBRACK] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), + [1098] = { + [ts_builtin_sym_end] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3110), + [anon_sym_LF] = ACTIONS(3110), + [anon_sym_CR] = ACTIONS(3110), + [anon_sym_CR_LF] = ACTIONS(3110), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_COMMA] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym___global] = ACTIONS(3110), + [anon_sym_type] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_pub] = ACTIONS(3110), + [anon_sym_mut] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_interface] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3110), + [anon_sym_spawn] = ACTIONS(3110), + [anon_sym_json_DOTdecode] = ACTIONS(3110), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_CARET] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3110), + [anon_sym_LT_LT] = ACTIONS(3110), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3110), + [anon_sym_AMP_CARET] = ACTIONS(3110), + [anon_sym_AMP_AMP] = ACTIONS(3110), + [anon_sym_PIPE_PIPE] = ACTIONS(3110), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3110), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_nil] = ACTIONS(3110), + [anon_sym_QMARK_DOT] = ACTIONS(3110), + [anon_sym_POUND_LBRACK] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3110), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3110), + [anon_sym_match] = ACTIONS(3110), + [anon_sym_select] = ACTIONS(3110), + [anon_sym_lock] = ACTIONS(3110), + [anon_sym_rlock] = ACTIONS(3110), + [anon_sym_unsafe] = ACTIONS(3110), + [anon_sym_sql] = ACTIONS(3110), + [sym_int_literal] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(3110), + [sym_rune_literal] = ACTIONS(3110), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_shared] = ACTIONS(3110), + [anon_sym_map_LBRACK] = ACTIONS(3110), + [anon_sym_chan] = ACTIONS(3110), + [anon_sym_thread] = ACTIONS(3110), + [anon_sym_atomic] = ACTIONS(3110), + [anon_sym_assert] = ACTIONS(3110), + [anon_sym_defer] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_DOLLARfor] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_POUND] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym_AT_LBRACK] = ACTIONS(3110), + [sym___double_quote] = ACTIONS(3110), + [sym___single_quote] = ACTIONS(3110), + [sym___c_double_quote] = ACTIONS(3110), + [sym___c_single_quote] = ACTIONS(3110), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3110), }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2934), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_CR] = ACTIONS(2934), - [anon_sym_CR_LF] = ACTIONS(2934), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_as] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym___global] = ACTIONS(2934), - [anon_sym_type] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_fn] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_union] = ACTIONS(2934), - [anon_sym_pub] = ACTIONS(2934), - [anon_sym_mut] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_go] = ACTIONS(2934), - [anon_sym_spawn] = ACTIONS(2934), - [anon_sym_json_DOTdecode] = ACTIONS(2934), - [anon_sym_LBRACK2] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_GT_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_CARET] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_or] = ACTIONS(2934), - [sym_none] = ACTIONS(2934), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_nil] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(2934), - [anon_sym_POUND_LBRACK] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_DOLLARif] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_BANGis] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_BANGin] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_select] = ACTIONS(2934), - [anon_sym_lock] = ACTIONS(2934), - [anon_sym_rlock] = ACTIONS(2934), - [anon_sym_unsafe] = ACTIONS(2934), - [anon_sym_sql] = ACTIONS(2934), - [sym_int_literal] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), - [sym_rune_literal] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2934), - [anon_sym_shared] = ACTIONS(2934), - [anon_sym_map_LBRACK] = ACTIONS(2934), - [anon_sym_chan] = ACTIONS(2934), - [anon_sym_thread] = ACTIONS(2934), - [anon_sym_atomic] = ACTIONS(2934), - [anon_sym_assert] = ACTIONS(2934), - [anon_sym_defer] = ACTIONS(2934), - [anon_sym_goto] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_DOLLARfor] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_asm] = ACTIONS(2934), - [anon_sym_AT_LBRACK] = ACTIONS(2934), - [sym___double_quote] = ACTIONS(2934), - [sym___single_quote] = ACTIONS(2934), - [sym___c_double_quote] = ACTIONS(2934), - [sym___c_single_quote] = ACTIONS(2934), - [sym___r_double_quote] = ACTIONS(2934), - [sym___r_single_quote] = ACTIONS(2934), + [1099] = { + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym___global] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_EQ_EQ] = ACTIONS(3305), + [anon_sym_BANG_EQ] = ACTIONS(3305), + [anon_sym_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_union] = ACTIONS(3305), + [anon_sym_pub] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_PIPE_PIPE] = ACTIONS(3305), + [anon_sym_or] = ACTIONS(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_defer] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_DOLLARfor] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_asm] = ACTIONS(3305), + [anon_sym_AT_LBRACK] = ACTIONS(3305), + [sym___double_quote] = ACTIONS(3305), + [sym___single_quote] = ACTIONS(3305), + [sym___c_double_quote] = ACTIONS(3305), + [sym___c_single_quote] = ACTIONS(3305), + [sym___r_double_quote] = ACTIONS(3305), + [sym___r_single_quote] = ACTIONS(3305), }, - [1048] = { - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_LF] = ACTIONS(2962), - [anon_sym_CR] = ACTIONS(2962), - [anon_sym_CR_LF] = ACTIONS(2962), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2962), - [anon_sym_as] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2962), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_const] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2962), - [anon_sym___global] = ACTIONS(2962), - [anon_sym_type] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_fn] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_PERCENT] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_GT] = ACTIONS(2962), - [anon_sym_EQ_EQ] = ACTIONS(2962), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_LT_EQ] = ACTIONS(2962), - [anon_sym_GT_EQ] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_struct] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_pub] = ACTIONS(2962), - [anon_sym_mut] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2962), - [anon_sym_DASH_DASH] = ACTIONS(2962), - [anon_sym_QMARK] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_go] = ACTIONS(2962), - [anon_sym_spawn] = ACTIONS(2962), - [anon_sym_json_DOTdecode] = ACTIONS(2962), - [anon_sym_LBRACK2] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_LT_DASH] = ACTIONS(2962), - [anon_sym_LT_LT] = ACTIONS(2962), - [anon_sym_GT_GT] = ACTIONS(2962), - [anon_sym_GT_GT_GT] = ACTIONS(2962), - [anon_sym_AMP_CARET] = ACTIONS(2962), - [anon_sym_AMP_AMP] = ACTIONS(2962), - [anon_sym_PIPE_PIPE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2962), - [sym_none] = ACTIONS(2962), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_nil] = ACTIONS(2962), - [anon_sym_QMARK_DOT] = ACTIONS(2962), - [anon_sym_POUND_LBRACK] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_DOLLARif] = ACTIONS(2962), - [anon_sym_is] = ACTIONS(2962), - [anon_sym_BANGis] = ACTIONS(2962), - [anon_sym_in] = ACTIONS(2962), - [anon_sym_BANGin] = ACTIONS(2962), - [anon_sym_match] = ACTIONS(2962), - [anon_sym_select] = ACTIONS(2962), - [anon_sym_lock] = ACTIONS(2962), - [anon_sym_rlock] = ACTIONS(2962), - [anon_sym_unsafe] = ACTIONS(2962), - [anon_sym_sql] = ACTIONS(2962), - [sym_int_literal] = ACTIONS(2962), - [sym_float_literal] = ACTIONS(2962), - [sym_rune_literal] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2962), - [anon_sym_shared] = ACTIONS(2962), - [anon_sym_map_LBRACK] = ACTIONS(2962), - [anon_sym_chan] = ACTIONS(2962), - [anon_sym_thread] = ACTIONS(2962), - [anon_sym_atomic] = ACTIONS(2962), - [anon_sym_assert] = ACTIONS(2962), - [anon_sym_defer] = ACTIONS(2962), - [anon_sym_goto] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_DOLLARfor] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2962), - [anon_sym_asm] = ACTIONS(2962), - [anon_sym_AT_LBRACK] = ACTIONS(2962), - [sym___double_quote] = ACTIONS(2962), - [sym___single_quote] = ACTIONS(2962), - [sym___c_double_quote] = ACTIONS(2962), - [sym___c_single_quote] = ACTIONS(2962), - [sym___r_double_quote] = ACTIONS(2962), - [sym___r_single_quote] = ACTIONS(2962), + [1100] = { + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym___global] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_union] = ACTIONS(3269), + [anon_sym_pub] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3269), + [anon_sym_AMP_CARET] = ACTIONS(3269), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3269), + [anon_sym_POUND_LBRACK] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3269), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_defer] = ACTIONS(3269), + [anon_sym_goto] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_DOLLARfor] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(3269), + [anon_sym_asm] = ACTIONS(3269), + [anon_sym_AT_LBRACK] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3269), + [sym___single_quote] = ACTIONS(3269), + [sym___c_double_quote] = ACTIONS(3269), + [sym___c_single_quote] = ACTIONS(3269), + [sym___r_double_quote] = ACTIONS(3269), + [sym___r_single_quote] = ACTIONS(3269), }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(3020), - [sym_identifier] = ACTIONS(3022), - [anon_sym_LF] = ACTIONS(3022), - [anon_sym_CR] = ACTIONS(3022), - [anon_sym_CR_LF] = ACTIONS(3022), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_as] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3022), - [anon_sym_const] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym___global] = ACTIONS(3022), - [anon_sym_type] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_fn] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_LT_EQ] = ACTIONS(3022), - [anon_sym_GT_EQ] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_struct] = ACTIONS(3022), - [anon_sym_union] = ACTIONS(3022), - [anon_sym_pub] = ACTIONS(3022), - [anon_sym_mut] = ACTIONS(3022), - [anon_sym_enum] = ACTIONS(3022), - [anon_sym_interface] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3022), - [anon_sym_DASH_DASH] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_go] = ACTIONS(3022), - [anon_sym_spawn] = ACTIONS(3022), - [anon_sym_json_DOTdecode] = ACTIONS(3022), - [anon_sym_LBRACK2] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_LT_LT] = ACTIONS(3022), - [anon_sym_GT_GT] = ACTIONS(3022), - [anon_sym_GT_GT_GT] = ACTIONS(3022), - [anon_sym_AMP_CARET] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_or] = ACTIONS(3022), - [sym_none] = ACTIONS(3022), - [sym_true] = ACTIONS(3022), - [sym_false] = ACTIONS(3022), - [sym_nil] = ACTIONS(3022), - [anon_sym_QMARK_DOT] = ACTIONS(3022), - [anon_sym_POUND_LBRACK] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_DOLLARif] = ACTIONS(3022), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3022), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_BANGin] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_select] = ACTIONS(3022), - [anon_sym_lock] = ACTIONS(3022), - [anon_sym_rlock] = ACTIONS(3022), - [anon_sym_unsafe] = ACTIONS(3022), - [anon_sym_sql] = ACTIONS(3022), - [sym_int_literal] = ACTIONS(3022), - [sym_float_literal] = ACTIONS(3022), - [sym_rune_literal] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(3022), - [anon_sym_shared] = ACTIONS(3022), - [anon_sym_map_LBRACK] = ACTIONS(3022), - [anon_sym_chan] = ACTIONS(3022), - [anon_sym_thread] = ACTIONS(3022), - [anon_sym_atomic] = ACTIONS(3022), - [anon_sym_assert] = ACTIONS(3022), - [anon_sym_defer] = ACTIONS(3022), - [anon_sym_goto] = ACTIONS(3022), - [anon_sym_break] = ACTIONS(3022), - [anon_sym_continue] = ACTIONS(3022), - [anon_sym_return] = ACTIONS(3022), - [anon_sym_DOLLARfor] = ACTIONS(3022), - [anon_sym_for] = ACTIONS(3022), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_asm] = ACTIONS(3022), - [anon_sym_AT_LBRACK] = ACTIONS(3022), - [sym___double_quote] = ACTIONS(3022), - [sym___single_quote] = ACTIONS(3022), - [sym___c_double_quote] = ACTIONS(3022), - [sym___c_single_quote] = ACTIONS(3022), - [sym___r_double_quote] = ACTIONS(3022), - [sym___r_single_quote] = ACTIONS(3022), + [1101] = { + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LF] = ACTIONS(3178), + [anon_sym_CR] = ACTIONS(3178), + [anon_sym_CR_LF] = ACTIONS(3178), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym___global] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_pub] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3178), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3178), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3178), + [anon_sym_AMP_CARET] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3178), + [anon_sym_POUND_LBRACK] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3178), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + [sym_rune_literal] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3178), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_defer] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_DOLLARfor] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym_AT_LBRACK] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3178), + [sym___single_quote] = ACTIONS(3178), + [sym___c_double_quote] = ACTIONS(3178), + [sym___c_single_quote] = ACTIONS(3178), + [sym___r_double_quote] = ACTIONS(3178), + [sym___r_single_quote] = ACTIONS(3178), }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym___global] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_union] = ACTIONS(3187), - [anon_sym_pub] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [anon_sym_assert] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_DOLLARfor] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_POUND] = ACTIONS(3187), - [anon_sym_asm] = ACTIONS(3187), - [anon_sym_AT_LBRACK] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [1102] = { + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym___global] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_union] = ACTIONS(3261), + [anon_sym_pub] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_defer] = ACTIONS(3261), + [anon_sym_goto] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_DOLLARfor] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_asm] = ACTIONS(3261), + [anon_sym_AT_LBRACK] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(3189), - [sym_identifier] = ACTIONS(3191), - [anon_sym_LF] = ACTIONS(3191), - [anon_sym_CR] = ACTIONS(3191), - [anon_sym_CR_LF] = ACTIONS(3191), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym___global] = ACTIONS(3191), - [anon_sym_type] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3191), - [anon_sym_fn] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_PERCENT] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_union] = ACTIONS(3191), - [anon_sym_pub] = ACTIONS(3191), - [anon_sym_mut] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_go] = ACTIONS(3191), - [anon_sym_spawn] = ACTIONS(3191), - [anon_sym_json_DOTdecode] = ACTIONS(3191), - [anon_sym_LBRACK2] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_DASH] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3191), - [anon_sym_GT_GT] = ACTIONS(3191), - [anon_sym_GT_GT_GT] = ACTIONS(3191), - [anon_sym_AMP_CARET] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3191), - [sym_none] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_nil] = ACTIONS(3191), - [anon_sym_QMARK_DOT] = ACTIONS(3191), - [anon_sym_POUND_LBRACK] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_DOLLARif] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3191), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_rlock] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_sql] = ACTIONS(3191), - [sym_int_literal] = ACTIONS(3191), - [sym_float_literal] = ACTIONS(3191), - [sym_rune_literal] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [anon_sym_assert] = ACTIONS(3191), - [anon_sym_defer] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_DOLLARfor] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_POUND] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym_AT_LBRACK] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), + [1103] = { + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3162), + [anon_sym_LF] = ACTIONS(3162), + [anon_sym_CR] = ACTIONS(3162), + [anon_sym_CR_LF] = ACTIONS(3162), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym___global] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3162), + [anon_sym_union] = ACTIONS(3162), + [anon_sym_pub] = ACTIONS(3162), + [anon_sym_mut] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3162), + [anon_sym_spawn] = ACTIONS(3162), + [anon_sym_json_DOTdecode] = ACTIONS(3162), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3162), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_nil] = ACTIONS(3162), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_DOLLARif] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3162), + [anon_sym_select] = ACTIONS(3162), + [anon_sym_lock] = ACTIONS(3162), + [anon_sym_rlock] = ACTIONS(3162), + [anon_sym_unsafe] = ACTIONS(3162), + [anon_sym_sql] = ACTIONS(3162), + [sym_int_literal] = ACTIONS(3162), + [sym_float_literal] = ACTIONS(3162), + [sym_rune_literal] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_shared] = ACTIONS(3162), + [anon_sym_map_LBRACK] = ACTIONS(3162), + [anon_sym_chan] = ACTIONS(3162), + [anon_sym_thread] = ACTIONS(3162), + [anon_sym_atomic] = ACTIONS(3162), + [anon_sym_assert] = ACTIONS(3162), + [anon_sym_defer] = ACTIONS(3162), + [anon_sym_goto] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_DOLLARfor] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_POUND] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3162), + [anon_sym_AT_LBRACK] = ACTIONS(3162), + [sym___double_quote] = ACTIONS(3162), + [sym___single_quote] = ACTIONS(3162), + [sym___c_double_quote] = ACTIONS(3162), + [sym___c_single_quote] = ACTIONS(3162), + [sym___r_double_quote] = ACTIONS(3162), + [sym___r_single_quote] = ACTIONS(3162), }, - [1052] = { - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym___global] = ACTIONS(3199), - [anon_sym_type] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_pub] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [anon_sym_AT] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [anon_sym_assert] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_DOLLARfor] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym_AT_LBRACK] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [1104] = { + [ts_builtin_sym_end] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LF] = ACTIONS(3104), + [anon_sym_CR] = ACTIONS(3104), + [anon_sym_CR_LF] = ACTIONS(3104), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3104), + [anon_sym_as] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym___global] = ACTIONS(3104), + [anon_sym_type] = ACTIONS(3104), + [anon_sym_PIPE] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(3104), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_PERCENT] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_pub] = ACTIONS(3104), + [anon_sym_mut] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_interface] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3104), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_go] = ACTIONS(3104), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(3104), + [anon_sym_LBRACK2] = ACTIONS(3104), + [anon_sym_TILDE] = ACTIONS(3104), + [anon_sym_CARET] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3104), + [anon_sym_LT_DASH] = ACTIONS(3104), + [anon_sym_LT_LT] = ACTIONS(3104), + [anon_sym_GT_GT] = ACTIONS(3104), + [anon_sym_GT_GT_GT] = ACTIONS(3104), + [anon_sym_AMP_CARET] = ACTIONS(3104), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_or] = ACTIONS(3104), + [sym_none] = ACTIONS(3104), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_nil] = ACTIONS(3104), + [anon_sym_QMARK_DOT] = ACTIONS(3104), + [anon_sym_POUND_LBRACK] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_DOLLARif] = ACTIONS(3104), + [anon_sym_is] = ACTIONS(3104), + [anon_sym_BANGis] = ACTIONS(3104), + [anon_sym_in] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(3104), + [anon_sym_match] = ACTIONS(3104), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3104), + [anon_sym_rlock] = ACTIONS(3104), + [anon_sym_unsafe] = ACTIONS(3104), + [anon_sym_sql] = ACTIONS(3104), + [sym_int_literal] = ACTIONS(3104), + [sym_float_literal] = ACTIONS(3104), + [sym_rune_literal] = ACTIONS(3104), + [anon_sym_AT] = ACTIONS(3104), + [anon_sym_shared] = ACTIONS(3104), + [anon_sym_map_LBRACK] = ACTIONS(3104), + [anon_sym_chan] = ACTIONS(3104), + [anon_sym_thread] = ACTIONS(3104), + [anon_sym_atomic] = ACTIONS(3104), + [anon_sym_assert] = ACTIONS(3104), + [anon_sym_defer] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_DOLLARfor] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_POUND] = ACTIONS(3104), + [anon_sym_asm] = ACTIONS(3104), + [anon_sym_AT_LBRACK] = ACTIONS(3104), + [sym___double_quote] = ACTIONS(3104), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3104), + [sym___c_single_quote] = ACTIONS(3104), + [sym___r_double_quote] = ACTIONS(3104), + [sym___r_single_quote] = ACTIONS(3104), }, - [1053] = { - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym___global] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_pub] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [anon_sym_assert] = ACTIONS(3203), - [anon_sym_defer] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_DOLLARfor] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_POUND] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym_AT_LBRACK] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [1105] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym___global] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_union] = ACTIONS(3257), + [anon_sym_pub] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_defer] = ACTIONS(3257), + [anon_sym_goto] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_DOLLARfor] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_asm] = ACTIONS(3257), + [anon_sym_AT_LBRACK] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3257), + [sym___single_quote] = ACTIONS(3257), + [sym___c_double_quote] = ACTIONS(3257), + [sym___c_single_quote] = ACTIONS(3257), + [sym___r_double_quote] = ACTIONS(3257), + [sym___r_single_quote] = ACTIONS(3257), }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(3177), - [sym_identifier] = ACTIONS(3179), - [anon_sym_LF] = ACTIONS(3179), - [anon_sym_CR] = ACTIONS(3179), - [anon_sym_CR_LF] = ACTIONS(3179), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym___global] = ACTIONS(3179), - [anon_sym_type] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_pub] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_interface] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_defer] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_DOLLARfor] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym_AT_LBRACK] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), + [1106] = { + [ts_builtin_sym_end] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2976), + [anon_sym_LF] = ACTIONS(2976), + [anon_sym_CR] = ACTIONS(2976), + [anon_sym_CR_LF] = ACTIONS(2976), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2976), + [anon_sym_as] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym___global] = ACTIONS(2976), + [anon_sym_type] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2976), + [anon_sym_fn] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2976), + [anon_sym_PERCENT] = ACTIONS(2976), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_GT] = ACTIONS(2976), + [anon_sym_EQ_EQ] = ACTIONS(2976), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_LT_EQ] = ACTIONS(2976), + [anon_sym_GT_EQ] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_pub] = ACTIONS(2976), + [anon_sym_mut] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_interface] = ACTIONS(2976), + [anon_sym_PLUS_PLUS] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2976), + [anon_sym_QMARK] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_go] = ACTIONS(2976), + [anon_sym_spawn] = ACTIONS(2976), + [anon_sym_json_DOTdecode] = ACTIONS(2976), + [anon_sym_LBRACK2] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_CARET] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_LT_DASH] = ACTIONS(2976), + [anon_sym_LT_LT] = ACTIONS(2976), + [anon_sym_GT_GT] = ACTIONS(2976), + [anon_sym_GT_GT_GT] = ACTIONS(2976), + [anon_sym_AMP_CARET] = ACTIONS(2976), + [anon_sym_AMP_AMP] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2976), + [sym_none] = ACTIONS(2976), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [sym_nil] = ACTIONS(2976), + [anon_sym_QMARK_DOT] = ACTIONS(2976), + [anon_sym_POUND_LBRACK] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_DOLLARif] = ACTIONS(2976), + [anon_sym_is] = ACTIONS(2976), + [anon_sym_BANGis] = ACTIONS(2976), + [anon_sym_in] = ACTIONS(2976), + [anon_sym_BANGin] = ACTIONS(2976), + [anon_sym_match] = ACTIONS(2976), + [anon_sym_select] = ACTIONS(2976), + [anon_sym_lock] = ACTIONS(2976), + [anon_sym_rlock] = ACTIONS(2976), + [anon_sym_unsafe] = ACTIONS(2976), + [anon_sym_sql] = ACTIONS(2976), + [sym_int_literal] = ACTIONS(2976), + [sym_float_literal] = ACTIONS(2976), + [sym_rune_literal] = ACTIONS(2976), + [anon_sym_AT] = ACTIONS(2976), + [anon_sym_shared] = ACTIONS(2976), + [anon_sym_map_LBRACK] = ACTIONS(2976), + [anon_sym_chan] = ACTIONS(2976), + [anon_sym_thread] = ACTIONS(2976), + [anon_sym_atomic] = ACTIONS(2976), + [anon_sym_assert] = ACTIONS(2976), + [anon_sym_defer] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_DOLLARfor] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym_AT_LBRACK] = ACTIONS(2976), + [sym___double_quote] = ACTIONS(2976), + [sym___single_quote] = ACTIONS(2976), + [sym___c_double_quote] = ACTIONS(2976), + [sym___c_single_quote] = ACTIONS(2976), + [sym___r_double_quote] = ACTIONS(2976), + [sym___r_single_quote] = ACTIONS(2976), }, - [1055] = { - [ts_builtin_sym_end] = ACTIONS(2997), - [sym_identifier] = ACTIONS(2994), - [anon_sym_LF] = ACTIONS(2994), - [anon_sym_CR] = ACTIONS(2994), - [anon_sym_CR_LF] = ACTIONS(2994), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_COMMA] = ACTIONS(2994), - [anon_sym_const] = ACTIONS(2994), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym___global] = ACTIONS(2994), - [anon_sym_type] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_fn] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PERCENT] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2994), - [anon_sym_union] = ACTIONS(2994), - [anon_sym_pub] = ACTIONS(2994), - [anon_sym_mut] = ACTIONS(2994), - [anon_sym_enum] = ACTIONS(2994), - [anon_sym_interface] = ACTIONS(2994), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_go] = ACTIONS(2994), - [anon_sym_spawn] = ACTIONS(2994), - [anon_sym_json_DOTdecode] = ACTIONS(2994), - [anon_sym_LBRACK2] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT_DASH] = ACTIONS(2994), - [anon_sym_LT_LT] = ACTIONS(2994), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2994), - [anon_sym_AMP_CARET] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2994), - [sym_none] = ACTIONS(2994), - [sym_true] = ACTIONS(2994), - [sym_false] = ACTIONS(2994), - [sym_nil] = ACTIONS(2994), - [anon_sym_QMARK_DOT] = ACTIONS(2994), - [anon_sym_POUND_LBRACK] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2994), - [anon_sym_DOLLARif] = ACTIONS(2994), - [anon_sym_is] = ACTIONS(2994), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_in] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_match] = ACTIONS(2994), - [anon_sym_select] = ACTIONS(2994), - [anon_sym_lock] = ACTIONS(2994), - [anon_sym_rlock] = ACTIONS(2994), - [anon_sym_unsafe] = ACTIONS(2994), - [anon_sym_sql] = ACTIONS(2994), - [sym_int_literal] = ACTIONS(2994), - [sym_float_literal] = ACTIONS(2994), - [sym_rune_literal] = ACTIONS(2994), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_shared] = ACTIONS(2994), - [anon_sym_map_LBRACK] = ACTIONS(2994), - [anon_sym_chan] = ACTIONS(2994), - [anon_sym_thread] = ACTIONS(2994), - [anon_sym_atomic] = ACTIONS(2994), - [anon_sym_assert] = ACTIONS(2994), - [anon_sym_defer] = ACTIONS(2994), - [anon_sym_goto] = ACTIONS(2994), - [anon_sym_break] = ACTIONS(2994), - [anon_sym_continue] = ACTIONS(2994), - [anon_sym_return] = ACTIONS(2994), - [anon_sym_DOLLARfor] = ACTIONS(2994), - [anon_sym_for] = ACTIONS(2994), - [anon_sym_POUND] = ACTIONS(2994), - [anon_sym_asm] = ACTIONS(2994), - [anon_sym_AT_LBRACK] = ACTIONS(2994), - [sym___double_quote] = ACTIONS(2994), - [sym___single_quote] = ACTIONS(2994), - [sym___c_double_quote] = ACTIONS(2994), - [sym___c_single_quote] = ACTIONS(2994), - [sym___r_double_quote] = ACTIONS(2994), - [sym___r_single_quote] = ACTIONS(2994), + [1107] = { + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LF] = ACTIONS(3194), + [anon_sym_CR] = ACTIONS(3194), + [anon_sym_CR_LF] = ACTIONS(3194), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym___global] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_union] = ACTIONS(3194), + [anon_sym_pub] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3194), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3194), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3194), + [anon_sym_AMP_CARET] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3194), + [anon_sym_POUND_LBRACK] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3194), + [sym_rune_literal] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3194), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [anon_sym_assert] = ACTIONS(3194), + [anon_sym_defer] = ACTIONS(3194), + [anon_sym_goto] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_DOLLARfor] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3194), + [anon_sym_asm] = ACTIONS(3194), + [anon_sym_AT_LBRACK] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3194), + [sym___single_quote] = ACTIONS(3194), + [sym___c_double_quote] = ACTIONS(3194), + [sym___c_single_quote] = ACTIONS(3194), + [sym___r_double_quote] = ACTIONS(3194), + [sym___r_single_quote] = ACTIONS(3194), }, - [1056] = { - [ts_builtin_sym_end] = ACTIONS(2987), + [1108] = { + [ts_builtin_sym_end] = ACTIONS(2982), [sym_identifier] = ACTIONS(2984), [anon_sym_LF] = ACTIONS(2984), [anon_sym_CR] = ACTIONS(2984), [anon_sym_CR_LF] = ACTIONS(2984), - [sym_comment] = ACTIONS(493), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(2984), [anon_sym_as] = ACTIONS(2984), [anon_sym_LBRACE] = ACTIONS(2984), @@ -146251,7 +151864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2984), [anon_sym_LT_EQ] = ACTIONS(2984), [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2982), [anon_sym_struct] = ACTIONS(2984), [anon_sym_union] = ACTIONS(2984), [anon_sym_pub] = ACTIONS(2984), @@ -146322,4080 +151935,5669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2984), [sym___r_single_quote] = ACTIONS(2984), }, - [1057] = { - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3167), - [anon_sym_CR] = ACTIONS(3167), - [anon_sym_CR_LF] = ACTIONS(3167), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym___global] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_EQ_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_LT_EQ] = ACTIONS(3167), - [anon_sym_GT_EQ] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_union] = ACTIONS(3167), - [anon_sym_pub] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3167), - [anon_sym_GT_GT_GT] = ACTIONS(3167), - [anon_sym_AMP_CARET] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3167), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(3167), - [anon_sym_POUND_LBRACK] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3167), - [anon_sym_BANGis] = ACTIONS(3167), - [anon_sym_in] = ACTIONS(3167), - [anon_sym_BANGin] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_defer] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_DOLLARfor] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_POUND] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym_AT_LBRACK] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), + [1109] = { + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3118), + [anon_sym_LF] = ACTIONS(3118), + [anon_sym_CR] = ACTIONS(3118), + [anon_sym_CR_LF] = ACTIONS(3118), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym___global] = ACTIONS(3118), + [anon_sym_type] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_pub] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_interface] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [anon_sym_assert] = ACTIONS(3118), + [anon_sym_defer] = ACTIONS(3118), + [anon_sym_goto] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_DOLLARfor] = ACTIONS(3118), + [anon_sym_for] = ACTIONS(3118), + [anon_sym_POUND] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym_AT_LBRACK] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), + }, + [1110] = { + [ts_builtin_sym_end] = ACTIONS(3323), + [sym_identifier] = ACTIONS(3325), + [anon_sym_LF] = ACTIONS(3325), + [anon_sym_CR] = ACTIONS(3325), + [anon_sym_CR_LF] = ACTIONS(3325), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3325), + [anon_sym_as] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_COMMA] = ACTIONS(3325), + [anon_sym_const] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym___global] = ACTIONS(3325), + [anon_sym_type] = ACTIONS(3325), + [anon_sym_PIPE] = ACTIONS(3325), + [anon_sym_fn] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3325), + [anon_sym_union] = ACTIONS(3325), + [anon_sym_pub] = ACTIONS(3325), + [anon_sym_mut] = ACTIONS(3325), + [anon_sym_enum] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_go] = ACTIONS(3325), + [anon_sym_spawn] = ACTIONS(3325), + [anon_sym_json_DOTdecode] = ACTIONS(3325), + [anon_sym_LBRACK2] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_LT_DASH] = ACTIONS(3325), + [anon_sym_LT_LT] = ACTIONS(3325), + [anon_sym_GT_GT] = ACTIONS(3325), + [anon_sym_GT_GT_GT] = ACTIONS(3325), + [anon_sym_AMP_CARET] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_or] = ACTIONS(3325), + [sym_none] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_nil] = ACTIONS(3325), + [anon_sym_QMARK_DOT] = ACTIONS(3325), + [anon_sym_POUND_LBRACK] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_DOLLARif] = ACTIONS(3325), + [anon_sym_is] = ACTIONS(3325), + [anon_sym_BANGis] = ACTIONS(3325), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3325), + [anon_sym_match] = ACTIONS(3325), + [anon_sym_select] = ACTIONS(3325), + [anon_sym_lock] = ACTIONS(3325), + [anon_sym_rlock] = ACTIONS(3325), + [anon_sym_unsafe] = ACTIONS(3325), + [anon_sym_sql] = ACTIONS(3325), + [sym_int_literal] = ACTIONS(3325), + [sym_float_literal] = ACTIONS(3325), + [sym_rune_literal] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_shared] = ACTIONS(3325), + [anon_sym_map_LBRACK] = ACTIONS(3325), + [anon_sym_chan] = ACTIONS(3325), + [anon_sym_thread] = ACTIONS(3325), + [anon_sym_atomic] = ACTIONS(3325), + [anon_sym_assert] = ACTIONS(3325), + [anon_sym_defer] = ACTIONS(3325), + [anon_sym_goto] = ACTIONS(3325), + [anon_sym_break] = ACTIONS(3325), + [anon_sym_continue] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3325), + [anon_sym_DOLLARfor] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3325), + [anon_sym_POUND] = ACTIONS(3325), + [anon_sym_asm] = ACTIONS(3325), + [anon_sym_AT_LBRACK] = ACTIONS(3325), + [sym___double_quote] = ACTIONS(3325), + [sym___single_quote] = ACTIONS(3325), + [sym___c_double_quote] = ACTIONS(3325), + [sym___c_single_quote] = ACTIONS(3325), + [sym___r_double_quote] = ACTIONS(3325), + [sym___r_single_quote] = ACTIONS(3325), + }, + [1111] = { + [ts_builtin_sym_end] = ACTIONS(3319), + [sym_identifier] = ACTIONS(3321), + [anon_sym_LF] = ACTIONS(3321), + [anon_sym_CR] = ACTIONS(3321), + [anon_sym_CR_LF] = ACTIONS(3321), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3321), + [anon_sym_as] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym___global] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3321), + [anon_sym_fn] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_pub] = ACTIONS(3321), + [anon_sym_mut] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_go] = ACTIONS(3321), + [anon_sym_spawn] = ACTIONS(3321), + [anon_sym_json_DOTdecode] = ACTIONS(3321), + [anon_sym_LBRACK2] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_LT_DASH] = ACTIONS(3321), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym_GT_GT_GT] = ACTIONS(3321), + [anon_sym_AMP_CARET] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3321), + [sym_none] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_nil] = ACTIONS(3321), + [anon_sym_QMARK_DOT] = ACTIONS(3321), + [anon_sym_POUND_LBRACK] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_DOLLARif] = ACTIONS(3321), + [anon_sym_is] = ACTIONS(3321), + [anon_sym_BANGis] = ACTIONS(3321), + [anon_sym_in] = ACTIONS(3321), + [anon_sym_BANGin] = ACTIONS(3321), + [anon_sym_match] = ACTIONS(3321), + [anon_sym_select] = ACTIONS(3321), + [anon_sym_lock] = ACTIONS(3321), + [anon_sym_rlock] = ACTIONS(3321), + [anon_sym_unsafe] = ACTIONS(3321), + [anon_sym_sql] = ACTIONS(3321), + [sym_int_literal] = ACTIONS(3321), + [sym_float_literal] = ACTIONS(3321), + [sym_rune_literal] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_shared] = ACTIONS(3321), + [anon_sym_map_LBRACK] = ACTIONS(3321), + [anon_sym_chan] = ACTIONS(3321), + [anon_sym_thread] = ACTIONS(3321), + [anon_sym_atomic] = ACTIONS(3321), + [anon_sym_assert] = ACTIONS(3321), + [anon_sym_defer] = ACTIONS(3321), + [anon_sym_goto] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_DOLLARfor] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_asm] = ACTIONS(3321), + [anon_sym_AT_LBRACK] = ACTIONS(3321), + [sym___double_quote] = ACTIONS(3321), + [sym___single_quote] = ACTIONS(3321), + [sym___c_double_quote] = ACTIONS(3321), + [sym___c_single_quote] = ACTIONS(3321), + [sym___r_double_quote] = ACTIONS(3321), + [sym___r_single_quote] = ACTIONS(3321), + }, + [1112] = { + [ts_builtin_sym_end] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3317), + [anon_sym_LF] = ACTIONS(3317), + [anon_sym_CR] = ACTIONS(3317), + [anon_sym_CR_LF] = ACTIONS(3317), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3317), + [anon_sym_as] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym___global] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [anon_sym_pub] = ACTIONS(3317), + [anon_sym_mut] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_QMARK] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_go] = ACTIONS(3317), + [anon_sym_spawn] = ACTIONS(3317), + [anon_sym_json_DOTdecode] = ACTIONS(3317), + [anon_sym_LBRACK2] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_LT_DASH] = ACTIONS(3317), + [anon_sym_LT_LT] = ACTIONS(3317), + [anon_sym_GT_GT] = ACTIONS(3317), + [anon_sym_GT_GT_GT] = ACTIONS(3317), + [anon_sym_AMP_CARET] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_or] = ACTIONS(3317), + [sym_none] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_nil] = ACTIONS(3317), + [anon_sym_QMARK_DOT] = ACTIONS(3317), + [anon_sym_POUND_LBRACK] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_DOLLARif] = ACTIONS(3317), + [anon_sym_is] = ACTIONS(3317), + [anon_sym_BANGis] = ACTIONS(3317), + [anon_sym_in] = ACTIONS(3317), + [anon_sym_BANGin] = ACTIONS(3317), + [anon_sym_match] = ACTIONS(3317), + [anon_sym_select] = ACTIONS(3317), + [anon_sym_lock] = ACTIONS(3317), + [anon_sym_rlock] = ACTIONS(3317), + [anon_sym_unsafe] = ACTIONS(3317), + [anon_sym_sql] = ACTIONS(3317), + [sym_int_literal] = ACTIONS(3317), + [sym_float_literal] = ACTIONS(3317), + [sym_rune_literal] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_shared] = ACTIONS(3317), + [anon_sym_map_LBRACK] = ACTIONS(3317), + [anon_sym_chan] = ACTIONS(3317), + [anon_sym_thread] = ACTIONS(3317), + [anon_sym_atomic] = ACTIONS(3317), + [anon_sym_assert] = ACTIONS(3317), + [anon_sym_defer] = ACTIONS(3317), + [anon_sym_goto] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_DOLLARfor] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_asm] = ACTIONS(3317), + [anon_sym_AT_LBRACK] = ACTIONS(3317), + [sym___double_quote] = ACTIONS(3317), + [sym___single_quote] = ACTIONS(3317), + [sym___c_double_quote] = ACTIONS(3317), + [sym___c_single_quote] = ACTIONS(3317), + [sym___r_double_quote] = ACTIONS(3317), + [sym___r_single_quote] = ACTIONS(3317), + }, + [1113] = { + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3226), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_CR] = ACTIONS(3226), + [anon_sym_CR_LF] = ACTIONS(3226), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym___global] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_pub] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3226), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3226), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3226), + [anon_sym_AMP_CARET] = ACTIONS(3226), + [anon_sym_AMP_AMP] = ACTIONS(3226), + [anon_sym_PIPE_PIPE] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3226), + [anon_sym_POUND_LBRACK] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3226), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3226), + [sym_rune_literal] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3226), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [anon_sym_assert] = ACTIONS(3226), + [anon_sym_defer] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_DOLLARfor] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_POUND] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym_AT_LBRACK] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3226), + [sym___single_quote] = ACTIONS(3226), + [sym___c_double_quote] = ACTIONS(3226), + [sym___c_single_quote] = ACTIONS(3226), + [sym___r_double_quote] = ACTIONS(3226), + [sym___r_single_quote] = ACTIONS(3226), + }, + [1114] = { + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LF] = ACTIONS(3028), + [anon_sym_CR] = ACTIONS(3028), + [anon_sym_CR_LF] = ACTIONS(3028), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3028), + [anon_sym_as] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_COMMA] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym___global] = ACTIONS(3028), + [anon_sym_type] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3028), + [anon_sym_PERCENT] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3028), + [anon_sym_EQ_EQ] = ACTIONS(3028), + [anon_sym_BANG_EQ] = ACTIONS(3028), + [anon_sym_LT_EQ] = ACTIONS(3028), + [anon_sym_GT_EQ] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_pub] = ACTIONS(3028), + [anon_sym_mut] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_interface] = ACTIONS(3028), + [anon_sym_PLUS_PLUS] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_go] = ACTIONS(3028), + [anon_sym_spawn] = ACTIONS(3028), + [anon_sym_json_DOTdecode] = ACTIONS(3028), + [anon_sym_LBRACK2] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_CARET] = ACTIONS(3028), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_LT_DASH] = ACTIONS(3028), + [anon_sym_LT_LT] = ACTIONS(3028), + [anon_sym_GT_GT] = ACTIONS(3028), + [anon_sym_GT_GT_GT] = ACTIONS(3028), + [anon_sym_AMP_CARET] = ACTIONS(3028), + [anon_sym_AMP_AMP] = ACTIONS(3028), + [anon_sym_PIPE_PIPE] = ACTIONS(3028), + [anon_sym_or] = ACTIONS(3028), + [sym_none] = ACTIONS(3028), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [sym_nil] = ACTIONS(3028), + [anon_sym_QMARK_DOT] = ACTIONS(3028), + [anon_sym_POUND_LBRACK] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_DOLLARif] = ACTIONS(3028), + [anon_sym_is] = ACTIONS(3028), + [anon_sym_BANGis] = ACTIONS(3028), + [anon_sym_in] = ACTIONS(3028), + [anon_sym_BANGin] = ACTIONS(3028), + [anon_sym_match] = ACTIONS(3028), + [anon_sym_select] = ACTIONS(3028), + [anon_sym_lock] = ACTIONS(3028), + [anon_sym_rlock] = ACTIONS(3028), + [anon_sym_unsafe] = ACTIONS(3028), + [anon_sym_sql] = ACTIONS(3028), + [sym_int_literal] = ACTIONS(3028), + [sym_float_literal] = ACTIONS(3028), + [sym_rune_literal] = ACTIONS(3028), + [anon_sym_AT] = ACTIONS(3028), + [anon_sym_shared] = ACTIONS(3028), + [anon_sym_map_LBRACK] = ACTIONS(3028), + [anon_sym_chan] = ACTIONS(3028), + [anon_sym_thread] = ACTIONS(3028), + [anon_sym_atomic] = ACTIONS(3028), + [anon_sym_assert] = ACTIONS(3028), + [anon_sym_defer] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_DOLLARfor] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_POUND] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym_AT_LBRACK] = ACTIONS(3028), + [sym___double_quote] = ACTIONS(3028), + [sym___single_quote] = ACTIONS(3028), + [sym___c_double_quote] = ACTIONS(3028), + [sym___c_single_quote] = ACTIONS(3028), + [sym___r_double_quote] = ACTIONS(3028), + [sym___r_single_quote] = ACTIONS(3028), + }, + [1115] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LF] = ACTIONS(3052), + [anon_sym_CR] = ACTIONS(3052), + [anon_sym_CR_LF] = ACTIONS(3052), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym___global] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_union] = ACTIONS(3052), + [anon_sym_pub] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), + [anon_sym_assert] = ACTIONS(3052), + [anon_sym_defer] = ACTIONS(3052), + [anon_sym_goto] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_DOLLARfor] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_POUND] = ACTIONS(3052), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym_AT_LBRACK] = ACTIONS(3052), + [sym___double_quote] = ACTIONS(3052), + [sym___single_quote] = ACTIONS(3052), + [sym___c_double_quote] = ACTIONS(3052), + [sym___c_single_quote] = ACTIONS(3052), + [sym___r_double_quote] = ACTIONS(3052), + [sym___r_single_quote] = ACTIONS(3052), + }, + [1116] = { + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_CR] = ACTIONS(2936), + [anon_sym_CR_LF] = ACTIONS(2936), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2936), + [anon_sym_as] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym___global] = ACTIONS(2936), + [anon_sym_type] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_fn] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_PERCENT] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2936), + [anon_sym_EQ_EQ] = ACTIONS(2936), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(2936), + [anon_sym_GT_EQ] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_pub] = ACTIONS(2936), + [anon_sym_mut] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2936), + [anon_sym_QMARK] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2936), + [anon_sym_go] = ACTIONS(2936), + [anon_sym_spawn] = ACTIONS(2936), + [anon_sym_json_DOTdecode] = ACTIONS(2936), + [anon_sym_LBRACK2] = ACTIONS(2936), + [anon_sym_TILDE] = ACTIONS(2936), + [anon_sym_CARET] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_LT_DASH] = ACTIONS(2936), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2936), + [anon_sym_GT_GT_GT] = ACTIONS(2936), + [anon_sym_AMP_CARET] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2936), + [sym_none] = ACTIONS(2936), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_nil] = ACTIONS(2936), + [anon_sym_QMARK_DOT] = ACTIONS(2936), + [anon_sym_POUND_LBRACK] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_DOLLARif] = ACTIONS(2936), + [anon_sym_is] = ACTIONS(2936), + [anon_sym_BANGis] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(2936), + [anon_sym_BANGin] = ACTIONS(2936), + [anon_sym_match] = ACTIONS(2936), + [anon_sym_select] = ACTIONS(2936), + [anon_sym_lock] = ACTIONS(2936), + [anon_sym_rlock] = ACTIONS(2936), + [anon_sym_unsafe] = ACTIONS(2936), + [anon_sym_sql] = ACTIONS(2936), + [sym_int_literal] = ACTIONS(2936), + [sym_float_literal] = ACTIONS(2936), + [sym_rune_literal] = ACTIONS(2936), + [anon_sym_AT] = ACTIONS(2936), + [anon_sym_shared] = ACTIONS(2936), + [anon_sym_map_LBRACK] = ACTIONS(2936), + [anon_sym_chan] = ACTIONS(2936), + [anon_sym_thread] = ACTIONS(2936), + [anon_sym_atomic] = ACTIONS(2936), + [anon_sym_assert] = ACTIONS(2936), + [anon_sym_defer] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_DOLLARfor] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_POUND] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym_AT_LBRACK] = ACTIONS(2936), + [sym___double_quote] = ACTIONS(2936), + [sym___single_quote] = ACTIONS(2936), + [sym___c_double_quote] = ACTIONS(2936), + [sym___c_single_quote] = ACTIONS(2936), + [sym___r_double_quote] = ACTIONS(2936), + [sym___r_single_quote] = ACTIONS(2936), + }, + [1117] = { + [ts_builtin_sym_end] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LF] = ACTIONS(3056), + [anon_sym_CR] = ACTIONS(3056), + [anon_sym_CR_LF] = ACTIONS(3056), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_const] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym___global] = ACTIONS(3056), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_union] = ACTIONS(3056), + [anon_sym_pub] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_enum] = ACTIONS(3056), + [anon_sym_interface] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [anon_sym_AT] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), + [anon_sym_assert] = ACTIONS(3056), + [anon_sym_defer] = ACTIONS(3056), + [anon_sym_goto] = ACTIONS(3056), + [anon_sym_break] = ACTIONS(3056), + [anon_sym_continue] = ACTIONS(3056), + [anon_sym_return] = ACTIONS(3056), + [anon_sym_DOLLARfor] = ACTIONS(3056), + [anon_sym_for] = ACTIONS(3056), + [anon_sym_POUND] = ACTIONS(3056), + [anon_sym_asm] = ACTIONS(3056), + [anon_sym_AT_LBRACK] = ACTIONS(3056), + [sym___double_quote] = ACTIONS(3056), + [sym___single_quote] = ACTIONS(3056), + [sym___c_double_quote] = ACTIONS(3056), + [sym___c_single_quote] = ACTIONS(3056), + [sym___r_double_quote] = ACTIONS(3056), + [sym___r_single_quote] = ACTIONS(3056), + }, + [1118] = { + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LF] = ACTIONS(3060), + [anon_sym_CR] = ACTIONS(3060), + [anon_sym_CR_LF] = ACTIONS(3060), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym___global] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_mut] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_go] = ACTIONS(3060), + [anon_sym_spawn] = ACTIONS(3060), + [anon_sym_json_DOTdecode] = ACTIONS(3060), + [anon_sym_LBRACK2] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_GT_GT_GT] = ACTIONS(3060), + [anon_sym_AMP_CARET] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [sym_none] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_nil] = ACTIONS(3060), + [anon_sym_QMARK_DOT] = ACTIONS(3060), + [anon_sym_POUND_LBRACK] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_DOLLARif] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3060), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_in] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_select] = ACTIONS(3060), + [anon_sym_lock] = ACTIONS(3060), + [anon_sym_rlock] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_sql] = ACTIONS(3060), + [sym_int_literal] = ACTIONS(3060), + [sym_float_literal] = ACTIONS(3060), + [sym_rune_literal] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3060), + [anon_sym_shared] = ACTIONS(3060), + [anon_sym_map_LBRACK] = ACTIONS(3060), + [anon_sym_chan] = ACTIONS(3060), + [anon_sym_thread] = ACTIONS(3060), + [anon_sym_atomic] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_DOLLARfor] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym_AT_LBRACK] = ACTIONS(3060), + [sym___double_quote] = ACTIONS(3060), + [sym___single_quote] = ACTIONS(3060), + [sym___c_double_quote] = ACTIONS(3060), + [sym___c_single_quote] = ACTIONS(3060), + [sym___r_double_quote] = ACTIONS(3060), + [sym___r_single_quote] = ACTIONS(3060), + }, + [1119] = { + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym___global] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [anon_sym_EQ_EQ] = ACTIONS(3297), + [anon_sym_BANG_EQ] = ACTIONS(3297), + [anon_sym_LT_EQ] = ACTIONS(3297), + [anon_sym_GT_EQ] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_pub] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_GT_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_CARET] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_or] = ACTIONS(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3297), + [anon_sym_POUND_LBRACK] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_defer] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_DOLLARfor] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_asm] = ACTIONS(3297), + [anon_sym_AT_LBRACK] = ACTIONS(3297), + [sym___double_quote] = ACTIONS(3297), + [sym___single_quote] = ACTIONS(3297), + [sym___c_double_quote] = ACTIONS(3297), + [sym___c_single_quote] = ACTIONS(3297), + [sym___r_double_quote] = ACTIONS(3297), + [sym___r_single_quote] = ACTIONS(3297), + }, + [1120] = { + [ts_builtin_sym_end] = ACTIONS(3311), + [sym_identifier] = ACTIONS(3313), + [anon_sym_LF] = ACTIONS(3313), + [anon_sym_CR] = ACTIONS(3313), + [anon_sym_CR_LF] = ACTIONS(3313), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_COMMA] = ACTIONS(3313), + [anon_sym_const] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym___global] = ACTIONS(3313), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_PIPE] = ACTIONS(3313), + [anon_sym_fn] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_SLASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_GT] = ACTIONS(3313), + [anon_sym_EQ_EQ] = ACTIONS(3313), + [anon_sym_BANG_EQ] = ACTIONS(3313), + [anon_sym_LT_EQ] = ACTIONS(3313), + [anon_sym_GT_EQ] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_struct] = ACTIONS(3313), + [anon_sym_union] = ACTIONS(3313), + [anon_sym_pub] = ACTIONS(3313), + [anon_sym_mut] = ACTIONS(3313), + [anon_sym_enum] = ACTIONS(3313), + [anon_sym_interface] = ACTIONS(3313), + [anon_sym_PLUS_PLUS] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3313), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_go] = ACTIONS(3313), + [anon_sym_spawn] = ACTIONS(3313), + [anon_sym_json_DOTdecode] = ACTIONS(3313), + [anon_sym_LBRACK2] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_LT_DASH] = ACTIONS(3313), + [anon_sym_LT_LT] = ACTIONS(3313), + [anon_sym_GT_GT] = ACTIONS(3313), + [anon_sym_GT_GT_GT] = ACTIONS(3313), + [anon_sym_AMP_CARET] = ACTIONS(3313), + [anon_sym_AMP_AMP] = ACTIONS(3313), + [anon_sym_PIPE_PIPE] = ACTIONS(3313), + [anon_sym_or] = ACTIONS(3313), + [sym_none] = ACTIONS(3313), + [sym_true] = ACTIONS(3313), + [sym_false] = ACTIONS(3313), + [sym_nil] = ACTIONS(3313), + [anon_sym_QMARK_DOT] = ACTIONS(3313), + [anon_sym_POUND_LBRACK] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_DOLLARif] = ACTIONS(3313), + [anon_sym_is] = ACTIONS(3313), + [anon_sym_BANGis] = ACTIONS(3313), + [anon_sym_in] = ACTIONS(3313), + [anon_sym_BANGin] = ACTIONS(3313), + [anon_sym_match] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_rlock] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_sql] = ACTIONS(3313), + [sym_int_literal] = ACTIONS(3313), + [sym_float_literal] = ACTIONS(3313), + [sym_rune_literal] = ACTIONS(3313), + [anon_sym_AT] = ACTIONS(3313), + [anon_sym_shared] = ACTIONS(3313), + [anon_sym_map_LBRACK] = ACTIONS(3313), + [anon_sym_chan] = ACTIONS(3313), + [anon_sym_thread] = ACTIONS(3313), + [anon_sym_atomic] = ACTIONS(3313), + [anon_sym_assert] = ACTIONS(3313), + [anon_sym_defer] = ACTIONS(3313), + [anon_sym_goto] = ACTIONS(3313), + [anon_sym_break] = ACTIONS(3313), + [anon_sym_continue] = ACTIONS(3313), + [anon_sym_return] = ACTIONS(3313), + [anon_sym_DOLLARfor] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(3313), + [anon_sym_asm] = ACTIONS(3313), + [anon_sym_AT_LBRACK] = ACTIONS(3313), + [sym___double_quote] = ACTIONS(3313), + [sym___single_quote] = ACTIONS(3313), + [sym___c_double_quote] = ACTIONS(3313), + [sym___c_single_quote] = ACTIONS(3313), + [sym___r_double_quote] = ACTIONS(3313), + [sym___r_single_quote] = ACTIONS(3313), + }, + [1121] = { + [ts_builtin_sym_end] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3329), + [anon_sym_LF] = ACTIONS(3329), + [anon_sym_CR] = ACTIONS(3329), + [anon_sym_CR_LF] = ACTIONS(3329), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym___global] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_fn] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [anon_sym_pub] = ACTIONS(3329), + [anon_sym_mut] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_QMARK] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_go] = ACTIONS(3329), + [anon_sym_spawn] = ACTIONS(3329), + [anon_sym_json_DOTdecode] = ACTIONS(3329), + [anon_sym_LBRACK2] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_LT_DASH] = ACTIONS(3329), + [anon_sym_LT_LT] = ACTIONS(3329), + [anon_sym_GT_GT] = ACTIONS(3329), + [anon_sym_GT_GT_GT] = ACTIONS(3329), + [anon_sym_AMP_CARET] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_or] = ACTIONS(3329), + [sym_none] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_nil] = ACTIONS(3329), + [anon_sym_QMARK_DOT] = ACTIONS(3329), + [anon_sym_POUND_LBRACK] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_DOLLARif] = ACTIONS(3329), + [anon_sym_is] = ACTIONS(3329), + [anon_sym_BANGis] = ACTIONS(3329), + [anon_sym_in] = ACTIONS(3329), + [anon_sym_BANGin] = ACTIONS(3329), + [anon_sym_match] = ACTIONS(3329), + [anon_sym_select] = ACTIONS(3329), + [anon_sym_lock] = ACTIONS(3329), + [anon_sym_rlock] = ACTIONS(3329), + [anon_sym_unsafe] = ACTIONS(3329), + [anon_sym_sql] = ACTIONS(3329), + [sym_int_literal] = ACTIONS(3329), + [sym_float_literal] = ACTIONS(3329), + [sym_rune_literal] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_shared] = ACTIONS(3329), + [anon_sym_map_LBRACK] = ACTIONS(3329), + [anon_sym_chan] = ACTIONS(3329), + [anon_sym_thread] = ACTIONS(3329), + [anon_sym_atomic] = ACTIONS(3329), + [anon_sym_assert] = ACTIONS(3329), + [anon_sym_defer] = ACTIONS(3329), + [anon_sym_goto] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_DOLLARfor] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_asm] = ACTIONS(3329), + [anon_sym_AT_LBRACK] = ACTIONS(3329), + [sym___double_quote] = ACTIONS(3329), + [sym___single_quote] = ACTIONS(3329), + [sym___c_double_quote] = ACTIONS(3329), + [sym___c_single_quote] = ACTIONS(3329), + [sym___r_double_quote] = ACTIONS(3329), + [sym___r_single_quote] = ACTIONS(3329), + }, + [1122] = { + [ts_builtin_sym_end] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_CR] = ACTIONS(3036), + [anon_sym_CR_LF] = ACTIONS(3036), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3036), + [anon_sym_as] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_COMMA] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym___global] = ACTIONS(3036), + [anon_sym_type] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_fn] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_pub] = ACTIONS(3036), + [anon_sym_mut] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_interface] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_go] = ACTIONS(3036), + [anon_sym_spawn] = ACTIONS(3036), + [anon_sym_json_DOTdecode] = ACTIONS(3036), + [anon_sym_LBRACK2] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_GT_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_CARET] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_or] = ACTIONS(3036), + [sym_none] = ACTIONS(3036), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [sym_nil] = ACTIONS(3036), + [anon_sym_QMARK_DOT] = ACTIONS(3036), + [anon_sym_POUND_LBRACK] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_DOLLARif] = ACTIONS(3036), + [anon_sym_is] = ACTIONS(3036), + [anon_sym_BANGis] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_BANGin] = ACTIONS(3036), + [anon_sym_match] = ACTIONS(3036), + [anon_sym_select] = ACTIONS(3036), + [anon_sym_lock] = ACTIONS(3036), + [anon_sym_rlock] = ACTIONS(3036), + [anon_sym_unsafe] = ACTIONS(3036), + [anon_sym_sql] = ACTIONS(3036), + [sym_int_literal] = ACTIONS(3036), + [sym_float_literal] = ACTIONS(3036), + [sym_rune_literal] = ACTIONS(3036), + [anon_sym_AT] = ACTIONS(3036), + [anon_sym_shared] = ACTIONS(3036), + [anon_sym_map_LBRACK] = ACTIONS(3036), + [anon_sym_chan] = ACTIONS(3036), + [anon_sym_thread] = ACTIONS(3036), + [anon_sym_atomic] = ACTIONS(3036), + [anon_sym_assert] = ACTIONS(3036), + [anon_sym_defer] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_DOLLARfor] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_POUND] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym_AT_LBRACK] = ACTIONS(3036), + [sym___double_quote] = ACTIONS(3036), + [sym___single_quote] = ACTIONS(3036), + [sym___c_double_quote] = ACTIONS(3036), + [sym___c_single_quote] = ACTIONS(3036), + [sym___r_double_quote] = ACTIONS(3036), + [sym___r_single_quote] = ACTIONS(3036), + }, + [1123] = { + [ts_builtin_sym_end] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LF] = ACTIONS(3064), + [anon_sym_CR] = ACTIONS(3064), + [anon_sym_CR_LF] = ACTIONS(3064), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3064), + [anon_sym_as] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_const] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym___global] = ACTIONS(3064), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_GT] = ACTIONS(3064), + [anon_sym_EQ_EQ] = ACTIONS(3064), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(3064), + [anon_sym_GT_EQ] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_union] = ACTIONS(3064), + [anon_sym_pub] = ACTIONS(3064), + [anon_sym_mut] = ACTIONS(3064), + [anon_sym_enum] = ACTIONS(3064), + [anon_sym_interface] = ACTIONS(3064), + [anon_sym_PLUS_PLUS] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3064), + [anon_sym_go] = ACTIONS(3064), + [anon_sym_spawn] = ACTIONS(3064), + [anon_sym_json_DOTdecode] = ACTIONS(3064), + [anon_sym_LBRACK2] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [anon_sym_CARET] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT_DASH] = ACTIONS(3064), + [anon_sym_LT_LT] = ACTIONS(3064), + [anon_sym_GT_GT] = ACTIONS(3064), + [anon_sym_GT_GT_GT] = ACTIONS(3064), + [anon_sym_AMP_CARET] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_PIPE_PIPE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3064), + [sym_none] = ACTIONS(3064), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [sym_nil] = ACTIONS(3064), + [anon_sym_QMARK_DOT] = ACTIONS(3064), + [anon_sym_POUND_LBRACK] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_DOLLARif] = ACTIONS(3064), + [anon_sym_is] = ACTIONS(3064), + [anon_sym_BANGis] = ACTIONS(3064), + [anon_sym_in] = ACTIONS(3064), + [anon_sym_BANGin] = ACTIONS(3064), + [anon_sym_match] = ACTIONS(3064), + [anon_sym_select] = ACTIONS(3064), + [anon_sym_lock] = ACTIONS(3064), + [anon_sym_rlock] = ACTIONS(3064), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_sql] = ACTIONS(3064), + [sym_int_literal] = ACTIONS(3064), + [sym_float_literal] = ACTIONS(3064), + [sym_rune_literal] = ACTIONS(3064), + [anon_sym_AT] = ACTIONS(3064), + [anon_sym_shared] = ACTIONS(3064), + [anon_sym_map_LBRACK] = ACTIONS(3064), + [anon_sym_chan] = ACTIONS(3064), + [anon_sym_thread] = ACTIONS(3064), + [anon_sym_atomic] = ACTIONS(3064), + [anon_sym_assert] = ACTIONS(3064), + [anon_sym_defer] = ACTIONS(3064), + [anon_sym_goto] = ACTIONS(3064), + [anon_sym_break] = ACTIONS(3064), + [anon_sym_continue] = ACTIONS(3064), + [anon_sym_return] = ACTIONS(3064), + [anon_sym_DOLLARfor] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(3064), + [anon_sym_POUND] = ACTIONS(3064), + [anon_sym_asm] = ACTIONS(3064), + [anon_sym_AT_LBRACK] = ACTIONS(3064), + [sym___double_quote] = ACTIONS(3064), + [sym___single_quote] = ACTIONS(3064), + [sym___c_double_quote] = ACTIONS(3064), + [sym___c_single_quote] = ACTIONS(3064), + [sym___r_double_quote] = ACTIONS(3064), + [sym___r_single_quote] = ACTIONS(3064), + }, + [1124] = { + [ts_builtin_sym_end] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LF] = ACTIONS(3068), + [anon_sym_CR] = ACTIONS(3068), + [anon_sym_CR_LF] = ACTIONS(3068), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_const] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym___global] = ACTIONS(3068), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_pub] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_enum] = ACTIONS(3068), + [anon_sym_interface] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3068), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3068), + [anon_sym_POUND_LBRACK] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3068), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3068), + [sym_rune_literal] = ACTIONS(3068), + [anon_sym_AT] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3068), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [anon_sym_assert] = ACTIONS(3068), + [anon_sym_defer] = ACTIONS(3068), + [anon_sym_goto] = ACTIONS(3068), + [anon_sym_break] = ACTIONS(3068), + [anon_sym_continue] = ACTIONS(3068), + [anon_sym_return] = ACTIONS(3068), + [anon_sym_DOLLARfor] = ACTIONS(3068), + [anon_sym_for] = ACTIONS(3068), + [anon_sym_POUND] = ACTIONS(3068), + [anon_sym_asm] = ACTIONS(3068), + [anon_sym_AT_LBRACK] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3068), + [sym___single_quote] = ACTIONS(3068), + [sym___c_double_quote] = ACTIONS(3068), + [sym___c_single_quote] = ACTIONS(3068), + [sym___r_double_quote] = ACTIONS(3068), + [sym___r_single_quote] = ACTIONS(3068), + }, + [1125] = { + [ts_builtin_sym_end] = ACTIONS(3074), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LF] = ACTIONS(3076), + [anon_sym_CR] = ACTIONS(3076), + [anon_sym_CR_LF] = ACTIONS(3076), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_const] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym___global] = ACTIONS(3076), + [anon_sym_type] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_fn] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_SLASH] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3076), + [anon_sym_GT] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_struct] = ACTIONS(3076), + [anon_sym_union] = ACTIONS(3076), + [anon_sym_pub] = ACTIONS(3076), + [anon_sym_mut] = ACTIONS(3076), + [anon_sym_enum] = ACTIONS(3076), + [anon_sym_interface] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3076), + [anon_sym_json_DOTdecode] = ACTIONS(3076), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3076), + [anon_sym_GT_GT] = ACTIONS(3076), + [anon_sym_GT_GT_GT] = ACTIONS(3076), + [anon_sym_AMP_CARET] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_or] = ACTIONS(3076), + [sym_none] = ACTIONS(3076), + [sym_true] = ACTIONS(3076), + [sym_false] = ACTIONS(3076), + [sym_nil] = ACTIONS(3076), + [anon_sym_QMARK_DOT] = ACTIONS(3076), + [anon_sym_POUND_LBRACK] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_DOLLARif] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3076), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_select] = ACTIONS(3076), + [anon_sym_lock] = ACTIONS(3076), + [anon_sym_rlock] = ACTIONS(3076), + [anon_sym_unsafe] = ACTIONS(3076), + [anon_sym_sql] = ACTIONS(3076), + [sym_int_literal] = ACTIONS(3076), + [sym_float_literal] = ACTIONS(3076), + [sym_rune_literal] = ACTIONS(3076), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_shared] = ACTIONS(3076), + [anon_sym_map_LBRACK] = ACTIONS(3076), + [anon_sym_chan] = ACTIONS(3076), + [anon_sym_thread] = ACTIONS(3076), + [anon_sym_atomic] = ACTIONS(3076), + [anon_sym_assert] = ACTIONS(3076), + [anon_sym_defer] = ACTIONS(3076), + [anon_sym_goto] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_DOLLARfor] = ACTIONS(3076), + [anon_sym_for] = ACTIONS(3076), + [anon_sym_POUND] = ACTIONS(3076), + [anon_sym_asm] = ACTIONS(3076), + [anon_sym_AT_LBRACK] = ACTIONS(3076), + [sym___double_quote] = ACTIONS(3076), + [sym___single_quote] = ACTIONS(3076), + [sym___c_double_quote] = ACTIONS(3076), + [sym___c_single_quote] = ACTIONS(3076), + [sym___r_double_quote] = ACTIONS(3076), + [sym___r_single_quote] = ACTIONS(3076), + }, + [1126] = { + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym___global] = ACTIONS(3072), + [anon_sym_type] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_union] = ACTIONS(3072), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_enum] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3072), + [anon_sym_POUND_LBRACK] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3072), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_defer] = ACTIONS(3072), + [anon_sym_goto] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_DOLLARfor] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_asm] = ACTIONS(3072), + [anon_sym_AT_LBRACK] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), + }, + [1127] = { + [ts_builtin_sym_end] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3080), + [anon_sym_CR] = ACTIONS(3080), + [anon_sym_CR_LF] = ACTIONS(3080), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_const] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym___global] = ACTIONS(3080), + [anon_sym_type] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_union] = ACTIONS(3080), + [anon_sym_pub] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_enum] = ACTIONS(3080), + [anon_sym_interface] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + [anon_sym_assert] = ACTIONS(3080), + [anon_sym_defer] = ACTIONS(3080), + [anon_sym_goto] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_DOLLARfor] = ACTIONS(3080), + [anon_sym_for] = ACTIONS(3080), + [anon_sym_POUND] = ACTIONS(3080), + [anon_sym_asm] = ACTIONS(3080), + [anon_sym_AT_LBRACK] = ACTIONS(3080), + [sym___double_quote] = ACTIONS(3080), + [sym___single_quote] = ACTIONS(3080), + [sym___c_double_quote] = ACTIONS(3080), + [sym___c_single_quote] = ACTIONS(3080), + [sym___r_double_quote] = ACTIONS(3080), + [sym___r_single_quote] = ACTIONS(3080), + }, + [1128] = { + [ts_builtin_sym_end] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3100), + [anon_sym_LF] = ACTIONS(3100), + [anon_sym_CR] = ACTIONS(3100), + [anon_sym_CR_LF] = ACTIONS(3100), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3100), + [anon_sym_as] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym___global] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_PIPE] = ACTIONS(3100), + [anon_sym_fn] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_LT_EQ] = ACTIONS(3100), + [anon_sym_GT_EQ] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_pub] = ACTIONS(3100), + [anon_sym_mut] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_QMARK] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3100), + [anon_sym_spawn] = ACTIONS(3100), + [anon_sym_json_DOTdecode] = ACTIONS(3100), + [anon_sym_LBRACK2] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_CARET] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3100), + [anon_sym_LT_LT] = ACTIONS(3100), + [anon_sym_GT_GT] = ACTIONS(3100), + [anon_sym_GT_GT_GT] = ACTIONS(3100), + [anon_sym_AMP_CARET] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_or] = ACTIONS(3100), + [sym_none] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_nil] = ACTIONS(3100), + [anon_sym_QMARK_DOT] = ACTIONS(3100), + [anon_sym_POUND_LBRACK] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_DOLLARif] = ACTIONS(3100), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3100), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_BANGin] = ACTIONS(3100), + [anon_sym_match] = ACTIONS(3100), + [anon_sym_select] = ACTIONS(3100), + [anon_sym_lock] = ACTIONS(3100), + [anon_sym_rlock] = ACTIONS(3100), + [anon_sym_unsafe] = ACTIONS(3100), + [anon_sym_sql] = ACTIONS(3100), + [sym_int_literal] = ACTIONS(3100), + [sym_float_literal] = ACTIONS(3100), + [sym_rune_literal] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(3100), + [anon_sym_map_LBRACK] = ACTIONS(3100), + [anon_sym_chan] = ACTIONS(3100), + [anon_sym_thread] = ACTIONS(3100), + [anon_sym_atomic] = ACTIONS(3100), + [anon_sym_assert] = ACTIONS(3100), + [anon_sym_defer] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_DOLLARfor] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_POUND] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(3100), + [anon_sym_AT_LBRACK] = ACTIONS(3100), + [sym___double_quote] = ACTIONS(3100), + [sym___single_quote] = ACTIONS(3100), + [sym___c_double_quote] = ACTIONS(3100), + [sym___c_single_quote] = ACTIONS(3100), + [sym___r_double_quote] = ACTIONS(3100), + [sym___r_single_quote] = ACTIONS(3100), + }, + [1129] = { + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LF] = ACTIONS(3096), + [anon_sym_CR] = ACTIONS(3096), + [anon_sym_CR_LF] = ACTIONS(3096), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_const] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym___global] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_struct] = ACTIONS(3096), + [anon_sym_union] = ACTIONS(3096), + [anon_sym_pub] = ACTIONS(3096), + [anon_sym_mut] = ACTIONS(3096), + [anon_sym_enum] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_DASH_DASH] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3096), + [anon_sym_json_DOTdecode] = ACTIONS(3096), + [anon_sym_LBRACK2] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_LT_LT] = ACTIONS(3096), + [anon_sym_GT_GT] = ACTIONS(3096), + [anon_sym_GT_GT_GT] = ACTIONS(3096), + [anon_sym_AMP_CARET] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [sym_none] = ACTIONS(3096), + [sym_true] = ACTIONS(3096), + [sym_false] = ACTIONS(3096), + [sym_nil] = ACTIONS(3096), + [anon_sym_QMARK_DOT] = ACTIONS(3096), + [anon_sym_POUND_LBRACK] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_DOLLARif] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3096), + [anon_sym_rlock] = ACTIONS(3096), + [anon_sym_unsafe] = ACTIONS(3096), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3096), + [sym_float_literal] = ACTIONS(3096), + [sym_rune_literal] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3096), + [anon_sym_shared] = ACTIONS(3096), + [anon_sym_map_LBRACK] = ACTIONS(3096), + [anon_sym_chan] = ACTIONS(3096), + [anon_sym_thread] = ACTIONS(3096), + [anon_sym_atomic] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_defer] = ACTIONS(3096), + [anon_sym_goto] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_DOLLARfor] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3096), + [anon_sym_asm] = ACTIONS(3096), + [anon_sym_AT_LBRACK] = ACTIONS(3096), + [sym___double_quote] = ACTIONS(3096), + [sym___single_quote] = ACTIONS(3096), + [sym___c_double_quote] = ACTIONS(3096), + [sym___c_single_quote] = ACTIONS(3096), + [sym___r_double_quote] = ACTIONS(3096), + [sym___r_single_quote] = ACTIONS(3096), }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3159), - [anon_sym_CR] = ACTIONS(3159), - [anon_sym_CR_LF] = ACTIONS(3159), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym___global] = ACTIONS(3159), - [anon_sym_type] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_pub] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_interface] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [anon_sym_assert] = ACTIONS(3159), - [anon_sym_defer] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_DOLLARfor] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_POUND] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym_AT_LBRACK] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), + [1130] = { + [ts_builtin_sym_end] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym___global] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_union] = ACTIONS(3237), + [anon_sym_pub] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_defer] = ACTIONS(3237), + [anon_sym_goto] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_DOLLARfor] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_asm] = ACTIONS(3237), + [anon_sym_AT_LBRACK] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3237), + [sym___single_quote] = ACTIONS(3237), + [sym___c_double_quote] = ACTIONS(3237), + [sym___c_single_quote] = ACTIONS(3237), + [sym___r_double_quote] = ACTIONS(3237), + [sym___r_single_quote] = ACTIONS(3237), }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LF] = ACTIONS(3155), - [anon_sym_CR] = ACTIONS(3155), - [anon_sym_CR_LF] = ACTIONS(3155), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym___global] = ACTIONS(3155), - [anon_sym_type] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_pub] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_interface] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [anon_sym_assert] = ACTIONS(3155), - [anon_sym_defer] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_DOLLARfor] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_POUND] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym_AT_LBRACK] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), + [1131] = { + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LF] = ACTIONS(3092), + [anon_sym_CR] = ACTIONS(3092), + [anon_sym_CR_LF] = ACTIONS(3092), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_const] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym___global] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_fn] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT_EQ] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3092), + [anon_sym_union] = ACTIONS(3092), + [anon_sym_pub] = ACTIONS(3092), + [anon_sym_mut] = ACTIONS(3092), + [anon_sym_enum] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_go] = ACTIONS(3092), + [anon_sym_spawn] = ACTIONS(3092), + [anon_sym_json_DOTdecode] = ACTIONS(3092), + [anon_sym_LBRACK2] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_CARET] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_LT_LT] = ACTIONS(3092), + [anon_sym_GT_GT] = ACTIONS(3092), + [anon_sym_GT_GT_GT] = ACTIONS(3092), + [anon_sym_AMP_CARET] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [sym_none] = ACTIONS(3092), + [sym_true] = ACTIONS(3092), + [sym_false] = ACTIONS(3092), + [sym_nil] = ACTIONS(3092), + [anon_sym_QMARK_DOT] = ACTIONS(3092), + [anon_sym_POUND_LBRACK] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_DOLLARif] = ACTIONS(3092), + [anon_sym_is] = ACTIONS(3092), + [anon_sym_BANGis] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_BANGin] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_select] = ACTIONS(3092), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3092), + [anon_sym_sql] = ACTIONS(3092), + [sym_int_literal] = ACTIONS(3092), + [sym_float_literal] = ACTIONS(3092), + [sym_rune_literal] = ACTIONS(3092), + [anon_sym_AT] = ACTIONS(3092), + [anon_sym_shared] = ACTIONS(3092), + [anon_sym_map_LBRACK] = ACTIONS(3092), + [anon_sym_chan] = ACTIONS(3092), + [anon_sym_thread] = ACTIONS(3092), + [anon_sym_atomic] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_defer] = ACTIONS(3092), + [anon_sym_goto] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_DOLLARfor] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_POUND] = ACTIONS(3092), + [anon_sym_asm] = ACTIONS(3092), + [anon_sym_AT_LBRACK] = ACTIONS(3092), + [sym___double_quote] = ACTIONS(3092), + [sym___single_quote] = ACTIONS(3092), + [sym___c_double_quote] = ACTIONS(3092), + [sym___c_single_quote] = ACTIONS(3092), + [sym___r_double_quote] = ACTIONS(3092), + [sym___r_single_quote] = ACTIONS(3092), }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_identifier] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3151), - [anon_sym_CR] = ACTIONS(3151), - [anon_sym_CR_LF] = ACTIONS(3151), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym___global] = ACTIONS(3151), - [anon_sym_type] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_pub] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_interface] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [anon_sym_assert] = ACTIONS(3151), - [anon_sym_defer] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_DOLLARfor] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_POUND] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym_AT_LBRACK] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), + [1132] = { + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LF] = ACTIONS(3210), + [anon_sym_CR] = ACTIONS(3210), + [anon_sym_CR_LF] = ACTIONS(3210), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_COMMA] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym___global] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3210), + [anon_sym_BANG_EQ] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_pub] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3210), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3210), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3210), + [anon_sym_AMP_CARET] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_PIPE_PIPE] = ACTIONS(3210), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3210), + [anon_sym_POUND_LBRACK] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3210), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3210), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3210), + [sym_rune_literal] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3210), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [anon_sym_assert] = ACTIONS(3210), + [anon_sym_defer] = ACTIONS(3210), + [anon_sym_goto] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_DOLLARfor] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_asm] = ACTIONS(3210), + [anon_sym_AT_LBRACK] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3210), + [sym___single_quote] = ACTIONS(3210), + [sym___c_double_quote] = ACTIONS(3210), + [sym___c_single_quote] = ACTIONS(3210), + [sym___r_double_quote] = ACTIONS(3210), + [sym___r_single_quote] = ACTIONS(3210), }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [1133] = { + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_CR] = ACTIONS(3206), + [anon_sym_CR_LF] = ACTIONS(3206), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym___global] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_pub] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3206), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3206), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3206), + [anon_sym_AMP_CARET] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3206), + [anon_sym_POUND_LBRACK] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3206), + [sym_rune_literal] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3206), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_defer] = ACTIONS(3206), + [anon_sym_goto] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_DOLLARfor] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(3206), + [anon_sym_asm] = ACTIONS(3206), + [anon_sym_AT_LBRACK] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3206), + [sym___single_quote] = ACTIONS(3206), + [sym___c_double_quote] = ACTIONS(3206), + [sym___c_single_quote] = ACTIONS(3206), + [sym___r_double_quote] = ACTIONS(3206), + [sym___r_single_quote] = ACTIONS(3206), }, - [1062] = { - [ts_builtin_sym_end] = ACTIONS(3112), - [sym_identifier] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_CR] = ACTIONS(3114), - [anon_sym_CR_LF] = ACTIONS(3114), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_const] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym___global] = ACTIONS(3114), - [anon_sym_type] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_fn] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3114), - [anon_sym_union] = ACTIONS(3114), - [anon_sym_pub] = ACTIONS(3114), - [anon_sym_mut] = ACTIONS(3114), - [anon_sym_enum] = ACTIONS(3114), - [anon_sym_interface] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_go] = ACTIONS(3114), - [anon_sym_spawn] = ACTIONS(3114), - [anon_sym_json_DOTdecode] = ACTIONS(3114), - [anon_sym_LBRACK2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_LT_DASH] = ACTIONS(3114), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_GT_GT_GT] = ACTIONS(3114), - [anon_sym_AMP_CARET] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_or] = ACTIONS(3114), - [sym_none] = ACTIONS(3114), - [sym_true] = ACTIONS(3114), - [sym_false] = ACTIONS(3114), - [sym_nil] = ACTIONS(3114), - [anon_sym_QMARK_DOT] = ACTIONS(3114), - [anon_sym_POUND_LBRACK] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_DOLLARif] = ACTIONS(3114), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3114), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_BANGin] = ACTIONS(3114), - [anon_sym_match] = ACTIONS(3114), - [anon_sym_select] = ACTIONS(3114), - [anon_sym_lock] = ACTIONS(3114), - [anon_sym_rlock] = ACTIONS(3114), - [anon_sym_unsafe] = ACTIONS(3114), - [anon_sym_sql] = ACTIONS(3114), - [sym_int_literal] = ACTIONS(3114), - [sym_float_literal] = ACTIONS(3114), - [sym_rune_literal] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_shared] = ACTIONS(3114), - [anon_sym_map_LBRACK] = ACTIONS(3114), - [anon_sym_chan] = ACTIONS(3114), - [anon_sym_thread] = ACTIONS(3114), - [anon_sym_atomic] = ACTIONS(3114), - [anon_sym_assert] = ACTIONS(3114), - [anon_sym_defer] = ACTIONS(3114), - [anon_sym_goto] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_DOLLARfor] = ACTIONS(3114), - [anon_sym_for] = ACTIONS(3114), - [anon_sym_POUND] = ACTIONS(3114), - [anon_sym_asm] = ACTIONS(3114), - [anon_sym_AT_LBRACK] = ACTIONS(3114), - [sym___double_quote] = ACTIONS(3114), - [sym___single_quote] = ACTIONS(3114), - [sym___c_double_quote] = ACTIONS(3114), - [sym___c_single_quote] = ACTIONS(3114), - [sym___r_double_quote] = ACTIONS(3114), - [sym___r_single_quote] = ACTIONS(3114), + [1134] = { + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3122), + [anon_sym_CR] = ACTIONS(3122), + [anon_sym_CR_LF] = ACTIONS(3122), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3122), + [anon_sym_as] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_COMMA] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3122), + [anon_sym___global] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_fn] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_PERCENT] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3122), + [anon_sym_LT_EQ] = ACTIONS(3122), + [anon_sym_GT_EQ] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_union] = ACTIONS(3122), + [anon_sym_pub] = ACTIONS(3122), + [anon_sym_mut] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3122), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_go] = ACTIONS(3122), + [anon_sym_spawn] = ACTIONS(3122), + [anon_sym_json_DOTdecode] = ACTIONS(3122), + [anon_sym_LBRACK2] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_LT_DASH] = ACTIONS(3122), + [anon_sym_LT_LT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3122), + [anon_sym_GT_GT_GT] = ACTIONS(3122), + [anon_sym_AMP_CARET] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_PIPE_PIPE] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(3122), + [sym_none] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_nil] = ACTIONS(3122), + [anon_sym_QMARK_DOT] = ACTIONS(3122), + [anon_sym_POUND_LBRACK] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_DOLLARif] = ACTIONS(3122), + [anon_sym_is] = ACTIONS(3122), + [anon_sym_BANGis] = ACTIONS(3122), + [anon_sym_in] = ACTIONS(3122), + [anon_sym_BANGin] = ACTIONS(3122), + [anon_sym_match] = ACTIONS(3122), + [anon_sym_select] = ACTIONS(3122), + [anon_sym_lock] = ACTIONS(3122), + [anon_sym_rlock] = ACTIONS(3122), + [anon_sym_unsafe] = ACTIONS(3122), + [anon_sym_sql] = ACTIONS(3122), + [sym_int_literal] = ACTIONS(3122), + [sym_float_literal] = ACTIONS(3122), + [sym_rune_literal] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3122), + [anon_sym_shared] = ACTIONS(3122), + [anon_sym_map_LBRACK] = ACTIONS(3122), + [anon_sym_chan] = ACTIONS(3122), + [anon_sym_thread] = ACTIONS(3122), + [anon_sym_atomic] = ACTIONS(3122), + [anon_sym_assert] = ACTIONS(3122), + [anon_sym_defer] = ACTIONS(3122), + [anon_sym_goto] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_DOLLARfor] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_POUND] = ACTIONS(3122), + [anon_sym_asm] = ACTIONS(3122), + [anon_sym_AT_LBRACK] = ACTIONS(3122), + [sym___double_quote] = ACTIONS(3122), + [sym___single_quote] = ACTIONS(3122), + [sym___c_double_quote] = ACTIONS(3122), + [sym___c_single_quote] = ACTIONS(3122), + [sym___r_double_quote] = ACTIONS(3122), + [sym___r_single_quote] = ACTIONS(3122), }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(3100), - [sym_identifier] = ACTIONS(3102), - [anon_sym_LF] = ACTIONS(3102), - [anon_sym_CR] = ACTIONS(3102), - [anon_sym_CR_LF] = ACTIONS(3102), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_COMMA] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym___global] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_fn] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_LT_EQ] = ACTIONS(3102), - [anon_sym_GT_EQ] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_pub] = ACTIONS(3102), - [anon_sym_mut] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [anon_sym_QMARK] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_go] = ACTIONS(3102), - [anon_sym_spawn] = ACTIONS(3102), - [anon_sym_json_DOTdecode] = ACTIONS(3102), - [anon_sym_LBRACK2] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_LT_DASH] = ACTIONS(3102), - [anon_sym_LT_LT] = ACTIONS(3102), - [anon_sym_GT_GT] = ACTIONS(3102), - [anon_sym_GT_GT_GT] = ACTIONS(3102), - [anon_sym_AMP_CARET] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3102), - [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_or] = ACTIONS(3102), - [sym_none] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_nil] = ACTIONS(3102), - [anon_sym_QMARK_DOT] = ACTIONS(3102), - [anon_sym_POUND_LBRACK] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_DOLLARif] = ACTIONS(3102), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_BANGin] = ACTIONS(3102), - [anon_sym_match] = ACTIONS(3102), - [anon_sym_select] = ACTIONS(3102), - [anon_sym_lock] = ACTIONS(3102), - [anon_sym_rlock] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(3102), - [anon_sym_sql] = ACTIONS(3102), - [sym_int_literal] = ACTIONS(3102), - [sym_float_literal] = ACTIONS(3102), - [sym_rune_literal] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_shared] = ACTIONS(3102), - [anon_sym_map_LBRACK] = ACTIONS(3102), - [anon_sym_chan] = ACTIONS(3102), - [anon_sym_thread] = ACTIONS(3102), - [anon_sym_atomic] = ACTIONS(3102), - [anon_sym_assert] = ACTIONS(3102), - [anon_sym_defer] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_DOLLARfor] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_POUND] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym_AT_LBRACK] = ACTIONS(3102), - [sym___double_quote] = ACTIONS(3102), - [sym___single_quote] = ACTIONS(3102), - [sym___c_double_quote] = ACTIONS(3102), - [sym___c_single_quote] = ACTIONS(3102), - [sym___r_double_quote] = ACTIONS(3102), - [sym___r_single_quote] = ACTIONS(3102), + [1135] = { + [ts_builtin_sym_end] = ACTIONS(3082), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LF] = ACTIONS(3084), + [anon_sym_CR] = ACTIONS(3084), + [anon_sym_CR_LF] = ACTIONS(3084), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_const] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym___global] = ACTIONS(3084), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_union] = ACTIONS(3084), + [anon_sym_pub] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_enum] = ACTIONS(3084), + [anon_sym_interface] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3084), + [anon_sym_POUND_LBRACK] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3084), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_AT] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), + [anon_sym_assert] = ACTIONS(3084), + [anon_sym_defer] = ACTIONS(3084), + [anon_sym_goto] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_DOLLARfor] = ACTIONS(3084), + [anon_sym_for] = ACTIONS(3084), + [anon_sym_POUND] = ACTIONS(3084), + [anon_sym_asm] = ACTIONS(3084), + [anon_sym_AT_LBRACK] = ACTIONS(3084), + [sym___double_quote] = ACTIONS(3084), + [sym___single_quote] = ACTIONS(3084), + [sym___c_double_quote] = ACTIONS(3084), + [sym___c_single_quote] = ACTIONS(3084), + [sym___r_double_quote] = ACTIONS(3084), + [sym___r_single_quote] = ACTIONS(3084), }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym___global] = ACTIONS(3070), - [anon_sym_type] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_union] = ACTIONS(3070), - [anon_sym_pub] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [anon_sym_assert] = ACTIONS(3070), - [anon_sym_defer] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_DOLLARfor] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_asm] = ACTIONS(3070), - [anon_sym_AT_LBRACK] = ACTIONS(3070), - [sym___double_quote] = ACTIONS(3070), - [sym___single_quote] = ACTIONS(3070), - [sym___c_double_quote] = ACTIONS(3070), - [sym___c_single_quote] = ACTIONS(3070), - [sym___r_double_quote] = ACTIONS(3070), - [sym___r_single_quote] = ACTIONS(3070), + [1136] = { + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LF] = ACTIONS(3186), + [anon_sym_CR] = ACTIONS(3186), + [anon_sym_CR_LF] = ACTIONS(3186), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym___global] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3186), + [anon_sym_pub] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3186), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3186), + [anon_sym_AMP_CARET] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3186), + [anon_sym_POUND_LBRACK] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3186), + [sym_rune_literal] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3186), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [anon_sym_assert] = ACTIONS(3186), + [anon_sym_defer] = ACTIONS(3186), + [anon_sym_goto] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_DOLLARfor] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3186), + [anon_sym_asm] = ACTIONS(3186), + [anon_sym_AT_LBRACK] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3186), + [sym___single_quote] = ACTIONS(3186), + [sym___c_double_quote] = ACTIONS(3186), + [sym___c_single_quote] = ACTIONS(3186), + [sym___r_double_quote] = ACTIONS(3186), + [sym___r_single_quote] = ACTIONS(3186), }, - [1065] = { - [ts_builtin_sym_end] = ACTIONS(3060), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_const] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym___global] = ACTIONS(3062), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_union] = ACTIONS(3062), - [anon_sym_pub] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_enum] = ACTIONS(3062), - [anon_sym_interface] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [anon_sym_assert] = ACTIONS(3062), - [anon_sym_defer] = ACTIONS(3062), - [anon_sym_goto] = ACTIONS(3062), - [anon_sym_break] = ACTIONS(3062), - [anon_sym_continue] = ACTIONS(3062), - [anon_sym_return] = ACTIONS(3062), - [anon_sym_DOLLARfor] = ACTIONS(3062), - [anon_sym_for] = ACTIONS(3062), - [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_asm] = ACTIONS(3062), - [anon_sym_AT_LBRACK] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), + [1137] = { + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym___global] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_pub] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + [sym_rune_literal] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_defer] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_DOLLARfor] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym_AT_LBRACK] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3202), + [sym___single_quote] = ACTIONS(3202), + [sym___c_double_quote] = ACTIONS(3202), + [sym___c_single_quote] = ACTIONS(3202), + [sym___r_double_quote] = ACTIONS(3202), + [sym___r_single_quote] = ACTIONS(3202), }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [1138] = { + [ts_builtin_sym_end] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3088), + [anon_sym_LF] = ACTIONS(3088), + [anon_sym_CR] = ACTIONS(3088), + [anon_sym_CR_LF] = ACTIONS(3088), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym___global] = ACTIONS(3088), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_fn] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_EQ_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_union] = ACTIONS(3088), + [anon_sym_pub] = ACTIONS(3088), + [anon_sym_mut] = ACTIONS(3088), + [anon_sym_enum] = ACTIONS(3088), + [anon_sym_interface] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3088), + [anon_sym_json_DOTdecode] = ACTIONS(3088), + [anon_sym_LBRACK2] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_CARET] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_LT_LT] = ACTIONS(3088), + [anon_sym_GT_GT] = ACTIONS(3088), + [anon_sym_GT_GT_GT] = ACTIONS(3088), + [anon_sym_AMP_CARET] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_or] = ACTIONS(3088), + [sym_none] = ACTIONS(3088), + [sym_true] = ACTIONS(3088), + [sym_false] = ACTIONS(3088), + [sym_nil] = ACTIONS(3088), + [anon_sym_QMARK_DOT] = ACTIONS(3088), + [anon_sym_POUND_LBRACK] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_DOLLARif] = ACTIONS(3088), + [anon_sym_is] = ACTIONS(3088), + [anon_sym_BANGis] = ACTIONS(3088), + [anon_sym_in] = ACTIONS(3088), + [anon_sym_BANGin] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3088), + [anon_sym_lock] = ACTIONS(3088), + [anon_sym_rlock] = ACTIONS(3088), + [anon_sym_unsafe] = ACTIONS(3088), + [anon_sym_sql] = ACTIONS(3088), + [sym_int_literal] = ACTIONS(3088), + [sym_float_literal] = ACTIONS(3088), + [sym_rune_literal] = ACTIONS(3088), + [anon_sym_AT] = ACTIONS(3088), + [anon_sym_shared] = ACTIONS(3088), + [anon_sym_map_LBRACK] = ACTIONS(3088), + [anon_sym_chan] = ACTIONS(3088), + [anon_sym_thread] = ACTIONS(3088), + [anon_sym_atomic] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_defer] = ACTIONS(3088), + [anon_sym_goto] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_DOLLARfor] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_POUND] = ACTIONS(3088), + [anon_sym_asm] = ACTIONS(3088), + [anon_sym_AT_LBRACK] = ACTIONS(3088), + [sym___double_quote] = ACTIONS(3088), + [sym___single_quote] = ACTIONS(3088), + [sym___c_double_quote] = ACTIONS(3088), + [sym___c_single_quote] = ACTIONS(3088), + [sym___r_double_quote] = ACTIONS(3088), + [sym___r_single_quote] = ACTIONS(3088), }, - [1067] = { - [ts_builtin_sym_end] = ACTIONS(3032), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LF] = ACTIONS(3034), - [anon_sym_CR] = ACTIONS(3034), - [anon_sym_CR_LF] = ACTIONS(3034), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3034), - [anon_sym_as] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym___global] = ACTIONS(3034), - [anon_sym_type] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_PERCENT] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_GT] = ACTIONS(3034), - [anon_sym_EQ_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_union] = ACTIONS(3034), - [anon_sym_pub] = ACTIONS(3034), - [anon_sym_mut] = ACTIONS(3034), - [anon_sym_enum] = ACTIONS(3034), - [anon_sym_interface] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_QMARK] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_go] = ACTIONS(3034), - [anon_sym_spawn] = ACTIONS(3034), - [anon_sym_json_DOTdecode] = ACTIONS(3034), - [anon_sym_LBRACK2] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_LT_DASH] = ACTIONS(3034), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_GT_GT_GT] = ACTIONS(3034), - [anon_sym_AMP_CARET] = ACTIONS(3034), - [anon_sym_AMP_AMP] = ACTIONS(3034), - [anon_sym_PIPE_PIPE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3034), - [sym_none] = ACTIONS(3034), - [sym_true] = ACTIONS(3034), - [sym_false] = ACTIONS(3034), - [sym_nil] = ACTIONS(3034), - [anon_sym_QMARK_DOT] = ACTIONS(3034), - [anon_sym_POUND_LBRACK] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_DOLLARif] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_BANGis] = ACTIONS(3034), - [anon_sym_in] = ACTIONS(3034), - [anon_sym_BANGin] = ACTIONS(3034), - [anon_sym_match] = ACTIONS(3034), - [anon_sym_select] = ACTIONS(3034), - [anon_sym_lock] = ACTIONS(3034), - [anon_sym_rlock] = ACTIONS(3034), - [anon_sym_unsafe] = ACTIONS(3034), - [anon_sym_sql] = ACTIONS(3034), - [sym_int_literal] = ACTIONS(3034), - [sym_float_literal] = ACTIONS(3034), - [sym_rune_literal] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3034), - [anon_sym_shared] = ACTIONS(3034), - [anon_sym_map_LBRACK] = ACTIONS(3034), - [anon_sym_chan] = ACTIONS(3034), - [anon_sym_thread] = ACTIONS(3034), - [anon_sym_atomic] = ACTIONS(3034), - [anon_sym_assert] = ACTIONS(3034), - [anon_sym_defer] = ACTIONS(3034), - [anon_sym_goto] = ACTIONS(3034), - [anon_sym_break] = ACTIONS(3034), - [anon_sym_continue] = ACTIONS(3034), - [anon_sym_return] = ACTIONS(3034), - [anon_sym_DOLLARfor] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(3034), - [anon_sym_POUND] = ACTIONS(3034), - [anon_sym_asm] = ACTIONS(3034), - [anon_sym_AT_LBRACK] = ACTIONS(3034), - [sym___double_quote] = ACTIONS(3034), - [sym___single_quote] = ACTIONS(3034), - [sym___c_double_quote] = ACTIONS(3034), - [sym___c_single_quote] = ACTIONS(3034), - [sym___r_double_quote] = ACTIONS(3034), - [sym___r_single_quote] = ACTIONS(3034), + [1139] = { + [sym_reference_expression] = STATE(4642), + [sym_type_reference_expression] = STATE(1447), + [sym_plain_type] = STATE(1518), + [sym__plain_type_without_special] = STATE(1471), + [sym_anon_struct_type] = STATE(1469), + [sym_multi_return_type] = STATE(1471), + [sym_result_type] = STATE(1471), + [sym_option_type] = STATE(1471), + [sym_qualified_type] = STATE(1447), + [sym_fixed_array_type] = STATE(1469), + [sym_array_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_wrong_pointer_type] = STATE(1469), + [sym_map_type] = STATE(1469), + [sym_channel_type] = STATE(1469), + [sym_shared_type] = STATE(1469), + [sym_thread_type] = STATE(1469), + [sym_atomic_type] = STATE(1469), + [sym_generic_type] = STATE(1469), + [sym_function_type] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(3535), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym___global] = ACTIONS(615), + [anon_sym_type] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3543), + [anon_sym_union] = ACTIONS(615), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_enum] = ACTIONS(615), + [anon_sym_interface] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_LT_DASH] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(3553), + [anon_sym_map_LBRACK] = ACTIONS(3555), + [anon_sym_chan] = ACTIONS(3557), + [anon_sym_thread] = ACTIONS(3559), + [anon_sym_atomic] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_goto] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_DOLLARfor] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(615), + [anon_sym_asm] = ACTIONS(615), + [anon_sym_AT_LBRACK] = ACTIONS(615), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LF] = ACTIONS(3026), - [anon_sym_CR] = ACTIONS(3026), - [anon_sym_CR_LF] = ACTIONS(3026), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3026), - [anon_sym_const] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym___global] = ACTIONS(3026), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_fn] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_EQ_EQ] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3026), - [anon_sym_GT_EQ] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_struct] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(3026), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_mut] = ACTIONS(3026), - [anon_sym_enum] = ACTIONS(3026), - [anon_sym_interface] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_go] = ACTIONS(3026), - [anon_sym_spawn] = ACTIONS(3026), - [anon_sym_json_DOTdecode] = ACTIONS(3026), - [anon_sym_LBRACK2] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3026), - [anon_sym_CARET] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_LT_LT] = ACTIONS(3026), - [anon_sym_GT_GT] = ACTIONS(3026), - [anon_sym_GT_GT_GT] = ACTIONS(3026), - [anon_sym_AMP_CARET] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_or] = ACTIONS(3026), - [sym_none] = ACTIONS(3026), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_nil] = ACTIONS(3026), - [anon_sym_QMARK_DOT] = ACTIONS(3026), - [anon_sym_POUND_LBRACK] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_DOLLARif] = ACTIONS(3026), - [anon_sym_is] = ACTIONS(3026), - [anon_sym_BANGis] = ACTIONS(3026), - [anon_sym_in] = ACTIONS(3026), - [anon_sym_BANGin] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_select] = ACTIONS(3026), - [anon_sym_lock] = ACTIONS(3026), - [anon_sym_rlock] = ACTIONS(3026), - [anon_sym_unsafe] = ACTIONS(3026), - [anon_sym_sql] = ACTIONS(3026), - [sym_int_literal] = ACTIONS(3026), - [sym_float_literal] = ACTIONS(3026), - [sym_rune_literal] = ACTIONS(3026), - [anon_sym_AT] = ACTIONS(3026), - [anon_sym_shared] = ACTIONS(3026), - [anon_sym_map_LBRACK] = ACTIONS(3026), - [anon_sym_chan] = ACTIONS(3026), - [anon_sym_thread] = ACTIONS(3026), - [anon_sym_atomic] = ACTIONS(3026), - [anon_sym_assert] = ACTIONS(3026), - [anon_sym_defer] = ACTIONS(3026), - [anon_sym_goto] = ACTIONS(3026), - [anon_sym_break] = ACTIONS(3026), - [anon_sym_continue] = ACTIONS(3026), - [anon_sym_return] = ACTIONS(3026), - [anon_sym_DOLLARfor] = ACTIONS(3026), - [anon_sym_for] = ACTIONS(3026), - [anon_sym_POUND] = ACTIONS(3026), - [anon_sym_asm] = ACTIONS(3026), - [anon_sym_AT_LBRACK] = ACTIONS(3026), - [sym___double_quote] = ACTIONS(3026), - [sym___single_quote] = ACTIONS(3026), - [sym___c_double_quote] = ACTIONS(3026), - [sym___c_single_quote] = ACTIONS(3026), - [sym___r_double_quote] = ACTIONS(3026), - [sym___r_single_quote] = ACTIONS(3026), + [1140] = { + [sym_reference_expression] = STATE(4642), + [sym_type_reference_expression] = STATE(1447), + [sym_plain_type] = STATE(1510), + [sym__plain_type_without_special] = STATE(1471), + [sym_anon_struct_type] = STATE(1469), + [sym_multi_return_type] = STATE(1471), + [sym_result_type] = STATE(1471), + [sym_option_type] = STATE(1471), + [sym_qualified_type] = STATE(1447), + [sym_fixed_array_type] = STATE(1469), + [sym_array_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_wrong_pointer_type] = STATE(1469), + [sym_map_type] = STATE(1469), + [sym_channel_type] = STATE(1469), + [sym_shared_type] = STATE(1469), + [sym_thread_type] = STATE(1469), + [sym_atomic_type] = STATE(1469), + [sym_generic_type] = STATE(1469), + [sym_function_type] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(3535), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3543), + [anon_sym_union] = ACTIONS(623), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_LT_DASH] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3553), + [anon_sym_map_LBRACK] = ACTIONS(3555), + [anon_sym_chan] = ACTIONS(3557), + [anon_sym_thread] = ACTIONS(3559), + [anon_sym_atomic] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_goto] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_DOLLARfor] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(623), + [anon_sym_AT_LBRACK] = ACTIONS(623), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), }, - [1069] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LF] = ACTIONS(2954), - [anon_sym_CR] = ACTIONS(2954), - [anon_sym_CR_LF] = ACTIONS(2954), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2954), - [anon_sym_as] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_const] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym___global] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_fn] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_GT] = ACTIONS(2954), - [anon_sym_EQ_EQ] = ACTIONS(2954), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_LT_EQ] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2954), - [anon_sym_union] = ACTIONS(2954), - [anon_sym_pub] = ACTIONS(2954), - [anon_sym_mut] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_QMARK] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_go] = ACTIONS(2954), - [anon_sym_spawn] = ACTIONS(2954), - [anon_sym_json_DOTdecode] = ACTIONS(2954), - [anon_sym_LBRACK2] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_CARET] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_LT_DASH] = ACTIONS(2954), - [anon_sym_LT_LT] = ACTIONS(2954), - [anon_sym_GT_GT] = ACTIONS(2954), - [anon_sym_GT_GT_GT] = ACTIONS(2954), - [anon_sym_AMP_CARET] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_PIPE_PIPE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2954), - [sym_none] = ACTIONS(2954), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_nil] = ACTIONS(2954), - [anon_sym_QMARK_DOT] = ACTIONS(2954), - [anon_sym_POUND_LBRACK] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_DOLLARif] = ACTIONS(2954), - [anon_sym_is] = ACTIONS(2954), - [anon_sym_BANGis] = ACTIONS(2954), - [anon_sym_in] = ACTIONS(2954), - [anon_sym_BANGin] = ACTIONS(2954), - [anon_sym_match] = ACTIONS(2954), - [anon_sym_select] = ACTIONS(2954), - [anon_sym_lock] = ACTIONS(2954), - [anon_sym_rlock] = ACTIONS(2954), - [anon_sym_unsafe] = ACTIONS(2954), - [anon_sym_sql] = ACTIONS(2954), - [sym_int_literal] = ACTIONS(2954), - [sym_float_literal] = ACTIONS(2954), - [sym_rune_literal] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2954), - [anon_sym_shared] = ACTIONS(2954), - [anon_sym_map_LBRACK] = ACTIONS(2954), - [anon_sym_chan] = ACTIONS(2954), - [anon_sym_thread] = ACTIONS(2954), - [anon_sym_atomic] = ACTIONS(2954), - [anon_sym_assert] = ACTIONS(2954), - [anon_sym_defer] = ACTIONS(2954), - [anon_sym_goto] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_DOLLARfor] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2954), - [anon_sym_asm] = ACTIONS(2954), - [anon_sym_AT_LBRACK] = ACTIONS(2954), - [sym___double_quote] = ACTIONS(2954), - [sym___single_quote] = ACTIONS(2954), - [sym___c_double_quote] = ACTIONS(2954), - [sym___c_single_quote] = ACTIONS(2954), - [sym___r_double_quote] = ACTIONS(2954), - [sym___r_single_quote] = ACTIONS(2954), + [1141] = { + [sym_reference_expression] = STATE(4642), + [sym_type_reference_expression] = STATE(1447), + [sym_plain_type] = STATE(1506), + [sym__plain_type_without_special] = STATE(1471), + [sym_anon_struct_type] = STATE(1469), + [sym_multi_return_type] = STATE(1471), + [sym_result_type] = STATE(1471), + [sym_option_type] = STATE(1471), + [sym_qualified_type] = STATE(1447), + [sym_fixed_array_type] = STATE(1469), + [sym_array_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_wrong_pointer_type] = STATE(1469), + [sym_map_type] = STATE(1469), + [sym_channel_type] = STATE(1469), + [sym_shared_type] = STATE(1469), + [sym_thread_type] = STATE(1469), + [sym_atomic_type] = STATE(1469), + [sym_generic_type] = STATE(1469), + [sym_function_type] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_identifier] = ACTIONS(3535), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym___global] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3543), + [anon_sym_union] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_interface] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3545), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_LT_DASH] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3553), + [anon_sym_map_LBRACK] = ACTIONS(3555), + [anon_sym_chan] = ACTIONS(3557), + [anon_sym_thread] = ACTIONS(3559), + [anon_sym_atomic] = ACTIONS(3561), + [anon_sym_assert] = ACTIONS(585), + [anon_sym_defer] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_DOLLARfor] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_asm] = ACTIONS(585), + [anon_sym_AT_LBRACK] = ACTIONS(585), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, - [1070] = { - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2950), - [anon_sym_CR] = ACTIONS(2950), - [anon_sym_CR_LF] = ACTIONS(2950), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_as] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2950), - [anon_sym_const] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym___global] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_fn] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2950), - [anon_sym_LT_EQ] = ACTIONS(2950), - [anon_sym_GT_EQ] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_struct] = ACTIONS(2950), - [anon_sym_union] = ACTIONS(2950), - [anon_sym_pub] = ACTIONS(2950), - [anon_sym_mut] = ACTIONS(2950), - [anon_sym_enum] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2950), - [anon_sym_DASH_DASH] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_go] = ACTIONS(2950), - [anon_sym_spawn] = ACTIONS(2950), - [anon_sym_json_DOTdecode] = ACTIONS(2950), - [anon_sym_LBRACK2] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2950), - [anon_sym_CARET] = ACTIONS(2950), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_GT_GT_GT] = ACTIONS(2950), - [anon_sym_AMP_CARET] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_or] = ACTIONS(2950), - [sym_none] = ACTIONS(2950), - [sym_true] = ACTIONS(2950), - [sym_false] = ACTIONS(2950), - [sym_nil] = ACTIONS(2950), - [anon_sym_QMARK_DOT] = ACTIONS(2950), - [anon_sym_POUND_LBRACK] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_DOLLARif] = ACTIONS(2950), - [anon_sym_is] = ACTIONS(2950), - [anon_sym_BANGis] = ACTIONS(2950), - [anon_sym_in] = ACTIONS(2950), - [anon_sym_BANGin] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_select] = ACTIONS(2950), - [anon_sym_lock] = ACTIONS(2950), - [anon_sym_rlock] = ACTIONS(2950), - [anon_sym_unsafe] = ACTIONS(2950), - [anon_sym_sql] = ACTIONS(2950), - [sym_int_literal] = ACTIONS(2950), - [sym_float_literal] = ACTIONS(2950), - [sym_rune_literal] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_shared] = ACTIONS(2950), - [anon_sym_map_LBRACK] = ACTIONS(2950), - [anon_sym_chan] = ACTIONS(2950), - [anon_sym_thread] = ACTIONS(2950), - [anon_sym_atomic] = ACTIONS(2950), - [anon_sym_assert] = ACTIONS(2950), - [anon_sym_defer] = ACTIONS(2950), - [anon_sym_goto] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_DOLLARfor] = ACTIONS(2950), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2950), - [anon_sym_asm] = ACTIONS(2950), - [anon_sym_AT_LBRACK] = ACTIONS(2950), - [sym___double_quote] = ACTIONS(2950), - [sym___single_quote] = ACTIONS(2950), - [sym___c_double_quote] = ACTIONS(2950), - [sym___c_single_quote] = ACTIONS(2950), - [sym___r_double_quote] = ACTIONS(2950), - [sym___r_single_quote] = ACTIONS(2950), + [1142] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1071] = { - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2946), - [anon_sym_LF] = ACTIONS(2946), - [anon_sym_CR] = ACTIONS(2946), - [anon_sym_CR_LF] = ACTIONS(2946), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2946), - [anon_sym_as] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(2946), - [anon_sym_const] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym___global] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_fn] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_PERCENT] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_EQ_EQ] = ACTIONS(2946), - [anon_sym_BANG_EQ] = ACTIONS(2946), - [anon_sym_LT_EQ] = ACTIONS(2946), - [anon_sym_GT_EQ] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_struct] = ACTIONS(2946), - [anon_sym_union] = ACTIONS(2946), - [anon_sym_pub] = ACTIONS(2946), - [anon_sym_mut] = ACTIONS(2946), - [anon_sym_enum] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2946), - [anon_sym_DASH_DASH] = ACTIONS(2946), - [anon_sym_QMARK] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_go] = ACTIONS(2946), - [anon_sym_spawn] = ACTIONS(2946), - [anon_sym_json_DOTdecode] = ACTIONS(2946), - [anon_sym_LBRACK2] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2946), - [anon_sym_CARET] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_LT_DASH] = ACTIONS(2946), - [anon_sym_LT_LT] = ACTIONS(2946), - [anon_sym_GT_GT] = ACTIONS(2946), - [anon_sym_GT_GT_GT] = ACTIONS(2946), - [anon_sym_AMP_CARET] = ACTIONS(2946), - [anon_sym_AMP_AMP] = ACTIONS(2946), - [anon_sym_PIPE_PIPE] = ACTIONS(2946), - [anon_sym_or] = ACTIONS(2946), - [sym_none] = ACTIONS(2946), - [sym_true] = ACTIONS(2946), - [sym_false] = ACTIONS(2946), - [sym_nil] = ACTIONS(2946), - [anon_sym_QMARK_DOT] = ACTIONS(2946), - [anon_sym_POUND_LBRACK] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_DOLLARif] = ACTIONS(2946), - [anon_sym_is] = ACTIONS(2946), - [anon_sym_BANGis] = ACTIONS(2946), - [anon_sym_in] = ACTIONS(2946), - [anon_sym_BANGin] = ACTIONS(2946), - [anon_sym_match] = ACTIONS(2946), - [anon_sym_select] = ACTIONS(2946), - [anon_sym_lock] = ACTIONS(2946), - [anon_sym_rlock] = ACTIONS(2946), - [anon_sym_unsafe] = ACTIONS(2946), - [anon_sym_sql] = ACTIONS(2946), - [sym_int_literal] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2946), - [sym_rune_literal] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2946), - [anon_sym_shared] = ACTIONS(2946), - [anon_sym_map_LBRACK] = ACTIONS(2946), - [anon_sym_chan] = ACTIONS(2946), - [anon_sym_thread] = ACTIONS(2946), - [anon_sym_atomic] = ACTIONS(2946), - [anon_sym_assert] = ACTIONS(2946), - [anon_sym_defer] = ACTIONS(2946), - [anon_sym_goto] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_DOLLARfor] = ACTIONS(2946), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2946), - [anon_sym_asm] = ACTIONS(2946), - [anon_sym_AT_LBRACK] = ACTIONS(2946), - [sym___double_quote] = ACTIONS(2946), - [sym___single_quote] = ACTIONS(2946), - [sym___c_double_quote] = ACTIONS(2946), - [sym___c_single_quote] = ACTIONS(2946), - [sym___r_double_quote] = ACTIONS(2946), - [sym___r_single_quote] = ACTIONS(2946), + [1143] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_CR] = ACTIONS(563), + [anon_sym_CR_LF] = ACTIONS(563), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3563), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1072] = { - [ts_builtin_sym_end] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2942), - [anon_sym_LF] = ACTIONS(2942), - [anon_sym_CR] = ACTIONS(2942), - [anon_sym_CR_LF] = ACTIONS(2942), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2942), - [anon_sym_as] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym___global] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_fn] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_GT] = ACTIONS(2942), - [anon_sym_EQ_EQ] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_struct] = ACTIONS(2942), - [anon_sym_union] = ACTIONS(2942), - [anon_sym_pub] = ACTIONS(2942), - [anon_sym_mut] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_QMARK] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_go] = ACTIONS(2942), - [anon_sym_spawn] = ACTIONS(2942), - [anon_sym_json_DOTdecode] = ACTIONS(2942), - [anon_sym_LBRACK2] = ACTIONS(2942), - [anon_sym_TILDE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_LT_DASH] = ACTIONS(2942), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_GT_GT_GT] = ACTIONS(2942), - [anon_sym_AMP_CARET] = ACTIONS(2942), - [anon_sym_AMP_AMP] = ACTIONS(2942), - [anon_sym_PIPE_PIPE] = ACTIONS(2942), - [anon_sym_or] = ACTIONS(2942), - [sym_none] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_nil] = ACTIONS(2942), - [anon_sym_QMARK_DOT] = ACTIONS(2942), - [anon_sym_POUND_LBRACK] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_DOLLARif] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_BANGis] = ACTIONS(2942), - [anon_sym_in] = ACTIONS(2942), - [anon_sym_BANGin] = ACTIONS(2942), - [anon_sym_match] = ACTIONS(2942), - [anon_sym_select] = ACTIONS(2942), - [anon_sym_lock] = ACTIONS(2942), - [anon_sym_rlock] = ACTIONS(2942), - [anon_sym_unsafe] = ACTIONS(2942), - [anon_sym_sql] = ACTIONS(2942), - [sym_int_literal] = ACTIONS(2942), - [sym_float_literal] = ACTIONS(2942), - [sym_rune_literal] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2942), - [anon_sym_shared] = ACTIONS(2942), - [anon_sym_map_LBRACK] = ACTIONS(2942), - [anon_sym_chan] = ACTIONS(2942), - [anon_sym_thread] = ACTIONS(2942), - [anon_sym_atomic] = ACTIONS(2942), - [anon_sym_assert] = ACTIONS(2942), - [anon_sym_defer] = ACTIONS(2942), - [anon_sym_goto] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_DOLLARfor] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2942), - [anon_sym_asm] = ACTIONS(2942), - [anon_sym_AT_LBRACK] = ACTIONS(2942), - [sym___double_quote] = ACTIONS(2942), - [sym___single_quote] = ACTIONS(2942), - [sym___c_double_quote] = ACTIONS(2942), - [sym___c_single_quote] = ACTIONS(2942), - [sym___r_double_quote] = ACTIONS(2942), - [sym___r_single_quote] = ACTIONS(2942), + [1144] = { + [sym_reference_expression] = STATE(4468), + [sym_type_reference_expression] = STATE(1706), + [sym_plain_type] = STATE(1676), + [sym__plain_type_without_special] = STATE(1705), + [sym_anon_struct_type] = STATE(1704), + [sym_multi_return_type] = STATE(1705), + [sym_result_type] = STATE(1705), + [sym_option_type] = STATE(1705), + [sym_qualified_type] = STATE(1706), + [sym_fixed_array_type] = STATE(1704), + [sym_array_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_wrong_pointer_type] = STATE(1704), + [sym_map_type] = STATE(1704), + [sym_channel_type] = STATE(1704), + [sym_shared_type] = STATE(1704), + [sym_thread_type] = STATE(1704), + [sym_atomic_type] = STATE(1704), + [sym_generic_type] = STATE(1704), + [sym_function_type] = STATE(1704), + [sym_identifier] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(3567), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3569), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3573), + [anon_sym_COLON] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(3575), + [anon_sym_BANG] = ACTIONS(3577), + [anon_sym_LBRACK2] = ACTIONS(3579), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(3583), + [anon_sym_map_LBRACK] = ACTIONS(3585), + [anon_sym_chan] = ACTIONS(3587), + [anon_sym_thread] = ACTIONS(3589), + [anon_sym_atomic] = ACTIONS(3591), }, - [1073] = { - [ts_builtin_sym_end] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LF] = ACTIONS(2938), - [anon_sym_CR] = ACTIONS(2938), - [anon_sym_CR_LF] = ACTIONS(2938), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2938), - [anon_sym_as] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_COMMA] = ACTIONS(2938), - [anon_sym_const] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym___global] = ACTIONS(2938), - [anon_sym_type] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_fn] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_PERCENT] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_GT] = ACTIONS(2938), - [anon_sym_EQ_EQ] = ACTIONS(2938), - [anon_sym_BANG_EQ] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2938), - [anon_sym_pub] = ACTIONS(2938), - [anon_sym_mut] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_QMARK] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_go] = ACTIONS(2938), - [anon_sym_spawn] = ACTIONS(2938), - [anon_sym_json_DOTdecode] = ACTIONS(2938), - [anon_sym_LBRACK2] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_LT_DASH] = ACTIONS(2938), - [anon_sym_LT_LT] = ACTIONS(2938), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_GT_GT_GT] = ACTIONS(2938), - [anon_sym_AMP_CARET] = ACTIONS(2938), - [anon_sym_AMP_AMP] = ACTIONS(2938), - [anon_sym_PIPE_PIPE] = ACTIONS(2938), - [anon_sym_or] = ACTIONS(2938), - [sym_none] = ACTIONS(2938), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_nil] = ACTIONS(2938), - [anon_sym_QMARK_DOT] = ACTIONS(2938), - [anon_sym_POUND_LBRACK] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_DOLLARif] = ACTIONS(2938), - [anon_sym_is] = ACTIONS(2938), - [anon_sym_BANGis] = ACTIONS(2938), - [anon_sym_in] = ACTIONS(2938), - [anon_sym_BANGin] = ACTIONS(2938), - [anon_sym_match] = ACTIONS(2938), - [anon_sym_select] = ACTIONS(2938), - [anon_sym_lock] = ACTIONS(2938), - [anon_sym_rlock] = ACTIONS(2938), - [anon_sym_unsafe] = ACTIONS(2938), - [anon_sym_sql] = ACTIONS(2938), - [sym_int_literal] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), - [sym_rune_literal] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2938), - [anon_sym_shared] = ACTIONS(2938), - [anon_sym_map_LBRACK] = ACTIONS(2938), - [anon_sym_chan] = ACTIONS(2938), - [anon_sym_thread] = ACTIONS(2938), - [anon_sym_atomic] = ACTIONS(2938), - [anon_sym_assert] = ACTIONS(2938), - [anon_sym_defer] = ACTIONS(2938), - [anon_sym_goto] = ACTIONS(2938), - [anon_sym_break] = ACTIONS(2938), - [anon_sym_continue] = ACTIONS(2938), - [anon_sym_return] = ACTIONS(2938), - [anon_sym_DOLLARfor] = ACTIONS(2938), - [anon_sym_for] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [anon_sym_asm] = ACTIONS(2938), - [anon_sym_AT_LBRACK] = ACTIONS(2938), - [sym___double_quote] = ACTIONS(2938), - [sym___single_quote] = ACTIONS(2938), - [sym___c_double_quote] = ACTIONS(2938), - [sym___c_single_quote] = ACTIONS(2938), - [sym___r_double_quote] = ACTIONS(2938), - [sym___r_single_quote] = ACTIONS(2938), + [1145] = { + [sym_reference_expression] = STATE(4468), + [sym_type_reference_expression] = STATE(1706), + [sym_plain_type] = STATE(1686), + [sym__plain_type_without_special] = STATE(1705), + [sym_anon_struct_type] = STATE(1704), + [sym_multi_return_type] = STATE(1705), + [sym_result_type] = STATE(1705), + [sym_option_type] = STATE(1705), + [sym_qualified_type] = STATE(1706), + [sym_fixed_array_type] = STATE(1704), + [sym_array_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_wrong_pointer_type] = STATE(1704), + [sym_map_type] = STATE(1704), + [sym_channel_type] = STATE(1704), + [sym_shared_type] = STATE(1704), + [sym_thread_type] = STATE(1704), + [sym_atomic_type] = STATE(1704), + [sym_generic_type] = STATE(1704), + [sym_function_type] = STATE(1704), + [sym_identifier] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3567), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3569), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3573), + [anon_sym_COLON] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3575), + [anon_sym_BANG] = ACTIONS(3577), + [anon_sym_LBRACK2] = ACTIONS(3579), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3583), + [anon_sym_map_LBRACK] = ACTIONS(3585), + [anon_sym_chan] = ACTIONS(3587), + [anon_sym_thread] = ACTIONS(3589), + [anon_sym_atomic] = ACTIONS(3591), }, - [1074] = { - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym___global] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_pub] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [anon_sym_assert] = ACTIONS(2918), - [anon_sym_defer] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_DOLLARfor] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_asm] = ACTIONS(2918), - [anon_sym_AT_LBRACK] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), + [1146] = { + [sym_reference_expression] = STATE(4468), + [sym_type_reference_expression] = STATE(1706), + [sym_plain_type] = STATE(1695), + [sym__plain_type_without_special] = STATE(1705), + [sym_anon_struct_type] = STATE(1704), + [sym_multi_return_type] = STATE(1705), + [sym_result_type] = STATE(1705), + [sym_option_type] = STATE(1705), + [sym_qualified_type] = STATE(1706), + [sym_fixed_array_type] = STATE(1704), + [sym_array_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_wrong_pointer_type] = STATE(1704), + [sym_map_type] = STATE(1704), + [sym_channel_type] = STATE(1704), + [sym_shared_type] = STATE(1704), + [sym_thread_type] = STATE(1704), + [sym_atomic_type] = STATE(1704), + [sym_generic_type] = STATE(1704), + [sym_function_type] = STATE(1704), + [sym_identifier] = ACTIONS(3565), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3567), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3569), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3573), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3575), + [anon_sym_BANG] = ACTIONS(3577), + [anon_sym_LBRACK2] = ACTIONS(3579), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_AMP_CARET_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3583), + [anon_sym_map_LBRACK] = ACTIONS(3585), + [anon_sym_chan] = ACTIONS(3587), + [anon_sym_thread] = ACTIONS(3589), + [anon_sym_atomic] = ACTIONS(3591), }, - [1075] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_CR] = ACTIONS(2906), - [anon_sym_CR_LF] = ACTIONS(2906), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym___global] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_union] = ACTIONS(2906), - [anon_sym_pub] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_AMP_CARET] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2906), - [anon_sym_POUND_LBRACK] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [anon_sym_assert] = ACTIONS(2906), - [anon_sym_defer] = ACTIONS(2906), - [anon_sym_goto] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_DOLLARfor] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_asm] = ACTIONS(2906), - [anon_sym_AT_LBRACK] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), + [1147] = { + [aux_sym_strictly_expression_list_repeat1] = STATE(1456), + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1928), + [anon_sym_LF] = ACTIONS(1928), + [anon_sym_CR] = ACTIONS(1928), + [anon_sym_CR_LF] = ACTIONS(1928), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_EQ] = ACTIONS(1930), + [anon_sym___global] = ACTIONS(1928), + [anon_sym_type] = ACTIONS(1928), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_pub] = ACTIONS(1928), + [anon_sym_mut] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_interface] = ACTIONS(1928), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_go] = ACTIONS(1928), + [anon_sym_spawn] = ACTIONS(1928), + [anon_sym_json_DOTdecode] = ACTIONS(1928), + [anon_sym_LBRACK2] = ACTIONS(1928), + [anon_sym_TILDE] = ACTIONS(1928), + [anon_sym_CARET] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_LT_DASH] = ACTIONS(1928), + [sym_none] = ACTIONS(1928), + [sym_true] = ACTIONS(1928), + [sym_false] = ACTIONS(1928), + [sym_nil] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_DOLLARif] = ACTIONS(1928), + [anon_sym_match] = ACTIONS(1928), + [anon_sym_select] = ACTIONS(1928), + [anon_sym_STAR_EQ] = ACTIONS(1930), + [anon_sym_SLASH_EQ] = ACTIONS(1930), + [anon_sym_PERCENT_EQ] = ACTIONS(1930), + [anon_sym_LT_LT_EQ] = ACTIONS(1930), + [anon_sym_GT_GT_EQ] = ACTIONS(1930), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1930), + [anon_sym_AMP_EQ] = ACTIONS(1930), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1930), + [anon_sym_PLUS_EQ] = ACTIONS(1930), + [anon_sym_DASH_EQ] = ACTIONS(1930), + [anon_sym_PIPE_EQ] = ACTIONS(1930), + [anon_sym_CARET_EQ] = ACTIONS(1930), + [anon_sym_COLON_EQ] = ACTIONS(1930), + [anon_sym_lock] = ACTIONS(1928), + [anon_sym_rlock] = ACTIONS(1928), + [anon_sym_unsafe] = ACTIONS(1928), + [anon_sym_sql] = ACTIONS(1928), + [sym_int_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), + [sym_rune_literal] = ACTIONS(1928), + [anon_sym_AT] = ACTIONS(1928), + [anon_sym_shared] = ACTIONS(1928), + [anon_sym_map_LBRACK] = ACTIONS(1928), + [anon_sym_chan] = ACTIONS(1928), + [anon_sym_thread] = ACTIONS(1928), + [anon_sym_atomic] = ACTIONS(1928), + [anon_sym_assert] = ACTIONS(1928), + [anon_sym_defer] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_DOLLARfor] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_asm] = ACTIONS(1928), + [anon_sym_AT_LBRACK] = ACTIONS(1928), + [sym___double_quote] = ACTIONS(1928), + [sym___single_quote] = ACTIONS(1928), + [sym___c_double_quote] = ACTIONS(1928), + [sym___c_single_quote] = ACTIONS(1928), + [sym___r_double_quote] = ACTIONS(1928), + [sym___r_single_quote] = ACTIONS(1928), }, - [1076] = { - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym___global] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_defer] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_DOLLARfor] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_asm] = ACTIONS(2810), - [anon_sym_AT_LBRACK] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), + [1148] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1077] = { - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2814), - [anon_sym_LF] = ACTIONS(2814), - [anon_sym_CR] = ACTIONS(2814), - [anon_sym_CR_LF] = ACTIONS(2814), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym___global] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_pub] = ACTIONS(2814), - [anon_sym_mut] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_interface] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_go] = ACTIONS(2814), - [anon_sym_spawn] = ACTIONS(2814), - [anon_sym_json_DOTdecode] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_or] = ACTIONS(2814), - [sym_none] = ACTIONS(2814), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_nil] = ACTIONS(2814), - [anon_sym_QMARK_DOT] = ACTIONS(2814), - [anon_sym_POUND_LBRACK] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_DOLLARif] = ACTIONS(2814), - [anon_sym_is] = ACTIONS(2814), - [anon_sym_BANGis] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2814), - [anon_sym_BANGin] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_select] = ACTIONS(2814), - [anon_sym_lock] = ACTIONS(2814), - [anon_sym_rlock] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_sql] = ACTIONS(2814), - [sym_int_literal] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2814), - [sym_rune_literal] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2814), - [anon_sym_shared] = ACTIONS(2814), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2814), - [anon_sym_thread] = ACTIONS(2814), - [anon_sym_atomic] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_defer] = ACTIONS(2814), - [anon_sym_goto] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_DOLLARfor] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_asm] = ACTIONS(2814), - [anon_sym_AT_LBRACK] = ACTIONS(2814), - [sym___double_quote] = ACTIONS(2814), - [sym___single_quote] = ACTIONS(2814), - [sym___c_double_quote] = ACTIONS(2814), - [sym___c_single_quote] = ACTIONS(2814), - [sym___r_double_quote] = ACTIONS(2814), - [sym___r_single_quote] = ACTIONS(2814), + [1149] = { + [sym_reference_expression] = STATE(4564), + [sym_type_reference_expression] = STATE(1809), + [sym_plain_type] = STATE(1848), + [sym__plain_type_without_special] = STATE(1858), + [sym_anon_struct_type] = STATE(1857), + [sym_multi_return_type] = STATE(1858), + [sym_result_type] = STATE(1858), + [sym_option_type] = STATE(1858), + [sym_qualified_type] = STATE(1809), + [sym_fixed_array_type] = STATE(1857), + [sym_array_type] = STATE(1857), + [sym_pointer_type] = STATE(1857), + [sym_wrong_pointer_type] = STATE(1857), + [sym_map_type] = STATE(1857), + [sym_channel_type] = STATE(1857), + [sym_shared_type] = STATE(1857), + [sym_thread_type] = STATE(1857), + [sym_atomic_type] = STATE(1857), + [sym_generic_type] = STATE(1857), + [sym_function_type] = STATE(1857), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3599), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_LBRACK2] = ACTIONS(3607), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_AMP_CARET_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3611), + [anon_sym_map_LBRACK] = ACTIONS(3613), + [anon_sym_chan] = ACTIONS(3615), + [anon_sym_thread] = ACTIONS(3617), + [anon_sym_atomic] = ACTIONS(3619), }, - [1078] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2878), - [anon_sym_CR] = ACTIONS(2878), - [anon_sym_CR_LF] = ACTIONS(2878), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym___global] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_union] = ACTIONS(2878), - [anon_sym_pub] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [anon_sym_assert] = ACTIONS(2878), - [anon_sym_defer] = ACTIONS(2878), - [anon_sym_goto] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_DOLLARfor] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_asm] = ACTIONS(2878), - [anon_sym_AT_LBRACK] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), + [1150] = { + [sym_reference_expression] = STATE(4564), + [sym_type_reference_expression] = STATE(1809), + [sym_plain_type] = STATE(1846), + [sym__plain_type_without_special] = STATE(1858), + [sym_anon_struct_type] = STATE(1857), + [sym_multi_return_type] = STATE(1858), + [sym_result_type] = STATE(1858), + [sym_option_type] = STATE(1858), + [sym_qualified_type] = STATE(1809), + [sym_fixed_array_type] = STATE(1857), + [sym_array_type] = STATE(1857), + [sym_pointer_type] = STATE(1857), + [sym_wrong_pointer_type] = STATE(1857), + [sym_map_type] = STATE(1857), + [sym_channel_type] = STATE(1857), + [sym_shared_type] = STATE(1857), + [sym_thread_type] = STATE(1857), + [sym_atomic_type] = STATE(1857), + [sym_generic_type] = STATE(1857), + [sym_function_type] = STATE(1857), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3599), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_LBRACK2] = ACTIONS(3607), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3611), + [anon_sym_map_LBRACK] = ACTIONS(3613), + [anon_sym_chan] = ACTIONS(3615), + [anon_sym_thread] = ACTIONS(3617), + [anon_sym_atomic] = ACTIONS(3619), }, - [1079] = { - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym___global] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_pub] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [anon_sym_assert] = ACTIONS(2798), - [anon_sym_defer] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_DOLLARfor] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_asm] = ACTIONS(2798), - [anon_sym_AT_LBRACK] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [1151] = { + [sym_reference_expression] = STATE(4564), + [sym_type_reference_expression] = STATE(1809), + [sym_plain_type] = STATE(1855), + [sym__plain_type_without_special] = STATE(1858), + [sym_anon_struct_type] = STATE(1857), + [sym_multi_return_type] = STATE(1858), + [sym_result_type] = STATE(1858), + [sym_option_type] = STATE(1858), + [sym_qualified_type] = STATE(1809), + [sym_fixed_array_type] = STATE(1857), + [sym_array_type] = STATE(1857), + [sym_pointer_type] = STATE(1857), + [sym_wrong_pointer_type] = STATE(1857), + [sym_map_type] = STATE(1857), + [sym_channel_type] = STATE(1857), + [sym_shared_type] = STATE(1857), + [sym_thread_type] = STATE(1857), + [sym_atomic_type] = STATE(1857), + [sym_generic_type] = STATE(1857), + [sym_function_type] = STATE(1857), + [sym_identifier] = ACTIONS(3593), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3597), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3599), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3601), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_LBRACK2] = ACTIONS(3607), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(3611), + [anon_sym_map_LBRACK] = ACTIONS(3613), + [anon_sym_chan] = ACTIONS(3615), + [anon_sym_thread] = ACTIONS(3617), + [anon_sym_atomic] = ACTIONS(3619), }, - [1080] = { - [ts_builtin_sym_end] = ACTIONS(3076), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LF] = ACTIONS(3078), - [anon_sym_CR] = ACTIONS(3078), - [anon_sym_CR_LF] = ACTIONS(3078), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_as] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym___global] = ACTIONS(3078), - [anon_sym_type] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_fn] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_PERCENT] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_EQ] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_union] = ACTIONS(3078), - [anon_sym_pub] = ACTIONS(3078), - [anon_sym_mut] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_QMARK] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_go] = ACTIONS(3078), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(3078), - [anon_sym_LBRACK2] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_CARET] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_LT_DASH] = ACTIONS(3078), - [anon_sym_LT_LT] = ACTIONS(3078), - [anon_sym_GT_GT] = ACTIONS(3078), - [anon_sym_GT_GT_GT] = ACTIONS(3078), - [anon_sym_AMP_CARET] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3078), - [sym_none] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_nil] = ACTIONS(3078), - [anon_sym_QMARK_DOT] = ACTIONS(3078), - [anon_sym_POUND_LBRACK] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_DOLLARif] = ACTIONS(3078), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3078), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_BANGin] = ACTIONS(3078), - [anon_sym_match] = ACTIONS(3078), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3078), - [anon_sym_rlock] = ACTIONS(3078), - [anon_sym_unsafe] = ACTIONS(3078), - [anon_sym_sql] = ACTIONS(3078), - [sym_int_literal] = ACTIONS(3078), - [sym_float_literal] = ACTIONS(3078), - [sym_rune_literal] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_shared] = ACTIONS(3078), - [anon_sym_map_LBRACK] = ACTIONS(3078), - [anon_sym_chan] = ACTIONS(3078), - [anon_sym_thread] = ACTIONS(3078), - [anon_sym_atomic] = ACTIONS(3078), - [anon_sym_assert] = ACTIONS(3078), - [anon_sym_defer] = ACTIONS(3078), - [anon_sym_goto] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_DOLLARfor] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_POUND] = ACTIONS(3078), - [anon_sym_asm] = ACTIONS(3078), - [anon_sym_AT_LBRACK] = ACTIONS(3078), - [sym___double_quote] = ACTIONS(3078), - [sym___single_quote] = ACTIONS(3078), - [sym___c_double_quote] = ACTIONS(3078), - [sym___c_single_quote] = ACTIONS(3078), - [sym___r_double_quote] = ACTIONS(3078), - [sym___r_single_quote] = ACTIONS(3078), + [1152] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_CR] = ACTIONS(563), + [anon_sym_CR_LF] = ACTIONS(563), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1081] = { - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym___global] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_pub] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_interface] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [anon_sym_AT] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [anon_sym_assert] = ACTIONS(2802), - [anon_sym_defer] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_DOLLARfor] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_asm] = ACTIONS(2802), - [anon_sym_AT_LBRACK] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), + [1153] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3631), + [anon_sym_EQ_EQ] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_LT_EQ] = ACTIONS(3631), + [anon_sym_GT_EQ] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(3641), + [anon_sym_BANGin] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [1082] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_LF] = ACTIONS(2826), - [anon_sym_CR] = ACTIONS(2826), - [anon_sym_CR_LF] = ACTIONS(2826), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym___global] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_fn] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_GT] = ACTIONS(2826), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_pub] = ACTIONS(2826), - [anon_sym_mut] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_interface] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_go] = ACTIONS(2826), - [anon_sym_spawn] = ACTIONS(2826), - [anon_sym_json_DOTdecode] = ACTIONS(2826), - [anon_sym_LBRACK2] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2826), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_or] = ACTIONS(2826), - [sym_none] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_nil] = ACTIONS(2826), - [anon_sym_QMARK_DOT] = ACTIONS(2826), - [anon_sym_POUND_LBRACK] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_DOLLARif] = ACTIONS(2826), - [anon_sym_is] = ACTIONS(2826), - [anon_sym_BANGis] = ACTIONS(2826), - [anon_sym_in] = ACTIONS(2826), - [anon_sym_BANGin] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_select] = ACTIONS(2826), - [anon_sym_lock] = ACTIONS(2826), - [anon_sym_rlock] = ACTIONS(2826), - [anon_sym_unsafe] = ACTIONS(2826), - [anon_sym_sql] = ACTIONS(2826), - [sym_int_literal] = ACTIONS(2826), - [sym_float_literal] = ACTIONS(2826), - [sym_rune_literal] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_shared] = ACTIONS(2826), - [anon_sym_map_LBRACK] = ACTIONS(2826), - [anon_sym_chan] = ACTIONS(2826), - [anon_sym_thread] = ACTIONS(2826), - [anon_sym_atomic] = ACTIONS(2826), - [anon_sym_assert] = ACTIONS(2826), - [anon_sym_defer] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_DOLLARfor] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(2826), - [anon_sym_asm] = ACTIONS(2826), - [anon_sym_AT_LBRACK] = ACTIONS(2826), - [sym___double_quote] = ACTIONS(2826), - [sym___single_quote] = ACTIONS(2826), - [sym___c_double_quote] = ACTIONS(2826), - [sym___c_single_quote] = ACTIONS(2826), - [sym___r_double_quote] = ACTIONS(2826), - [sym___r_single_quote] = ACTIONS(2826), + [1154] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(3645), + [anon_sym_LF] = ACTIONS(3645), + [anon_sym_CR] = ACTIONS(3645), + [anon_sym_CR_LF] = ACTIONS(3645), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3645), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(3647), + [anon_sym_LBRACE] = ACTIONS(3645), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(3645), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3631), + [anon_sym_EQ_EQ] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_LT_EQ] = ACTIONS(3631), + [anon_sym_GT_EQ] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(3645), + [anon_sym_mut] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(3645), + [anon_sym_spawn] = ACTIONS(3645), + [anon_sym_json_DOTdecode] = ACTIONS(3645), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3645), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(3645), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3653), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3657), + [sym_none] = ACTIONS(3645), + [sym_true] = ACTIONS(3645), + [sym_false] = ACTIONS(3645), + [sym_nil] = ACTIONS(3645), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(3645), + [anon_sym_DOLLARif] = ACTIONS(3645), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_BANGis] = ACTIONS(3661), + [anon_sym_in] = ACTIONS(3641), + [anon_sym_BANGin] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(3645), + [anon_sym_select] = ACTIONS(3645), + [anon_sym_lock] = ACTIONS(3645), + [anon_sym_rlock] = ACTIONS(3645), + [anon_sym_unsafe] = ACTIONS(3645), + [anon_sym_sql] = ACTIONS(3645), + [sym_int_literal] = ACTIONS(3645), + [sym_float_literal] = ACTIONS(3645), + [sym_rune_literal] = ACTIONS(3645), + [anon_sym_AT] = ACTIONS(3645), + [anon_sym_shared] = ACTIONS(3645), + [anon_sym_map_LBRACK] = ACTIONS(3645), + [anon_sym_chan] = ACTIONS(3645), + [anon_sym_thread] = ACTIONS(3645), + [anon_sym_atomic] = ACTIONS(3645), + [sym___double_quote] = ACTIONS(3645), + [sym___single_quote] = ACTIONS(3645), + [sym___c_double_quote] = ACTIONS(3645), + [sym___c_single_quote] = ACTIONS(3645), + [sym___r_double_quote] = ACTIONS(3645), + [sym___r_single_quote] = ACTIONS(3645), }, - [1083] = { - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2830), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_CR] = ACTIONS(2830), - [anon_sym_CR_LF] = ACTIONS(2830), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym___global] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_fn] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_pub] = ACTIONS(2830), - [anon_sym_mut] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_interface] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_go] = ACTIONS(2830), - [anon_sym_spawn] = ACTIONS(2830), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2830), - [sym_none] = ACTIONS(2830), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_nil] = ACTIONS(2830), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_DOLLARif] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2830), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_select] = ACTIONS(2830), - [anon_sym_lock] = ACTIONS(2830), - [anon_sym_rlock] = ACTIONS(2830), - [anon_sym_unsafe] = ACTIONS(2830), - [anon_sym_sql] = ACTIONS(2830), - [sym_int_literal] = ACTIONS(2830), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2830), - [anon_sym_shared] = ACTIONS(2830), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2830), - [anon_sym_thread] = ACTIONS(2830), - [anon_sym_atomic] = ACTIONS(2830), - [anon_sym_assert] = ACTIONS(2830), - [anon_sym_defer] = ACTIONS(2830), - [anon_sym_goto] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_DOLLARfor] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_asm] = ACTIONS(2830), - [anon_sym_AT_LBRACK] = ACTIONS(2830), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), + [1155] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2234), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_CR] = ACTIONS(2234), + [anon_sym_CR_LF] = ACTIONS(2234), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(3647), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3631), + [anon_sym_EQ_EQ] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_LT_EQ] = ACTIONS(3631), + [anon_sym_GT_EQ] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3653), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3657), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_BANGis] = ACTIONS(3661), + [anon_sym_in] = ACTIONS(3641), + [anon_sym_BANGin] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + [sym_rune_literal] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2234), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2234), + [sym___single_quote] = ACTIONS(2234), + [sym___c_double_quote] = ACTIONS(2234), + [sym___c_single_quote] = ACTIONS(2234), + [sym___r_double_quote] = ACTIONS(2234), + [sym___r_single_quote] = ACTIONS(2234), }, - [1084] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), + [1156] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2220), + [anon_sym_LF] = ACTIONS(2220), + [anon_sym_CR] = ACTIONS(2220), + [anon_sym_CR_LF] = ACTIONS(2220), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(3647), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_COMMA] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3631), + [anon_sym_EQ_EQ] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_LT_EQ] = ACTIONS(3631), + [anon_sym_GT_EQ] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_mut] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2220), + [anon_sym_spawn] = ACTIONS(2220), + [anon_sym_json_DOTdecode] = ACTIONS(2220), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2220), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3653), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3657), + [sym_none] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_nil] = ACTIONS(2220), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_DOLLARif] = ACTIONS(2220), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_BANGis] = ACTIONS(3661), + [anon_sym_in] = ACTIONS(3641), + [anon_sym_BANGin] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_select] = ACTIONS(2220), + [anon_sym_lock] = ACTIONS(2220), + [anon_sym_rlock] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_sql] = ACTIONS(2220), + [sym_int_literal] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), + [sym_rune_literal] = ACTIONS(2220), + [anon_sym_AT] = ACTIONS(2220), + [anon_sym_shared] = ACTIONS(2220), + [anon_sym_map_LBRACK] = ACTIONS(2220), + [anon_sym_chan] = ACTIONS(2220), + [anon_sym_thread] = ACTIONS(2220), + [anon_sym_atomic] = ACTIONS(2220), + [sym___double_quote] = ACTIONS(2220), + [sym___single_quote] = ACTIONS(2220), + [sym___c_double_quote] = ACTIONS(2220), + [sym___c_single_quote] = ACTIONS(2220), + [sym___r_double_quote] = ACTIONS(2220), + [sym___r_single_quote] = ACTIONS(2220), }, - [1085] = { - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym___global] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2764), - [anon_sym_BANG_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_CARET] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2764), - [anon_sym_POUND_LBRACK] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2764), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [anon_sym_assert] = ACTIONS(2764), - [anon_sym_defer] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_DOLLARfor] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [anon_sym_asm] = ACTIONS(2764), - [anon_sym_AT_LBRACK] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), + [1157] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2314), + [anon_sym_LF] = ACTIONS(2314), + [anon_sym_CR] = ACTIONS(2314), + [anon_sym_CR_LF] = ACTIONS(2314), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_fn] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2314), + [anon_sym_BANG_EQ] = ACTIONS(2314), + [anon_sym_LT_EQ] = ACTIONS(2314), + [anon_sym_GT_EQ] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2314), + [anon_sym_mut] = ACTIONS(2314), + [anon_sym_PLUS_PLUS] = ACTIONS(2314), + [anon_sym_DASH_DASH] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2314), + [anon_sym_spawn] = ACTIONS(2314), + [anon_sym_json_DOTdecode] = ACTIONS(2314), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2314), + [anon_sym_CARET] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_LT_DASH] = ACTIONS(2314), + [anon_sym_LT_LT] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2314), + [anon_sym_AMP_CARET] = ACTIONS(2314), + [anon_sym_AMP_AMP] = ACTIONS(2314), + [anon_sym_PIPE_PIPE] = ACTIONS(2314), + [anon_sym_or] = ACTIONS(2314), + [sym_none] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_nil] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_DOLLARif] = ACTIONS(2314), + [anon_sym_is] = ACTIONS(2314), + [anon_sym_BANGis] = ACTIONS(2314), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_BANGin] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_select] = ACTIONS(2314), + [anon_sym_lock] = ACTIONS(2314), + [anon_sym_rlock] = ACTIONS(2314), + [anon_sym_unsafe] = ACTIONS(2314), + [anon_sym_sql] = ACTIONS(2314), + [sym_int_literal] = ACTIONS(2314), + [sym_float_literal] = ACTIONS(2314), + [sym_rune_literal] = ACTIONS(2314), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_shared] = ACTIONS(2314), + [anon_sym_map_LBRACK] = ACTIONS(2314), + [anon_sym_chan] = ACTIONS(2314), + [anon_sym_thread] = ACTIONS(2314), + [anon_sym_atomic] = ACTIONS(2314), + [sym___double_quote] = ACTIONS(2314), + [sym___single_quote] = ACTIONS(2314), + [sym___c_double_quote] = ACTIONS(2314), + [sym___c_single_quote] = ACTIONS(2314), + [sym___r_double_quote] = ACTIONS(2314), + [sym___r_single_quote] = ACTIONS(2314), }, - [1086] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [1158] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2342), + [anon_sym_LF] = ACTIONS(2342), + [anon_sym_CR] = ACTIONS(2342), + [anon_sym_CR_LF] = ACTIONS(2342), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2342), + [anon_sym_spawn] = ACTIONS(2342), + [anon_sym_json_DOTdecode] = ACTIONS(2342), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_or] = ACTIONS(2342), + [sym_none] = ACTIONS(2342), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_nil] = ACTIONS(2342), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_DOLLARif] = ACTIONS(2342), + [anon_sym_is] = ACTIONS(2342), + [anon_sym_BANGis] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_BANGin] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_select] = ACTIONS(2342), + [anon_sym_lock] = ACTIONS(2342), + [anon_sym_rlock] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_sql] = ACTIONS(2342), + [sym_int_literal] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2342), + [sym_rune_literal] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_shared] = ACTIONS(2342), + [anon_sym_map_LBRACK] = ACTIONS(2342), + [anon_sym_chan] = ACTIONS(2342), + [anon_sym_thread] = ACTIONS(2342), + [anon_sym_atomic] = ACTIONS(2342), + [sym___double_quote] = ACTIONS(2342), + [sym___single_quote] = ACTIONS(2342), + [sym___c_double_quote] = ACTIONS(2342), + [sym___c_single_quote] = ACTIONS(2342), + [sym___r_double_quote] = ACTIONS(2342), + [sym___r_single_quote] = ACTIONS(2342), }, - [1087] = { - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LF] = ACTIONS(3106), - [anon_sym_CR] = ACTIONS(3106), - [anon_sym_CR_LF] = ACTIONS(3106), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3106), - [anon_sym_as] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_COMMA] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym___global] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_fn] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_PERCENT] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_EQ_EQ] = ACTIONS(3106), - [anon_sym_BANG_EQ] = ACTIONS(3106), - [anon_sym_LT_EQ] = ACTIONS(3106), - [anon_sym_GT_EQ] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_union] = ACTIONS(3106), - [anon_sym_pub] = ACTIONS(3106), - [anon_sym_mut] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_QMARK] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_go] = ACTIONS(3106), - [anon_sym_spawn] = ACTIONS(3106), - [anon_sym_json_DOTdecode] = ACTIONS(3106), - [anon_sym_LBRACK2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_CARET] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_LT_DASH] = ACTIONS(3106), - [anon_sym_LT_LT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3106), - [anon_sym_GT_GT_GT] = ACTIONS(3106), - [anon_sym_AMP_CARET] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_or] = ACTIONS(3106), - [sym_none] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_nil] = ACTIONS(3106), - [anon_sym_QMARK_DOT] = ACTIONS(3106), - [anon_sym_POUND_LBRACK] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_DOLLARif] = ACTIONS(3106), - [anon_sym_is] = ACTIONS(3106), - [anon_sym_BANGis] = ACTIONS(3106), - [anon_sym_in] = ACTIONS(3106), - [anon_sym_BANGin] = ACTIONS(3106), - [anon_sym_match] = ACTIONS(3106), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(3106), - [anon_sym_sql] = ACTIONS(3106), - [sym_int_literal] = ACTIONS(3106), - [sym_float_literal] = ACTIONS(3106), - [sym_rune_literal] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_shared] = ACTIONS(3106), - [anon_sym_map_LBRACK] = ACTIONS(3106), - [anon_sym_chan] = ACTIONS(3106), - [anon_sym_thread] = ACTIONS(3106), - [anon_sym_atomic] = ACTIONS(3106), - [anon_sym_assert] = ACTIONS(3106), - [anon_sym_defer] = ACTIONS(3106), - [anon_sym_goto] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_DOLLARfor] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_POUND] = ACTIONS(3106), - [anon_sym_asm] = ACTIONS(3106), - [anon_sym_AT_LBRACK] = ACTIONS(3106), - [sym___double_quote] = ACTIONS(3106), - [sym___single_quote] = ACTIONS(3106), - [sym___c_double_quote] = ACTIONS(3106), - [sym___c_single_quote] = ACTIONS(3106), - [sym___r_double_quote] = ACTIONS(3106), - [sym___r_single_quote] = ACTIONS(3106), + [1159] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_CARET] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [1088] = { - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3086), - [anon_sym_LF] = ACTIONS(3086), - [anon_sym_CR] = ACTIONS(3086), - [anon_sym_CR_LF] = ACTIONS(3086), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3086), - [anon_sym_as] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym___global] = ACTIONS(3086), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_fn] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_PERCENT] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_EQ_EQ] = ACTIONS(3086), - [anon_sym_BANG_EQ] = ACTIONS(3086), - [anon_sym_LT_EQ] = ACTIONS(3086), - [anon_sym_GT_EQ] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_mut] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3086), - [anon_sym_spawn] = ACTIONS(3086), - [anon_sym_json_DOTdecode] = ACTIONS(3086), - [anon_sym_LBRACK2] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_LT_DASH] = ACTIONS(3086), - [anon_sym_LT_LT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(3086), - [anon_sym_GT_GT_GT] = ACTIONS(3086), - [anon_sym_AMP_CARET] = ACTIONS(3086), - [anon_sym_AMP_AMP] = ACTIONS(3086), - [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_or] = ACTIONS(3086), - [sym_none] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_nil] = ACTIONS(3086), - [anon_sym_QMARK_DOT] = ACTIONS(3086), - [anon_sym_POUND_LBRACK] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_DOLLARif] = ACTIONS(3086), - [anon_sym_is] = ACTIONS(3086), - [anon_sym_BANGis] = ACTIONS(3086), - [anon_sym_in] = ACTIONS(3086), - [anon_sym_BANGin] = ACTIONS(3086), - [anon_sym_match] = ACTIONS(3086), - [anon_sym_select] = ACTIONS(3086), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(3086), - [anon_sym_sql] = ACTIONS(3086), - [sym_int_literal] = ACTIONS(3086), - [sym_float_literal] = ACTIONS(3086), - [sym_rune_literal] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_shared] = ACTIONS(3086), - [anon_sym_map_LBRACK] = ACTIONS(3086), - [anon_sym_chan] = ACTIONS(3086), - [anon_sym_thread] = ACTIONS(3086), - [anon_sym_atomic] = ACTIONS(3086), - [anon_sym_assert] = ACTIONS(3086), - [anon_sym_defer] = ACTIONS(3086), - [anon_sym_goto] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_DOLLARfor] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_POUND] = ACTIONS(3086), - [anon_sym_asm] = ACTIONS(3086), - [anon_sym_AT_LBRACK] = ACTIONS(3086), - [sym___double_quote] = ACTIONS(3086), - [sym___single_quote] = ACTIONS(3086), - [sym___c_double_quote] = ACTIONS(3086), - [sym___c_single_quote] = ACTIONS(3086), - [sym___r_double_quote] = ACTIONS(3086), - [sym___r_single_quote] = ACTIONS(3086), + [1160] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(3663), + [anon_sym_LF] = ACTIONS(3663), + [anon_sym_CR] = ACTIONS(3663), + [anon_sym_CR_LF] = ACTIONS(3663), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3663), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(3647), + [anon_sym_LBRACE] = ACTIONS(3663), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(3663), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3631), + [anon_sym_EQ_EQ] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_LT_EQ] = ACTIONS(3631), + [anon_sym_GT_EQ] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(3663), + [anon_sym_mut] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(3649), + [anon_sym_DASH_DASH] = ACTIONS(3651), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(3663), + [anon_sym_spawn] = ACTIONS(3663), + [anon_sym_json_DOTdecode] = ACTIONS(3663), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3663), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(3663), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3653), + [anon_sym_PIPE_PIPE] = ACTIONS(3655), + [anon_sym_or] = ACTIONS(3657), + [sym_none] = ACTIONS(3663), + [sym_true] = ACTIONS(3663), + [sym_false] = ACTIONS(3663), + [sym_nil] = ACTIONS(3663), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(3663), + [anon_sym_DOLLARif] = ACTIONS(3663), + [anon_sym_is] = ACTIONS(3659), + [anon_sym_BANGis] = ACTIONS(3661), + [anon_sym_in] = ACTIONS(3641), + [anon_sym_BANGin] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(3663), + [anon_sym_select] = ACTIONS(3663), + [anon_sym_lock] = ACTIONS(3663), + [anon_sym_rlock] = ACTIONS(3663), + [anon_sym_unsafe] = ACTIONS(3663), + [anon_sym_sql] = ACTIONS(3663), + [sym_int_literal] = ACTIONS(3663), + [sym_float_literal] = ACTIONS(3663), + [sym_rune_literal] = ACTIONS(3663), + [anon_sym_AT] = ACTIONS(3663), + [anon_sym_shared] = ACTIONS(3663), + [anon_sym_map_LBRACK] = ACTIONS(3663), + [anon_sym_chan] = ACTIONS(3663), + [anon_sym_thread] = ACTIONS(3663), + [anon_sym_atomic] = ACTIONS(3663), + [sym___double_quote] = ACTIONS(3663), + [sym___single_quote] = ACTIONS(3663), + [sym___c_double_quote] = ACTIONS(3663), + [sym___c_single_quote] = ACTIONS(3663), + [sym___r_double_quote] = ACTIONS(3663), + [sym___r_single_quote] = ACTIONS(3663), }, - [1089] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_LF] = ACTIONS(2834), - [anon_sym_CR] = ACTIONS(2834), - [anon_sym_CR_LF] = ACTIONS(2834), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_as] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym___global] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_fn] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_GT] = ACTIONS(2834), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_pub] = ACTIONS(2834), - [anon_sym_mut] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_interface] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_go] = ACTIONS(2834), - [anon_sym_spawn] = ACTIONS(2834), - [anon_sym_json_DOTdecode] = ACTIONS(2834), - [anon_sym_LBRACK2] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2834), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_or] = ACTIONS(2834), - [sym_none] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_nil] = ACTIONS(2834), - [anon_sym_QMARK_DOT] = ACTIONS(2834), - [anon_sym_POUND_LBRACK] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_DOLLARif] = ACTIONS(2834), - [anon_sym_is] = ACTIONS(2834), - [anon_sym_BANGis] = ACTIONS(2834), - [anon_sym_in] = ACTIONS(2834), - [anon_sym_BANGin] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_select] = ACTIONS(2834), - [anon_sym_lock] = ACTIONS(2834), - [anon_sym_rlock] = ACTIONS(2834), - [anon_sym_unsafe] = ACTIONS(2834), - [anon_sym_sql] = ACTIONS(2834), - [sym_int_literal] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2834), - [sym_rune_literal] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2834), - [anon_sym_shared] = ACTIONS(2834), - [anon_sym_map_LBRACK] = ACTIONS(2834), - [anon_sym_chan] = ACTIONS(2834), - [anon_sym_thread] = ACTIONS(2834), - [anon_sym_atomic] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_defer] = ACTIONS(2834), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_DOLLARfor] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_asm] = ACTIONS(2834), - [anon_sym_AT_LBRACK] = ACTIONS(2834), - [sym___double_quote] = ACTIONS(2834), - [sym___single_quote] = ACTIONS(2834), - [sym___c_double_quote] = ACTIONS(2834), - [sym___c_single_quote] = ACTIONS(2834), - [sym___r_double_quote] = ACTIONS(2834), - [sym___r_single_quote] = ACTIONS(2834), + [1161] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2392), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_CR] = ACTIONS(2392), + [anon_sym_CR_LF] = ACTIONS(2392), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2392), + [anon_sym_spawn] = ACTIONS(2392), + [anon_sym_json_DOTdecode] = ACTIONS(2392), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_CARET] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [sym_none] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_nil] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_DOLLARif] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_BANGis] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_BANGin] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_select] = ACTIONS(2392), + [anon_sym_lock] = ACTIONS(2392), + [anon_sym_rlock] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_sql] = ACTIONS(2392), + [sym_int_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2392), + [sym_rune_literal] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_shared] = ACTIONS(2392), + [anon_sym_map_LBRACK] = ACTIONS(2392), + [anon_sym_chan] = ACTIONS(2392), + [anon_sym_thread] = ACTIONS(2392), + [anon_sym_atomic] = ACTIONS(2392), + [sym___double_quote] = ACTIONS(2392), + [sym___single_quote] = ACTIONS(2392), + [sym___c_double_quote] = ACTIONS(2392), + [sym___c_single_quote] = ACTIONS(2392), + [sym___r_double_quote] = ACTIONS(2392), + [sym___r_single_quote] = ACTIONS(2392), }, - [1090] = { - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym___global] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_union] = ACTIONS(3046), - [anon_sym_pub] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [anon_sym_assert] = ACTIONS(3046), - [anon_sym_defer] = ACTIONS(3046), - [anon_sym_goto] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_DOLLARfor] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_asm] = ACTIONS(3046), - [anon_sym_AT_LBRACK] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3046), - [sym___single_quote] = ACTIONS(3046), - [sym___c_double_quote] = ACTIONS(3046), - [sym___c_single_quote] = ACTIONS(3046), - [sym___r_double_quote] = ACTIONS(3046), - [sym___r_single_quote] = ACTIONS(3046), + [1162] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [1091] = { - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3042), - [anon_sym_CR] = ACTIONS(3042), - [anon_sym_CR_LF] = ACTIONS(3042), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_const] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym___global] = ACTIONS(3042), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_union] = ACTIONS(3042), - [anon_sym_pub] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_enum] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3042), - [anon_sym_AMP_CARET] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3042), - [anon_sym_POUND_LBRACK] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), - [sym_rune_literal] = ACTIONS(3042), - [anon_sym_AT] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_defer] = ACTIONS(3042), - [anon_sym_goto] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_DOLLARfor] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [anon_sym_asm] = ACTIONS(3042), - [anon_sym_AT_LBRACK] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3042), - [sym___single_quote] = ACTIONS(3042), - [sym___c_double_quote] = ACTIONS(3042), - [sym___c_single_quote] = ACTIONS(3042), - [sym___r_double_quote] = ACTIONS(3042), - [sym___r_single_quote] = ACTIONS(3042), + [1163] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2346), + [anon_sym_LF] = ACTIONS(2346), + [anon_sym_CR] = ACTIONS(2346), + [anon_sym_CR_LF] = ACTIONS(2346), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2346), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_COMMA] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2346), + [anon_sym_BANG_EQ] = ACTIONS(2346), + [anon_sym_LT_EQ] = ACTIONS(2346), + [anon_sym_GT_EQ] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_PLUS_PLUS] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2346), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2346), + [anon_sym_spawn] = ACTIONS(2346), + [anon_sym_json_DOTdecode] = ACTIONS(2346), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2346), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(2346), + [anon_sym_PIPE_PIPE] = ACTIONS(2346), + [anon_sym_or] = ACTIONS(2346), + [sym_none] = ACTIONS(2346), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_nil] = ACTIONS(2346), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_DOLLARif] = ACTIONS(2346), + [anon_sym_is] = ACTIONS(2346), + [anon_sym_BANGis] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_BANGin] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_select] = ACTIONS(2346), + [anon_sym_lock] = ACTIONS(2346), + [anon_sym_rlock] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2346), + [sym_int_literal] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2346), + [sym_rune_literal] = ACTIONS(2346), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_shared] = ACTIONS(2346), + [anon_sym_map_LBRACK] = ACTIONS(2346), + [anon_sym_chan] = ACTIONS(2346), + [anon_sym_thread] = ACTIONS(2346), + [anon_sym_atomic] = ACTIONS(2346), + [sym___double_quote] = ACTIONS(2346), + [sym___single_quote] = ACTIONS(2346), + [sym___c_double_quote] = ACTIONS(2346), + [sym___c_single_quote] = ACTIONS(2346), + [sym___r_double_quote] = ACTIONS(2346), + [sym___r_single_quote] = ACTIONS(2346), }, - [1092] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [1164] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3631), + [anon_sym_EQ_EQ] = ACTIONS(3631), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_LT_EQ] = ACTIONS(3631), + [anon_sym_GT_EQ] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3653), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(3641), + [anon_sym_BANGin] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [1093] = { - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3038), - [anon_sym_LF] = ACTIONS(3038), - [anon_sym_CR] = ACTIONS(3038), - [anon_sym_CR_LF] = ACTIONS(3038), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_const] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym___global] = ACTIONS(3038), - [anon_sym_type] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_fn] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_PERCENT] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_GT] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_pub] = ACTIONS(3038), - [anon_sym_mut] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_DASH_DASH] = ACTIONS(3038), - [anon_sym_QMARK] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_go] = ACTIONS(3038), - [anon_sym_spawn] = ACTIONS(3038), - [anon_sym_json_DOTdecode] = ACTIONS(3038), - [anon_sym_LBRACK2] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LT_DASH] = ACTIONS(3038), - [anon_sym_LT_LT] = ACTIONS(3038), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_GT_GT_GT] = ACTIONS(3038), - [anon_sym_AMP_CARET] = ACTIONS(3038), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3038), - [sym_none] = ACTIONS(3038), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_nil] = ACTIONS(3038), - [anon_sym_QMARK_DOT] = ACTIONS(3038), - [anon_sym_POUND_LBRACK] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_DOLLARif] = ACTIONS(3038), - [anon_sym_is] = ACTIONS(3038), - [anon_sym_BANGis] = ACTIONS(3038), - [anon_sym_in] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3038), - [anon_sym_match] = ACTIONS(3038), - [anon_sym_select] = ACTIONS(3038), - [anon_sym_lock] = ACTIONS(3038), - [anon_sym_rlock] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(3038), - [anon_sym_sql] = ACTIONS(3038), - [sym_int_literal] = ACTIONS(3038), - [sym_float_literal] = ACTIONS(3038), - [sym_rune_literal] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_shared] = ACTIONS(3038), - [anon_sym_map_LBRACK] = ACTIONS(3038), - [anon_sym_chan] = ACTIONS(3038), - [anon_sym_thread] = ACTIONS(3038), - [anon_sym_atomic] = ACTIONS(3038), - [anon_sym_assert] = ACTIONS(3038), - [anon_sym_defer] = ACTIONS(3038), - [anon_sym_goto] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_DOLLARfor] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [anon_sym_asm] = ACTIONS(3038), - [anon_sym_AT_LBRACK] = ACTIONS(3038), - [sym___double_quote] = ACTIONS(3038), - [sym___single_quote] = ACTIONS(3038), - [sym___c_double_quote] = ACTIONS(3038), - [sym___c_single_quote] = ACTIONS(3038), - [sym___r_double_quote] = ACTIONS(3038), - [sym___r_single_quote] = ACTIONS(3038), + [1165] = { + [sym_type_parameters] = STATE(4389), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_CR] = ACTIONS(2360), + [anon_sym_CR_LF] = ACTIONS(2360), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(3623), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_PIPE] = ACTIONS(3627), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3627), + [anon_sym_DASH] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3629), + [anon_sym_SLASH] = ACTIONS(3629), + [anon_sym_PERCENT] = ACTIONS(3629), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [anon_sym_QMARK] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2360), + [anon_sym_LBRACK2] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3629), + [anon_sym_GT_GT_GT] = ACTIONS(3629), + [anon_sym_AMP_CARET] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3623), + [anon_sym_POUND_LBRACK] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + [sym_rune_literal] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2360), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2360), + [sym___c_double_quote] = ACTIONS(2360), + [sym___c_single_quote] = ACTIONS(2360), + [sym___r_double_quote] = ACTIONS(2360), + [sym___r_single_quote] = ACTIONS(2360), }, - [1094] = { - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3030), - [anon_sym_LF] = ACTIONS(3030), - [anon_sym_CR] = ACTIONS(3030), - [anon_sym_CR_LF] = ACTIONS(3030), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_as] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym___global] = ACTIONS(3030), - [anon_sym_type] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_fn] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_SLASH] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_GT] = ACTIONS(3030), - [anon_sym_EQ_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_struct] = ACTIONS(3030), - [anon_sym_union] = ACTIONS(3030), - [anon_sym_pub] = ACTIONS(3030), - [anon_sym_mut] = ACTIONS(3030), - [anon_sym_enum] = ACTIONS(3030), - [anon_sym_interface] = ACTIONS(3030), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_go] = ACTIONS(3030), - [anon_sym_spawn] = ACTIONS(3030), - [anon_sym_json_DOTdecode] = ACTIONS(3030), - [anon_sym_LBRACK2] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_GT_GT_GT] = ACTIONS(3030), - [anon_sym_AMP_CARET] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_or] = ACTIONS(3030), - [sym_none] = ACTIONS(3030), - [sym_true] = ACTIONS(3030), - [sym_false] = ACTIONS(3030), - [sym_nil] = ACTIONS(3030), - [anon_sym_QMARK_DOT] = ACTIONS(3030), - [anon_sym_POUND_LBRACK] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_DOLLARif] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3030), - [anon_sym_BANGis] = ACTIONS(3030), - [anon_sym_in] = ACTIONS(3030), - [anon_sym_BANGin] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_select] = ACTIONS(3030), - [anon_sym_lock] = ACTIONS(3030), - [anon_sym_rlock] = ACTIONS(3030), - [anon_sym_unsafe] = ACTIONS(3030), - [anon_sym_sql] = ACTIONS(3030), - [sym_int_literal] = ACTIONS(3030), - [sym_float_literal] = ACTIONS(3030), - [sym_rune_literal] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_shared] = ACTIONS(3030), - [anon_sym_map_LBRACK] = ACTIONS(3030), - [anon_sym_chan] = ACTIONS(3030), - [anon_sym_thread] = ACTIONS(3030), - [anon_sym_atomic] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_defer] = ACTIONS(3030), - [anon_sym_goto] = ACTIONS(3030), - [anon_sym_break] = ACTIONS(3030), - [anon_sym_continue] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_DOLLARfor] = ACTIONS(3030), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_POUND] = ACTIONS(3030), - [anon_sym_asm] = ACTIONS(3030), - [anon_sym_AT_LBRACK] = ACTIONS(3030), - [sym___double_quote] = ACTIONS(3030), - [sym___single_quote] = ACTIONS(3030), - [sym___c_double_quote] = ACTIONS(3030), - [sym___c_single_quote] = ACTIONS(3030), - [sym___r_double_quote] = ACTIONS(3030), - [sym___r_single_quote] = ACTIONS(3030), + [1166] = { + [sym_reference_expression] = STATE(4480), + [sym_type_reference_expression] = STATE(1963), + [sym_plain_type] = STATE(2089), + [sym__plain_type_without_special] = STATE(2035), + [sym_anon_struct_type] = STATE(2036), + [sym_multi_return_type] = STATE(2035), + [sym_result_type] = STATE(2035), + [sym_option_type] = STATE(2035), + [sym_qualified_type] = STATE(1963), + [sym_fixed_array_type] = STATE(2036), + [sym_array_type] = STATE(2036), + [sym_pointer_type] = STATE(2036), + [sym_wrong_pointer_type] = STATE(2036), + [sym_map_type] = STATE(2036), + [sym_channel_type] = STATE(2036), + [sym_shared_type] = STATE(2036), + [sym_thread_type] = STATE(2036), + [sym_atomic_type] = STATE(2036), + [sym_generic_type] = STATE(2036), + [sym_function_type] = STATE(2036), + [sym_identifier] = ACTIONS(3665), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3673), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_BANG] = ACTIONS(3677), + [anon_sym_LBRACK2] = ACTIONS(3679), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3681), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_AMP_CARET_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_COLON_EQ] = ACTIONS(581), + [anon_sym_shared] = ACTIONS(3683), + [anon_sym_map_LBRACK] = ACTIONS(3685), + [anon_sym_chan] = ACTIONS(3687), + [anon_sym_thread] = ACTIONS(3689), + [anon_sym_atomic] = ACTIONS(3691), }, - [1095] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_LF] = ACTIONS(2822), - [anon_sym_CR] = ACTIONS(2822), - [anon_sym_CR_LF] = ACTIONS(2822), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym___global] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_pub] = ACTIONS(2822), - [anon_sym_mut] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_interface] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_go] = ACTIONS(2822), - [anon_sym_spawn] = ACTIONS(2822), - [anon_sym_json_DOTdecode] = ACTIONS(2822), - [anon_sym_LBRACK2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_or] = ACTIONS(2822), - [sym_none] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_nil] = ACTIONS(2822), - [anon_sym_QMARK_DOT] = ACTIONS(2822), - [anon_sym_POUND_LBRACK] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_DOLLARif] = ACTIONS(2822), - [anon_sym_is] = ACTIONS(2822), - [anon_sym_BANGis] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2822), - [anon_sym_BANGin] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_select] = ACTIONS(2822), - [anon_sym_lock] = ACTIONS(2822), - [anon_sym_rlock] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_sql] = ACTIONS(2822), - [sym_int_literal] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2822), - [sym_rune_literal] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2822), - [anon_sym_shared] = ACTIONS(2822), - [anon_sym_map_LBRACK] = ACTIONS(2822), - [anon_sym_chan] = ACTIONS(2822), - [anon_sym_thread] = ACTIONS(2822), - [anon_sym_atomic] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_defer] = ACTIONS(2822), - [anon_sym_goto] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_DOLLARfor] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_asm] = ACTIONS(2822), - [anon_sym_AT_LBRACK] = ACTIONS(2822), - [sym___double_quote] = ACTIONS(2822), - [sym___single_quote] = ACTIONS(2822), - [sym___c_double_quote] = ACTIONS(2822), - [sym___c_single_quote] = ACTIONS(2822), - [sym___r_double_quote] = ACTIONS(2822), - [sym___r_single_quote] = ACTIONS(2822), + [1167] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_AMP_CARET_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1096] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LF] = ACTIONS(2958), - [anon_sym_CR] = ACTIONS(2958), - [anon_sym_CR_LF] = ACTIONS(2958), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_as] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2958), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym___global] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_fn] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_PERCENT] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_GT] = ACTIONS(2958), - [anon_sym_EQ_EQ] = ACTIONS(2958), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_LT_EQ] = ACTIONS(2958), - [anon_sym_GT_EQ] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_struct] = ACTIONS(2958), - [anon_sym_union] = ACTIONS(2958), - [anon_sym_pub] = ACTIONS(2958), - [anon_sym_mut] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2958), - [anon_sym_DASH_DASH] = ACTIONS(2958), - [anon_sym_QMARK] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_go] = ACTIONS(2958), - [anon_sym_spawn] = ACTIONS(2958), - [anon_sym_json_DOTdecode] = ACTIONS(2958), - [anon_sym_LBRACK2] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_LT_DASH] = ACTIONS(2958), - [anon_sym_LT_LT] = ACTIONS(2958), - [anon_sym_GT_GT] = ACTIONS(2958), - [anon_sym_GT_GT_GT] = ACTIONS(2958), - [anon_sym_AMP_CARET] = ACTIONS(2958), - [anon_sym_AMP_AMP] = ACTIONS(2958), - [anon_sym_PIPE_PIPE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2958), - [sym_none] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_nil] = ACTIONS(2958), - [anon_sym_QMARK_DOT] = ACTIONS(2958), - [anon_sym_POUND_LBRACK] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_DOLLARif] = ACTIONS(2958), - [anon_sym_is] = ACTIONS(2958), - [anon_sym_BANGis] = ACTIONS(2958), - [anon_sym_in] = ACTIONS(2958), - [anon_sym_BANGin] = ACTIONS(2958), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_select] = ACTIONS(2958), - [anon_sym_lock] = ACTIONS(2958), - [anon_sym_rlock] = ACTIONS(2958), - [anon_sym_unsafe] = ACTIONS(2958), - [anon_sym_sql] = ACTIONS(2958), - [sym_int_literal] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2958), - [sym_rune_literal] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_shared] = ACTIONS(2958), - [anon_sym_map_LBRACK] = ACTIONS(2958), - [anon_sym_chan] = ACTIONS(2958), - [anon_sym_thread] = ACTIONS(2958), - [anon_sym_atomic] = ACTIONS(2958), - [anon_sym_assert] = ACTIONS(2958), - [anon_sym_defer] = ACTIONS(2958), - [anon_sym_goto] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_DOLLARfor] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [anon_sym_asm] = ACTIONS(2958), - [anon_sym_AT_LBRACK] = ACTIONS(2958), - [sym___double_quote] = ACTIONS(2958), - [sym___single_quote] = ACTIONS(2958), - [sym___c_double_quote] = ACTIONS(2958), - [sym___c_single_quote] = ACTIONS(2958), - [sym___r_double_quote] = ACTIONS(2958), - [sym___r_single_quote] = ACTIONS(2958), + [1168] = { + [sym_else_branch] = STATE(1250), + [sym_identifier] = ACTIONS(2558), + [anon_sym_LF] = ACTIONS(2558), + [anon_sym_CR] = ACTIONS(2558), + [anon_sym_CR_LF] = ACTIONS(2558), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_as] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_COMMA] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_fn] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2558), + [anon_sym_BANG_EQ] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2558), + [anon_sym_GT_EQ] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2558), + [anon_sym_mut] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_go] = ACTIONS(2558), + [anon_sym_spawn] = ACTIONS(2558), + [anon_sym_json_DOTdecode] = ACTIONS(2558), + [anon_sym_LBRACK2] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_LT_DASH] = ACTIONS(2558), + [anon_sym_LT_LT] = ACTIONS(2558), + [anon_sym_GT_GT] = ACTIONS(2558), + [anon_sym_GT_GT_GT] = ACTIONS(2558), + [anon_sym_AMP_CARET] = ACTIONS(2558), + [anon_sym_AMP_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2558), + [anon_sym_or] = ACTIONS(2558), + [sym_none] = ACTIONS(2558), + [sym_true] = ACTIONS(2558), + [sym_false] = ACTIONS(2558), + [sym_nil] = ACTIONS(2558), + [anon_sym_QMARK_DOT] = ACTIONS(2558), + [anon_sym_POUND_LBRACK] = ACTIONS(2558), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(3693), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_is] = ACTIONS(2558), + [anon_sym_BANGis] = ACTIONS(2558), + [anon_sym_in] = ACTIONS(2558), + [anon_sym_BANGin] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2558), + [anon_sym_select] = ACTIONS(2558), + [anon_sym_lock] = ACTIONS(2558), + [anon_sym_rlock] = ACTIONS(2558), + [anon_sym_unsafe] = ACTIONS(2558), + [anon_sym_sql] = ACTIONS(2558), + [sym_int_literal] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), + [sym_rune_literal] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_shared] = ACTIONS(2558), + [anon_sym_map_LBRACK] = ACTIONS(2558), + [anon_sym_chan] = ACTIONS(2558), + [anon_sym_thread] = ACTIONS(2558), + [anon_sym_atomic] = ACTIONS(2558), + [sym___double_quote] = ACTIONS(2558), + [sym___single_quote] = ACTIONS(2558), + [sym___c_double_quote] = ACTIONS(2558), + [sym___c_single_quote] = ACTIONS(2558), + [sym___r_double_quote] = ACTIONS(2558), + [sym___r_single_quote] = ACTIONS(2558), }, - [1097] = { - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2926), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_CR] = ACTIONS(2926), - [anon_sym_CR_LF] = ACTIONS(2926), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_const] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym___global] = ACTIONS(2926), - [anon_sym_type] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_fn] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_LT_EQ] = ACTIONS(2926), - [anon_sym_GT_EQ] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(2926), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_mut] = ACTIONS(2926), - [anon_sym_enum] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2926), - [anon_sym_PLUS_PLUS] = ACTIONS(2926), - [anon_sym_DASH_DASH] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_go] = ACTIONS(2926), - [anon_sym_spawn] = ACTIONS(2926), - [anon_sym_json_DOTdecode] = ACTIONS(2926), - [anon_sym_LBRACK2] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_GT_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_CARET] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2926), - [sym_none] = ACTIONS(2926), - [sym_true] = ACTIONS(2926), - [sym_false] = ACTIONS(2926), - [sym_nil] = ACTIONS(2926), - [anon_sym_QMARK_DOT] = ACTIONS(2926), - [anon_sym_POUND_LBRACK] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_DOLLARif] = ACTIONS(2926), - [anon_sym_is] = ACTIONS(2926), - [anon_sym_BANGis] = ACTIONS(2926), - [anon_sym_in] = ACTIONS(2926), - [anon_sym_BANGin] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_select] = ACTIONS(2926), - [anon_sym_lock] = ACTIONS(2926), - [anon_sym_rlock] = ACTIONS(2926), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_sql] = ACTIONS(2926), - [sym_int_literal] = ACTIONS(2926), - [sym_float_literal] = ACTIONS(2926), - [sym_rune_literal] = ACTIONS(2926), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_shared] = ACTIONS(2926), - [anon_sym_map_LBRACK] = ACTIONS(2926), - [anon_sym_chan] = ACTIONS(2926), - [anon_sym_thread] = ACTIONS(2926), - [anon_sym_atomic] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_defer] = ACTIONS(2926), - [anon_sym_goto] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_DOLLARfor] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_asm] = ACTIONS(2926), - [anon_sym_AT_LBRACK] = ACTIONS(2926), - [sym___double_quote] = ACTIONS(2926), - [sym___single_quote] = ACTIONS(2926), - [sym___c_double_quote] = ACTIONS(2926), - [sym___c_single_quote] = ACTIONS(2926), - [sym___r_double_quote] = ACTIONS(2926), - [sym___r_single_quote] = ACTIONS(2926), + [1169] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_AMP_CARET_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1098] = { - [ts_builtin_sym_end] = ACTIONS(2912), + [1170] = { [sym_identifier] = ACTIONS(2914), [anon_sym_LF] = ACTIONS(2914), [anon_sym_CR] = ACTIONS(2914), [anon_sym_CR_LF] = ACTIONS(2914), - [sym_comment] = ACTIONS(493), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2914), [anon_sym_DOT] = ACTIONS(2914), [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2916), [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym___global] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), [anon_sym_PIPE] = ACTIONS(2914), [anon_sym_fn] = ACTIONS(2914), [anon_sym_PLUS] = ACTIONS(2914), @@ -150409,13 +157611,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2914), [anon_sym_LT_EQ] = ACTIONS(2914), [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2919), [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(2914), [anon_sym_mut] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2914), [anon_sym_PLUS_PLUS] = ACTIONS(2914), [anon_sym_DASH_DASH] = ACTIONS(2914), [anon_sym_QMARK] = ACTIONS(2914), @@ -150462,17 +157662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_chan] = ACTIONS(2914), [anon_sym_thread] = ACTIONS(2914), [anon_sym_atomic] = ACTIONS(2914), - [anon_sym_assert] = ACTIONS(2914), - [anon_sym_defer] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_DOLLARfor] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_asm] = ACTIONS(2914), - [anon_sym_AT_LBRACK] = ACTIONS(2914), [sym___double_quote] = ACTIONS(2914), [sym___single_quote] = ACTIONS(2914), [sym___c_double_quote] = ACTIONS(2914), @@ -150480,2230 +157669,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2914), [sym___r_single_quote] = ACTIONS(2914), }, - [1099] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(2910), - [anon_sym_CR] = ACTIONS(2910), - [anon_sym_CR_LF] = ACTIONS(2910), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym___global] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [anon_sym_pub] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2910), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2910), - [anon_sym_AMP_CARET] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [anon_sym_assert] = ACTIONS(2910), - [anon_sym_defer] = ACTIONS(2910), - [anon_sym_goto] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_DOLLARfor] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_asm] = ACTIONS(2910), - [anon_sym_AT_LBRACK] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), - }, - [1100] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LF] = ACTIONS(2894), - [anon_sym_CR] = ACTIONS(2894), - [anon_sym_CR_LF] = ACTIONS(2894), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym___global] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [anon_sym_pub] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2894), - [anon_sym_AMP_CARET] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2894), - [anon_sym_POUND_LBRACK] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_defer] = ACTIONS(2894), - [anon_sym_goto] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_DOLLARfor] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_asm] = ACTIONS(2894), - [anon_sym_AT_LBRACK] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), - }, - [1101] = { - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2838), - [anon_sym_LF] = ACTIONS(2838), - [anon_sym_CR] = ACTIONS(2838), - [anon_sym_CR_LF] = ACTIONS(2838), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_as] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym___global] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_fn] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_pub] = ACTIONS(2838), - [anon_sym_mut] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_interface] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_go] = ACTIONS(2838), - [anon_sym_spawn] = ACTIONS(2838), - [anon_sym_json_DOTdecode] = ACTIONS(2838), - [anon_sym_LBRACK2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2838), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_or] = ACTIONS(2838), - [sym_none] = ACTIONS(2838), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_nil] = ACTIONS(2838), - [anon_sym_QMARK_DOT] = ACTIONS(2838), - [anon_sym_POUND_LBRACK] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_DOLLARif] = ACTIONS(2838), - [anon_sym_is] = ACTIONS(2838), - [anon_sym_BANGis] = ACTIONS(2838), - [anon_sym_in] = ACTIONS(2838), - [anon_sym_BANGin] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_select] = ACTIONS(2838), - [anon_sym_lock] = ACTIONS(2838), - [anon_sym_rlock] = ACTIONS(2838), - [anon_sym_unsafe] = ACTIONS(2838), - [anon_sym_sql] = ACTIONS(2838), - [sym_int_literal] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2838), - [sym_rune_literal] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2838), - [anon_sym_shared] = ACTIONS(2838), - [anon_sym_map_LBRACK] = ACTIONS(2838), - [anon_sym_chan] = ACTIONS(2838), - [anon_sym_thread] = ACTIONS(2838), - [anon_sym_atomic] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_defer] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_DOLLARfor] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym_AT_LBRACK] = ACTIONS(2838), - [sym___double_quote] = ACTIONS(2838), - [sym___single_quote] = ACTIONS(2838), - [sym___c_double_quote] = ACTIONS(2838), - [sym___c_single_quote] = ACTIONS(2838), - [sym___r_double_quote] = ACTIONS(2838), - [sym___r_single_quote] = ACTIONS(2838), - }, - [1102] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_CR] = ACTIONS(2886), - [anon_sym_CR_LF] = ACTIONS(2886), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym___global] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_EQ] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_pub] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_LT_LT] = ACTIONS(2886), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2886), - [anon_sym_AMP_CARET] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2886), - [anon_sym_POUND_LBRACK] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2886), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_defer] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_DOLLARfor] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_asm] = ACTIONS(2886), - [anon_sym_AT_LBRACK] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), - }, - [1103] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym___global] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_union] = ACTIONS(2854), - [anon_sym_pub] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_defer] = ACTIONS(2854), - [anon_sym_goto] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_DOLLARfor] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_asm] = ACTIONS(2854), - [anon_sym_AT_LBRACK] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), - }, - [1104] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym___global] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_union] = ACTIONS(2858), - [anon_sym_pub] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_defer] = ACTIONS(2858), - [anon_sym_goto] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_DOLLARfor] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_asm] = ACTIONS(2858), - [anon_sym_AT_LBRACK] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), - }, - [1105] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LF] = ACTIONS(2882), - [anon_sym_CR] = ACTIONS(2882), - [anon_sym_CR_LF] = ACTIONS(2882), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_as] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym___global] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_fn] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_GT] = ACTIONS(2882), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_union] = ACTIONS(2882), - [anon_sym_pub] = ACTIONS(2882), - [anon_sym_mut] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_go] = ACTIONS(2882), - [anon_sym_spawn] = ACTIONS(2882), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2882), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2882), - [sym_none] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_nil] = ACTIONS(2882), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_DOLLARif] = ACTIONS(2882), - [anon_sym_is] = ACTIONS(2882), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2882), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_select] = ACTIONS(2882), - [anon_sym_lock] = ACTIONS(2882), - [anon_sym_rlock] = ACTIONS(2882), - [anon_sym_unsafe] = ACTIONS(2882), - [anon_sym_sql] = ACTIONS(2882), - [sym_int_literal] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2882), - [anon_sym_shared] = ACTIONS(2882), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2882), - [anon_sym_thread] = ACTIONS(2882), - [anon_sym_atomic] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_defer] = ACTIONS(2882), - [anon_sym_goto] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_DOLLARfor] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_asm] = ACTIONS(2882), - [anon_sym_AT_LBRACK] = ACTIONS(2882), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), - }, - [1106] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_CR] = ACTIONS(2874), - [anon_sym_CR_LF] = ACTIONS(2874), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym___global] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [anon_sym_pub] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_defer] = ACTIONS(2874), - [anon_sym_goto] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_DOLLARfor] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_asm] = ACTIONS(2874), - [anon_sym_AT_LBRACK] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), - }, - [1107] = { - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_CR] = ACTIONS(3082), - [anon_sym_CR_LF] = ACTIONS(3082), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym___global] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_fn] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_LT_EQ] = ACTIONS(3082), - [anon_sym_GT_EQ] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_pub] = ACTIONS(3082), - [anon_sym_mut] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_go] = ACTIONS(3082), - [anon_sym_spawn] = ACTIONS(3082), - [anon_sym_json_DOTdecode] = ACTIONS(3082), - [anon_sym_LBRACK2] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_GT_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_CARET] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_or] = ACTIONS(3082), - [sym_none] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_nil] = ACTIONS(3082), - [anon_sym_QMARK_DOT] = ACTIONS(3082), - [anon_sym_POUND_LBRACK] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_DOLLARif] = ACTIONS(3082), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3082), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_BANGin] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_select] = ACTIONS(3082), - [anon_sym_lock] = ACTIONS(3082), - [anon_sym_rlock] = ACTIONS(3082), - [anon_sym_unsafe] = ACTIONS(3082), - [anon_sym_sql] = ACTIONS(3082), - [sym_int_literal] = ACTIONS(3082), - [sym_float_literal] = ACTIONS(3082), - [sym_rune_literal] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_shared] = ACTIONS(3082), - [anon_sym_map_LBRACK] = ACTIONS(3082), - [anon_sym_chan] = ACTIONS(3082), - [anon_sym_thread] = ACTIONS(3082), - [anon_sym_atomic] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_defer] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_DOLLARfor] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_POUND] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym_AT_LBRACK] = ACTIONS(3082), - [sym___double_quote] = ACTIONS(3082), - [sym___single_quote] = ACTIONS(3082), - [sym___c_double_quote] = ACTIONS(3082), - [sym___c_single_quote] = ACTIONS(3082), - [sym___r_double_quote] = ACTIONS(3082), - [sym___r_single_quote] = ACTIONS(3082), - }, - [1108] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_LF] = ACTIONS(2866), - [anon_sym_CR] = ACTIONS(2866), - [anon_sym_CR_LF] = ACTIONS(2866), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_as] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2866), - [anon_sym_const] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym___global] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_fn] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_GT] = ACTIONS(2866), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2866), - [anon_sym_union] = ACTIONS(2866), - [anon_sym_pub] = ACTIONS(2866), - [anon_sym_mut] = ACTIONS(2866), - [anon_sym_enum] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_go] = ACTIONS(2866), - [anon_sym_spawn] = ACTIONS(2866), - [anon_sym_json_DOTdecode] = ACTIONS(2866), - [anon_sym_LBRACK2] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2866), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_or] = ACTIONS(2866), - [sym_none] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_nil] = ACTIONS(2866), - [anon_sym_QMARK_DOT] = ACTIONS(2866), - [anon_sym_POUND_LBRACK] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_DOLLARif] = ACTIONS(2866), - [anon_sym_is] = ACTIONS(2866), - [anon_sym_BANGis] = ACTIONS(2866), - [anon_sym_in] = ACTIONS(2866), - [anon_sym_BANGin] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_select] = ACTIONS(2866), - [anon_sym_lock] = ACTIONS(2866), - [anon_sym_rlock] = ACTIONS(2866), - [anon_sym_unsafe] = ACTIONS(2866), - [anon_sym_sql] = ACTIONS(2866), - [sym_int_literal] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), - [sym_rune_literal] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2866), - [anon_sym_shared] = ACTIONS(2866), - [anon_sym_map_LBRACK] = ACTIONS(2866), - [anon_sym_chan] = ACTIONS(2866), - [anon_sym_thread] = ACTIONS(2866), - [anon_sym_atomic] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_defer] = ACTIONS(2866), - [anon_sym_goto] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_DOLLARfor] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_asm] = ACTIONS(2866), - [anon_sym_AT_LBRACK] = ACTIONS(2866), - [sym___double_quote] = ACTIONS(2866), - [sym___single_quote] = ACTIONS(2866), - [sym___c_double_quote] = ACTIONS(2866), - [sym___c_single_quote] = ACTIONS(2866), - [sym___r_double_quote] = ACTIONS(2866), - [sym___r_single_quote] = ACTIONS(2866), - }, - [1109] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), - }, - [1110] = { - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2838), - [anon_sym_LF] = ACTIONS(2838), - [anon_sym_CR] = ACTIONS(2838), - [anon_sym_CR_LF] = ACTIONS(2838), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_as] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym___global] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_fn] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_pub] = ACTIONS(2838), - [anon_sym_mut] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_interface] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_go] = ACTIONS(2838), - [anon_sym_spawn] = ACTIONS(2838), - [anon_sym_json_DOTdecode] = ACTIONS(2838), - [anon_sym_LBRACK2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2838), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_or] = ACTIONS(2838), - [sym_none] = ACTIONS(2838), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_nil] = ACTIONS(2838), - [anon_sym_QMARK_DOT] = ACTIONS(2838), - [anon_sym_POUND_LBRACK] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_DOLLARif] = ACTIONS(2838), - [anon_sym_is] = ACTIONS(2838), - [anon_sym_BANGis] = ACTIONS(2838), - [anon_sym_in] = ACTIONS(2838), - [anon_sym_BANGin] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_select] = ACTIONS(2838), - [anon_sym_lock] = ACTIONS(2838), - [anon_sym_rlock] = ACTIONS(2838), - [anon_sym_unsafe] = ACTIONS(2838), - [anon_sym_sql] = ACTIONS(2838), - [sym_int_literal] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2838), - [sym_rune_literal] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2838), - [anon_sym_shared] = ACTIONS(2838), - [anon_sym_map_LBRACK] = ACTIONS(2838), - [anon_sym_chan] = ACTIONS(2838), - [anon_sym_thread] = ACTIONS(2838), - [anon_sym_atomic] = ACTIONS(2838), - [anon_sym_assert] = ACTIONS(2838), - [anon_sym_defer] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_DOLLARfor] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_asm] = ACTIONS(2838), - [anon_sym_AT_LBRACK] = ACTIONS(2838), - [sym___double_quote] = ACTIONS(2838), - [sym___single_quote] = ACTIONS(2838), - [sym___c_double_quote] = ACTIONS(2838), - [sym___c_single_quote] = ACTIONS(2838), - [sym___r_double_quote] = ACTIONS(2838), - [sym___r_single_quote] = ACTIONS(2838), - }, - [1111] = { - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2974), - [anon_sym_LF] = ACTIONS(2974), - [anon_sym_CR] = ACTIONS(2974), - [anon_sym_CR_LF] = ACTIONS(2974), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2974), - [anon_sym_as] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2974), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_const] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2974), - [anon_sym___global] = ACTIONS(2974), - [anon_sym_type] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_fn] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_PERCENT] = ACTIONS(2974), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_GT] = ACTIONS(2974), - [anon_sym_EQ_EQ] = ACTIONS(2974), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_LT_EQ] = ACTIONS(2974), - [anon_sym_GT_EQ] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(2974), - [anon_sym_union] = ACTIONS(2974), - [anon_sym_pub] = ACTIONS(2974), - [anon_sym_mut] = ACTIONS(2974), - [anon_sym_enum] = ACTIONS(2974), - [anon_sym_interface] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2974), - [anon_sym_DASH_DASH] = ACTIONS(2974), - [anon_sym_QMARK] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_go] = ACTIONS(2974), - [anon_sym_spawn] = ACTIONS(2974), - [anon_sym_json_DOTdecode] = ACTIONS(2974), - [anon_sym_LBRACK2] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_LT_DASH] = ACTIONS(2974), - [anon_sym_LT_LT] = ACTIONS(2974), - [anon_sym_GT_GT] = ACTIONS(2974), - [anon_sym_GT_GT_GT] = ACTIONS(2974), - [anon_sym_AMP_CARET] = ACTIONS(2974), - [anon_sym_AMP_AMP] = ACTIONS(2974), - [anon_sym_PIPE_PIPE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2974), - [sym_none] = ACTIONS(2974), - [sym_true] = ACTIONS(2974), - [sym_false] = ACTIONS(2974), - [sym_nil] = ACTIONS(2974), - [anon_sym_QMARK_DOT] = ACTIONS(2974), - [anon_sym_POUND_LBRACK] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_DOLLARif] = ACTIONS(2974), - [anon_sym_is] = ACTIONS(2974), - [anon_sym_BANGis] = ACTIONS(2974), - [anon_sym_in] = ACTIONS(2974), - [anon_sym_BANGin] = ACTIONS(2974), - [anon_sym_match] = ACTIONS(2974), - [anon_sym_select] = ACTIONS(2974), - [anon_sym_lock] = ACTIONS(2974), - [anon_sym_rlock] = ACTIONS(2974), - [anon_sym_unsafe] = ACTIONS(2974), - [anon_sym_sql] = ACTIONS(2974), - [sym_int_literal] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2974), - [sym_rune_literal] = ACTIONS(2974), - [anon_sym_AT] = ACTIONS(2974), - [anon_sym_shared] = ACTIONS(2974), - [anon_sym_map_LBRACK] = ACTIONS(2974), - [anon_sym_chan] = ACTIONS(2974), - [anon_sym_thread] = ACTIONS(2974), - [anon_sym_atomic] = ACTIONS(2974), - [anon_sym_assert] = ACTIONS(2974), - [anon_sym_defer] = ACTIONS(2974), - [anon_sym_goto] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_DOLLARfor] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [anon_sym_asm] = ACTIONS(2974), - [anon_sym_AT_LBRACK] = ACTIONS(2974), - [sym___double_quote] = ACTIONS(2974), - [sym___single_quote] = ACTIONS(2974), - [sym___c_double_quote] = ACTIONS(2974), - [sym___c_single_quote] = ACTIONS(2974), - [sym___r_double_quote] = ACTIONS(2974), - [sym___r_single_quote] = ACTIONS(2974), - }, - [1112] = { - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym___global] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_pub] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_defer] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_DOLLARfor] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_asm] = ACTIONS(2806), - [anon_sym_AT_LBRACK] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), - }, - [1113] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_RBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [sym_none] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_nil] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(593), - [anon_sym_DOLLARif] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(593), - [anon_sym_select] = ACTIONS(593), - [anon_sym_lock] = ACTIONS(593), - [anon_sym_rlock] = ACTIONS(593), - [anon_sym_unsafe] = ACTIONS(593), - [anon_sym_sql] = ACTIONS(593), - [sym_int_literal] = ACTIONS(593), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), - }, - [1114] = { - [sym_reference_expression] = STATE(4427), - [sym_type_reference_expression] = STATE(1303), - [sym_plain_type] = STATE(1369), - [sym__plain_type_without_special] = STATE(1347), - [sym_anon_struct_type] = STATE(1406), - [sym_multi_return_type] = STATE(1347), - [sym_result_type] = STATE(1347), - [sym_option_type] = STATE(1347), - [sym_qualified_type] = STATE(1303), - [sym_fixed_array_type] = STATE(1406), - [sym_array_type] = STATE(1406), - [sym_pointer_type] = STATE(1406), - [sym_wrong_pointer_type] = STATE(1406), - [sym_map_type] = STATE(1406), - [sym_channel_type] = STATE(1406), - [sym_shared_type] = STATE(1406), - [sym_thread_type] = STATE(1406), - [sym_atomic_type] = STATE(1406), - [sym_generic_type] = STATE(1406), - [sym_function_type] = STATE(1406), - [sym_identifier] = ACTIONS(3361), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3369), - [anon_sym_mut] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_go] = ACTIONS(561), - [anon_sym_spawn] = ACTIONS(561), - [anon_sym_json_DOTdecode] = ACTIONS(557), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_LT_DASH] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(557), - [anon_sym_AMP_CARET] = ACTIONS(557), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_or] = ACTIONS(561), - [sym_none] = ACTIONS(561), - [sym_true] = ACTIONS(561), - [sym_false] = ACTIONS(561), - [sym_nil] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_POUND_LBRACK] = ACTIONS(557), - [anon_sym_if] = ACTIONS(561), - [anon_sym_DOLLARif] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(557), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(557), - [anon_sym_match] = ACTIONS(561), - [anon_sym_select] = ACTIONS(561), - [anon_sym_lock] = ACTIONS(561), - [anon_sym_rlock] = ACTIONS(561), - [anon_sym_unsafe] = ACTIONS(561), - [anon_sym_sql] = ACTIONS(561), - [sym_int_literal] = ACTIONS(561), - [sym_float_literal] = ACTIONS(557), - [sym_rune_literal] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3381), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3385), - [anon_sym_atomic] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(557), - [sym___single_quote] = ACTIONS(557), - [sym___c_double_quote] = ACTIONS(557), - [sym___c_single_quote] = ACTIONS(557), - [sym___r_double_quote] = ACTIONS(557), - [sym___r_single_quote] = ACTIONS(557), - }, - [1115] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(617), - [anon_sym_mut] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_go] = ACTIONS(617), - [anon_sym_spawn] = ACTIONS(617), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(617), - [sym_none] = ACTIONS(617), - [sym_true] = ACTIONS(617), - [sym_false] = ACTIONS(617), - [sym_nil] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(617), - [anon_sym_DOLLARif] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(617), - [anon_sym_select] = ACTIONS(617), - [anon_sym_lock] = ACTIONS(617), - [anon_sym_rlock] = ACTIONS(617), - [anon_sym_unsafe] = ACTIONS(617), - [anon_sym_sql] = ACTIONS(617), - [sym_int_literal] = ACTIONS(617), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(617), - [anon_sym_map_LBRACK] = ACTIONS(615), - [anon_sym_chan] = ACTIONS(617), - [anon_sym_thread] = ACTIONS(617), - [anon_sym_atomic] = ACTIONS(617), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), - }, - [1116] = { - [sym_reference_expression] = STATE(4427), - [sym_type_reference_expression] = STATE(1303), - [sym_plain_type] = STATE(1311), - [sym__plain_type_without_special] = STATE(1347), - [sym_anon_struct_type] = STATE(1406), - [sym_multi_return_type] = STATE(1347), - [sym_result_type] = STATE(1347), - [sym_option_type] = STATE(1347), - [sym_qualified_type] = STATE(1303), - [sym_fixed_array_type] = STATE(1406), - [sym_array_type] = STATE(1406), - [sym_pointer_type] = STATE(1406), - [sym_wrong_pointer_type] = STATE(1406), - [sym_map_type] = STATE(1406), - [sym_channel_type] = STATE(1406), - [sym_shared_type] = STATE(1406), - [sym_thread_type] = STATE(1406), - [sym_atomic_type] = STATE(1406), - [sym_generic_type] = STATE(1406), - [sym_function_type] = STATE(1406), - [sym_identifier] = ACTIONS(3361), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3369), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_go] = ACTIONS(621), - [anon_sym_spawn] = ACTIONS(621), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_nil] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_if] = ACTIONS(621), - [anon_sym_DOLLARif] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_match] = ACTIONS(621), - [anon_sym_select] = ACTIONS(621), - [anon_sym_lock] = ACTIONS(621), - [anon_sym_rlock] = ACTIONS(621), - [anon_sym_unsafe] = ACTIONS(621), - [anon_sym_sql] = ACTIONS(621), - [sym_int_literal] = ACTIONS(621), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3381), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3385), - [anon_sym_atomic] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), + [1171] = { + [sym_identifier] = ACTIONS(3695), + [anon_sym_LF] = ACTIONS(3698), + [anon_sym_CR] = ACTIONS(3698), + [anon_sym_CR_LF] = ACTIONS(3698), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), }, - [1117] = { - [sym_reference_expression] = STATE(4427), - [sym_type_reference_expression] = STATE(1303), - [sym_plain_type] = STATE(1315), - [sym__plain_type_without_special] = STATE(1347), - [sym_anon_struct_type] = STATE(1406), - [sym_multi_return_type] = STATE(1347), - [sym_result_type] = STATE(1347), - [sym_option_type] = STATE(1347), - [sym_qualified_type] = STATE(1303), - [sym_fixed_array_type] = STATE(1406), - [sym_array_type] = STATE(1406), - [sym_pointer_type] = STATE(1406), - [sym_wrong_pointer_type] = STATE(1406), - [sym_map_type] = STATE(1406), - [sym_channel_type] = STATE(1406), - [sym_shared_type] = STATE(1406), - [sym_thread_type] = STATE(1406), - [sym_atomic_type] = STATE(1406), - [sym_generic_type] = STATE(1406), - [sym_function_type] = STATE(1406), - [sym_identifier] = ACTIONS(3361), + [1172] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_RBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3369), - [anon_sym_mut] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(611), - [anon_sym_DASH_DASH] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_go] = ACTIONS(613), - [anon_sym_spawn] = ACTIONS(613), - [anon_sym_json_DOTdecode] = ACTIONS(611), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_LT_DASH] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(611), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(611), - [anon_sym_AMP_CARET] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_or] = ACTIONS(613), - [sym_none] = ACTIONS(613), - [sym_true] = ACTIONS(613), - [sym_false] = ACTIONS(613), - [sym_nil] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(611), - [anon_sym_if] = ACTIONS(613), - [anon_sym_DOLLARif] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(611), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(611), - [anon_sym_match] = ACTIONS(613), - [anon_sym_select] = ACTIONS(613), - [anon_sym_lock] = ACTIONS(613), - [anon_sym_rlock] = ACTIONS(613), - [anon_sym_unsafe] = ACTIONS(613), - [anon_sym_sql] = ACTIONS(613), - [sym_int_literal] = ACTIONS(613), - [sym_float_literal] = ACTIONS(611), - [sym_rune_literal] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3381), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3385), - [anon_sym_atomic] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(611), - [sym___single_quote] = ACTIONS(611), - [sym___c_double_quote] = ACTIONS(611), - [sym___c_single_quote] = ACTIONS(611), - [sym___r_double_quote] = ACTIONS(611), - [sym___r_single_quote] = ACTIONS(611), - }, - [1118] = { - [sym_reference_expression] = STATE(4462), - [sym_type_reference_expression] = STATE(1415), - [sym_plain_type] = STATE(1482), - [sym__plain_type_without_special] = STATE(1479), - [sym_anon_struct_type] = STATE(1481), - [sym_multi_return_type] = STATE(1479), - [sym_result_type] = STATE(1479), - [sym_option_type] = STATE(1479), - [sym_qualified_type] = STATE(1415), - [sym_fixed_array_type] = STATE(1481), - [sym_array_type] = STATE(1481), - [sym_pointer_type] = STATE(1481), - [sym_wrong_pointer_type] = STATE(1481), - [sym_map_type] = STATE(1481), - [sym_channel_type] = STATE(1481), - [sym_shared_type] = STATE(1481), - [sym_thread_type] = STATE(1481), - [sym_atomic_type] = STATE(1481), - [sym_generic_type] = STATE(1481), - [sym_function_type] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(557), - [sym_identifier] = ACTIONS(3389), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_const] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(561), - [anon_sym_type] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_union] = ACTIONS(561), - [anon_sym_pub] = ACTIONS(561), - [anon_sym_mut] = ACTIONS(561), - [anon_sym_enum] = ACTIONS(561), - [anon_sym_interface] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(561), - [anon_sym_spawn] = ACTIONS(561), - [anon_sym_json_DOTdecode] = ACTIONS(561), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(561), - [sym_none] = ACTIONS(561), - [sym_true] = ACTIONS(561), - [sym_false] = ACTIONS(561), - [sym_nil] = ACTIONS(561), - [anon_sym_if] = ACTIONS(561), - [anon_sym_DOLLARif] = ACTIONS(561), - [anon_sym_match] = ACTIONS(561), - [anon_sym_select] = ACTIONS(561), - [anon_sym_lock] = ACTIONS(561), - [anon_sym_rlock] = ACTIONS(561), - [anon_sym_unsafe] = ACTIONS(561), - [anon_sym_sql] = ACTIONS(561), - [sym_int_literal] = ACTIONS(561), - [sym_float_literal] = ACTIONS(561), - [sym_rune_literal] = ACTIONS(561), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3409), - [anon_sym_chan] = ACTIONS(3411), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(561), - [anon_sym_defer] = ACTIONS(561), - [anon_sym_goto] = ACTIONS(561), - [anon_sym_break] = ACTIONS(561), - [anon_sym_continue] = ACTIONS(561), - [anon_sym_return] = ACTIONS(561), - [anon_sym_DOLLARfor] = ACTIONS(561), - [anon_sym_for] = ACTIONS(561), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_asm] = ACTIONS(561), - [anon_sym_AT_LBRACK] = ACTIONS(561), - [sym___double_quote] = ACTIONS(561), - [sym___single_quote] = ACTIONS(561), - [sym___c_double_quote] = ACTIONS(561), - [sym___c_single_quote] = ACTIONS(561), - [sym___r_double_quote] = ACTIONS(561), - [sym___r_single_quote] = ACTIONS(561), - }, - [1119] = { - [sym_reference_expression] = STATE(4462), - [sym_type_reference_expression] = STATE(1415), - [sym_plain_type] = STATE(1458), - [sym__plain_type_without_special] = STATE(1479), - [sym_anon_struct_type] = STATE(1481), - [sym_multi_return_type] = STATE(1479), - [sym_result_type] = STATE(1479), - [sym_option_type] = STATE(1479), - [sym_qualified_type] = STATE(1415), - [sym_fixed_array_type] = STATE(1481), - [sym_array_type] = STATE(1481), - [sym_pointer_type] = STATE(1481), - [sym_wrong_pointer_type] = STATE(1481), - [sym_map_type] = STATE(1481), - [sym_channel_type] = STATE(1481), - [sym_shared_type] = STATE(1481), - [sym_thread_type] = STATE(1481), - [sym_atomic_type] = STATE(1481), - [sym_generic_type] = STATE(1481), - [sym_function_type] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(611), - [sym_identifier] = ACTIONS(3389), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_const] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(613), - [anon_sym_type] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_union] = ACTIONS(613), - [anon_sym_pub] = ACTIONS(613), - [anon_sym_mut] = ACTIONS(613), - [anon_sym_enum] = ACTIONS(613), - [anon_sym_interface] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(613), - [anon_sym_spawn] = ACTIONS(613), - [anon_sym_json_DOTdecode] = ACTIONS(613), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(613), - [sym_none] = ACTIONS(613), - [sym_true] = ACTIONS(613), - [sym_false] = ACTIONS(613), - [sym_nil] = ACTIONS(613), - [anon_sym_if] = ACTIONS(613), - [anon_sym_DOLLARif] = ACTIONS(613), - [anon_sym_match] = ACTIONS(613), - [anon_sym_select] = ACTIONS(613), - [anon_sym_lock] = ACTIONS(613), - [anon_sym_rlock] = ACTIONS(613), - [anon_sym_unsafe] = ACTIONS(613), - [anon_sym_sql] = ACTIONS(613), - [sym_int_literal] = ACTIONS(613), - [sym_float_literal] = ACTIONS(613), - [sym_rune_literal] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3409), - [anon_sym_chan] = ACTIONS(3411), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(613), - [anon_sym_defer] = ACTIONS(613), - [anon_sym_goto] = ACTIONS(613), - [anon_sym_break] = ACTIONS(613), - [anon_sym_continue] = ACTIONS(613), - [anon_sym_return] = ACTIONS(613), - [anon_sym_DOLLARfor] = ACTIONS(613), - [anon_sym_for] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(613), - [anon_sym_asm] = ACTIONS(613), - [anon_sym_AT_LBRACK] = ACTIONS(613), - [sym___double_quote] = ACTIONS(613), - [sym___single_quote] = ACTIONS(613), - [sym___c_double_quote] = ACTIONS(613), - [sym___c_single_quote] = ACTIONS(613), - [sym___r_double_quote] = ACTIONS(613), - [sym___r_single_quote] = ACTIONS(613), - }, - [1120] = { - [sym_reference_expression] = STATE(4462), - [sym_type_reference_expression] = STATE(1415), - [sym_plain_type] = STATE(1474), - [sym__plain_type_without_special] = STATE(1479), - [sym_anon_struct_type] = STATE(1481), - [sym_multi_return_type] = STATE(1479), - [sym_result_type] = STATE(1479), - [sym_option_type] = STATE(1479), - [sym_qualified_type] = STATE(1415), - [sym_fixed_array_type] = STATE(1481), - [sym_array_type] = STATE(1481), - [sym_pointer_type] = STATE(1481), - [sym_wrong_pointer_type] = STATE(1481), - [sym_map_type] = STATE(1481), - [sym_channel_type] = STATE(1481), - [sym_shared_type] = STATE(1481), - [sym_thread_type] = STATE(1481), - [sym_atomic_type] = STATE(1481), - [sym_generic_type] = STATE(1481), - [sym_function_type] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(619), - [sym_identifier] = ACTIONS(3389), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(621), - [anon_sym_type] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_union] = ACTIONS(621), - [anon_sym_pub] = ACTIONS(621), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_enum] = ACTIONS(621), - [anon_sym_interface] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(621), - [anon_sym_spawn] = ACTIONS(621), - [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(621), - [sym_none] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_nil] = ACTIONS(621), - [anon_sym_if] = ACTIONS(621), - [anon_sym_DOLLARif] = ACTIONS(621), - [anon_sym_match] = ACTIONS(621), - [anon_sym_select] = ACTIONS(621), - [anon_sym_lock] = ACTIONS(621), - [anon_sym_rlock] = ACTIONS(621), - [anon_sym_unsafe] = ACTIONS(621), - [anon_sym_sql] = ACTIONS(621), - [sym_int_literal] = ACTIONS(621), - [sym_float_literal] = ACTIONS(621), - [sym_rune_literal] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3409), - [anon_sym_chan] = ACTIONS(3411), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(621), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_goto] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_return] = ACTIONS(621), - [anon_sym_DOLLARfor] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_POUND] = ACTIONS(621), - [anon_sym_asm] = ACTIONS(621), - [anon_sym_AT_LBRACK] = ACTIONS(621), - [sym___double_quote] = ACTIONS(621), - [sym___single_quote] = ACTIONS(621), - [sym___c_double_quote] = ACTIONS(621), - [sym___c_single_quote] = ACTIONS(621), - [sym___r_double_quote] = ACTIONS(621), - [sym___r_single_quote] = ACTIONS(621), - }, - [1121] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_CR] = ACTIONS(617), - [anon_sym_CR_LF] = ACTIONS(617), - [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), [anon_sym_EQ_EQ] = ACTIONS(617), [anon_sym_BANG_EQ] = ACTIONS(617), [anon_sym_LT_EQ] = ACTIONS(617), [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), [anon_sym_COLON] = ACTIONS(617), [anon_sym_PLUS_PLUS] = ACTIONS(617), [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), [anon_sym_AMP_AMP] = ACTIONS(617), [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), [anon_sym_QMARK_DOT] = ACTIONS(617), [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), [anon_sym_BANGin] = ACTIONS(617), [anon_sym_STAR_EQ] = ACTIONS(617), [anon_sym_SLASH_EQ] = ACTIONS(617), @@ -152717,257 +157831,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(617), [anon_sym_PIPE_EQ] = ACTIONS(617), [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1122] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1418), - [ts_builtin_sym_end] = ACTIONS(1708), - [sym_identifier] = ACTIONS(1710), - [anon_sym_LF] = ACTIONS(1710), - [anon_sym_CR] = ACTIONS(1710), - [anon_sym_CR_LF] = ACTIONS(1710), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(1716), - [anon_sym___global] = ACTIONS(1710), - [anon_sym_type] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_pub] = ACTIONS(1710), - [anon_sym_mut] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_interface] = ACTIONS(1710), - [anon_sym_QMARK] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_go] = ACTIONS(1710), - [anon_sym_spawn] = ACTIONS(1710), - [anon_sym_json_DOTdecode] = ACTIONS(1710), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_LT_DASH] = ACTIONS(1710), - [sym_none] = ACTIONS(1710), - [sym_true] = ACTIONS(1710), - [sym_false] = ACTIONS(1710), - [sym_nil] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_DOLLARif] = ACTIONS(1710), - [anon_sym_match] = ACTIONS(1710), - [anon_sym_select] = ACTIONS(1710), - [anon_sym_STAR_EQ] = ACTIONS(1716), - [anon_sym_SLASH_EQ] = ACTIONS(1716), - [anon_sym_PERCENT_EQ] = ACTIONS(1716), - [anon_sym_LT_LT_EQ] = ACTIONS(1716), - [anon_sym_GT_GT_EQ] = ACTIONS(1716), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1716), - [anon_sym_AMP_EQ] = ACTIONS(1716), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1716), - [anon_sym_PLUS_EQ] = ACTIONS(1716), - [anon_sym_DASH_EQ] = ACTIONS(1716), - [anon_sym_PIPE_EQ] = ACTIONS(1716), - [anon_sym_CARET_EQ] = ACTIONS(1716), - [anon_sym_COLON_EQ] = ACTIONS(1716), - [anon_sym_lock] = ACTIONS(1710), - [anon_sym_rlock] = ACTIONS(1710), - [anon_sym_unsafe] = ACTIONS(1710), - [anon_sym_sql] = ACTIONS(1710), - [sym_int_literal] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), - [sym_rune_literal] = ACTIONS(1710), - [anon_sym_AT] = ACTIONS(1710), - [anon_sym_shared] = ACTIONS(1710), - [anon_sym_map_LBRACK] = ACTIONS(1710), - [anon_sym_chan] = ACTIONS(1710), - [anon_sym_thread] = ACTIONS(1710), - [anon_sym_atomic] = ACTIONS(1710), - [anon_sym_assert] = ACTIONS(1710), - [anon_sym_defer] = ACTIONS(1710), - [anon_sym_goto] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_DOLLARfor] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_asm] = ACTIONS(1710), - [anon_sym_AT_LBRACK] = ACTIONS(1710), - [sym___double_quote] = ACTIONS(1710), - [sym___single_quote] = ACTIONS(1710), - [sym___c_double_quote] = ACTIONS(1710), - [sym___c_single_quote] = ACTIONS(1710), - [sym___r_double_quote] = ACTIONS(1710), - [sym___r_single_quote] = ACTIONS(1710), - }, - [1123] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_DASH] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(593), - [anon_sym_POUND_LBRACK] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(593), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(593), - [anon_sym_STAR_EQ] = ACTIONS(593), - [anon_sym_SLASH_EQ] = ACTIONS(593), - [anon_sym_PERCENT_EQ] = ACTIONS(593), - [anon_sym_LT_LT_EQ] = ACTIONS(593), - [anon_sym_GT_GT_EQ] = ACTIONS(593), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(593), - [anon_sym_AMP_EQ] = ACTIONS(593), - [anon_sym_AMP_CARET_EQ] = ACTIONS(593), - [anon_sym_PLUS_EQ] = ACTIONS(593), - [anon_sym_DASH_EQ] = ACTIONS(593), - [anon_sym_PIPE_EQ] = ACTIONS(593), - [anon_sym_CARET_EQ] = ACTIONS(593), - [anon_sym_COLON_EQ] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), }, - [1124] = { - [sym_reference_expression] = STATE(4416), - [sym_type_reference_expression] = STATE(1669), - [sym_plain_type] = STATE(1660), - [sym__plain_type_without_special] = STATE(1636), - [sym_anon_struct_type] = STATE(1651), - [sym_multi_return_type] = STATE(1636), - [sym_result_type] = STATE(1636), - [sym_option_type] = STATE(1636), - [sym_qualified_type] = STATE(1669), - [sym_fixed_array_type] = STATE(1651), - [sym_array_type] = STATE(1651), - [sym_pointer_type] = STATE(1651), - [sym_wrong_pointer_type] = STATE(1651), - [sym_map_type] = STATE(1651), - [sym_channel_type] = STATE(1651), - [sym_shared_type] = STATE(1651), - [sym_thread_type] = STATE(1651), - [sym_atomic_type] = STATE(1651), - [sym_generic_type] = STATE(1651), - [sym_function_type] = STATE(1651), - [sym_identifier] = ACTIONS(3419), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), + [1173] = { + [sym_reference_expression] = STATE(4543), + [sym_type_reference_expression] = STATE(1962), + [sym_plain_type] = STATE(2050), + [sym__plain_type_without_special] = STATE(2112), + [sym_anon_struct_type] = STATE(2100), + [sym_multi_return_type] = STATE(2112), + [sym_result_type] = STATE(2112), + [sym_option_type] = STATE(2112), + [sym_qualified_type] = STATE(1962), + [sym_fixed_array_type] = STATE(2100), + [sym_array_type] = STATE(2100), + [sym_pointer_type] = STATE(2100), + [sym_wrong_pointer_type] = STATE(2100), + [sym_map_type] = STATE(2100), + [sym_channel_type] = STATE(2100), + [sym_shared_type] = STATE(2100), + [sym_thread_type] = STATE(2100), + [sym_atomic_type] = STATE(2100), + [sym_generic_type] = STATE(2100), + [sym_function_type] = STATE(2100), + [sym_identifier] = ACTIONS(3705), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3711), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), [anon_sym_EQ_EQ] = ACTIONS(621), [anon_sym_BANG_EQ] = ACTIONS(621), [anon_sym_LT_EQ] = ACTIONS(621), [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3713), [anon_sym_COLON] = ACTIONS(621), [anon_sym_PLUS_PLUS] = ACTIONS(621), [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3435), + [anon_sym_QMARK] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_LBRACK2] = ACTIONS(3719), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3721), [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), [anon_sym_AMP_AMP] = ACTIONS(621), [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), [anon_sym_QMARK_DOT] = ACTIONS(621), [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), [anon_sym_BANGin] = ACTIONS(621), [anon_sym_STAR_EQ] = ACTIONS(621), [anon_sym_SLASH_EQ] = ACTIONS(621), @@ -152981,169 +157915,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(621), [anon_sym_PIPE_EQ] = ACTIONS(621), [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3439), - [anon_sym_chan] = ACTIONS(3441), - [anon_sym_thread] = ACTIONS(3443), - [anon_sym_atomic] = ACTIONS(3445), + [anon_sym_shared] = ACTIONS(3723), + [anon_sym_map_LBRACK] = ACTIONS(3725), + [anon_sym_chan] = ACTIONS(3727), + [anon_sym_thread] = ACTIONS(3729), + [anon_sym_atomic] = ACTIONS(3731), }, - [1125] = { - [sym_reference_expression] = STATE(4416), - [sym_type_reference_expression] = STATE(1669), - [sym_plain_type] = STATE(1652), - [sym__plain_type_without_special] = STATE(1636), - [sym_anon_struct_type] = STATE(1651), - [sym_multi_return_type] = STATE(1636), - [sym_result_type] = STATE(1636), - [sym_option_type] = STATE(1636), - [sym_qualified_type] = STATE(1669), - [sym_fixed_array_type] = STATE(1651), - [sym_array_type] = STATE(1651), - [sym_pointer_type] = STATE(1651), - [sym_wrong_pointer_type] = STATE(1651), - [sym_map_type] = STATE(1651), - [sym_channel_type] = STATE(1651), - [sym_shared_type] = STATE(1651), - [sym_thread_type] = STATE(1651), - [sym_atomic_type] = STATE(1651), - [sym_generic_type] = STATE(1651), - [sym_function_type] = STATE(1651), - [sym_identifier] = ACTIONS(3419), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(561), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(561), - [anon_sym_POUND_LBRACK] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(561), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_PERCENT_EQ] = ACTIONS(561), - [anon_sym_LT_LT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(561), - [anon_sym_AMP_EQ] = ACTIONS(561), - [anon_sym_AMP_CARET_EQ] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_PIPE_EQ] = ACTIONS(561), - [anon_sym_CARET_EQ] = ACTIONS(561), - [anon_sym_COLON_EQ] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3439), - [anon_sym_chan] = ACTIONS(3441), - [anon_sym_thread] = ACTIONS(3443), - [anon_sym_atomic] = ACTIONS(3445), + [1174] = { + [sym_identifier] = ACTIONS(3695), + [anon_sym_LF] = ACTIONS(3698), + [anon_sym_CR] = ACTIONS(3698), + [anon_sym_CR_LF] = ACTIONS(3698), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_DOT] = ACTIONS(3733), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), }, - [1126] = { - [sym_reference_expression] = STATE(4416), - [sym_type_reference_expression] = STATE(1669), - [sym_plain_type] = STATE(1678), - [sym__plain_type_without_special] = STATE(1636), - [sym_anon_struct_type] = STATE(1651), - [sym_multi_return_type] = STATE(1636), - [sym_result_type] = STATE(1636), - [sym_option_type] = STATE(1636), - [sym_qualified_type] = STATE(1669), - [sym_fixed_array_type] = STATE(1651), - [sym_array_type] = STATE(1651), - [sym_pointer_type] = STATE(1651), - [sym_wrong_pointer_type] = STATE(1651), - [sym_map_type] = STATE(1651), - [sym_channel_type] = STATE(1651), - [sym_shared_type] = STATE(1651), - [sym_thread_type] = STATE(1651), - [sym_atomic_type] = STATE(1651), - [sym_generic_type] = STATE(1651), - [sym_function_type] = STATE(1651), - [sym_identifier] = ACTIONS(3419), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), + [1175] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_AMP_CARET_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1176] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_AMP_CARET_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_COLON_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1177] = { + [sym_reference_expression] = STATE(4480), + [sym_type_reference_expression] = STATE(1963), + [sym_plain_type] = STATE(2098), + [sym__plain_type_without_special] = STATE(2035), + [sym_anon_struct_type] = STATE(2036), + [sym_multi_return_type] = STATE(2035), + [sym_result_type] = STATE(2035), + [sym_option_type] = STATE(2035), + [sym_qualified_type] = STATE(1963), + [sym_fixed_array_type] = STATE(2036), + [sym_array_type] = STATE(2036), + [sym_pointer_type] = STATE(2036), + [sym_wrong_pointer_type] = STATE(2036), + [sym_map_type] = STATE(2036), + [sym_channel_type] = STATE(2036), + [sym_shared_type] = STATE(2036), + [sym_thread_type] = STATE(2036), + [sym_atomic_type] = STATE(2036), + [sym_generic_type] = STATE(2036), + [sym_function_type] = STATE(2036), + [sym_identifier] = ACTIONS(3665), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), [anon_sym_EQ_EQ] = ACTIONS(613), [anon_sym_BANG_EQ] = ACTIONS(613), [anon_sym_LT_EQ] = ACTIONS(613), [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3673), [anon_sym_PLUS_PLUS] = ACTIONS(613), [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_BANG] = ACTIONS(3677), + [anon_sym_LBRACK2] = ACTIONS(3679), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3681), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), [anon_sym_AMP_AMP] = ACTIONS(613), [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), [anon_sym_QMARK_DOT] = ACTIONS(613), [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), [anon_sym_BANGin] = ACTIONS(613), [anon_sym_STAR_EQ] = ACTIONS(613), [anon_sym_SLASH_EQ] = ACTIONS(613), @@ -153158,337 +158251,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(613), [anon_sym_CARET_EQ] = ACTIONS(613), [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3439), - [anon_sym_chan] = ACTIONS(3441), - [anon_sym_thread] = ACTIONS(3443), - [anon_sym_atomic] = ACTIONS(3445), - }, - [1127] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_CR] = ACTIONS(617), - [anon_sym_CR_LF] = ACTIONS(617), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_AMP_CARET_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1128] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(593), - [anon_sym_POUND_LBRACK] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(593), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(593), - [anon_sym_STAR_EQ] = ACTIONS(593), - [anon_sym_SLASH_EQ] = ACTIONS(593), - [anon_sym_PERCENT_EQ] = ACTIONS(593), - [anon_sym_LT_LT_EQ] = ACTIONS(593), - [anon_sym_GT_GT_EQ] = ACTIONS(593), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(593), - [anon_sym_AMP_EQ] = ACTIONS(593), - [anon_sym_AMP_CARET_EQ] = ACTIONS(593), - [anon_sym_PLUS_EQ] = ACTIONS(593), - [anon_sym_DASH_EQ] = ACTIONS(593), - [anon_sym_PIPE_EQ] = ACTIONS(593), - [anon_sym_CARET_EQ] = ACTIONS(593), - [anon_sym_COLON_EQ] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1129] = { - [sym_reference_expression] = STATE(4553), - [sym_type_reference_expression] = STATE(1773), - [sym_plain_type] = STATE(1808), - [sym__plain_type_without_special] = STATE(1811), - [sym_anon_struct_type] = STATE(1810), - [sym_multi_return_type] = STATE(1811), - [sym_result_type] = STATE(1811), - [sym_option_type] = STATE(1811), - [sym_qualified_type] = STATE(1773), - [sym_fixed_array_type] = STATE(1810), - [sym_array_type] = STATE(1810), - [sym_pointer_type] = STATE(1810), - [sym_wrong_pointer_type] = STATE(1810), - [sym_map_type] = STATE(1810), - [sym_channel_type] = STATE(1810), - [sym_shared_type] = STATE(1810), - [sym_thread_type] = STATE(1810), - [sym_atomic_type] = STATE(1810), - [sym_generic_type] = STATE(1810), - [sym_function_type] = STATE(1810), - [sym_identifier] = ACTIONS(3449), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_LBRACK2] = ACTIONS(3463), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(561), - [anon_sym_POUND_LBRACK] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(561), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(561), - [anon_sym_STAR_EQ] = ACTIONS(561), - [anon_sym_SLASH_EQ] = ACTIONS(561), - [anon_sym_PERCENT_EQ] = ACTIONS(561), - [anon_sym_LT_LT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_EQ] = ACTIONS(561), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(561), - [anon_sym_AMP_EQ] = ACTIONS(561), - [anon_sym_AMP_CARET_EQ] = ACTIONS(561), - [anon_sym_PLUS_EQ] = ACTIONS(561), - [anon_sym_DASH_EQ] = ACTIONS(561), - [anon_sym_PIPE_EQ] = ACTIONS(561), - [anon_sym_CARET_EQ] = ACTIONS(561), - [anon_sym_COLON_EQ] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(3467), - [anon_sym_map_LBRACK] = ACTIONS(3469), - [anon_sym_chan] = ACTIONS(3471), - [anon_sym_thread] = ACTIONS(3473), - [anon_sym_atomic] = ACTIONS(3475), + [anon_sym_shared] = ACTIONS(3683), + [anon_sym_map_LBRACK] = ACTIONS(3685), + [anon_sym_chan] = ACTIONS(3687), + [anon_sym_thread] = ACTIONS(3689), + [anon_sym_atomic] = ACTIONS(3691), }, - [1130] = { - [sym_reference_expression] = STATE(4553), - [sym_type_reference_expression] = STATE(1773), - [sym_plain_type] = STATE(1862), - [sym__plain_type_without_special] = STATE(1811), - [sym_anon_struct_type] = STATE(1810), - [sym_multi_return_type] = STATE(1811), - [sym_result_type] = STATE(1811), - [sym_option_type] = STATE(1811), - [sym_qualified_type] = STATE(1773), - [sym_fixed_array_type] = STATE(1810), - [sym_array_type] = STATE(1810), - [sym_pointer_type] = STATE(1810), - [sym_wrong_pointer_type] = STATE(1810), - [sym_map_type] = STATE(1810), - [sym_channel_type] = STATE(1810), - [sym_shared_type] = STATE(1810), - [sym_thread_type] = STATE(1810), - [sym_atomic_type] = STATE(1810), - [sym_generic_type] = STATE(1810), - [sym_function_type] = STATE(1810), - [sym_identifier] = ACTIONS(3449), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), + [1178] = { + [sym_reference_expression] = STATE(4543), + [sym_type_reference_expression] = STATE(1962), + [sym_plain_type] = STATE(2094), + [sym__plain_type_without_special] = STATE(2112), + [sym_anon_struct_type] = STATE(2100), + [sym_multi_return_type] = STATE(2112), + [sym_result_type] = STATE(2112), + [sym_option_type] = STATE(2112), + [sym_qualified_type] = STATE(1962), + [sym_fixed_array_type] = STATE(2100), + [sym_array_type] = STATE(2100), + [sym_pointer_type] = STATE(2100), + [sym_wrong_pointer_type] = STATE(2100), + [sym_map_type] = STATE(2100), + [sym_channel_type] = STATE(2100), + [sym_shared_type] = STATE(2100), + [sym_thread_type] = STATE(2100), + [sym_atomic_type] = STATE(2100), + [sym_generic_type] = STATE(2100), + [sym_function_type] = STATE(2100), + [sym_identifier] = ACTIONS(3705), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3711), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), [anon_sym_EQ_EQ] = ACTIONS(613), [anon_sym_BANG_EQ] = ACTIONS(613), [anon_sym_LT_EQ] = ACTIONS(613), [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(613), [anon_sym_PLUS_PLUS] = ACTIONS(613), [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_LBRACK2] = ACTIONS(3463), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_LBRACK2] = ACTIONS(3719), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3721), + [anon_sym_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), [anon_sym_AMP_AMP] = ACTIONS(613), [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), [anon_sym_QMARK_DOT] = ACTIONS(613), [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), [anon_sym_BANGin] = ACTIONS(613), [anon_sym_STAR_EQ] = ACTIONS(613), [anon_sym_SLASH_EQ] = ACTIONS(613), @@ -153502,79 +158335,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(613), [anon_sym_PIPE_EQ] = ACTIONS(613), [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3467), - [anon_sym_map_LBRACK] = ACTIONS(3469), - [anon_sym_chan] = ACTIONS(3471), - [anon_sym_thread] = ACTIONS(3473), - [anon_sym_atomic] = ACTIONS(3475), + [anon_sym_shared] = ACTIONS(3723), + [anon_sym_map_LBRACK] = ACTIONS(3725), + [anon_sym_chan] = ACTIONS(3727), + [anon_sym_thread] = ACTIONS(3729), + [anon_sym_atomic] = ACTIONS(3731), }, - [1131] = { - [sym_reference_expression] = STATE(4553), - [sym_type_reference_expression] = STATE(1773), - [sym_plain_type] = STATE(1873), - [sym__plain_type_without_special] = STATE(1811), - [sym_anon_struct_type] = STATE(1810), - [sym_multi_return_type] = STATE(1811), - [sym_result_type] = STATE(1811), - [sym_option_type] = STATE(1811), - [sym_qualified_type] = STATE(1773), - [sym_fixed_array_type] = STATE(1810), - [sym_array_type] = STATE(1810), - [sym_pointer_type] = STATE(1810), - [sym_wrong_pointer_type] = STATE(1810), - [sym_map_type] = STATE(1810), - [sym_channel_type] = STATE(1810), - [sym_shared_type] = STATE(1810), - [sym_thread_type] = STATE(1810), - [sym_atomic_type] = STATE(1810), - [sym_generic_type] = STATE(1810), - [sym_function_type] = STATE(1810), - [sym_identifier] = ACTIONS(3449), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), + [1179] = { + [sym_reference_expression] = STATE(4543), + [sym_type_reference_expression] = STATE(1962), + [sym_plain_type] = STATE(2042), + [sym__plain_type_without_special] = STATE(2112), + [sym_anon_struct_type] = STATE(2100), + [sym_multi_return_type] = STATE(2112), + [sym_result_type] = STATE(2112), + [sym_option_type] = STATE(2112), + [sym_qualified_type] = STATE(1962), + [sym_fixed_array_type] = STATE(2100), + [sym_array_type] = STATE(2100), + [sym_pointer_type] = STATE(2100), + [sym_wrong_pointer_type] = STATE(2100), + [sym_map_type] = STATE(2100), + [sym_channel_type] = STATE(2100), + [sym_shared_type] = STATE(2100), + [sym_thread_type] = STATE(2100), + [sym_atomic_type] = STATE(2100), + [sym_generic_type] = STATE(2100), + [sym_function_type] = STATE(2100), + [sym_identifier] = ACTIONS(3705), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3707), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3709), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3711), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3713), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_LBRACK2] = ACTIONS(3719), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3721), + [anon_sym_LT_DASH] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_AMP_CARET_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_shared] = ACTIONS(3723), + [anon_sym_map_LBRACK] = ACTIONS(3725), + [anon_sym_chan] = ACTIONS(3727), + [anon_sym_thread] = ACTIONS(3729), + [anon_sym_atomic] = ACTIONS(3731), + }, + [1180] = { + [sym_else_branch] = STATE(1251), + [sym_identifier] = ACTIONS(2548), + [anon_sym_LF] = ACTIONS(2548), + [anon_sym_CR] = ACTIONS(2548), + [anon_sym_CR_LF] = ACTIONS(2548), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_DOT] = ACTIONS(2548), + [anon_sym_as] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_GT] = ACTIONS(2548), + [anon_sym_EQ_EQ] = ACTIONS(2548), + [anon_sym_BANG_EQ] = ACTIONS(2548), + [anon_sym_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_EQ] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_mut] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2548), + [anon_sym_DASH_DASH] = ACTIONS(2548), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_go] = ACTIONS(2548), + [anon_sym_spawn] = ACTIONS(2548), + [anon_sym_json_DOTdecode] = ACTIONS(2548), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2548), + [anon_sym_CARET] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_LT_DASH] = ACTIONS(2548), + [anon_sym_LT_LT] = ACTIONS(2548), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2548), + [anon_sym_AMP_CARET] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_or] = ACTIONS(2548), + [sym_none] = ACTIONS(2548), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [sym_nil] = ACTIONS(2548), + [anon_sym_QMARK_DOT] = ACTIONS(2548), + [anon_sym_POUND_LBRACK] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(3693), + [anon_sym_DOLLARif] = ACTIONS(2548), + [anon_sym_is] = ACTIONS(2548), + [anon_sym_BANGis] = ACTIONS(2548), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_BANGin] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_select] = ACTIONS(2548), + [anon_sym_lock] = ACTIONS(2548), + [anon_sym_rlock] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_sql] = ACTIONS(2548), + [sym_int_literal] = ACTIONS(2548), + [sym_float_literal] = ACTIONS(2548), + [sym_rune_literal] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_shared] = ACTIONS(2548), + [anon_sym_map_LBRACK] = ACTIONS(2548), + [anon_sym_chan] = ACTIONS(2548), + [anon_sym_thread] = ACTIONS(2548), + [anon_sym_atomic] = ACTIONS(2548), + [sym___double_quote] = ACTIONS(2548), + [sym___single_quote] = ACTIONS(2548), + [sym___c_double_quote] = ACTIONS(2548), + [sym___c_single_quote] = ACTIONS(2548), + [sym___r_double_quote] = ACTIONS(2548), + [sym___r_single_quote] = ACTIONS(2548), + }, + [1181] = { + [sym_reference_expression] = STATE(4480), + [sym_type_reference_expression] = STATE(1963), + [sym_plain_type] = STATE(2046), + [sym__plain_type_without_special] = STATE(2035), + [sym_anon_struct_type] = STATE(2036), + [sym_multi_return_type] = STATE(2035), + [sym_result_type] = STATE(2035), + [sym_option_type] = STATE(2035), + [sym_qualified_type] = STATE(1963), + [sym_fixed_array_type] = STATE(2036), + [sym_array_type] = STATE(2036), + [sym_pointer_type] = STATE(2036), + [sym_wrong_pointer_type] = STATE(2036), + [sym_map_type] = STATE(2036), + [sym_channel_type] = STATE(2036), + [sym_shared_type] = STATE(2036), + [sym_thread_type] = STATE(2036), + [sym_atomic_type] = STATE(2036), + [sym_generic_type] = STATE(2036), + [sym_function_type] = STATE(2036), + [sym_identifier] = ACTIONS(3665), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(621), [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3667), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3669), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), [anon_sym_EQ_EQ] = ACTIONS(621), [anon_sym_BANG_EQ] = ACTIONS(621), [anon_sym_LT_EQ] = ACTIONS(621), [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3673), [anon_sym_PLUS_PLUS] = ACTIONS(621), [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_LBRACK2] = ACTIONS(3463), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3675), + [anon_sym_BANG] = ACTIONS(3677), + [anon_sym_LBRACK2] = ACTIONS(3679), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3681), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), [anon_sym_AMP_AMP] = ACTIONS(621), [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), [anon_sym_QMARK_DOT] = ACTIONS(621), [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), [anon_sym_BANGin] = ACTIONS(621), [anon_sym_STAR_EQ] = ACTIONS(621), [anon_sym_SLASH_EQ] = ACTIONS(621), @@ -153589,1263 +158587,737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(621), [anon_sym_CARET_EQ] = ACTIONS(621), [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3467), - [anon_sym_map_LBRACK] = ACTIONS(3469), - [anon_sym_chan] = ACTIONS(3471), - [anon_sym_thread] = ACTIONS(3473), - [anon_sym_atomic] = ACTIONS(3475), - }, - [1132] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(3485), - [anon_sym_GT] = ACTIONS(3485), - [anon_sym_EQ_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3495), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_BANGin] = ACTIONS(3499), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(3683), + [anon_sym_map_LBRACK] = ACTIONS(3685), + [anon_sym_chan] = ACTIONS(3687), + [anon_sym_thread] = ACTIONS(3689), + [anon_sym_atomic] = ACTIONS(3691), }, - [1133] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2246), - [anon_sym_LF] = ACTIONS(2246), - [anon_sym_CR] = ACTIONS(2246), - [anon_sym_CR_LF] = ACTIONS(2246), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2246), - [anon_sym_spawn] = ACTIONS(2246), - [anon_sym_json_DOTdecode] = ACTIONS(2246), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_LT_DASH] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_AMP_CARET] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_or] = ACTIONS(2246), - [sym_none] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_nil] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_DOLLARif] = ACTIONS(2246), - [anon_sym_is] = ACTIONS(2246), - [anon_sym_BANGis] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_BANGin] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_select] = ACTIONS(2246), - [anon_sym_lock] = ACTIONS(2246), - [anon_sym_rlock] = ACTIONS(2246), - [anon_sym_unsafe] = ACTIONS(2246), - [anon_sym_sql] = ACTIONS(2246), - [sym_int_literal] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), - [sym_rune_literal] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_shared] = ACTIONS(2246), - [anon_sym_map_LBRACK] = ACTIONS(2246), - [anon_sym_chan] = ACTIONS(2246), - [anon_sym_thread] = ACTIONS(2246), - [anon_sym_atomic] = ACTIONS(2246), - [sym___double_quote] = ACTIONS(2246), - [sym___single_quote] = ACTIONS(2246), - [sym___c_double_quote] = ACTIONS(2246), - [sym___c_single_quote] = ACTIONS(2246), - [sym___r_double_quote] = ACTIONS(2246), - [sym___r_single_quote] = ACTIONS(2246), - }, - [1134] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), - }, - [1135] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), - }, - [1136] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(3485), - [anon_sym_GT] = ACTIONS(3485), - [anon_sym_EQ_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_BANGin] = ACTIONS(3499), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), - }, - [1137] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2162), - [anon_sym_LF] = ACTIONS(2162), - [anon_sym_CR] = ACTIONS(2162), - [anon_sym_CR_LF] = ACTIONS(2162), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), - }, - [1138] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(3501), - [anon_sym_LF] = ACTIONS(3501), - [anon_sym_CR] = ACTIONS(3501), - [anon_sym_CR_LF] = ACTIONS(3501), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3501), - [anon_sym_RBRACE] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(3501), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(3485), - [anon_sym_GT] = ACTIONS(3485), - [anon_sym_EQ_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3501), - [anon_sym_mut] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3507), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(3501), - [anon_sym_spawn] = ACTIONS(3501), - [anon_sym_json_DOTdecode] = ACTIONS(3501), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(3501), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3495), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3511), - [sym_none] = ACTIONS(3501), - [sym_true] = ACTIONS(3501), - [sym_false] = ACTIONS(3501), - [sym_nil] = ACTIONS(3501), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_DOLLARif] = ACTIONS(3501), - [anon_sym_is] = ACTIONS(3513), - [anon_sym_BANGis] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_BANGin] = ACTIONS(3499), - [anon_sym_match] = ACTIONS(3501), - [anon_sym_select] = ACTIONS(3501), - [anon_sym_lock] = ACTIONS(3501), - [anon_sym_rlock] = ACTIONS(3501), - [anon_sym_unsafe] = ACTIONS(3501), - [anon_sym_sql] = ACTIONS(3501), - [sym_int_literal] = ACTIONS(3501), - [sym_float_literal] = ACTIONS(3501), - [sym_rune_literal] = ACTIONS(3501), - [anon_sym_AT] = ACTIONS(3501), - [anon_sym_shared] = ACTIONS(3501), - [anon_sym_map_LBRACK] = ACTIONS(3501), - [anon_sym_chan] = ACTIONS(3501), - [anon_sym_thread] = ACTIONS(3501), - [anon_sym_atomic] = ACTIONS(3501), - [sym___double_quote] = ACTIONS(3501), - [sym___single_quote] = ACTIONS(3501), - [sym___c_double_quote] = ACTIONS(3501), - [sym___c_single_quote] = ACTIONS(3501), - [sym___r_double_quote] = ACTIONS(3501), - [sym___r_single_quote] = ACTIONS(3501), + [1182] = { + [sym_type_parameters] = STATE(1276), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, - [1139] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(3517), - [anon_sym_LF] = ACTIONS(3517), - [anon_sym_CR] = ACTIONS(3517), - [anon_sym_CR_LF] = ACTIONS(3517), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(3517), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(3485), - [anon_sym_GT] = ACTIONS(3485), - [anon_sym_EQ_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3517), - [anon_sym_mut] = ACTIONS(3517), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3507), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(3517), - [anon_sym_spawn] = ACTIONS(3517), - [anon_sym_json_DOTdecode] = ACTIONS(3517), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(3517), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3495), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3511), - [sym_none] = ACTIONS(3517), - [sym_true] = ACTIONS(3517), - [sym_false] = ACTIONS(3517), - [sym_nil] = ACTIONS(3517), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(3517), - [anon_sym_DOLLARif] = ACTIONS(3517), - [anon_sym_is] = ACTIONS(3513), - [anon_sym_BANGis] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_BANGin] = ACTIONS(3499), - [anon_sym_match] = ACTIONS(3517), - [anon_sym_select] = ACTIONS(3517), - [anon_sym_lock] = ACTIONS(3517), - [anon_sym_rlock] = ACTIONS(3517), - [anon_sym_unsafe] = ACTIONS(3517), - [anon_sym_sql] = ACTIONS(3517), - [sym_int_literal] = ACTIONS(3517), - [sym_float_literal] = ACTIONS(3517), - [sym_rune_literal] = ACTIONS(3517), - [anon_sym_AT] = ACTIONS(3517), - [anon_sym_shared] = ACTIONS(3517), - [anon_sym_map_LBRACK] = ACTIONS(3517), - [anon_sym_chan] = ACTIONS(3517), - [anon_sym_thread] = ACTIONS(3517), - [anon_sym_atomic] = ACTIONS(3517), - [sym___double_quote] = ACTIONS(3517), - [sym___single_quote] = ACTIONS(3517), - [sym___c_double_quote] = ACTIONS(3517), - [sym___c_single_quote] = ACTIONS(3517), - [sym___r_double_quote] = ACTIONS(3517), - [sym___r_single_quote] = ACTIONS(3517), + [1183] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2358), + [anon_sym_BANG_EQ] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2358), + [anon_sym_GT_EQ] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_COLON] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_CARET] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), }, - [1140] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2156), - [anon_sym_LF] = ACTIONS(2156), - [anon_sym_CR] = ACTIONS(2156), - [anon_sym_CR_LF] = ACTIONS(2156), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2156), - [anon_sym_GT_EQ] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_mut] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2156), - [anon_sym_spawn] = ACTIONS(2156), - [anon_sym_json_DOTdecode] = ACTIONS(2156), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [anon_sym_or] = ACTIONS(2156), - [sym_none] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nil] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_DOLLARif] = ACTIONS(2156), - [anon_sym_is] = ACTIONS(2156), - [anon_sym_BANGis] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_BANGin] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_select] = ACTIONS(2156), - [anon_sym_lock] = ACTIONS(2156), - [anon_sym_rlock] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_sql] = ACTIONS(2156), - [sym_int_literal] = ACTIONS(2156), - [sym_float_literal] = ACTIONS(2156), - [sym_rune_literal] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_shared] = ACTIONS(2156), - [anon_sym_map_LBRACK] = ACTIONS(2156), - [anon_sym_chan] = ACTIONS(2156), - [anon_sym_thread] = ACTIONS(2156), - [anon_sym_atomic] = ACTIONS(2156), - [sym___double_quote] = ACTIONS(2156), - [sym___single_quote] = ACTIONS(2156), - [sym___c_double_quote] = ACTIONS(2156), - [sym___c_single_quote] = ACTIONS(2156), - [sym___r_double_quote] = ACTIONS(2156), - [sym___r_single_quote] = ACTIONS(2156), + [1184] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_AMP_CARET_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_COLON_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1141] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2224), - [anon_sym_LF] = ACTIONS(2224), - [anon_sym_CR] = ACTIONS(2224), - [anon_sym_CR_LF] = ACTIONS(2224), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2224), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_RBRACE] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2224), - [anon_sym_SLASH] = ACTIONS(2224), - [anon_sym_PERCENT] = ACTIONS(2224), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2224), - [anon_sym_BANG_EQ] = ACTIONS(2224), - [anon_sym_LT_EQ] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2224), - [anon_sym_DASH_DASH] = ACTIONS(2224), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2224), - [anon_sym_spawn] = ACTIONS(2224), - [anon_sym_json_DOTdecode] = ACTIONS(2224), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_LT_DASH] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2224), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2224), - [anon_sym_AMP_CARET] = ACTIONS(2224), - [anon_sym_AMP_AMP] = ACTIONS(2224), - [anon_sym_PIPE_PIPE] = ACTIONS(2224), - [anon_sym_or] = ACTIONS(2224), - [sym_none] = ACTIONS(2224), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [sym_nil] = ACTIONS(2224), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_DOLLARif] = ACTIONS(2224), - [anon_sym_is] = ACTIONS(2224), - [anon_sym_BANGis] = ACTIONS(2224), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_BANGin] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_select] = ACTIONS(2224), - [anon_sym_lock] = ACTIONS(2224), - [anon_sym_rlock] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_sql] = ACTIONS(2224), - [sym_int_literal] = ACTIONS(2224), - [sym_float_literal] = ACTIONS(2224), - [sym_rune_literal] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(2224), - [anon_sym_shared] = ACTIONS(2224), - [anon_sym_map_LBRACK] = ACTIONS(2224), - [anon_sym_chan] = ACTIONS(2224), - [anon_sym_thread] = ACTIONS(2224), - [anon_sym_atomic] = ACTIONS(2224), - [sym___double_quote] = ACTIONS(2224), - [sym___single_quote] = ACTIONS(2224), - [sym___c_double_quote] = ACTIONS(2224), - [sym___c_single_quote] = ACTIONS(2224), - [sym___r_double_quote] = ACTIONS(2224), - [sym___r_single_quote] = ACTIONS(2224), + [1185] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2314), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_COMMA] = ACTIONS(2312), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_fn] = ACTIONS(2314), + [anon_sym_PLUS] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2312), + [anon_sym_SLASH] = ACTIONS(2314), + [anon_sym_PERCENT] = ACTIONS(2312), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_EQ_EQ] = ACTIONS(2312), + [anon_sym_BANG_EQ] = ACTIONS(2312), + [anon_sym_LT_EQ] = ACTIONS(2312), + [anon_sym_GT_EQ] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2312), + [anon_sym_struct] = ACTIONS(2314), + [anon_sym_mut] = ACTIONS(2314), + [anon_sym_COLON] = ACTIONS(2312), + [anon_sym_PLUS_PLUS] = ACTIONS(2312), + [anon_sym_DASH_DASH] = ACTIONS(2312), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2314), + [anon_sym_spawn] = ACTIONS(2314), + [anon_sym_json_DOTdecode] = ACTIONS(2312), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2312), + [anon_sym_CARET] = ACTIONS(2312), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_LT_DASH] = ACTIONS(2312), + [anon_sym_LT_LT] = ACTIONS(2312), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_GT_GT_GT] = ACTIONS(2312), + [anon_sym_AMP_CARET] = ACTIONS(2312), + [anon_sym_AMP_AMP] = ACTIONS(2312), + [anon_sym_PIPE_PIPE] = ACTIONS(2312), + [anon_sym_or] = ACTIONS(2314), + [sym_none] = ACTIONS(2314), + [sym_true] = ACTIONS(2314), + [sym_false] = ACTIONS(2314), + [sym_nil] = ACTIONS(2314), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_DOLLARif] = ACTIONS(2314), + [anon_sym_is] = ACTIONS(2314), + [anon_sym_BANGis] = ACTIONS(2312), + [anon_sym_in] = ACTIONS(2314), + [anon_sym_BANGin] = ACTIONS(2312), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_select] = ACTIONS(2314), + [anon_sym_lock] = ACTIONS(2314), + [anon_sym_rlock] = ACTIONS(2314), + [anon_sym_unsafe] = ACTIONS(2314), + [anon_sym_sql] = ACTIONS(2314), + [sym_int_literal] = ACTIONS(2314), + [sym_float_literal] = ACTIONS(2312), + [sym_rune_literal] = ACTIONS(2312), + [anon_sym_AT] = ACTIONS(2314), + [anon_sym_shared] = ACTIONS(2314), + [anon_sym_map_LBRACK] = ACTIONS(2312), + [anon_sym_chan] = ACTIONS(2314), + [anon_sym_thread] = ACTIONS(2314), + [anon_sym_atomic] = ACTIONS(2314), + [sym___double_quote] = ACTIONS(2312), + [sym___single_quote] = ACTIONS(2312), + [sym___c_double_quote] = ACTIONS(2312), + [sym___c_single_quote] = ACTIONS(2312), + [sym___r_double_quote] = ACTIONS(2312), + [sym___r_single_quote] = ACTIONS(2312), }, - [1142] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2144), - [anon_sym_LF] = ACTIONS(2144), - [anon_sym_CR] = ACTIONS(2144), - [anon_sym_CR_LF] = ACTIONS(2144), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2144), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2144), - [anon_sym_spawn] = ACTIONS(2144), - [anon_sym_json_DOTdecode] = ACTIONS(2144), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_or] = ACTIONS(2144), - [sym_none] = ACTIONS(2144), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_nil] = ACTIONS(2144), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_DOLLARif] = ACTIONS(2144), - [anon_sym_is] = ACTIONS(2144), - [anon_sym_BANGis] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_BANGin] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_select] = ACTIONS(2144), - [anon_sym_lock] = ACTIONS(2144), - [anon_sym_rlock] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_sql] = ACTIONS(2144), - [sym_int_literal] = ACTIONS(2144), - [sym_float_literal] = ACTIONS(2144), - [sym_rune_literal] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_shared] = ACTIONS(2144), - [anon_sym_map_LBRACK] = ACTIONS(2144), - [anon_sym_chan] = ACTIONS(2144), - [anon_sym_thread] = ACTIONS(2144), - [anon_sym_atomic] = ACTIONS(2144), - [sym___double_quote] = ACTIONS(2144), - [sym___single_quote] = ACTIONS(2144), - [sym___c_double_quote] = ACTIONS(2144), - [sym___c_single_quote] = ACTIONS(2144), - [sym___r_double_quote] = ACTIONS(2144), - [sym___r_single_quote] = ACTIONS(2144), + [1186] = { + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_else] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), }, - [1143] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2234), - [anon_sym_LF] = ACTIONS(2234), - [anon_sym_CR] = ACTIONS(2234), - [anon_sym_CR_LF] = ACTIONS(2234), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(3485), - [anon_sym_GT] = ACTIONS(3485), - [anon_sym_EQ_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3507), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2234), - [anon_sym_spawn] = ACTIONS(2234), - [anon_sym_json_DOTdecode] = ACTIONS(2234), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2234), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3495), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3511), - [sym_none] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_nil] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_DOLLARif] = ACTIONS(2234), - [anon_sym_is] = ACTIONS(3513), - [anon_sym_BANGis] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_BANGin] = ACTIONS(3499), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_select] = ACTIONS(2234), - [anon_sym_lock] = ACTIONS(2234), - [anon_sym_rlock] = ACTIONS(2234), - [anon_sym_unsafe] = ACTIONS(2234), - [anon_sym_sql] = ACTIONS(2234), - [sym_int_literal] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2234), - [sym_rune_literal] = ACTIONS(2234), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_shared] = ACTIONS(2234), - [anon_sym_map_LBRACK] = ACTIONS(2234), - [anon_sym_chan] = ACTIONS(2234), - [anon_sym_thread] = ACTIONS(2234), - [anon_sym_atomic] = ACTIONS(2234), - [sym___double_quote] = ACTIONS(2234), - [sym___single_quote] = ACTIONS(2234), - [sym___c_double_quote] = ACTIONS(2234), - [sym___c_single_quote] = ACTIONS(2234), - [sym___r_double_quote] = ACTIONS(2234), - [sym___r_single_quote] = ACTIONS(2234), + [1187] = { + [sym_identifier] = ACTIONS(2884), + [anon_sym_LF] = ACTIONS(2884), + [anon_sym_CR] = ACTIONS(2884), + [anon_sym_CR_LF] = ACTIONS(2884), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_as] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_fn] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_GT] = ACTIONS(2884), + [anon_sym_EQ_EQ] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2884), + [anon_sym_LT_EQ] = ACTIONS(2884), + [anon_sym_GT_EQ] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_mut] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_go] = ACTIONS(2884), + [anon_sym_spawn] = ACTIONS(2884), + [anon_sym_json_DOTdecode] = ACTIONS(2884), + [anon_sym_LBRACK2] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_CARET] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_LT_LT] = ACTIONS(2884), + [anon_sym_GT_GT] = ACTIONS(2884), + [anon_sym_GT_GT_GT] = ACTIONS(2884), + [anon_sym_AMP_CARET] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_or] = ACTIONS(2884), + [sym_none] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_nil] = ACTIONS(2884), + [anon_sym_QMARK_DOT] = ACTIONS(2884), + [anon_sym_POUND_LBRACK] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_DOLLARif] = ACTIONS(2884), + [anon_sym_DOLLARelse] = ACTIONS(3758), + [anon_sym_is] = ACTIONS(2884), + [anon_sym_BANGis] = ACTIONS(2884), + [anon_sym_in] = ACTIONS(2884), + [anon_sym_BANGin] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_select] = ACTIONS(2884), + [anon_sym_lock] = ACTIONS(2884), + [anon_sym_rlock] = ACTIONS(2884), + [anon_sym_unsafe] = ACTIONS(2884), + [anon_sym_sql] = ACTIONS(2884), + [sym_int_literal] = ACTIONS(2884), + [sym_float_literal] = ACTIONS(2884), + [sym_rune_literal] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_shared] = ACTIONS(2884), + [anon_sym_map_LBRACK] = ACTIONS(2884), + [anon_sym_chan] = ACTIONS(2884), + [anon_sym_thread] = ACTIONS(2884), + [anon_sym_atomic] = ACTIONS(2884), + [sym___double_quote] = ACTIONS(2884), + [sym___single_quote] = ACTIONS(2884), + [sym___c_double_quote] = ACTIONS(2884), + [sym___c_single_quote] = ACTIONS(2884), + [sym___r_double_quote] = ACTIONS(2884), + [sym___r_single_quote] = ACTIONS(2884), }, - [1144] = { - [sym_type_parameters] = STATE(4361), - [sym_argument_list] = STATE(1252), - [sym_or_block] = STATE(1246), - [sym_identifier] = ACTIONS(2052), - [anon_sym_LF] = ACTIONS(2052), - [anon_sym_CR] = ACTIONS(2052), - [anon_sym_CR_LF] = ACTIONS(2052), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_DOT] = ACTIONS(3477), - [anon_sym_as] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_STAR] = ACTIONS(3483), - [anon_sym_SLASH] = ACTIONS(3483), - [anon_sym_PERCENT] = ACTIONS(3483), - [anon_sym_LT] = ACTIONS(3485), - [anon_sym_GT] = ACTIONS(3485), - [anon_sym_EQ_EQ] = ACTIONS(3485), - [anon_sym_BANG_EQ] = ACTIONS(3485), - [anon_sym_LT_EQ] = ACTIONS(3485), - [anon_sym_GT_EQ] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_mut] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3507), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_BANG] = ACTIONS(3491), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2052), - [anon_sym_json_DOTdecode] = ACTIONS(2052), - [anon_sym_LBRACK2] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3483), - [anon_sym_LT_DASH] = ACTIONS(2052), - [anon_sym_LT_LT] = ACTIONS(3483), - [anon_sym_GT_GT] = ACTIONS(3483), - [anon_sym_GT_GT_GT] = ACTIONS(3483), - [anon_sym_AMP_CARET] = ACTIONS(3483), - [anon_sym_AMP_AMP] = ACTIONS(3495), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3511), - [sym_none] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_nil] = ACTIONS(2052), - [anon_sym_QMARK_DOT] = ACTIONS(3477), - [anon_sym_POUND_LBRACK] = ACTIONS(3493), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_DOLLARif] = ACTIONS(2052), - [anon_sym_is] = ACTIONS(3513), - [anon_sym_BANGis] = ACTIONS(3515), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_BANGin] = ACTIONS(3499), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_select] = ACTIONS(2052), - [anon_sym_lock] = ACTIONS(2052), - [anon_sym_rlock] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_sql] = ACTIONS(2052), - [sym_int_literal] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2052), - [sym_rune_literal] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_shared] = ACTIONS(2052), - [anon_sym_map_LBRACK] = ACTIONS(2052), - [anon_sym_chan] = ACTIONS(2052), - [anon_sym_thread] = ACTIONS(2052), - [anon_sym_atomic] = ACTIONS(2052), - [sym___double_quote] = ACTIONS(2052), - [sym___single_quote] = ACTIONS(2052), - [sym___c_double_quote] = ACTIONS(2052), - [sym___c_single_quote] = ACTIONS(2052), - [sym___r_double_quote] = ACTIONS(2052), - [sym___r_single_quote] = ACTIONS(2052), + [1188] = { + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_DOLLARelse] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, - [1145] = { - [sym_reference_expression] = STATE(4532), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(2051), - [sym__plain_type_without_special] = STATE(2088), - [sym_anon_struct_type] = STATE(2087), - [sym_multi_return_type] = STATE(2088), - [sym_result_type] = STATE(2088), - [sym_option_type] = STATE(2088), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(2087), - [sym_array_type] = STATE(2087), - [sym_pointer_type] = STATE(2087), - [sym_wrong_pointer_type] = STATE(2087), - [sym_map_type] = STATE(2087), - [sym_channel_type] = STATE(2087), - [sym_shared_type] = STATE(2087), - [sym_thread_type] = STATE(2087), - [sym_atomic_type] = STATE(2087), - [sym_generic_type] = STATE(2087), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3519), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3525), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3527), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3529), - [anon_sym_BANG] = ACTIONS(3531), - [anon_sym_LBRACK2] = ACTIONS(3533), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3537), - [anon_sym_map_LBRACK] = ACTIONS(3539), - [anon_sym_chan] = ACTIONS(3541), - [anon_sym_thread] = ACTIONS(3543), - [anon_sym_atomic] = ACTIONS(3545), + [1189] = { + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, - [1146] = { - [sym_else_branch] = STATE(1192), + [1190] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), [sym_identifier] = ACTIONS(2392), - [anon_sym_LF] = ACTIONS(2392), - [anon_sym_CR] = ACTIONS(2392), - [anon_sym_CR_LF] = ACTIONS(2392), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_DOT] = ACTIONS(2392), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), [anon_sym_as] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_COMMA] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(3742), [anon_sym_PIPE] = ACTIONS(2392), [anon_sym_fn] = ACTIONS(2392), [anon_sym_PLUS] = ACTIONS(2392), [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2390), [anon_sym_SLASH] = ACTIONS(2392), - [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2390), [anon_sym_LT] = ACTIONS(2392), [anon_sym_GT] = ACTIONS(2392), - [anon_sym_EQ_EQ] = ACTIONS(2392), - [anon_sym_BANG_EQ] = ACTIONS(2392), - [anon_sym_LT_EQ] = ACTIONS(2392), - [anon_sym_GT_EQ] = ACTIONS(2392), - [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2390), [anon_sym_struct] = ACTIONS(2392), [anon_sym_mut] = ACTIONS(2392), - [anon_sym_PLUS_PLUS] = ACTIONS(2392), - [anon_sym_DASH_DASH] = ACTIONS(2392), - [anon_sym_QMARK] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_COLON] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), [anon_sym_go] = ACTIONS(2392), [anon_sym_spawn] = ACTIONS(2392), - [anon_sym_json_DOTdecode] = ACTIONS(2392), - [anon_sym_LBRACK2] = ACTIONS(2392), - [anon_sym_TILDE] = ACTIONS(2392), - [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_json_DOTdecode] = ACTIONS(2390), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_LT_DASH] = ACTIONS(2392), - [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_LT_DASH] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_GT_GT_GT] = ACTIONS(2392), - [anon_sym_AMP_CARET] = ACTIONS(2392), - [anon_sym_AMP_AMP] = ACTIONS(2392), - [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_AMP_CARET] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), [anon_sym_or] = ACTIONS(2392), [sym_none] = ACTIONS(2392), [sym_true] = ACTIONS(2392), [sym_false] = ACTIONS(2392), [sym_nil] = ACTIONS(2392), - [anon_sym_QMARK_DOT] = ACTIONS(2392), - [anon_sym_POUND_LBRACK] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(3547), [anon_sym_DOLLARif] = ACTIONS(2392), [anon_sym_is] = ACTIONS(2392), - [anon_sym_BANGis] = ACTIONS(2392), + [anon_sym_BANGis] = ACTIONS(2390), [anon_sym_in] = ACTIONS(2392), - [anon_sym_BANGin] = ACTIONS(2392), + [anon_sym_BANGin] = ACTIONS(2390), [anon_sym_match] = ACTIONS(2392), [anon_sym_select] = ACTIONS(2392), [anon_sym_lock] = ACTIONS(2392), @@ -154853,2942 +159325,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(2392), [anon_sym_sql] = ACTIONS(2392), [sym_int_literal] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2392), - [sym_rune_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2390), + [sym_rune_literal] = ACTIONS(2390), [anon_sym_AT] = ACTIONS(2392), [anon_sym_shared] = ACTIONS(2392), - [anon_sym_map_LBRACK] = ACTIONS(2392), + [anon_sym_map_LBRACK] = ACTIONS(2390), [anon_sym_chan] = ACTIONS(2392), [anon_sym_thread] = ACTIONS(2392), [anon_sym_atomic] = ACTIONS(2392), - [sym___double_quote] = ACTIONS(2392), - [sym___single_quote] = ACTIONS(2392), - [sym___c_double_quote] = ACTIONS(2392), - [sym___c_single_quote] = ACTIONS(2392), - [sym___r_double_quote] = ACTIONS(2392), - [sym___r_single_quote] = ACTIONS(2392), - }, - [1147] = { - [sym_reference_expression] = STATE(4469), - [sym_type_reference_expression] = STATE(1930), - [sym_plain_type] = STATE(1954), - [sym__plain_type_without_special] = STATE(1946), - [sym_anon_struct_type] = STATE(1947), - [sym_multi_return_type] = STATE(1946), - [sym_result_type] = STATE(1946), - [sym_option_type] = STATE(1946), - [sym_qualified_type] = STATE(1930), - [sym_fixed_array_type] = STATE(1947), - [sym_array_type] = STATE(1947), - [sym_pointer_type] = STATE(1947), - [sym_wrong_pointer_type] = STATE(1947), - [sym_map_type] = STATE(1947), - [sym_channel_type] = STATE(1947), - [sym_shared_type] = STATE(1947), - [sym_thread_type] = STATE(1947), - [sym_atomic_type] = STATE(1947), - [sym_generic_type] = STATE(1947), - [sym_function_type] = STATE(1947), - [sym_identifier] = ACTIONS(3549), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(3551), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3557), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(3559), - [anon_sym_BANG] = ACTIONS(3561), - [anon_sym_LBRACK2] = ACTIONS(3563), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_POUND_LBRACK] = ACTIONS(557), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(557), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(557), - [anon_sym_STAR_EQ] = ACTIONS(557), - [anon_sym_SLASH_EQ] = ACTIONS(557), - [anon_sym_PERCENT_EQ] = ACTIONS(557), - [anon_sym_LT_LT_EQ] = ACTIONS(557), - [anon_sym_GT_GT_EQ] = ACTIONS(557), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(557), - [anon_sym_AMP_EQ] = ACTIONS(557), - [anon_sym_AMP_CARET_EQ] = ACTIONS(557), - [anon_sym_PLUS_EQ] = ACTIONS(557), - [anon_sym_DASH_EQ] = ACTIONS(557), - [anon_sym_PIPE_EQ] = ACTIONS(557), - [anon_sym_CARET_EQ] = ACTIONS(557), - [anon_sym_COLON_EQ] = ACTIONS(557), - [anon_sym_shared] = ACTIONS(3567), - [anon_sym_map_LBRACK] = ACTIONS(3569), - [anon_sym_chan] = ACTIONS(3571), - [anon_sym_thread] = ACTIONS(3573), - [anon_sym_atomic] = ACTIONS(3575), - }, - [1148] = { - [sym_reference_expression] = STATE(4532), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(2070), - [sym__plain_type_without_special] = STATE(2088), - [sym_anon_struct_type] = STATE(2087), - [sym_multi_return_type] = STATE(2088), - [sym_result_type] = STATE(2088), - [sym_option_type] = STATE(2088), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(2087), - [sym_array_type] = STATE(2087), - [sym_pointer_type] = STATE(2087), - [sym_wrong_pointer_type] = STATE(2087), - [sym_map_type] = STATE(2087), - [sym_channel_type] = STATE(2087), - [sym_shared_type] = STATE(2087), - [sym_thread_type] = STATE(2087), - [sym_atomic_type] = STATE(2087), - [sym_generic_type] = STATE(2087), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3519), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(557), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_EQ] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3525), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3527), - [anon_sym_COLON] = ACTIONS(557), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(3529), - [anon_sym_BANG] = ACTIONS(3531), - [anon_sym_LBRACK2] = ACTIONS(3533), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_LT_DASH] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_POUND_LBRACK] = ACTIONS(557), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(557), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(557), - [anon_sym_STAR_EQ] = ACTIONS(557), - [anon_sym_SLASH_EQ] = ACTIONS(557), - [anon_sym_PERCENT_EQ] = ACTIONS(557), - [anon_sym_LT_LT_EQ] = ACTIONS(557), - [anon_sym_GT_GT_EQ] = ACTIONS(557), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(557), - [anon_sym_AMP_EQ] = ACTIONS(557), - [anon_sym_AMP_CARET_EQ] = ACTIONS(557), - [anon_sym_PLUS_EQ] = ACTIONS(557), - [anon_sym_DASH_EQ] = ACTIONS(557), - [anon_sym_PIPE_EQ] = ACTIONS(557), - [anon_sym_CARET_EQ] = ACTIONS(557), - [anon_sym_shared] = ACTIONS(3537), - [anon_sym_map_LBRACK] = ACTIONS(3539), - [anon_sym_chan] = ACTIONS(3541), - [anon_sym_thread] = ACTIONS(3543), - [anon_sym_atomic] = ACTIONS(3545), - }, - [1149] = { - [sym_identifier] = ACTIONS(3577), - [anon_sym_LF] = ACTIONS(3580), - [anon_sym_CR] = ACTIONS(3580), - [anon_sym_CR_LF] = ACTIONS(3580), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3580), - [anon_sym_DOT] = ACTIONS(3120), - [anon_sym_as] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3580), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_fn] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3118), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_COLON] = ACTIONS(3585), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_go] = ACTIONS(3118), - [anon_sym_spawn] = ACTIONS(3118), - [anon_sym_json_DOTdecode] = ACTIONS(3118), - [anon_sym_LBRACK2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_CARET] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_LT_DASH] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_CARET] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3118), - [sym_none] = ACTIONS(3118), - [sym_true] = ACTIONS(3118), - [sym_false] = ACTIONS(3118), - [sym_nil] = ACTIONS(3118), - [anon_sym_QMARK_DOT] = ACTIONS(3118), - [anon_sym_POUND_LBRACK] = ACTIONS(3118), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_DOLLARif] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3118), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_match] = ACTIONS(3118), - [anon_sym_select] = ACTIONS(3118), - [anon_sym_lock] = ACTIONS(3118), - [anon_sym_rlock] = ACTIONS(3118), - [anon_sym_unsafe] = ACTIONS(3118), - [anon_sym_sql] = ACTIONS(3118), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(3118), - [sym_rune_literal] = ACTIONS(3118), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_shared] = ACTIONS(3118), - [anon_sym_map_LBRACK] = ACTIONS(3118), - [anon_sym_chan] = ACTIONS(3118), - [anon_sym_thread] = ACTIONS(3118), - [anon_sym_atomic] = ACTIONS(3118), - [sym___double_quote] = ACTIONS(3118), - [sym___single_quote] = ACTIONS(3118), - [sym___c_double_quote] = ACTIONS(3118), - [sym___c_single_quote] = ACTIONS(3118), - [sym___r_double_quote] = ACTIONS(3118), - [sym___r_single_quote] = ACTIONS(3118), - }, - [1150] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3587), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1151] = { - [sym_reference_expression] = STATE(4532), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(2055), - [sym__plain_type_without_special] = STATE(2088), - [sym_anon_struct_type] = STATE(2087), - [sym_multi_return_type] = STATE(2088), - [sym_result_type] = STATE(2088), - [sym_option_type] = STATE(2088), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(2087), - [sym_array_type] = STATE(2087), - [sym_pointer_type] = STATE(2087), - [sym_wrong_pointer_type] = STATE(2087), - [sym_map_type] = STATE(2087), - [sym_channel_type] = STATE(2087), - [sym_shared_type] = STATE(2087), - [sym_thread_type] = STATE(2087), - [sym_atomic_type] = STATE(2087), - [sym_generic_type] = STATE(2087), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3519), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3525), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3527), - [anon_sym_COLON] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(611), - [anon_sym_DASH_DASH] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(3529), - [anon_sym_BANG] = ACTIONS(3531), - [anon_sym_LBRACK2] = ACTIONS(3533), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_LT_DASH] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_or] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(611), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(611), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_AMP_CARET_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_shared] = ACTIONS(3537), - [anon_sym_map_LBRACK] = ACTIONS(3539), - [anon_sym_chan] = ACTIONS(3541), - [anon_sym_thread] = ACTIONS(3543), - [anon_sym_atomic] = ACTIONS(3545), - }, - [1152] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3589), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1153] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1154] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1155] = { - [sym_reference_expression] = STATE(4469), - [sym_type_reference_expression] = STATE(1930), - [sym_plain_type] = STATE(2026), - [sym__plain_type_without_special] = STATE(1946), - [sym_anon_struct_type] = STATE(1947), - [sym_multi_return_type] = STATE(1946), - [sym_result_type] = STATE(1946), - [sym_option_type] = STATE(1946), - [sym_qualified_type] = STATE(1930), - [sym_fixed_array_type] = STATE(1947), - [sym_array_type] = STATE(1947), - [sym_pointer_type] = STATE(1947), - [sym_wrong_pointer_type] = STATE(1947), - [sym_map_type] = STATE(1947), - [sym_channel_type] = STATE(1947), - [sym_shared_type] = STATE(1947), - [sym_thread_type] = STATE(1947), - [sym_atomic_type] = STATE(1947), - [sym_generic_type] = STATE(1947), - [sym_function_type] = STATE(1947), - [sym_identifier] = ACTIONS(3549), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3551), - [anon_sym_EQ] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3557), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3559), - [anon_sym_BANG] = ACTIONS(3561), - [anon_sym_LBRACK2] = ACTIONS(3563), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3567), - [anon_sym_map_LBRACK] = ACTIONS(3569), - [anon_sym_chan] = ACTIONS(3571), - [anon_sym_thread] = ACTIONS(3573), - [anon_sym_atomic] = ACTIONS(3575), - }, - [1156] = { - [sym_reference_expression] = STATE(4469), - [sym_type_reference_expression] = STATE(1930), - [sym_plain_type] = STATE(2019), - [sym__plain_type_without_special] = STATE(1946), - [sym_anon_struct_type] = STATE(1947), - [sym_multi_return_type] = STATE(1946), - [sym_result_type] = STATE(1946), - [sym_option_type] = STATE(1946), - [sym_qualified_type] = STATE(1930), - [sym_fixed_array_type] = STATE(1947), - [sym_array_type] = STATE(1947), - [sym_pointer_type] = STATE(1947), - [sym_wrong_pointer_type] = STATE(1947), - [sym_map_type] = STATE(1947), - [sym_channel_type] = STATE(1947), - [sym_shared_type] = STATE(1947), - [sym_thread_type] = STATE(1947), - [sym_atomic_type] = STATE(1947), - [sym_generic_type] = STATE(1947), - [sym_function_type] = STATE(1947), - [sym_identifier] = ACTIONS(3549), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(611), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(3551), - [anon_sym_EQ] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3555), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3557), - [anon_sym_PLUS_PLUS] = ACTIONS(611), - [anon_sym_DASH_DASH] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(3559), - [anon_sym_BANG] = ACTIONS(3561), - [anon_sym_LBRACK2] = ACTIONS(3563), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_or] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(611), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(611), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(611), - [anon_sym_STAR_EQ] = ACTIONS(611), - [anon_sym_SLASH_EQ] = ACTIONS(611), - [anon_sym_PERCENT_EQ] = ACTIONS(611), - [anon_sym_LT_LT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_EQ] = ACTIONS(611), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), - [anon_sym_AMP_EQ] = ACTIONS(611), - [anon_sym_AMP_CARET_EQ] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(611), - [anon_sym_DASH_EQ] = ACTIONS(611), - [anon_sym_PIPE_EQ] = ACTIONS(611), - [anon_sym_CARET_EQ] = ACTIONS(611), - [anon_sym_COLON_EQ] = ACTIONS(611), - [anon_sym_shared] = ACTIONS(3567), - [anon_sym_map_LBRACK] = ACTIONS(3569), - [anon_sym_chan] = ACTIONS(3571), - [anon_sym_thread] = ACTIONS(3573), - [anon_sym_atomic] = ACTIONS(3575), - }, - [1157] = { - [sym_else_branch] = STATE(1190), - [sym_identifier] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_CR] = ACTIONS(2398), - [anon_sym_CR_LF] = ACTIONS(2398), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2398), - [anon_sym_PERCENT] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2398), - [anon_sym_go] = ACTIONS(2398), - [anon_sym_spawn] = ACTIONS(2398), - [anon_sym_json_DOTdecode] = ACTIONS(2398), - [anon_sym_LBRACK2] = ACTIONS(2398), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_CARET] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - [anon_sym_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_GT_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_CARET] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_or] = ACTIONS(2398), - [sym_none] = ACTIONS(2398), - [sym_true] = ACTIONS(2398), - [sym_false] = ACTIONS(2398), - [sym_nil] = ACTIONS(2398), - [anon_sym_QMARK_DOT] = ACTIONS(2398), - [anon_sym_POUND_LBRACK] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_DOLLARif] = ACTIONS(2398), - [anon_sym_is] = ACTIONS(2398), - [anon_sym_BANGis] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2398), - [anon_sym_BANGin] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_select] = ACTIONS(2398), - [anon_sym_lock] = ACTIONS(2398), - [anon_sym_rlock] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_sql] = ACTIONS(2398), - [sym_int_literal] = ACTIONS(2398), - [sym_float_literal] = ACTIONS(2398), - [sym_rune_literal] = ACTIONS(2398), - [anon_sym_AT] = ACTIONS(2398), - [anon_sym_shared] = ACTIONS(2398), - [anon_sym_map_LBRACK] = ACTIONS(2398), - [anon_sym_chan] = ACTIONS(2398), - [anon_sym_thread] = ACTIONS(2398), - [anon_sym_atomic] = ACTIONS(2398), - [sym___double_quote] = ACTIONS(2398), - [sym___single_quote] = ACTIONS(2398), - [sym___c_double_quote] = ACTIONS(2398), - [sym___c_single_quote] = ACTIONS(2398), - [sym___r_double_quote] = ACTIONS(2398), - [sym___r_single_quote] = ACTIONS(2398), - }, - [1158] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_EQ] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1159] = { - [sym_identifier] = ACTIONS(3577), - [anon_sym_LF] = ACTIONS(3580), - [anon_sym_CR] = ACTIONS(3580), - [anon_sym_CR_LF] = ACTIONS(3580), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3580), - [anon_sym_DOT] = ACTIONS(3591), - [anon_sym_as] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3580), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_fn] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3118), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_COLON] = ACTIONS(3585), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_go] = ACTIONS(3118), - [anon_sym_spawn] = ACTIONS(3118), - [anon_sym_json_DOTdecode] = ACTIONS(3118), - [anon_sym_LBRACK2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_CARET] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_LT_DASH] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_CARET] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3118), - [sym_none] = ACTIONS(3118), - [sym_true] = ACTIONS(3118), - [sym_false] = ACTIONS(3118), - [sym_nil] = ACTIONS(3118), - [anon_sym_QMARK_DOT] = ACTIONS(3118), - [anon_sym_POUND_LBRACK] = ACTIONS(3118), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_DOLLARif] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3118), - [anon_sym_BANGis] = ACTIONS(3118), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3118), - [anon_sym_match] = ACTIONS(3118), - [anon_sym_select] = ACTIONS(3118), - [anon_sym_lock] = ACTIONS(3118), - [anon_sym_rlock] = ACTIONS(3118), - [anon_sym_unsafe] = ACTIONS(3118), - [anon_sym_sql] = ACTIONS(3118), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(3118), - [sym_rune_literal] = ACTIONS(3118), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_shared] = ACTIONS(3118), - [anon_sym_map_LBRACK] = ACTIONS(3118), - [anon_sym_chan] = ACTIONS(3118), - [anon_sym_thread] = ACTIONS(3118), - [anon_sym_atomic] = ACTIONS(3118), - [sym___double_quote] = ACTIONS(3118), - [sym___single_quote] = ACTIONS(3118), - [sym___c_double_quote] = ACTIONS(3118), - [sym___c_single_quote] = ACTIONS(3118), - [sym___r_double_quote] = ACTIONS(3118), - [sym___r_single_quote] = ACTIONS(3118), - }, - [1160] = { - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), - }, - [1161] = { - [sym_identifier] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2758), - [anon_sym_CR] = ACTIONS(2758), - [anon_sym_CR_LF] = ACTIONS(2758), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_as] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_COMMA] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_fn] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_LT_EQ] = ACTIONS(2758), - [anon_sym_GT_EQ] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_mut] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_go] = ACTIONS(2758), - [anon_sym_spawn] = ACTIONS(2758), - [anon_sym_json_DOTdecode] = ACTIONS(2758), - [anon_sym_LBRACK2] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2758), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_LT_DASH] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2758), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_GT_GT_GT] = ACTIONS(2758), - [anon_sym_AMP_CARET] = ACTIONS(2758), - [anon_sym_AMP_AMP] = ACTIONS(2758), - [anon_sym_PIPE_PIPE] = ACTIONS(2758), - [anon_sym_or] = ACTIONS(2758), - [sym_none] = ACTIONS(2758), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_nil] = ACTIONS(2758), - [anon_sym_QMARK_DOT] = ACTIONS(2758), - [anon_sym_POUND_LBRACK] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_DOLLARif] = ACTIONS(2758), - [anon_sym_DOLLARelse] = ACTIONS(3594), - [anon_sym_is] = ACTIONS(2758), - [anon_sym_BANGis] = ACTIONS(2758), - [anon_sym_in] = ACTIONS(2758), - [anon_sym_BANGin] = ACTIONS(2758), - [anon_sym_match] = ACTIONS(2758), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2758), - [anon_sym_rlock] = ACTIONS(2758), - [anon_sym_unsafe] = ACTIONS(2758), - [anon_sym_sql] = ACTIONS(2758), - [sym_int_literal] = ACTIONS(2758), - [sym_float_literal] = ACTIONS(2758), - [sym_rune_literal] = ACTIONS(2758), - [anon_sym_AT] = ACTIONS(2758), - [anon_sym_shared] = ACTIONS(2758), - [anon_sym_map_LBRACK] = ACTIONS(2758), - [anon_sym_chan] = ACTIONS(2758), - [anon_sym_thread] = ACTIONS(2758), - [anon_sym_atomic] = ACTIONS(2758), - [sym___double_quote] = ACTIONS(2758), - [sym___single_quote] = ACTIONS(2758), - [sym___c_double_quote] = ACTIONS(2758), - [sym___c_single_quote] = ACTIONS(2758), - [sym___r_double_quote] = ACTIONS(2758), - [sym___r_single_quote] = ACTIONS(2758), - }, - [1162] = { - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_DOLLARelse] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), - }, - [1163] = { - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), - }, - [1164] = { - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_DOLLARelse] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), - }, - [1165] = { - [sym_identifier] = ACTIONS(2616), - [anon_sym_LF] = ACTIONS(2616), - [anon_sym_CR] = ACTIONS(2616), - [anon_sym_CR_LF] = ACTIONS(2616), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_as] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_COMMA] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_fn] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_SLASH] = ACTIONS(2616), - [anon_sym_PERCENT] = ACTIONS(2616), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2616), - [anon_sym_BANG_EQ] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2616), - [anon_sym_GT_EQ] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2616), - [anon_sym_mut] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_go] = ACTIONS(2616), - [anon_sym_spawn] = ACTIONS(2616), - [anon_sym_json_DOTdecode] = ACTIONS(2616), - [anon_sym_LBRACK2] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2616), - [anon_sym_LT_LT] = ACTIONS(2616), - [anon_sym_GT_GT] = ACTIONS(2616), - [anon_sym_GT_GT_GT] = ACTIONS(2616), - [anon_sym_AMP_CARET] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2616), - [anon_sym_or] = ACTIONS(2616), - [sym_none] = ACTIONS(2616), - [sym_true] = ACTIONS(2616), - [sym_false] = ACTIONS(2616), - [sym_nil] = ACTIONS(2616), - [anon_sym_QMARK_DOT] = ACTIONS(2616), - [anon_sym_POUND_LBRACK] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_DOLLARif] = ACTIONS(2616), - [anon_sym_DOLLARelse] = ACTIONS(3596), - [anon_sym_is] = ACTIONS(2616), - [anon_sym_BANGis] = ACTIONS(2616), - [anon_sym_in] = ACTIONS(2616), - [anon_sym_BANGin] = ACTIONS(2616), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_select] = ACTIONS(2616), - [anon_sym_lock] = ACTIONS(2616), - [anon_sym_rlock] = ACTIONS(2616), - [anon_sym_unsafe] = ACTIONS(2616), - [anon_sym_sql] = ACTIONS(2616), - [sym_int_literal] = ACTIONS(2616), - [sym_float_literal] = ACTIONS(2616), - [sym_rune_literal] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_shared] = ACTIONS(2616), - [anon_sym_map_LBRACK] = ACTIONS(2616), - [anon_sym_chan] = ACTIONS(2616), - [anon_sym_thread] = ACTIONS(2616), - [anon_sym_atomic] = ACTIONS(2616), - [sym___double_quote] = ACTIONS(2616), - [sym___single_quote] = ACTIONS(2616), - [sym___c_double_quote] = ACTIONS(2616), - [sym___c_single_quote] = ACTIONS(2616), - [sym___r_double_quote] = ACTIONS(2616), - [sym___r_single_quote] = ACTIONS(2616), - }, - [1166] = { - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_CARET] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2736), - [anon_sym_POUND_LBRACK] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2736), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), - }, - [1167] = { - [sym_type_parameters] = STATE(1245), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2764), - [anon_sym_BANG_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_CARET] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2764), - [anon_sym_POUND_LBRACK] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2764), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), - }, - [1168] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3598), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1169] = { - [sym_identifier] = ACTIONS(3014), - [anon_sym_LF] = ACTIONS(3014), - [anon_sym_CR] = ACTIONS(3014), - [anon_sym_CR_LF] = ACTIONS(3014), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3014), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3014), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_RBRACE] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_fn] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3014), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_GT] = ACTIONS(3014), - [anon_sym_EQ_EQ] = ACTIONS(3014), - [anon_sym_BANG_EQ] = ACTIONS(3014), - [anon_sym_LT_EQ] = ACTIONS(3014), - [anon_sym_GT_EQ] = ACTIONS(3014), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3014), - [anon_sym_mut] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3014), - [anon_sym_DASH_DASH] = ACTIONS(3014), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_go] = ACTIONS(3014), - [anon_sym_spawn] = ACTIONS(3014), - [anon_sym_json_DOTdecode] = ACTIONS(3014), - [anon_sym_LBRACK2] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3014), - [anon_sym_CARET] = ACTIONS(3014), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3014), - [anon_sym_LT_LT] = ACTIONS(3014), - [anon_sym_GT_GT] = ACTIONS(3014), - [anon_sym_GT_GT_GT] = ACTIONS(3014), - [anon_sym_AMP_CARET] = ACTIONS(3014), - [anon_sym_AMP_AMP] = ACTIONS(3014), - [anon_sym_PIPE_PIPE] = ACTIONS(3014), - [anon_sym_or] = ACTIONS(3014), - [sym_none] = ACTIONS(3014), - [sym_true] = ACTIONS(3014), - [sym_false] = ACTIONS(3014), - [sym_nil] = ACTIONS(3014), - [anon_sym_QMARK_DOT] = ACTIONS(3014), - [anon_sym_POUND_LBRACK] = ACTIONS(3014), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_DOLLARif] = ACTIONS(3014), - [anon_sym_is] = ACTIONS(3014), - [anon_sym_BANGis] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(3014), - [anon_sym_BANGin] = ACTIONS(3014), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_select] = ACTIONS(3014), - [anon_sym_lock] = ACTIONS(3014), - [anon_sym_rlock] = ACTIONS(3014), - [anon_sym_unsafe] = ACTIONS(3014), - [anon_sym_sql] = ACTIONS(3014), - [sym_int_literal] = ACTIONS(3014), - [sym_float_literal] = ACTIONS(3014), - [sym_rune_literal] = ACTIONS(3014), - [anon_sym_AT] = ACTIONS(3014), - [anon_sym_shared] = ACTIONS(3014), - [anon_sym_map_LBRACK] = ACTIONS(3014), - [anon_sym_chan] = ACTIONS(3014), - [anon_sym_thread] = ACTIONS(3014), - [anon_sym_atomic] = ACTIONS(3014), - [sym___double_quote] = ACTIONS(3014), - [sym___single_quote] = ACTIONS(3014), - [sym___c_double_quote] = ACTIONS(3014), - [sym___c_single_quote] = ACTIONS(3014), - [sym___r_double_quote] = ACTIONS(3014), - [sym___r_single_quote] = ACTIONS(3014), - }, - [1170] = { - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), - }, - [1171] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_LF] = ACTIONS(2942), - [anon_sym_CR] = ACTIONS(2942), - [anon_sym_CR_LF] = ACTIONS(2942), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2942), - [anon_sym_DOT] = ACTIONS(2942), - [anon_sym_as] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_fn] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_GT] = ACTIONS(2942), - [anon_sym_EQ_EQ] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_struct] = ACTIONS(2942), - [anon_sym_mut] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_QMARK] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_go] = ACTIONS(2942), - [anon_sym_spawn] = ACTIONS(2942), - [anon_sym_json_DOTdecode] = ACTIONS(2942), - [anon_sym_LBRACK2] = ACTIONS(2942), - [anon_sym_TILDE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_LT_DASH] = ACTIONS(2942), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_GT_GT_GT] = ACTIONS(2942), - [anon_sym_AMP_CARET] = ACTIONS(2942), - [anon_sym_AMP_AMP] = ACTIONS(2942), - [anon_sym_PIPE_PIPE] = ACTIONS(2942), - [anon_sym_or] = ACTIONS(2942), - [sym_none] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_nil] = ACTIONS(2942), - [anon_sym_QMARK_DOT] = ACTIONS(2942), - [anon_sym_POUND_LBRACK] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_DOLLARif] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_BANGis] = ACTIONS(2942), - [anon_sym_in] = ACTIONS(2942), - [anon_sym_BANGin] = ACTIONS(2942), - [anon_sym_match] = ACTIONS(2942), - [anon_sym_select] = ACTIONS(2942), - [anon_sym_lock] = ACTIONS(2942), - [anon_sym_rlock] = ACTIONS(2942), - [anon_sym_unsafe] = ACTIONS(2942), - [anon_sym_sql] = ACTIONS(2942), - [sym_int_literal] = ACTIONS(2942), - [sym_float_literal] = ACTIONS(2942), - [sym_rune_literal] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2942), - [anon_sym_shared] = ACTIONS(2942), - [anon_sym_map_LBRACK] = ACTIONS(2942), - [anon_sym_chan] = ACTIONS(2942), - [anon_sym_thread] = ACTIONS(2942), - [anon_sym_atomic] = ACTIONS(2942), - [sym___double_quote] = ACTIONS(2942), - [sym___single_quote] = ACTIONS(2942), - [sym___c_double_quote] = ACTIONS(2942), - [sym___c_single_quote] = ACTIONS(2942), - [sym___r_double_quote] = ACTIONS(2942), - [sym___r_single_quote] = ACTIONS(2942), - }, - [1172] = { - [sym_identifier] = ACTIONS(2946), - [anon_sym_LF] = ACTIONS(2946), - [anon_sym_CR] = ACTIONS(2946), - [anon_sym_CR_LF] = ACTIONS(2946), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_DOT] = ACTIONS(2946), - [anon_sym_as] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_fn] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_PERCENT] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_EQ_EQ] = ACTIONS(2946), - [anon_sym_BANG_EQ] = ACTIONS(2946), - [anon_sym_LT_EQ] = ACTIONS(2946), - [anon_sym_GT_EQ] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_struct] = ACTIONS(2946), - [anon_sym_mut] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2946), - [anon_sym_DASH_DASH] = ACTIONS(2946), - [anon_sym_QMARK] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_go] = ACTIONS(2946), - [anon_sym_spawn] = ACTIONS(2946), - [anon_sym_json_DOTdecode] = ACTIONS(2946), - [anon_sym_LBRACK2] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2946), - [anon_sym_CARET] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_LT_DASH] = ACTIONS(2946), - [anon_sym_LT_LT] = ACTIONS(2946), - [anon_sym_GT_GT] = ACTIONS(2946), - [anon_sym_GT_GT_GT] = ACTIONS(2946), - [anon_sym_AMP_CARET] = ACTIONS(2946), - [anon_sym_AMP_AMP] = ACTIONS(2946), - [anon_sym_PIPE_PIPE] = ACTIONS(2946), - [anon_sym_or] = ACTIONS(2946), - [sym_none] = ACTIONS(2946), - [sym_true] = ACTIONS(2946), - [sym_false] = ACTIONS(2946), - [sym_nil] = ACTIONS(2946), - [anon_sym_QMARK_DOT] = ACTIONS(2946), - [anon_sym_POUND_LBRACK] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_DOLLARif] = ACTIONS(2946), - [anon_sym_is] = ACTIONS(2946), - [anon_sym_BANGis] = ACTIONS(2946), - [anon_sym_in] = ACTIONS(2946), - [anon_sym_BANGin] = ACTIONS(2946), - [anon_sym_match] = ACTIONS(2946), - [anon_sym_select] = ACTIONS(2946), - [anon_sym_lock] = ACTIONS(2946), - [anon_sym_rlock] = ACTIONS(2946), - [anon_sym_unsafe] = ACTIONS(2946), - [anon_sym_sql] = ACTIONS(2946), - [sym_int_literal] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2946), - [sym_rune_literal] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2946), - [anon_sym_shared] = ACTIONS(2946), - [anon_sym_map_LBRACK] = ACTIONS(2946), - [anon_sym_chan] = ACTIONS(2946), - [anon_sym_thread] = ACTIONS(2946), - [anon_sym_atomic] = ACTIONS(2946), - [sym___double_quote] = ACTIONS(2946), - [sym___single_quote] = ACTIONS(2946), - [sym___c_double_quote] = ACTIONS(2946), - [sym___c_single_quote] = ACTIONS(2946), - [sym___r_double_quote] = ACTIONS(2946), - [sym___r_single_quote] = ACTIONS(2946), - }, - [1173] = { - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_COMMA] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2694), - [anon_sym_BANG_EQ] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2694), - [anon_sym_GT_EQ] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2694), - [anon_sym_AMP_CARET] = ACTIONS(2694), - [anon_sym_AMP_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2694), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2694), - [anon_sym_POUND_LBRACK] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2694), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), - }, - [1174] = { - [sym_identifier] = ACTIONS(2950), - [anon_sym_LF] = ACTIONS(2950), - [anon_sym_CR] = ACTIONS(2950), - [anon_sym_CR_LF] = ACTIONS(2950), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_as] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2950), - [anon_sym_RBRACE] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_fn] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2950), - [anon_sym_BANG_EQ] = ACTIONS(2950), - [anon_sym_LT_EQ] = ACTIONS(2950), - [anon_sym_GT_EQ] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_struct] = ACTIONS(2950), - [anon_sym_mut] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2950), - [anon_sym_DASH_DASH] = ACTIONS(2950), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_go] = ACTIONS(2950), - [anon_sym_spawn] = ACTIONS(2950), - [anon_sym_json_DOTdecode] = ACTIONS(2950), - [anon_sym_LBRACK2] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2950), - [anon_sym_CARET] = ACTIONS(2950), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2950), - [anon_sym_LT_LT] = ACTIONS(2950), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_GT_GT_GT] = ACTIONS(2950), - [anon_sym_AMP_CARET] = ACTIONS(2950), - [anon_sym_AMP_AMP] = ACTIONS(2950), - [anon_sym_PIPE_PIPE] = ACTIONS(2950), - [anon_sym_or] = ACTIONS(2950), - [sym_none] = ACTIONS(2950), - [sym_true] = ACTIONS(2950), - [sym_false] = ACTIONS(2950), - [sym_nil] = ACTIONS(2950), - [anon_sym_QMARK_DOT] = ACTIONS(2950), - [anon_sym_POUND_LBRACK] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_DOLLARif] = ACTIONS(2950), - [anon_sym_is] = ACTIONS(2950), - [anon_sym_BANGis] = ACTIONS(2950), - [anon_sym_in] = ACTIONS(2950), - [anon_sym_BANGin] = ACTIONS(2950), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_select] = ACTIONS(2950), - [anon_sym_lock] = ACTIONS(2950), - [anon_sym_rlock] = ACTIONS(2950), - [anon_sym_unsafe] = ACTIONS(2950), - [anon_sym_sql] = ACTIONS(2950), - [sym_int_literal] = ACTIONS(2950), - [sym_float_literal] = ACTIONS(2950), - [sym_rune_literal] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_shared] = ACTIONS(2950), - [anon_sym_map_LBRACK] = ACTIONS(2950), - [anon_sym_chan] = ACTIONS(2950), - [anon_sym_thread] = ACTIONS(2950), - [anon_sym_atomic] = ACTIONS(2950), - [sym___double_quote] = ACTIONS(2950), - [sym___single_quote] = ACTIONS(2950), - [sym___c_double_quote] = ACTIONS(2950), - [sym___c_single_quote] = ACTIONS(2950), - [sym___r_double_quote] = ACTIONS(2950), - [sym___r_single_quote] = ACTIONS(2950), - }, - [1175] = { - [sym_identifier] = ACTIONS(2954), - [anon_sym_LF] = ACTIONS(2954), - [anon_sym_CR] = ACTIONS(2954), - [anon_sym_CR_LF] = ACTIONS(2954), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2954), - [anon_sym_DOT] = ACTIONS(2954), - [anon_sym_as] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_fn] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_GT] = ACTIONS(2954), - [anon_sym_EQ_EQ] = ACTIONS(2954), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_LT_EQ] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2954), - [anon_sym_mut] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_QMARK] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_go] = ACTIONS(2954), - [anon_sym_spawn] = ACTIONS(2954), - [anon_sym_json_DOTdecode] = ACTIONS(2954), - [anon_sym_LBRACK2] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2954), - [anon_sym_CARET] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_LT_DASH] = ACTIONS(2954), - [anon_sym_LT_LT] = ACTIONS(2954), - [anon_sym_GT_GT] = ACTIONS(2954), - [anon_sym_GT_GT_GT] = ACTIONS(2954), - [anon_sym_AMP_CARET] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_PIPE_PIPE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2954), - [sym_none] = ACTIONS(2954), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_nil] = ACTIONS(2954), - [anon_sym_QMARK_DOT] = ACTIONS(2954), - [anon_sym_POUND_LBRACK] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_DOLLARif] = ACTIONS(2954), - [anon_sym_is] = ACTIONS(2954), - [anon_sym_BANGis] = ACTIONS(2954), - [anon_sym_in] = ACTIONS(2954), - [anon_sym_BANGin] = ACTIONS(2954), - [anon_sym_match] = ACTIONS(2954), - [anon_sym_select] = ACTIONS(2954), - [anon_sym_lock] = ACTIONS(2954), - [anon_sym_rlock] = ACTIONS(2954), - [anon_sym_unsafe] = ACTIONS(2954), - [anon_sym_sql] = ACTIONS(2954), - [sym_int_literal] = ACTIONS(2954), - [sym_float_literal] = ACTIONS(2954), - [sym_rune_literal] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2954), - [anon_sym_shared] = ACTIONS(2954), - [anon_sym_map_LBRACK] = ACTIONS(2954), - [anon_sym_chan] = ACTIONS(2954), - [anon_sym_thread] = ACTIONS(2954), - [anon_sym_atomic] = ACTIONS(2954), - [sym___double_quote] = ACTIONS(2954), - [sym___single_quote] = ACTIONS(2954), - [sym___c_double_quote] = ACTIONS(2954), - [sym___c_single_quote] = ACTIONS(2954), - [sym___r_double_quote] = ACTIONS(2954), - [sym___r_single_quote] = ACTIONS(2954), - }, - [1176] = { - [sym_identifier] = ACTIONS(2842), - [anon_sym_LF] = ACTIONS(2842), - [anon_sym_CR] = ACTIONS(2842), - [anon_sym_CR_LF] = ACTIONS(2842), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_as] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2842), - [anon_sym_EQ_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_LT_EQ] = ACTIONS(2842), - [anon_sym_GT_EQ] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_mut] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_go] = ACTIONS(2842), - [anon_sym_spawn] = ACTIONS(2842), - [anon_sym_json_DOTdecode] = ACTIONS(2842), - [anon_sym_LBRACK2] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2842), - [anon_sym_GT_GT] = ACTIONS(2842), - [anon_sym_GT_GT_GT] = ACTIONS(2842), - [anon_sym_AMP_CARET] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_or] = ACTIONS(2842), - [sym_none] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_nil] = ACTIONS(2842), - [anon_sym_QMARK_DOT] = ACTIONS(2842), - [anon_sym_POUND_LBRACK] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_DOLLARif] = ACTIONS(2842), - [anon_sym_is] = ACTIONS(2842), - [anon_sym_BANGis] = ACTIONS(2842), - [anon_sym_in] = ACTIONS(2842), - [anon_sym_BANGin] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_select] = ACTIONS(2842), - [anon_sym_lock] = ACTIONS(2842), - [anon_sym_rlock] = ACTIONS(2842), - [anon_sym_unsafe] = ACTIONS(2842), - [anon_sym_sql] = ACTIONS(2842), - [sym_int_literal] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2842), - [sym_rune_literal] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2842), - [anon_sym_shared] = ACTIONS(2842), - [anon_sym_map_LBRACK] = ACTIONS(2842), - [anon_sym_chan] = ACTIONS(2842), - [anon_sym_thread] = ACTIONS(2842), - [anon_sym_atomic] = ACTIONS(2842), - [sym___double_quote] = ACTIONS(2842), - [sym___single_quote] = ACTIONS(2842), - [sym___c_double_quote] = ACTIONS(2842), - [sym___c_single_quote] = ACTIONS(2842), - [sym___r_double_quote] = ACTIONS(2842), - [sym___r_single_quote] = ACTIONS(2842), - }, - [1177] = { - [sym_identifier] = ACTIONS(3026), - [anon_sym_LF] = ACTIONS(3026), - [anon_sym_CR] = ACTIONS(3026), - [anon_sym_CR_LF] = ACTIONS(3026), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3026), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3026), - [anon_sym_COMMA] = ACTIONS(3026), - [anon_sym_RBRACE] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(3026), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_fn] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3026), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3026), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_EQ_EQ] = ACTIONS(3026), - [anon_sym_BANG_EQ] = ACTIONS(3026), - [anon_sym_LT_EQ] = ACTIONS(3026), - [anon_sym_GT_EQ] = ACTIONS(3026), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_struct] = ACTIONS(3026), - [anon_sym_mut] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(3026), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_go] = ACTIONS(3026), - [anon_sym_spawn] = ACTIONS(3026), - [anon_sym_json_DOTdecode] = ACTIONS(3026), - [anon_sym_LBRACK2] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3026), - [anon_sym_CARET] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3026), - [anon_sym_LT_LT] = ACTIONS(3026), - [anon_sym_GT_GT] = ACTIONS(3026), - [anon_sym_GT_GT_GT] = ACTIONS(3026), - [anon_sym_AMP_CARET] = ACTIONS(3026), - [anon_sym_AMP_AMP] = ACTIONS(3026), - [anon_sym_PIPE_PIPE] = ACTIONS(3026), - [anon_sym_or] = ACTIONS(3026), - [sym_none] = ACTIONS(3026), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_nil] = ACTIONS(3026), - [anon_sym_QMARK_DOT] = ACTIONS(3026), - [anon_sym_POUND_LBRACK] = ACTIONS(3026), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_DOLLARif] = ACTIONS(3026), - [anon_sym_is] = ACTIONS(3026), - [anon_sym_BANGis] = ACTIONS(3026), - [anon_sym_in] = ACTIONS(3026), - [anon_sym_BANGin] = ACTIONS(3026), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_select] = ACTIONS(3026), - [anon_sym_lock] = ACTIONS(3026), - [anon_sym_rlock] = ACTIONS(3026), - [anon_sym_unsafe] = ACTIONS(3026), - [anon_sym_sql] = ACTIONS(3026), - [sym_int_literal] = ACTIONS(3026), - [sym_float_literal] = ACTIONS(3026), - [sym_rune_literal] = ACTIONS(3026), - [anon_sym_AT] = ACTIONS(3026), - [anon_sym_shared] = ACTIONS(3026), - [anon_sym_map_LBRACK] = ACTIONS(3026), - [anon_sym_chan] = ACTIONS(3026), - [anon_sym_thread] = ACTIONS(3026), - [anon_sym_atomic] = ACTIONS(3026), - [sym___double_quote] = ACTIONS(3026), - [sym___single_quote] = ACTIONS(3026), - [sym___c_double_quote] = ACTIONS(3026), - [sym___c_single_quote] = ACTIONS(3026), - [sym___r_double_quote] = ACTIONS(3026), - [sym___r_single_quote] = ACTIONS(3026), - }, - [1178] = { - [sym_identifier] = ACTIONS(3074), - [anon_sym_LF] = ACTIONS(3074), - [anon_sym_CR] = ACTIONS(3074), - [anon_sym_CR_LF] = ACTIONS(3074), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3074), - [anon_sym_COMMA] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_LPAREN] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3074), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3074), - [anon_sym_BANG_EQ] = ACTIONS(3074), - [anon_sym_LT_EQ] = ACTIONS(3074), - [anon_sym_GT_EQ] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3074), - [anon_sym_DASH_DASH] = ACTIONS(3074), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3074), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3074), - [anon_sym_CARET] = ACTIONS(3074), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(3074), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_CARET] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3074), - [anon_sym_POUND_LBRACK] = ACTIONS(3074), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3074), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3074), - [sym_rune_literal] = ACTIONS(3074), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3074), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [sym___double_quote] = ACTIONS(3074), - [sym___single_quote] = ACTIONS(3074), - [sym___c_double_quote] = ACTIONS(3074), - [sym___c_single_quote] = ACTIONS(3074), - [sym___r_double_quote] = ACTIONS(3074), - [sym___r_single_quote] = ACTIONS(3074), + [sym___double_quote] = ACTIONS(2390), + [sym___single_quote] = ACTIONS(2390), + [sym___c_double_quote] = ACTIONS(2390), + [sym___c_single_quote] = ACTIONS(2390), + [sym___r_double_quote] = ACTIONS(2390), + [sym___r_single_quote] = ACTIONS(2390), }, - [1179] = { - [sym_identifier] = ACTIONS(3034), - [anon_sym_LF] = ACTIONS(3034), - [anon_sym_CR] = ACTIONS(3034), - [anon_sym_CR_LF] = ACTIONS(3034), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3034), - [anon_sym_DOT] = ACTIONS(3034), - [anon_sym_as] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3034), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_RBRACE] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3034), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3034), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_PERCENT] = ACTIONS(3034), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_GT] = ACTIONS(3034), - [anon_sym_EQ_EQ] = ACTIONS(3034), - [anon_sym_BANG_EQ] = ACTIONS(3034), - [anon_sym_LT_EQ] = ACTIONS(3034), - [anon_sym_GT_EQ] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_mut] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3034), - [anon_sym_DASH_DASH] = ACTIONS(3034), - [anon_sym_QMARK] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_go] = ACTIONS(3034), - [anon_sym_spawn] = ACTIONS(3034), - [anon_sym_json_DOTdecode] = ACTIONS(3034), - [anon_sym_LBRACK2] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3034), - [anon_sym_CARET] = ACTIONS(3034), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_LT_DASH] = ACTIONS(3034), - [anon_sym_LT_LT] = ACTIONS(3034), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_GT_GT_GT] = ACTIONS(3034), - [anon_sym_AMP_CARET] = ACTIONS(3034), - [anon_sym_AMP_AMP] = ACTIONS(3034), - [anon_sym_PIPE_PIPE] = ACTIONS(3034), - [anon_sym_or] = ACTIONS(3034), - [sym_none] = ACTIONS(3034), - [sym_true] = ACTIONS(3034), - [sym_false] = ACTIONS(3034), - [sym_nil] = ACTIONS(3034), - [anon_sym_QMARK_DOT] = ACTIONS(3034), - [anon_sym_POUND_LBRACK] = ACTIONS(3034), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_DOLLARif] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_BANGis] = ACTIONS(3034), - [anon_sym_in] = ACTIONS(3034), - [anon_sym_BANGin] = ACTIONS(3034), - [anon_sym_match] = ACTIONS(3034), - [anon_sym_select] = ACTIONS(3034), - [anon_sym_lock] = ACTIONS(3034), - [anon_sym_rlock] = ACTIONS(3034), - [anon_sym_unsafe] = ACTIONS(3034), - [anon_sym_sql] = ACTIONS(3034), - [sym_int_literal] = ACTIONS(3034), - [sym_float_literal] = ACTIONS(3034), - [sym_rune_literal] = ACTIONS(3034), - [anon_sym_AT] = ACTIONS(3034), - [anon_sym_shared] = ACTIONS(3034), - [anon_sym_map_LBRACK] = ACTIONS(3034), - [anon_sym_chan] = ACTIONS(3034), - [anon_sym_thread] = ACTIONS(3034), - [anon_sym_atomic] = ACTIONS(3034), - [sym___double_quote] = ACTIONS(3034), - [sym___single_quote] = ACTIONS(3034), - [sym___c_double_quote] = ACTIONS(3034), - [sym___c_single_quote] = ACTIONS(3034), - [sym___r_double_quote] = ACTIONS(3034), - [sym___r_single_quote] = ACTIONS(3034), + [1191] = { + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_DOLLARelse] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), }, - [1180] = { - [sym_identifier] = ACTIONS(3054), - [anon_sym_LF] = ACTIONS(3054), - [anon_sym_CR] = ACTIONS(3054), - [anon_sym_CR_LF] = ACTIONS(3054), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3054), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3054), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3054), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3054), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3054), - [anon_sym_BANG_EQ] = ACTIONS(3054), - [anon_sym_LT_EQ] = ACTIONS(3054), - [anon_sym_GT_EQ] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3054), - [anon_sym_DASH_DASH] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3054), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3054), - [anon_sym_CARET] = ACTIONS(3054), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3054), - [anon_sym_LT_LT] = ACTIONS(3054), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3054), - [anon_sym_AMP_CARET] = ACTIONS(3054), - [anon_sym_AMP_AMP] = ACTIONS(3054), - [anon_sym_PIPE_PIPE] = ACTIONS(3054), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3054), - [anon_sym_POUND_LBRACK] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3054), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3054), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3054), - [sym_rune_literal] = ACTIONS(3054), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3054), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3054), - [sym___single_quote] = ACTIONS(3054), - [sym___c_double_quote] = ACTIONS(3054), - [sym___c_single_quote] = ACTIONS(3054), - [sym___r_double_quote] = ACTIONS(3054), - [sym___r_single_quote] = ACTIONS(3054), + [1192] = { + [sym_identifier] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_CR] = ACTIONS(2926), + [anon_sym_CR_LF] = ACTIONS(2926), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_COMMA] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PERCENT] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2926), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2926), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2926), + [anon_sym_AMP_CARET] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_or] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_QMARK_DOT] = ACTIONS(2926), + [anon_sym_POUND_LBRACK] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_DOLLARelse] = ACTIONS(3760), + [anon_sym_is] = ACTIONS(2926), + [anon_sym_BANGis] = ACTIONS(2926), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_BANGin] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + [sym_rune_literal] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2926), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2926), + [sym___single_quote] = ACTIONS(2926), + [sym___c_double_quote] = ACTIONS(2926), + [sym___c_single_quote] = ACTIONS(2926), + [sym___r_double_quote] = ACTIONS(2926), + [sym___r_single_quote] = ACTIONS(2926), }, - [1181] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_LF] = ACTIONS(2992), - [anon_sym_CR] = ACTIONS(2992), - [anon_sym_CR_LF] = ACTIONS(2992), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2992), - [anon_sym_DOT] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2992), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_RBRACE] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_fn] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2994), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PERCENT] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2994), - [anon_sym_BANG_EQ] = ACTIONS(2994), - [anon_sym_LT_EQ] = ACTIONS(2994), - [anon_sym_GT_EQ] = ACTIONS(2994), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2992), - [anon_sym_mut] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_go] = ACTIONS(2992), - [anon_sym_spawn] = ACTIONS(2992), - [anon_sym_json_DOTdecode] = ACTIONS(2992), - [anon_sym_LBRACK2] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2992), - [anon_sym_CARET] = ACTIONS(2994), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT_DASH] = ACTIONS(2992), - [anon_sym_LT_LT] = ACTIONS(2994), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2994), - [anon_sym_AMP_CARET] = ACTIONS(2994), - [anon_sym_AMP_AMP] = ACTIONS(2994), - [anon_sym_PIPE_PIPE] = ACTIONS(2994), - [anon_sym_or] = ACTIONS(2994), - [sym_none] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_nil] = ACTIONS(2992), - [anon_sym_QMARK_DOT] = ACTIONS(2994), - [anon_sym_POUND_LBRACK] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_DOLLARif] = ACTIONS(2992), - [anon_sym_is] = ACTIONS(2994), - [anon_sym_BANGis] = ACTIONS(2994), - [anon_sym_in] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2994), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_select] = ACTIONS(2992), - [anon_sym_lock] = ACTIONS(2992), - [anon_sym_rlock] = ACTIONS(2992), - [anon_sym_unsafe] = ACTIONS(2992), - [anon_sym_sql] = ACTIONS(2992), - [sym_int_literal] = ACTIONS(2992), - [sym_float_literal] = ACTIONS(2992), - [sym_rune_literal] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2992), - [anon_sym_shared] = ACTIONS(2992), - [anon_sym_map_LBRACK] = ACTIONS(2992), - [anon_sym_chan] = ACTIONS(2992), - [anon_sym_thread] = ACTIONS(2992), - [anon_sym_atomic] = ACTIONS(2992), - [sym___double_quote] = ACTIONS(2992), - [sym___single_quote] = ACTIONS(2992), - [sym___c_double_quote] = ACTIONS(2992), - [sym___c_single_quote] = ACTIONS(2992), - [sym___r_double_quote] = ACTIONS(2992), - [sym___r_single_quote] = ACTIONS(2992), + [1193] = { + [sym_identifier] = ACTIONS(3012), + [anon_sym_LF] = ACTIONS(3012), + [anon_sym_CR] = ACTIONS(3012), + [anon_sym_CR_LF] = ACTIONS(3012), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_as] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3012), + [anon_sym_RBRACE] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3012), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3012), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_GT] = ACTIONS(3012), + [anon_sym_EQ_EQ] = ACTIONS(3012), + [anon_sym_BANG_EQ] = ACTIONS(3012), + [anon_sym_LT_EQ] = ACTIONS(3012), + [anon_sym_GT_EQ] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_mut] = ACTIONS(3012), + [anon_sym_PLUS_PLUS] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_go] = ACTIONS(3012), + [anon_sym_spawn] = ACTIONS(3012), + [anon_sym_json_DOTdecode] = ACTIONS(3012), + [anon_sym_LBRACK2] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3012), + [anon_sym_CARET] = ACTIONS(3012), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3012), + [anon_sym_LT_LT] = ACTIONS(3012), + [anon_sym_GT_GT] = ACTIONS(3012), + [anon_sym_GT_GT_GT] = ACTIONS(3012), + [anon_sym_AMP_CARET] = ACTIONS(3012), + [anon_sym_AMP_AMP] = ACTIONS(3012), + [anon_sym_PIPE_PIPE] = ACTIONS(3012), + [anon_sym_or] = ACTIONS(3012), + [sym_none] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_nil] = ACTIONS(3012), + [anon_sym_QMARK_DOT] = ACTIONS(3012), + [anon_sym_POUND_LBRACK] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_DOLLARif] = ACTIONS(3012), + [anon_sym_is] = ACTIONS(3012), + [anon_sym_BANGis] = ACTIONS(3012), + [anon_sym_in] = ACTIONS(3012), + [anon_sym_BANGin] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_select] = ACTIONS(3012), + [anon_sym_lock] = ACTIONS(3012), + [anon_sym_rlock] = ACTIONS(3012), + [anon_sym_unsafe] = ACTIONS(3012), + [anon_sym_sql] = ACTIONS(3012), + [sym_int_literal] = ACTIONS(3012), + [sym_float_literal] = ACTIONS(3012), + [sym_rune_literal] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_shared] = ACTIONS(3012), + [anon_sym_map_LBRACK] = ACTIONS(3012), + [anon_sym_chan] = ACTIONS(3012), + [anon_sym_thread] = ACTIONS(3012), + [anon_sym_atomic] = ACTIONS(3012), + [sym___double_quote] = ACTIONS(3012), + [sym___single_quote] = ACTIONS(3012), + [sym___c_double_quote] = ACTIONS(3012), + [sym___c_single_quote] = ACTIONS(3012), + [sym___r_double_quote] = ACTIONS(3012), + [sym___r_single_quote] = ACTIONS(3012), }, - [1182] = { - [sym_identifier] = ACTIONS(2982), - [anon_sym_LF] = ACTIONS(2982), - [anon_sym_CR] = ACTIONS(2982), - [anon_sym_CR_LF] = ACTIONS(2982), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2982), + [1194] = { + [sym_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2984), + [anon_sym_CR] = ACTIONS(2984), + [anon_sym_CR_LF] = ACTIONS(2984), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2984), [anon_sym_DOT] = ACTIONS(2984), [anon_sym_as] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2982), - [anon_sym_COMMA] = ACTIONS(2982), - [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(2984), [anon_sym_LPAREN] = ACTIONS(2984), [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2982), + [anon_sym_fn] = ACTIONS(2984), [anon_sym_PLUS] = ACTIONS(2984), [anon_sym_DASH] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(2984), @@ -157800,21 +159614,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2984), [anon_sym_LT_EQ] = ACTIONS(2984), [anon_sym_GT_EQ] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2982), - [anon_sym_mut] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), [anon_sym_PLUS_PLUS] = ACTIONS(2984), [anon_sym_DASH_DASH] = ACTIONS(2984), [anon_sym_QMARK] = ACTIONS(2984), [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_go] = ACTIONS(2982), - [anon_sym_spawn] = ACTIONS(2982), - [anon_sym_json_DOTdecode] = ACTIONS(2982), + [anon_sym_go] = ACTIONS(2984), + [anon_sym_spawn] = ACTIONS(2984), + [anon_sym_json_DOTdecode] = ACTIONS(2984), [anon_sym_LBRACK2] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2984), [anon_sym_CARET] = ACTIONS(2984), [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2984), [anon_sym_LT_LT] = ACTIONS(2984), [anon_sym_GT_GT] = ACTIONS(2984), [anon_sym_GT_GT_GT] = ACTIONS(2984), @@ -157822,4886 +159636,4230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(2984), [anon_sym_PIPE_PIPE] = ACTIONS(2984), [anon_sym_or] = ACTIONS(2984), - [sym_none] = ACTIONS(2982), - [sym_true] = ACTIONS(2982), - [sym_false] = ACTIONS(2982), - [sym_nil] = ACTIONS(2982), + [sym_none] = ACTIONS(2984), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_nil] = ACTIONS(2984), [anon_sym_QMARK_DOT] = ACTIONS(2984), [anon_sym_POUND_LBRACK] = ACTIONS(2984), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_DOLLARif] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_DOLLARif] = ACTIONS(2984), [anon_sym_is] = ACTIONS(2984), [anon_sym_BANGis] = ACTIONS(2984), [anon_sym_in] = ACTIONS(2984), [anon_sym_BANGin] = ACTIONS(2984), - [anon_sym_match] = ACTIONS(2982), - [anon_sym_select] = ACTIONS(2982), - [anon_sym_lock] = ACTIONS(2982), - [anon_sym_rlock] = ACTIONS(2982), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_sql] = ACTIONS(2982), - [sym_int_literal] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2982), - [sym_rune_literal] = ACTIONS(2982), - [anon_sym_AT] = ACTIONS(2982), - [anon_sym_shared] = ACTIONS(2982), - [anon_sym_map_LBRACK] = ACTIONS(2982), - [anon_sym_chan] = ACTIONS(2982), - [anon_sym_thread] = ACTIONS(2982), - [anon_sym_atomic] = ACTIONS(2982), - [sym___double_quote] = ACTIONS(2982), - [sym___single_quote] = ACTIONS(2982), - [sym___c_double_quote] = ACTIONS(2982), - [sym___c_single_quote] = ACTIONS(2982), - [sym___r_double_quote] = ACTIONS(2982), - [sym___r_single_quote] = ACTIONS(2982), - }, - [1183] = { - [sym_identifier] = ACTIONS(2790), - [anon_sym_LF] = ACTIONS(2790), - [anon_sym_CR] = ACTIONS(2790), - [anon_sym_CR_LF] = ACTIONS(2790), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), - }, - [1184] = { - [sym_identifier] = ACTIONS(3062), - [anon_sym_LF] = ACTIONS(3062), - [anon_sym_CR] = ACTIONS(3062), - [anon_sym_CR_LF] = ACTIONS(3062), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3062), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3062), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3062), - [anon_sym_CARET] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3062), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3062), - [anon_sym_AMP_CARET] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3062), - [anon_sym_POUND_LBRACK] = ACTIONS(3062), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3062), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3062), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3062), - [sym_rune_literal] = ACTIONS(3062), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3062), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3062), - [sym___single_quote] = ACTIONS(3062), - [sym___c_double_quote] = ACTIONS(3062), - [sym___c_single_quote] = ACTIONS(3062), - [sym___r_double_quote] = ACTIONS(3062), - [sym___r_single_quote] = ACTIONS(3062), - }, - [1185] = { - [sym_identifier] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_CR] = ACTIONS(3070), - [anon_sym_CR_LF] = ACTIONS(3070), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3070), - [anon_sym_COMMA] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3070), - [anon_sym_LPAREN] = ACTIONS(3070), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3070), - [anon_sym_BANG_EQ] = ACTIONS(3070), - [anon_sym_LT_EQ] = ACTIONS(3070), - [anon_sym_GT_EQ] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3070), - [anon_sym_DASH_DASH] = ACTIONS(3070), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3070), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3070), - [anon_sym_CARET] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_CARET] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3070), - [anon_sym_POUND_LBRACK] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3070), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3070), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3070), - [sym_rune_literal] = ACTIONS(3070), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3070), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [sym___double_quote] = ACTIONS(3070), - [sym___single_quote] = ACTIONS(3070), - [sym___c_double_quote] = ACTIONS(3070), - [sym___c_single_quote] = ACTIONS(3070), - [sym___r_double_quote] = ACTIONS(3070), - [sym___r_single_quote] = ACTIONS(3070), - }, - [1186] = { - [sym_identifier] = ACTIONS(2834), - [anon_sym_LF] = ACTIONS(2834), - [anon_sym_CR] = ACTIONS(2834), - [anon_sym_CR_LF] = ACTIONS(2834), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2834), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_as] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_fn] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_GT] = ACTIONS(2834), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_mut] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_go] = ACTIONS(2834), - [anon_sym_spawn] = ACTIONS(2834), - [anon_sym_json_DOTdecode] = ACTIONS(2834), - [anon_sym_LBRACK2] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2834), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_or] = ACTIONS(2834), - [sym_none] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_nil] = ACTIONS(2834), - [anon_sym_QMARK_DOT] = ACTIONS(2834), - [anon_sym_POUND_LBRACK] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_DOLLARif] = ACTIONS(2834), - [anon_sym_is] = ACTIONS(2834), - [anon_sym_BANGis] = ACTIONS(2834), - [anon_sym_in] = ACTIONS(2834), - [anon_sym_BANGin] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_select] = ACTIONS(2834), - [anon_sym_lock] = ACTIONS(2834), - [anon_sym_rlock] = ACTIONS(2834), - [anon_sym_unsafe] = ACTIONS(2834), - [anon_sym_sql] = ACTIONS(2834), - [sym_int_literal] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2834), - [sym_rune_literal] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2834), - [anon_sym_shared] = ACTIONS(2834), - [anon_sym_map_LBRACK] = ACTIONS(2834), - [anon_sym_chan] = ACTIONS(2834), - [anon_sym_thread] = ACTIONS(2834), - [anon_sym_atomic] = ACTIONS(2834), - [sym___double_quote] = ACTIONS(2834), - [sym___single_quote] = ACTIONS(2834), - [sym___c_double_quote] = ACTIONS(2834), - [sym___c_single_quote] = ACTIONS(2834), - [sym___r_double_quote] = ACTIONS(2834), - [sym___r_single_quote] = ACTIONS(2834), - }, - [1187] = { - [sym_identifier] = ACTIONS(3114), - [anon_sym_LF] = ACTIONS(3114), - [anon_sym_CR] = ACTIONS(3114), - [anon_sym_CR_LF] = ACTIONS(3114), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3114), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3114), - [anon_sym_COMMA] = ACTIONS(3114), - [anon_sym_RBRACE] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_fn] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_LT_EQ] = ACTIONS(3114), - [anon_sym_GT_EQ] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3114), - [anon_sym_mut] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3114), - [anon_sym_DASH_DASH] = ACTIONS(3114), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_go] = ACTIONS(3114), - [anon_sym_spawn] = ACTIONS(3114), - [anon_sym_json_DOTdecode] = ACTIONS(3114), - [anon_sym_LBRACK2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3114), - [anon_sym_CARET] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_LT_DASH] = ACTIONS(3114), - [anon_sym_LT_LT] = ACTIONS(3114), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_GT_GT_GT] = ACTIONS(3114), - [anon_sym_AMP_CARET] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_or] = ACTIONS(3114), - [sym_none] = ACTIONS(3114), - [sym_true] = ACTIONS(3114), - [sym_false] = ACTIONS(3114), - [sym_nil] = ACTIONS(3114), - [anon_sym_QMARK_DOT] = ACTIONS(3114), - [anon_sym_POUND_LBRACK] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_DOLLARif] = ACTIONS(3114), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3114), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_BANGin] = ACTIONS(3114), - [anon_sym_match] = ACTIONS(3114), - [anon_sym_select] = ACTIONS(3114), - [anon_sym_lock] = ACTIONS(3114), - [anon_sym_rlock] = ACTIONS(3114), - [anon_sym_unsafe] = ACTIONS(3114), - [anon_sym_sql] = ACTIONS(3114), - [sym_int_literal] = ACTIONS(3114), - [sym_float_literal] = ACTIONS(3114), - [sym_rune_literal] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_shared] = ACTIONS(3114), - [anon_sym_map_LBRACK] = ACTIONS(3114), - [anon_sym_chan] = ACTIONS(3114), - [anon_sym_thread] = ACTIONS(3114), - [anon_sym_atomic] = ACTIONS(3114), - [sym___double_quote] = ACTIONS(3114), - [sym___single_quote] = ACTIONS(3114), - [sym___c_double_quote] = ACTIONS(3114), - [sym___c_single_quote] = ACTIONS(3114), - [sym___r_double_quote] = ACTIONS(3114), - [sym___r_single_quote] = ACTIONS(3114), - }, - [1188] = { - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), - }, - [1189] = { - [sym_identifier] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3151), - [anon_sym_CR] = ACTIONS(3151), - [anon_sym_CR_LF] = ACTIONS(3151), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), - }, - [1190] = { - [sym_identifier] = ACTIONS(3155), - [anon_sym_LF] = ACTIONS(3155), - [anon_sym_CR] = ACTIONS(3155), - [anon_sym_CR_LF] = ACTIONS(3155), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), - }, - [1191] = { - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), - }, - [1192] = { - [sym_identifier] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3159), - [anon_sym_CR] = ACTIONS(3159), - [anon_sym_CR_LF] = ACTIONS(3159), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), - }, - [1193] = { - [sym_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3167), - [anon_sym_CR] = ACTIONS(3167), - [anon_sym_CR_LF] = ACTIONS(3167), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_EQ_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_LT_EQ] = ACTIONS(3167), - [anon_sym_GT_EQ] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3167), - [anon_sym_GT_GT_GT] = ACTIONS(3167), - [anon_sym_AMP_CARET] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3167), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(3167), - [anon_sym_POUND_LBRACK] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3167), - [anon_sym_BANGis] = ACTIONS(3167), - [anon_sym_in] = ACTIONS(3167), - [anon_sym_BANGin] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), - }, - [1194] = { - [sym_identifier] = ACTIONS(2822), - [anon_sym_LF] = ACTIONS(2822), - [anon_sym_CR] = ACTIONS(2822), - [anon_sym_CR_LF] = ACTIONS(2822), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_mut] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_go] = ACTIONS(2822), - [anon_sym_spawn] = ACTIONS(2822), - [anon_sym_json_DOTdecode] = ACTIONS(2822), - [anon_sym_LBRACK2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_or] = ACTIONS(2822), - [sym_none] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_nil] = ACTIONS(2822), - [anon_sym_QMARK_DOT] = ACTIONS(2822), - [anon_sym_POUND_LBRACK] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_DOLLARif] = ACTIONS(2822), - [anon_sym_is] = ACTIONS(2822), - [anon_sym_BANGis] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2822), - [anon_sym_BANGin] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_select] = ACTIONS(2822), - [anon_sym_lock] = ACTIONS(2822), - [anon_sym_rlock] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_sql] = ACTIONS(2822), - [sym_int_literal] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2822), - [sym_rune_literal] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2822), - [anon_sym_shared] = ACTIONS(2822), - [anon_sym_map_LBRACK] = ACTIONS(2822), - [anon_sym_chan] = ACTIONS(2822), - [anon_sym_thread] = ACTIONS(2822), - [anon_sym_atomic] = ACTIONS(2822), - [sym___double_quote] = ACTIONS(2822), - [sym___single_quote] = ACTIONS(2822), - [sym___c_double_quote] = ACTIONS(2822), - [sym___c_single_quote] = ACTIONS(2822), - [sym___r_double_quote] = ACTIONS(2822), - [sym___r_single_quote] = ACTIONS(2822), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_select] = ACTIONS(2984), + [anon_sym_lock] = ACTIONS(2984), + [anon_sym_rlock] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_sql] = ACTIONS(2984), + [sym_int_literal] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2984), + [sym_rune_literal] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2984), + [anon_sym_shared] = ACTIONS(2984), + [anon_sym_map_LBRACK] = ACTIONS(2984), + [anon_sym_chan] = ACTIONS(2984), + [anon_sym_thread] = ACTIONS(2984), + [anon_sym_atomic] = ACTIONS(2984), + [sym___double_quote] = ACTIONS(2984), + [sym___single_quote] = ACTIONS(2984), + [sym___c_double_quote] = ACTIONS(2984), + [sym___c_single_quote] = ACTIONS(2984), + [sym___r_double_quote] = ACTIONS(2984), + [sym___r_single_quote] = ACTIONS(2984), }, [1195] = { - [sym_identifier] = ACTIONS(3179), - [anon_sym_LF] = ACTIONS(3179), - [anon_sym_CR] = ACTIONS(3179), - [anon_sym_CR_LF] = ACTIONS(3179), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_CR] = ACTIONS(3040), + [anon_sym_CR_LF] = ACTIONS(3040), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3040), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3040), + [anon_sym_POUND_LBRACK] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [anon_sym_AT] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), }, [1196] = { - [sym_identifier] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_CR] = ACTIONS(3082), - [anon_sym_CR_LF] = ACTIONS(3082), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_COMMA] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_fn] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_EQ_EQ] = ACTIONS(3082), - [anon_sym_BANG_EQ] = ACTIONS(3082), - [anon_sym_LT_EQ] = ACTIONS(3082), - [anon_sym_GT_EQ] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_mut] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_go] = ACTIONS(3082), - [anon_sym_spawn] = ACTIONS(3082), - [anon_sym_json_DOTdecode] = ACTIONS(3082), - [anon_sym_LBRACK2] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_GT_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_CARET] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_or] = ACTIONS(3082), - [sym_none] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_nil] = ACTIONS(3082), - [anon_sym_QMARK_DOT] = ACTIONS(3082), - [anon_sym_POUND_LBRACK] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_DOLLARif] = ACTIONS(3082), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3082), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_BANGin] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_select] = ACTIONS(3082), - [anon_sym_lock] = ACTIONS(3082), - [anon_sym_rlock] = ACTIONS(3082), - [anon_sym_unsafe] = ACTIONS(3082), - [anon_sym_sql] = ACTIONS(3082), - [sym_int_literal] = ACTIONS(3082), - [sym_float_literal] = ACTIONS(3082), - [sym_rune_literal] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_shared] = ACTIONS(3082), - [anon_sym_map_LBRACK] = ACTIONS(3082), - [anon_sym_chan] = ACTIONS(3082), - [anon_sym_thread] = ACTIONS(3082), - [anon_sym_atomic] = ACTIONS(3082), - [sym___double_quote] = ACTIONS(3082), - [sym___single_quote] = ACTIONS(3082), - [sym___c_double_quote] = ACTIONS(3082), - [sym___c_single_quote] = ACTIONS(3082), - [sym___r_double_quote] = ACTIONS(3082), - [sym___r_single_quote] = ACTIONS(3082), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_format_specifier] = STATE(4329), + [sym_identifier] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_mut] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(3762), + [anon_sym_spawn] = ACTIONS(3762), + [anon_sym_json_DOTdecode] = ACTIONS(3766), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3766), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(3762), + [sym_true] = ACTIONS(3762), + [sym_false] = ACTIONS(3762), + [sym_nil] = ACTIONS(3762), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_DOLLARif] = ACTIONS(3762), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3796), + [anon_sym_BANGin] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_select] = ACTIONS(3762), + [anon_sym_lock] = ACTIONS(3762), + [anon_sym_rlock] = ACTIONS(3762), + [anon_sym_unsafe] = ACTIONS(3762), + [anon_sym_sql] = ACTIONS(3762), + [sym_int_literal] = ACTIONS(3762), + [sym_float_literal] = ACTIONS(3766), + [sym_rune_literal] = ACTIONS(3766), + [anon_sym_AT] = ACTIONS(3762), + [anon_sym_shared] = ACTIONS(3762), + [anon_sym_map_LBRACK] = ACTIONS(3766), + [anon_sym_chan] = ACTIONS(3762), + [anon_sym_thread] = ACTIONS(3762), + [anon_sym_atomic] = ACTIONS(3762), + [sym___double_quote] = ACTIONS(3766), + [sym___single_quote] = ACTIONS(3766), + [sym___c_double_quote] = ACTIONS(3766), + [sym___c_single_quote] = ACTIONS(3766), + [sym___r_double_quote] = ACTIONS(3766), + [sym___r_single_quote] = ACTIONS(3766), }, [1197] = { - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [1198] = { - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [anon_sym_AT] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [sym_identifier] = ACTIONS(2996), + [anon_sym_LF] = ACTIONS(2996), + [anon_sym_CR] = ACTIONS(2996), + [anon_sym_CR_LF] = ACTIONS(2996), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2996), + [anon_sym_DOT] = ACTIONS(2996), + [anon_sym_as] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2996), + [anon_sym_COMMA] = ACTIONS(2996), + [anon_sym_RBRACE] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2996), + [anon_sym_PIPE] = ACTIONS(2996), + [anon_sym_fn] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2996), + [anon_sym_SLASH] = ACTIONS(2996), + [anon_sym_PERCENT] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_GT] = ACTIONS(2996), + [anon_sym_EQ_EQ] = ACTIONS(2996), + [anon_sym_BANG_EQ] = ACTIONS(2996), + [anon_sym_LT_EQ] = ACTIONS(2996), + [anon_sym_GT_EQ] = ACTIONS(2996), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_mut] = ACTIONS(2996), + [anon_sym_PLUS_PLUS] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2996), + [anon_sym_QMARK] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [anon_sym_go] = ACTIONS(2996), + [anon_sym_spawn] = ACTIONS(2996), + [anon_sym_json_DOTdecode] = ACTIONS(2996), + [anon_sym_LBRACK2] = ACTIONS(2996), + [anon_sym_TILDE] = ACTIONS(2996), + [anon_sym_CARET] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_LT_DASH] = ACTIONS(2996), + [anon_sym_LT_LT] = ACTIONS(2996), + [anon_sym_GT_GT] = ACTIONS(2996), + [anon_sym_GT_GT_GT] = ACTIONS(2996), + [anon_sym_AMP_CARET] = ACTIONS(2996), + [anon_sym_AMP_AMP] = ACTIONS(2996), + [anon_sym_PIPE_PIPE] = ACTIONS(2996), + [anon_sym_or] = ACTIONS(2996), + [sym_none] = ACTIONS(2996), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_nil] = ACTIONS(2996), + [anon_sym_QMARK_DOT] = ACTIONS(2996), + [anon_sym_POUND_LBRACK] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_DOLLARif] = ACTIONS(2996), + [anon_sym_is] = ACTIONS(2996), + [anon_sym_BANGis] = ACTIONS(2996), + [anon_sym_in] = ACTIONS(2996), + [anon_sym_BANGin] = ACTIONS(2996), + [anon_sym_match] = ACTIONS(2996), + [anon_sym_select] = ACTIONS(2996), + [anon_sym_lock] = ACTIONS(2996), + [anon_sym_rlock] = ACTIONS(2996), + [anon_sym_unsafe] = ACTIONS(2996), + [anon_sym_sql] = ACTIONS(2996), + [sym_int_literal] = ACTIONS(2996), + [sym_float_literal] = ACTIONS(2996), + [sym_rune_literal] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(2996), + [anon_sym_shared] = ACTIONS(2996), + [anon_sym_map_LBRACK] = ACTIONS(2996), + [anon_sym_chan] = ACTIONS(2996), + [anon_sym_thread] = ACTIONS(2996), + [anon_sym_atomic] = ACTIONS(2996), + [sym___double_quote] = ACTIONS(2996), + [sym___single_quote] = ACTIONS(2996), + [sym___c_double_quote] = ACTIONS(2996), + [sym___c_single_quote] = ACTIONS(2996), + [sym___r_double_quote] = ACTIONS(2996), + [sym___r_single_quote] = ACTIONS(2996), }, [1199] = { - [sym_identifier] = ACTIONS(3191), - [anon_sym_LF] = ACTIONS(3191), - [anon_sym_CR] = ACTIONS(3191), - [anon_sym_CR_LF] = ACTIONS(3191), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3191), - [anon_sym_fn] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_PERCENT] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_mut] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_go] = ACTIONS(3191), - [anon_sym_spawn] = ACTIONS(3191), - [anon_sym_json_DOTdecode] = ACTIONS(3191), - [anon_sym_LBRACK2] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_DASH] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3191), - [anon_sym_GT_GT] = ACTIONS(3191), - [anon_sym_GT_GT_GT] = ACTIONS(3191), - [anon_sym_AMP_CARET] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3191), - [sym_none] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_nil] = ACTIONS(3191), - [anon_sym_QMARK_DOT] = ACTIONS(3191), - [anon_sym_POUND_LBRACK] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_DOLLARif] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3191), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_rlock] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_sql] = ACTIONS(3191), - [sym_int_literal] = ACTIONS(3191), - [sym_float_literal] = ACTIONS(3191), - [sym_rune_literal] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3126), + [anon_sym_LF] = ACTIONS(3126), + [anon_sym_CR] = ACTIONS(3126), + [anon_sym_CR_LF] = ACTIONS(3126), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_as] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3126), + [anon_sym_COMMA] = ACTIONS(3126), + [anon_sym_RBRACE] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_fn] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3126), + [anon_sym_BANG_EQ] = ACTIONS(3126), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_mut] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3800), + [anon_sym_go] = ACTIONS(3126), + [anon_sym_spawn] = ACTIONS(3126), + [anon_sym_json_DOTdecode] = ACTIONS(3126), + [anon_sym_LBRACK2] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_LT_DASH] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_GT_GT_GT] = ACTIONS(3126), + [anon_sym_AMP_CARET] = ACTIONS(3126), + [anon_sym_AMP_AMP] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3126), + [anon_sym_or] = ACTIONS(3126), + [sym_none] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_nil] = ACTIONS(3126), + [anon_sym_QMARK_DOT] = ACTIONS(3126), + [anon_sym_POUND_LBRACK] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_DOLLARif] = ACTIONS(3126), + [anon_sym_is] = ACTIONS(3126), + [anon_sym_BANGis] = ACTIONS(3126), + [anon_sym_in] = ACTIONS(3126), + [anon_sym_BANGin] = ACTIONS(3126), + [anon_sym_match] = ACTIONS(3126), + [anon_sym_select] = ACTIONS(3126), + [anon_sym_lock] = ACTIONS(3126), + [anon_sym_rlock] = ACTIONS(3126), + [anon_sym_unsafe] = ACTIONS(3126), + [anon_sym_sql] = ACTIONS(3126), + [sym_int_literal] = ACTIONS(3126), + [sym_float_literal] = ACTIONS(3126), + [sym_rune_literal] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_shared] = ACTIONS(3126), + [anon_sym_map_LBRACK] = ACTIONS(3126), + [anon_sym_chan] = ACTIONS(3126), + [anon_sym_thread] = ACTIONS(3126), + [anon_sym_atomic] = ACTIONS(3126), + [sym___double_quote] = ACTIONS(3126), + [sym___single_quote] = ACTIONS(3126), + [sym___c_double_quote] = ACTIONS(3126), + [sym___c_single_quote] = ACTIONS(3126), + [sym___r_double_quote] = ACTIONS(3126), + [sym___r_single_quote] = ACTIONS(3126), }, [1200] = { - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, [1201] = { - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), + [sym_identifier] = ACTIONS(3122), + [anon_sym_LF] = ACTIONS(3122), + [anon_sym_CR] = ACTIONS(3122), + [anon_sym_CR_LF] = ACTIONS(3122), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3122), + [anon_sym_DOT] = ACTIONS(3122), + [anon_sym_as] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3122), + [anon_sym_COMMA] = ACTIONS(3122), + [anon_sym_RBRACE] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3122), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_fn] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3122), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_PERCENT] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3122), + [anon_sym_LT_EQ] = ACTIONS(3122), + [anon_sym_GT_EQ] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_mut] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_DASH_DASH] = ACTIONS(3122), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_go] = ACTIONS(3122), + [anon_sym_spawn] = ACTIONS(3122), + [anon_sym_json_DOTdecode] = ACTIONS(3122), + [anon_sym_LBRACK2] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_LT_DASH] = ACTIONS(3122), + [anon_sym_LT_LT] = ACTIONS(3122), + [anon_sym_GT_GT] = ACTIONS(3122), + [anon_sym_GT_GT_GT] = ACTIONS(3122), + [anon_sym_AMP_CARET] = ACTIONS(3122), + [anon_sym_AMP_AMP] = ACTIONS(3122), + [anon_sym_PIPE_PIPE] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(3122), + [sym_none] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_nil] = ACTIONS(3122), + [anon_sym_QMARK_DOT] = ACTIONS(3122), + [anon_sym_POUND_LBRACK] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_DOLLARif] = ACTIONS(3122), + [anon_sym_is] = ACTIONS(3122), + [anon_sym_BANGis] = ACTIONS(3122), + [anon_sym_in] = ACTIONS(3122), + [anon_sym_BANGin] = ACTIONS(3122), + [anon_sym_match] = ACTIONS(3122), + [anon_sym_select] = ACTIONS(3122), + [anon_sym_lock] = ACTIONS(3122), + [anon_sym_rlock] = ACTIONS(3122), + [anon_sym_unsafe] = ACTIONS(3122), + [anon_sym_sql] = ACTIONS(3122), + [sym_int_literal] = ACTIONS(3122), + [sym_float_literal] = ACTIONS(3122), + [sym_rune_literal] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3122), + [anon_sym_shared] = ACTIONS(3122), + [anon_sym_map_LBRACK] = ACTIONS(3122), + [anon_sym_chan] = ACTIONS(3122), + [anon_sym_thread] = ACTIONS(3122), + [anon_sym_atomic] = ACTIONS(3122), + [sym___double_quote] = ACTIONS(3122), + [sym___single_quote] = ACTIONS(3122), + [sym___c_double_quote] = ACTIONS(3122), + [sym___c_single_quote] = ACTIONS(3122), + [sym___r_double_quote] = ACTIONS(3122), + [sym___r_single_quote] = ACTIONS(3122), }, [1202] = { - [sym_identifier] = ACTIONS(3022), - [anon_sym_LF] = ACTIONS(3022), - [anon_sym_CR] = ACTIONS(3022), - [anon_sym_CR_LF] = ACTIONS(3022), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3022), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_as] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3022), - [anon_sym_COMMA] = ACTIONS(3022), - [anon_sym_RBRACE] = ACTIONS(3022), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_fn] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_EQ_EQ] = ACTIONS(3022), - [anon_sym_BANG_EQ] = ACTIONS(3022), - [anon_sym_LT_EQ] = ACTIONS(3022), - [anon_sym_GT_EQ] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_struct] = ACTIONS(3022), - [anon_sym_mut] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3022), - [anon_sym_DASH_DASH] = ACTIONS(3022), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_go] = ACTIONS(3022), - [anon_sym_spawn] = ACTIONS(3022), - [anon_sym_json_DOTdecode] = ACTIONS(3022), - [anon_sym_LBRACK2] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3022), - [anon_sym_CARET] = ACTIONS(3022), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3022), - [anon_sym_LT_LT] = ACTIONS(3022), - [anon_sym_GT_GT] = ACTIONS(3022), - [anon_sym_GT_GT_GT] = ACTIONS(3022), - [anon_sym_AMP_CARET] = ACTIONS(3022), - [anon_sym_AMP_AMP] = ACTIONS(3022), - [anon_sym_PIPE_PIPE] = ACTIONS(3022), - [anon_sym_or] = ACTIONS(3022), - [sym_none] = ACTIONS(3022), - [sym_true] = ACTIONS(3022), - [sym_false] = ACTIONS(3022), - [sym_nil] = ACTIONS(3022), - [anon_sym_QMARK_DOT] = ACTIONS(3022), - [anon_sym_POUND_LBRACK] = ACTIONS(3022), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_DOLLARif] = ACTIONS(3022), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3022), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_BANGin] = ACTIONS(3022), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_select] = ACTIONS(3022), - [anon_sym_lock] = ACTIONS(3022), - [anon_sym_rlock] = ACTIONS(3022), - [anon_sym_unsafe] = ACTIONS(3022), - [anon_sym_sql] = ACTIONS(3022), - [sym_int_literal] = ACTIONS(3022), - [sym_float_literal] = ACTIONS(3022), - [sym_rune_literal] = ACTIONS(3022), - [anon_sym_AT] = ACTIONS(3022), - [anon_sym_shared] = ACTIONS(3022), - [anon_sym_map_LBRACK] = ACTIONS(3022), - [anon_sym_chan] = ACTIONS(3022), - [anon_sym_thread] = ACTIONS(3022), - [anon_sym_atomic] = ACTIONS(3022), - [sym___double_quote] = ACTIONS(3022), - [sym___single_quote] = ACTIONS(3022), - [sym___c_double_quote] = ACTIONS(3022), - [sym___c_single_quote] = ACTIONS(3022), - [sym___r_double_quote] = ACTIONS(3022), - [sym___r_single_quote] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LF] = ACTIONS(3136), + [anon_sym_CR] = ACTIONS(3136), + [anon_sym_CR_LF] = ACTIONS(3136), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym_DOT] = ACTIONS(3136), + [anon_sym_as] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_COMMA] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(3136), + [anon_sym_fn] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_PERCENT] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_GT] = ACTIONS(3136), + [anon_sym_EQ_EQ] = ACTIONS(3136), + [anon_sym_BANG_EQ] = ACTIONS(3136), + [anon_sym_LT_EQ] = ACTIONS(3136), + [anon_sym_GT_EQ] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3136), + [anon_sym_mut] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3136), + [anon_sym_json_DOTdecode] = ACTIONS(3136), + [anon_sym_LBRACK2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_CARET] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3136), + [anon_sym_LT_LT] = ACTIONS(3136), + [anon_sym_GT_GT] = ACTIONS(3136), + [anon_sym_GT_GT_GT] = ACTIONS(3136), + [anon_sym_AMP_CARET] = ACTIONS(3136), + [anon_sym_AMP_AMP] = ACTIONS(3136), + [anon_sym_PIPE_PIPE] = ACTIONS(3136), + [anon_sym_or] = ACTIONS(3136), + [sym_none] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_nil] = ACTIONS(3136), + [anon_sym_QMARK_DOT] = ACTIONS(3136), + [anon_sym_POUND_LBRACK] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_DOLLARif] = ACTIONS(3136), + [anon_sym_is] = ACTIONS(3136), + [anon_sym_BANGis] = ACTIONS(3136), + [anon_sym_in] = ACTIONS(3136), + [anon_sym_BANGin] = ACTIONS(3136), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3136), + [anon_sym_rlock] = ACTIONS(3136), + [anon_sym_unsafe] = ACTIONS(3136), + [anon_sym_sql] = ACTIONS(3136), + [sym_int_literal] = ACTIONS(3136), + [sym_float_literal] = ACTIONS(3136), + [sym_rune_literal] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_shared] = ACTIONS(3136), + [anon_sym_map_LBRACK] = ACTIONS(3136), + [anon_sym_chan] = ACTIONS(3136), + [anon_sym_thread] = ACTIONS(3136), + [anon_sym_atomic] = ACTIONS(3136), + [sym___double_quote] = ACTIONS(3136), + [sym___single_quote] = ACTIONS(3136), + [sym___c_double_quote] = ACTIONS(3136), + [sym___c_single_quote] = ACTIONS(3136), + [sym___r_double_quote] = ACTIONS(3136), + [sym___r_single_quote] = ACTIONS(3136), }, [1203] = { - [sym_identifier] = ACTIONS(2974), - [anon_sym_LF] = ACTIONS(2974), - [anon_sym_CR] = ACTIONS(2974), - [anon_sym_CR_LF] = ACTIONS(2974), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2974), - [anon_sym_DOT] = ACTIONS(2974), - [anon_sym_as] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2974), - [anon_sym_COMMA] = ACTIONS(2974), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_fn] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_PERCENT] = ACTIONS(2974), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_GT] = ACTIONS(2974), - [anon_sym_EQ_EQ] = ACTIONS(2974), - [anon_sym_BANG_EQ] = ACTIONS(2974), - [anon_sym_LT_EQ] = ACTIONS(2974), - [anon_sym_GT_EQ] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(2974), - [anon_sym_mut] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2974), - [anon_sym_DASH_DASH] = ACTIONS(2974), - [anon_sym_QMARK] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_go] = ACTIONS(2974), - [anon_sym_spawn] = ACTIONS(2974), - [anon_sym_json_DOTdecode] = ACTIONS(2974), - [anon_sym_LBRACK2] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_LT_DASH] = ACTIONS(2974), - [anon_sym_LT_LT] = ACTIONS(2974), - [anon_sym_GT_GT] = ACTIONS(2974), - [anon_sym_GT_GT_GT] = ACTIONS(2974), - [anon_sym_AMP_CARET] = ACTIONS(2974), - [anon_sym_AMP_AMP] = ACTIONS(2974), - [anon_sym_PIPE_PIPE] = ACTIONS(2974), - [anon_sym_or] = ACTIONS(2974), - [sym_none] = ACTIONS(2974), - [sym_true] = ACTIONS(2974), - [sym_false] = ACTIONS(2974), - [sym_nil] = ACTIONS(2974), - [anon_sym_QMARK_DOT] = ACTIONS(2974), - [anon_sym_POUND_LBRACK] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_DOLLARif] = ACTIONS(2974), - [anon_sym_is] = ACTIONS(2974), - [anon_sym_BANGis] = ACTIONS(2974), - [anon_sym_in] = ACTIONS(2974), - [anon_sym_BANGin] = ACTIONS(2974), - [anon_sym_match] = ACTIONS(2974), - [anon_sym_select] = ACTIONS(2974), - [anon_sym_lock] = ACTIONS(2974), - [anon_sym_rlock] = ACTIONS(2974), - [anon_sym_unsafe] = ACTIONS(2974), - [anon_sym_sql] = ACTIONS(2974), - [sym_int_literal] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2974), - [sym_rune_literal] = ACTIONS(2974), - [anon_sym_AT] = ACTIONS(2974), - [anon_sym_shared] = ACTIONS(2974), - [anon_sym_map_LBRACK] = ACTIONS(2974), - [anon_sym_chan] = ACTIONS(2974), - [anon_sym_thread] = ACTIONS(2974), - [anon_sym_atomic] = ACTIONS(2974), - [sym___double_quote] = ACTIONS(2974), - [sym___single_quote] = ACTIONS(2974), - [sym___c_double_quote] = ACTIONS(2974), - [sym___c_single_quote] = ACTIONS(2974), - [sym___r_double_quote] = ACTIONS(2974), - [sym___r_single_quote] = ACTIONS(2974), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LF] = ACTIONS(3222), + [anon_sym_CR] = ACTIONS(3222), + [anon_sym_CR_LF] = ACTIONS(3222), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3222), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3222), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3222), + [anon_sym_AMP_CARET] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3222), + [anon_sym_POUND_LBRACK] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3222), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3222), + [sym___single_quote] = ACTIONS(3222), + [sym___c_double_quote] = ACTIONS(3222), + [sym___c_single_quote] = ACTIONS(3222), + [sym___r_double_quote] = ACTIONS(3222), + [sym___r_single_quote] = ACTIONS(3222), }, [1204] = { - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LF] = ACTIONS(3104), + [anon_sym_CR] = ACTIONS(3104), + [anon_sym_CR_LF] = ACTIONS(3104), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3104), + [anon_sym_DOT] = ACTIONS(3104), + [anon_sym_as] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym_PIPE] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(3104), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_PERCENT] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_mut] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3104), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_go] = ACTIONS(3104), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(3104), + [anon_sym_LBRACK2] = ACTIONS(3104), + [anon_sym_TILDE] = ACTIONS(3104), + [anon_sym_CARET] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3104), + [anon_sym_LT_DASH] = ACTIONS(3104), + [anon_sym_LT_LT] = ACTIONS(3104), + [anon_sym_GT_GT] = ACTIONS(3104), + [anon_sym_GT_GT_GT] = ACTIONS(3104), + [anon_sym_AMP_CARET] = ACTIONS(3104), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_or] = ACTIONS(3104), + [sym_none] = ACTIONS(3104), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_nil] = ACTIONS(3104), + [anon_sym_QMARK_DOT] = ACTIONS(3104), + [anon_sym_POUND_LBRACK] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_DOLLARif] = ACTIONS(3104), + [anon_sym_is] = ACTIONS(3104), + [anon_sym_BANGis] = ACTIONS(3104), + [anon_sym_in] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(3104), + [anon_sym_match] = ACTIONS(3104), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3104), + [anon_sym_rlock] = ACTIONS(3104), + [anon_sym_unsafe] = ACTIONS(3104), + [anon_sym_sql] = ACTIONS(3104), + [sym_int_literal] = ACTIONS(3104), + [sym_float_literal] = ACTIONS(3104), + [sym_rune_literal] = ACTIONS(3104), + [anon_sym_AT] = ACTIONS(3104), + [anon_sym_shared] = ACTIONS(3104), + [anon_sym_map_LBRACK] = ACTIONS(3104), + [anon_sym_chan] = ACTIONS(3104), + [anon_sym_thread] = ACTIONS(3104), + [anon_sym_atomic] = ACTIONS(3104), + [sym___double_quote] = ACTIONS(3104), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3104), + [sym___c_single_quote] = ACTIONS(3104), + [sym___r_double_quote] = ACTIONS(3104), + [sym___r_single_quote] = ACTIONS(3104), }, [1205] = { - [sym_identifier] = ACTIONS(2962), - [anon_sym_LF] = ACTIONS(2962), - [anon_sym_CR] = ACTIONS(2962), - [anon_sym_CR_LF] = ACTIONS(2962), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2962), - [anon_sym_DOT] = ACTIONS(2962), - [anon_sym_as] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2962), - [anon_sym_COMMA] = ACTIONS(2962), - [anon_sym_RBRACE] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_fn] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2962), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_PERCENT] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_GT] = ACTIONS(2962), - [anon_sym_EQ_EQ] = ACTIONS(2962), - [anon_sym_BANG_EQ] = ACTIONS(2962), - [anon_sym_LT_EQ] = ACTIONS(2962), - [anon_sym_GT_EQ] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_struct] = ACTIONS(2962), - [anon_sym_mut] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2962), - [anon_sym_DASH_DASH] = ACTIONS(2962), - [anon_sym_QMARK] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_go] = ACTIONS(2962), - [anon_sym_spawn] = ACTIONS(2962), - [anon_sym_json_DOTdecode] = ACTIONS(2962), - [anon_sym_LBRACK2] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_CARET] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_LT_DASH] = ACTIONS(2962), - [anon_sym_LT_LT] = ACTIONS(2962), - [anon_sym_GT_GT] = ACTIONS(2962), - [anon_sym_GT_GT_GT] = ACTIONS(2962), - [anon_sym_AMP_CARET] = ACTIONS(2962), - [anon_sym_AMP_AMP] = ACTIONS(2962), - [anon_sym_PIPE_PIPE] = ACTIONS(2962), - [anon_sym_or] = ACTIONS(2962), - [sym_none] = ACTIONS(2962), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_nil] = ACTIONS(2962), - [anon_sym_QMARK_DOT] = ACTIONS(2962), - [anon_sym_POUND_LBRACK] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_DOLLARif] = ACTIONS(2962), - [anon_sym_is] = ACTIONS(2962), - [anon_sym_BANGis] = ACTIONS(2962), - [anon_sym_in] = ACTIONS(2962), - [anon_sym_BANGin] = ACTIONS(2962), - [anon_sym_match] = ACTIONS(2962), - [anon_sym_select] = ACTIONS(2962), - [anon_sym_lock] = ACTIONS(2962), - [anon_sym_rlock] = ACTIONS(2962), - [anon_sym_unsafe] = ACTIONS(2962), - [anon_sym_sql] = ACTIONS(2962), - [sym_int_literal] = ACTIONS(2962), - [sym_float_literal] = ACTIONS(2962), - [sym_rune_literal] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2962), - [anon_sym_shared] = ACTIONS(2962), - [anon_sym_map_LBRACK] = ACTIONS(2962), - [anon_sym_chan] = ACTIONS(2962), - [anon_sym_thread] = ACTIONS(2962), - [anon_sym_atomic] = ACTIONS(2962), - [sym___double_quote] = ACTIONS(2962), - [sym___single_quote] = ACTIONS(2962), - [sym___c_double_quote] = ACTIONS(2962), - [sym___c_single_quote] = ACTIONS(2962), - [sym___r_double_quote] = ACTIONS(2962), - [sym___r_single_quote] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LF] = ACTIONS(2952), + [anon_sym_CR] = ACTIONS(2952), + [anon_sym_CR_LF] = ACTIONS(2952), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_as] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_RBRACE] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2952), + [anon_sym_fn] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_PERCENT] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2952), + [anon_sym_GT] = ACTIONS(2952), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_mut] = ACTIONS(2952), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_go] = ACTIONS(2952), + [anon_sym_spawn] = ACTIONS(2952), + [anon_sym_json_DOTdecode] = ACTIONS(2952), + [anon_sym_LBRACK2] = ACTIONS(2952), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_LT_DASH] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2952), + [anon_sym_GT_GT] = ACTIONS(2952), + [anon_sym_GT_GT_GT] = ACTIONS(2952), + [anon_sym_AMP_CARET] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_or] = ACTIONS(2952), + [sym_none] = ACTIONS(2952), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [sym_nil] = ACTIONS(2952), + [anon_sym_QMARK_DOT] = ACTIONS(2952), + [anon_sym_POUND_LBRACK] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_DOLLARif] = ACTIONS(2952), + [anon_sym_is] = ACTIONS(2952), + [anon_sym_BANGis] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(2952), + [anon_sym_BANGin] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_select] = ACTIONS(2952), + [anon_sym_lock] = ACTIONS(2952), + [anon_sym_rlock] = ACTIONS(2952), + [anon_sym_unsafe] = ACTIONS(2952), + [anon_sym_sql] = ACTIONS(2952), + [sym_int_literal] = ACTIONS(2952), + [sym_float_literal] = ACTIONS(2952), + [sym_rune_literal] = ACTIONS(2952), + [anon_sym_AT] = ACTIONS(2952), + [anon_sym_shared] = ACTIONS(2952), + [anon_sym_map_LBRACK] = ACTIONS(2952), + [anon_sym_chan] = ACTIONS(2952), + [anon_sym_thread] = ACTIONS(2952), + [anon_sym_atomic] = ACTIONS(2952), + [sym___double_quote] = ACTIONS(2952), + [sym___single_quote] = ACTIONS(2952), + [sym___c_double_quote] = ACTIONS(2952), + [sym___c_single_quote] = ACTIONS(2952), + [sym___r_double_quote] = ACTIONS(2952), + [sym___r_single_quote] = ACTIONS(2952), }, [1206] = { - [sym_identifier] = ACTIONS(2934), - [anon_sym_LF] = ACTIONS(2934), - [anon_sym_CR] = ACTIONS(2934), - [anon_sym_CR_LF] = ACTIONS(2934), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_as] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_fn] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_mut] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_go] = ACTIONS(2934), - [anon_sym_spawn] = ACTIONS(2934), - [anon_sym_json_DOTdecode] = ACTIONS(2934), - [anon_sym_LBRACK2] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2934), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_GT_GT_GT] = ACTIONS(2934), - [anon_sym_AMP_CARET] = ACTIONS(2934), - [anon_sym_AMP_AMP] = ACTIONS(2934), - [anon_sym_PIPE_PIPE] = ACTIONS(2934), - [anon_sym_or] = ACTIONS(2934), - [sym_none] = ACTIONS(2934), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_nil] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(2934), - [anon_sym_POUND_LBRACK] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_DOLLARif] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_BANGis] = ACTIONS(2934), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_BANGin] = ACTIONS(2934), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_select] = ACTIONS(2934), - [anon_sym_lock] = ACTIONS(2934), - [anon_sym_rlock] = ACTIONS(2934), - [anon_sym_unsafe] = ACTIONS(2934), - [anon_sym_sql] = ACTIONS(2934), - [sym_int_literal] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), - [sym_rune_literal] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2934), - [anon_sym_shared] = ACTIONS(2934), - [anon_sym_map_LBRACK] = ACTIONS(2934), - [anon_sym_chan] = ACTIONS(2934), - [anon_sym_thread] = ACTIONS(2934), - [anon_sym_atomic] = ACTIONS(2934), - [sym___double_quote] = ACTIONS(2934), - [sym___single_quote] = ACTIONS(2934), - [sym___c_double_quote] = ACTIONS(2934), - [sym___c_single_quote] = ACTIONS(2934), - [sym___r_double_quote] = ACTIONS(2934), - [sym___r_single_quote] = ACTIONS(2934), + [sym_identifier] = ACTIONS(3317), + [anon_sym_LF] = ACTIONS(3317), + [anon_sym_CR] = ACTIONS(3317), + [anon_sym_CR_LF] = ACTIONS(3317), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_DOT] = ACTIONS(3317), + [anon_sym_as] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_mut] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_QMARK] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_go] = ACTIONS(3317), + [anon_sym_spawn] = ACTIONS(3317), + [anon_sym_json_DOTdecode] = ACTIONS(3317), + [anon_sym_LBRACK2] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_LT_DASH] = ACTIONS(3317), + [anon_sym_LT_LT] = ACTIONS(3317), + [anon_sym_GT_GT] = ACTIONS(3317), + [anon_sym_GT_GT_GT] = ACTIONS(3317), + [anon_sym_AMP_CARET] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_or] = ACTIONS(3317), + [sym_none] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_nil] = ACTIONS(3317), + [anon_sym_QMARK_DOT] = ACTIONS(3317), + [anon_sym_POUND_LBRACK] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_DOLLARif] = ACTIONS(3317), + [anon_sym_is] = ACTIONS(3317), + [anon_sym_BANGis] = ACTIONS(3317), + [anon_sym_in] = ACTIONS(3317), + [anon_sym_BANGin] = ACTIONS(3317), + [anon_sym_match] = ACTIONS(3317), + [anon_sym_select] = ACTIONS(3317), + [anon_sym_lock] = ACTIONS(3317), + [anon_sym_rlock] = ACTIONS(3317), + [anon_sym_unsafe] = ACTIONS(3317), + [anon_sym_sql] = ACTIONS(3317), + [sym_int_literal] = ACTIONS(3317), + [sym_float_literal] = ACTIONS(3317), + [sym_rune_literal] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_shared] = ACTIONS(3317), + [anon_sym_map_LBRACK] = ACTIONS(3317), + [anon_sym_chan] = ACTIONS(3317), + [anon_sym_thread] = ACTIONS(3317), + [anon_sym_atomic] = ACTIONS(3317), + [sym___double_quote] = ACTIONS(3317), + [sym___single_quote] = ACTIONS(3317), + [sym___c_double_quote] = ACTIONS(3317), + [sym___c_single_quote] = ACTIONS(3317), + [sym___r_double_quote] = ACTIONS(3317), + [sym___r_single_quote] = ACTIONS(3317), }, [1207] = { - [sym_identifier] = ACTIONS(2870), - [anon_sym_LF] = ACTIONS(2870), - [anon_sym_CR] = ACTIONS(2870), - [anon_sym_CR_LF] = ACTIONS(2870), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_CR] = ACTIONS(2948), + [anon_sym_CR_LF] = ACTIONS(2948), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2948), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_as] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2948), + [anon_sym_fn] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [anon_sym_LT_EQ] = ACTIONS(2948), + [anon_sym_GT_EQ] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_mut] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2948), + [anon_sym_go] = ACTIONS(2948), + [anon_sym_spawn] = ACTIONS(2948), + [anon_sym_json_DOTdecode] = ACTIONS(2948), + [anon_sym_LBRACK2] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2948), + [anon_sym_CARET] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_LT_LT] = ACTIONS(2948), + [anon_sym_GT_GT] = ACTIONS(2948), + [anon_sym_GT_GT_GT] = ACTIONS(2948), + [anon_sym_AMP_CARET] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_or] = ACTIONS(2948), + [sym_none] = ACTIONS(2948), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [sym_nil] = ACTIONS(2948), + [anon_sym_QMARK_DOT] = ACTIONS(2948), + [anon_sym_POUND_LBRACK] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_DOLLARif] = ACTIONS(2948), + [anon_sym_is] = ACTIONS(2948), + [anon_sym_BANGis] = ACTIONS(2948), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_BANGin] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_select] = ACTIONS(2948), + [anon_sym_lock] = ACTIONS(2948), + [anon_sym_rlock] = ACTIONS(2948), + [anon_sym_unsafe] = ACTIONS(2948), + [anon_sym_sql] = ACTIONS(2948), + [sym_int_literal] = ACTIONS(2948), + [sym_float_literal] = ACTIONS(2948), + [sym_rune_literal] = ACTIONS(2948), + [anon_sym_AT] = ACTIONS(2948), + [anon_sym_shared] = ACTIONS(2948), + [anon_sym_map_LBRACK] = ACTIONS(2948), + [anon_sym_chan] = ACTIONS(2948), + [anon_sym_thread] = ACTIONS(2948), + [anon_sym_atomic] = ACTIONS(2948), + [sym___double_quote] = ACTIONS(2948), + [sym___single_quote] = ACTIONS(2948), + [sym___c_double_quote] = ACTIONS(2948), + [sym___c_single_quote] = ACTIONS(2948), + [sym___r_double_quote] = ACTIONS(2948), + [sym___r_single_quote] = ACTIONS(2948), }, [1208] = { - [sym_identifier] = ACTIONS(2862), - [anon_sym_LF] = ACTIONS(2862), - [anon_sym_CR] = ACTIONS(2862), - [anon_sym_CR_LF] = ACTIONS(2862), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), + [sym_identifier] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_CR] = ACTIONS(3036), + [anon_sym_CR_LF] = ACTIONS(3036), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3036), + [anon_sym_DOT] = ACTIONS(3036), + [anon_sym_as] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_COMMA] = ACTIONS(3036), + [anon_sym_RBRACE] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_fn] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3036), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_mut] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_go] = ACTIONS(3036), + [anon_sym_spawn] = ACTIONS(3036), + [anon_sym_json_DOTdecode] = ACTIONS(3036), + [anon_sym_LBRACK2] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_GT_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_CARET] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_or] = ACTIONS(3036), + [sym_none] = ACTIONS(3036), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [sym_nil] = ACTIONS(3036), + [anon_sym_QMARK_DOT] = ACTIONS(3036), + [anon_sym_POUND_LBRACK] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_DOLLARif] = ACTIONS(3036), + [anon_sym_is] = ACTIONS(3036), + [anon_sym_BANGis] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_BANGin] = ACTIONS(3036), + [anon_sym_match] = ACTIONS(3036), + [anon_sym_select] = ACTIONS(3036), + [anon_sym_lock] = ACTIONS(3036), + [anon_sym_rlock] = ACTIONS(3036), + [anon_sym_unsafe] = ACTIONS(3036), + [anon_sym_sql] = ACTIONS(3036), + [sym_int_literal] = ACTIONS(3036), + [sym_float_literal] = ACTIONS(3036), + [sym_rune_literal] = ACTIONS(3036), + [anon_sym_AT] = ACTIONS(3036), + [anon_sym_shared] = ACTIONS(3036), + [anon_sym_map_LBRACK] = ACTIONS(3036), + [anon_sym_chan] = ACTIONS(3036), + [anon_sym_thread] = ACTIONS(3036), + [anon_sym_atomic] = ACTIONS(3036), + [sym___double_quote] = ACTIONS(3036), + [sym___single_quote] = ACTIONS(3036), + [sym___c_double_quote] = ACTIONS(3036), + [sym___c_single_quote] = ACTIONS(3036), + [sym___r_double_quote] = ACTIONS(3036), + [sym___r_single_quote] = ACTIONS(3036), }, [1209] = { - [sym_identifier] = ACTIONS(2818), - [anon_sym_LF] = ACTIONS(2818), - [anon_sym_CR] = ACTIONS(2818), - [anon_sym_CR_LF] = ACTIONS(2818), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_fn] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_mut] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_go] = ACTIONS(2818), - [anon_sym_spawn] = ACTIONS(2818), - [anon_sym_json_DOTdecode] = ACTIONS(2818), - [anon_sym_LBRACK2] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_or] = ACTIONS(2818), - [sym_none] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nil] = ACTIONS(2818), - [anon_sym_QMARK_DOT] = ACTIONS(2818), - [anon_sym_POUND_LBRACK] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_DOLLARif] = ACTIONS(2818), - [anon_sym_is] = ACTIONS(2818), - [anon_sym_BANGis] = ACTIONS(2818), - [anon_sym_in] = ACTIONS(2818), - [anon_sym_BANGin] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_select] = ACTIONS(2818), - [anon_sym_lock] = ACTIONS(2818), - [anon_sym_rlock] = ACTIONS(2818), - [anon_sym_unsafe] = ACTIONS(2818), - [anon_sym_sql] = ACTIONS(2818), - [sym_int_literal] = ACTIONS(2818), - [sym_float_literal] = ACTIONS(2818), - [sym_rune_literal] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_shared] = ACTIONS(2818), - [anon_sym_map_LBRACK] = ACTIONS(2818), - [anon_sym_chan] = ACTIONS(2818), - [anon_sym_thread] = ACTIONS(2818), - [anon_sym_atomic] = ACTIONS(2818), - [sym___double_quote] = ACTIONS(2818), - [sym___single_quote] = ACTIONS(2818), - [sym___c_double_quote] = ACTIONS(2818), - [sym___c_single_quote] = ACTIONS(2818), - [sym___r_double_quote] = ACTIONS(2818), - [sym___r_single_quote] = ACTIONS(2818), + [sym_identifier] = ACTIONS(3337), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_CR] = ACTIONS(3337), + [anon_sym_CR_LF] = ACTIONS(3337), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_as] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3337), + [anon_sym_fn] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3337), + [anon_sym_mut] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_go] = ACTIONS(3337), + [anon_sym_spawn] = ACTIONS(3337), + [anon_sym_json_DOTdecode] = ACTIONS(3337), + [anon_sym_LBRACK2] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_LT_DASH] = ACTIONS(3337), + [anon_sym_LT_LT] = ACTIONS(3337), + [anon_sym_GT_GT] = ACTIONS(3337), + [anon_sym_GT_GT_GT] = ACTIONS(3337), + [anon_sym_AMP_CARET] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_or] = ACTIONS(3337), + [sym_none] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_nil] = ACTIONS(3337), + [anon_sym_QMARK_DOT] = ACTIONS(3337), + [anon_sym_POUND_LBRACK] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_DOLLARif] = ACTIONS(3337), + [anon_sym_is] = ACTIONS(3337), + [anon_sym_BANGis] = ACTIONS(3337), + [anon_sym_in] = ACTIONS(3337), + [anon_sym_BANGin] = ACTIONS(3337), + [anon_sym_match] = ACTIONS(3337), + [anon_sym_select] = ACTIONS(3337), + [anon_sym_lock] = ACTIONS(3337), + [anon_sym_rlock] = ACTIONS(3337), + [anon_sym_unsafe] = ACTIONS(3337), + [anon_sym_sql] = ACTIONS(3337), + [sym_int_literal] = ACTIONS(3337), + [sym_float_literal] = ACTIONS(3337), + [sym_rune_literal] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_shared] = ACTIONS(3337), + [anon_sym_map_LBRACK] = ACTIONS(3337), + [anon_sym_chan] = ACTIONS(3337), + [anon_sym_thread] = ACTIONS(3337), + [anon_sym_atomic] = ACTIONS(3337), + [sym___double_quote] = ACTIONS(3337), + [sym___single_quote] = ACTIONS(3337), + [sym___c_double_quote] = ACTIONS(3337), + [sym___c_single_quote] = ACTIONS(3337), + [sym___r_double_quote] = ACTIONS(3337), + [sym___r_single_quote] = ACTIONS(3337), }, [1210] = { - [sym_identifier] = ACTIONS(3094), - [anon_sym_LF] = ACTIONS(3094), - [anon_sym_CR] = ACTIONS(3094), - [anon_sym_CR_LF] = ACTIONS(3094), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3094), - [anon_sym_DOT] = ACTIONS(3094), - [anon_sym_as] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3094), - [anon_sym_COMMA] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3094), - [anon_sym_PIPE] = ACTIONS(3094), - [anon_sym_fn] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_PERCENT] = ACTIONS(3094), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_GT] = ACTIONS(3094), - [anon_sym_EQ_EQ] = ACTIONS(3094), - [anon_sym_BANG_EQ] = ACTIONS(3094), - [anon_sym_LT_EQ] = ACTIONS(3094), - [anon_sym_GT_EQ] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_mut] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3094), - [anon_sym_DASH_DASH] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3094), - [anon_sym_spawn] = ACTIONS(3094), - [anon_sym_json_DOTdecode] = ACTIONS(3094), - [anon_sym_LBRACK2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3094), - [anon_sym_CARET] = ACTIONS(3094), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_LT_DASH] = ACTIONS(3094), - [anon_sym_LT_LT] = ACTIONS(3094), - [anon_sym_GT_GT] = ACTIONS(3094), - [anon_sym_GT_GT_GT] = ACTIONS(3094), - [anon_sym_AMP_CARET] = ACTIONS(3094), - [anon_sym_AMP_AMP] = ACTIONS(3094), - [anon_sym_PIPE_PIPE] = ACTIONS(3094), - [anon_sym_or] = ACTIONS(3094), - [sym_none] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_nil] = ACTIONS(3094), - [anon_sym_QMARK_DOT] = ACTIONS(3094), - [anon_sym_POUND_LBRACK] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_DOLLARif] = ACTIONS(3094), - [anon_sym_is] = ACTIONS(3094), - [anon_sym_BANGis] = ACTIONS(3094), - [anon_sym_in] = ACTIONS(3094), - [anon_sym_BANGin] = ACTIONS(3094), - [anon_sym_match] = ACTIONS(3094), - [anon_sym_select] = ACTIONS(3094), - [anon_sym_lock] = ACTIONS(3094), - [anon_sym_rlock] = ACTIONS(3094), - [anon_sym_unsafe] = ACTIONS(3094), - [anon_sym_sql] = ACTIONS(3094), - [sym_int_literal] = ACTIONS(3094), - [sym_float_literal] = ACTIONS(3094), - [sym_rune_literal] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_shared] = ACTIONS(3094), - [anon_sym_map_LBRACK] = ACTIONS(3094), - [anon_sym_chan] = ACTIONS(3094), - [anon_sym_thread] = ACTIONS(3094), - [anon_sym_atomic] = ACTIONS(3094), - [sym___double_quote] = ACTIONS(3094), - [sym___single_quote] = ACTIONS(3094), - [sym___c_double_quote] = ACTIONS(3094), - [sym___c_single_quote] = ACTIONS(3094), - [sym___r_double_quote] = ACTIONS(3094), - [sym___r_single_quote] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), }, [1211] = { - [sym_identifier] = ACTIONS(3050), - [anon_sym_LF] = ACTIONS(3050), - [anon_sym_CR] = ACTIONS(3050), - [anon_sym_CR_LF] = ACTIONS(3050), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3050), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3050), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_RBRACE] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3050), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_LT_EQ] = ACTIONS(3050), - [anon_sym_GT_EQ] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3050), - [anon_sym_DASH_DASH] = ACTIONS(3050), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3050), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3050), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3050), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3050), - [anon_sym_AMP_CARET] = ACTIONS(3050), - [anon_sym_AMP_AMP] = ACTIONS(3050), - [anon_sym_PIPE_PIPE] = ACTIONS(3050), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3050), - [anon_sym_POUND_LBRACK] = ACTIONS(3050), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3050), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3050), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3050), - [sym_rune_literal] = ACTIONS(3050), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3050), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3050), - [sym___single_quote] = ACTIONS(3050), - [sym___c_double_quote] = ACTIONS(3050), - [sym___c_single_quote] = ACTIONS(3050), - [sym___r_double_quote] = ACTIONS(3050), - [sym___r_single_quote] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3321), + [anon_sym_LF] = ACTIONS(3321), + [anon_sym_CR] = ACTIONS(3321), + [anon_sym_CR_LF] = ACTIONS(3321), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_DOT] = ACTIONS(3321), + [anon_sym_as] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_COMMA] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3321), + [anon_sym_fn] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_mut] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_go] = ACTIONS(3321), + [anon_sym_spawn] = ACTIONS(3321), + [anon_sym_json_DOTdecode] = ACTIONS(3321), + [anon_sym_LBRACK2] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_LT_DASH] = ACTIONS(3321), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym_GT_GT_GT] = ACTIONS(3321), + [anon_sym_AMP_CARET] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_or] = ACTIONS(3321), + [sym_none] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_nil] = ACTIONS(3321), + [anon_sym_QMARK_DOT] = ACTIONS(3321), + [anon_sym_POUND_LBRACK] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_DOLLARif] = ACTIONS(3321), + [anon_sym_is] = ACTIONS(3321), + [anon_sym_BANGis] = ACTIONS(3321), + [anon_sym_in] = ACTIONS(3321), + [anon_sym_BANGin] = ACTIONS(3321), + [anon_sym_match] = ACTIONS(3321), + [anon_sym_select] = ACTIONS(3321), + [anon_sym_lock] = ACTIONS(3321), + [anon_sym_rlock] = ACTIONS(3321), + [anon_sym_unsafe] = ACTIONS(3321), + [anon_sym_sql] = ACTIONS(3321), + [sym_int_literal] = ACTIONS(3321), + [sym_float_literal] = ACTIONS(3321), + [sym_rune_literal] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_shared] = ACTIONS(3321), + [anon_sym_map_LBRACK] = ACTIONS(3321), + [anon_sym_chan] = ACTIONS(3321), + [anon_sym_thread] = ACTIONS(3321), + [anon_sym_atomic] = ACTIONS(3321), + [sym___double_quote] = ACTIONS(3321), + [sym___single_quote] = ACTIONS(3321), + [sym___c_double_quote] = ACTIONS(3321), + [sym___c_single_quote] = ACTIONS(3321), + [sym___r_double_quote] = ACTIONS(3321), + [sym___r_single_quote] = ACTIONS(3321), }, [1212] = { - [sym_identifier] = ACTIONS(3010), - [anon_sym_LF] = ACTIONS(3010), - [anon_sym_CR] = ACTIONS(3010), - [anon_sym_CR_LF] = ACTIONS(3010), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_as] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_COMMA] = ACTIONS(3010), - [anon_sym_RBRACE] = ACTIONS(3010), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_fn] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3010), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_EQ_EQ] = ACTIONS(3010), - [anon_sym_BANG_EQ] = ACTIONS(3010), - [anon_sym_LT_EQ] = ACTIONS(3010), - [anon_sym_GT_EQ] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3010), - [anon_sym_mut] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_go] = ACTIONS(3010), - [anon_sym_spawn] = ACTIONS(3010), - [anon_sym_json_DOTdecode] = ACTIONS(3010), - [anon_sym_LBRACK2] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_CARET] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3010), - [anon_sym_LT_LT] = ACTIONS(3010), - [anon_sym_GT_GT] = ACTIONS(3010), - [anon_sym_GT_GT_GT] = ACTIONS(3010), - [anon_sym_AMP_CARET] = ACTIONS(3010), - [anon_sym_AMP_AMP] = ACTIONS(3010), - [anon_sym_PIPE_PIPE] = ACTIONS(3010), - [anon_sym_or] = ACTIONS(3010), - [sym_none] = ACTIONS(3010), - [sym_true] = ACTIONS(3010), - [sym_false] = ACTIONS(3010), - [sym_nil] = ACTIONS(3010), - [anon_sym_QMARK_DOT] = ACTIONS(3010), - [anon_sym_POUND_LBRACK] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_DOLLARif] = ACTIONS(3010), - [anon_sym_is] = ACTIONS(3010), - [anon_sym_BANGis] = ACTIONS(3010), - [anon_sym_in] = ACTIONS(3010), - [anon_sym_BANGin] = ACTIONS(3010), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_select] = ACTIONS(3010), - [anon_sym_lock] = ACTIONS(3010), - [anon_sym_rlock] = ACTIONS(3010), - [anon_sym_unsafe] = ACTIONS(3010), - [anon_sym_sql] = ACTIONS(3010), - [sym_int_literal] = ACTIONS(3010), - [sym_float_literal] = ACTIONS(3010), - [sym_rune_literal] = ACTIONS(3010), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_shared] = ACTIONS(3010), - [anon_sym_map_LBRACK] = ACTIONS(3010), - [anon_sym_chan] = ACTIONS(3010), - [anon_sym_thread] = ACTIONS(3010), - [anon_sym_atomic] = ACTIONS(3010), - [sym___double_quote] = ACTIONS(3010), - [sym___single_quote] = ACTIONS(3010), - [sym___c_double_quote] = ACTIONS(3010), - [sym___c_single_quote] = ACTIONS(3010), - [sym___r_double_quote] = ACTIONS(3010), - [sym___r_single_quote] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3226), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_CR] = ACTIONS(3226), + [anon_sym_CR_LF] = ACTIONS(3226), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3226), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3226), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3226), + [anon_sym_AMP_CARET] = ACTIONS(3226), + [anon_sym_AMP_AMP] = ACTIONS(3226), + [anon_sym_PIPE_PIPE] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3226), + [anon_sym_POUND_LBRACK] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3226), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3226), + [sym_rune_literal] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3226), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3226), + [sym___single_quote] = ACTIONS(3226), + [sym___c_double_quote] = ACTIONS(3226), + [sym___c_single_quote] = ACTIONS(3226), + [sym___r_double_quote] = ACTIONS(3226), + [sym___r_single_quote] = ACTIONS(3226), }, [1213] = { - [sym_identifier] = ACTIONS(3006), - [anon_sym_LF] = ACTIONS(3006), - [anon_sym_CR] = ACTIONS(3006), - [anon_sym_CR_LF] = ACTIONS(3006), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_as] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(3006), - [anon_sym_RBRACE] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_fn] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3006), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_GT] = ACTIONS(3006), - [anon_sym_EQ_EQ] = ACTIONS(3006), - [anon_sym_BANG_EQ] = ACTIONS(3006), - [anon_sym_LT_EQ] = ACTIONS(3006), - [anon_sym_GT_EQ] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3006), - [anon_sym_mut] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3006), - [anon_sym_DASH_DASH] = ACTIONS(3006), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_go] = ACTIONS(3006), - [anon_sym_spawn] = ACTIONS(3006), - [anon_sym_json_DOTdecode] = ACTIONS(3006), - [anon_sym_LBRACK2] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_CARET] = ACTIONS(3006), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3006), - [anon_sym_LT_LT] = ACTIONS(3006), - [anon_sym_GT_GT] = ACTIONS(3006), - [anon_sym_GT_GT_GT] = ACTIONS(3006), - [anon_sym_AMP_CARET] = ACTIONS(3006), - [anon_sym_AMP_AMP] = ACTIONS(3006), - [anon_sym_PIPE_PIPE] = ACTIONS(3006), - [anon_sym_or] = ACTIONS(3006), - [sym_none] = ACTIONS(3006), - [sym_true] = ACTIONS(3006), - [sym_false] = ACTIONS(3006), - [sym_nil] = ACTIONS(3006), - [anon_sym_QMARK_DOT] = ACTIONS(3006), - [anon_sym_POUND_LBRACK] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_DOLLARif] = ACTIONS(3006), - [anon_sym_is] = ACTIONS(3006), - [anon_sym_BANGis] = ACTIONS(3006), - [anon_sym_in] = ACTIONS(3006), - [anon_sym_BANGin] = ACTIONS(3006), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_select] = ACTIONS(3006), - [anon_sym_lock] = ACTIONS(3006), - [anon_sym_rlock] = ACTIONS(3006), - [anon_sym_unsafe] = ACTIONS(3006), - [anon_sym_sql] = ACTIONS(3006), - [sym_int_literal] = ACTIONS(3006), - [sym_float_literal] = ACTIONS(3006), - [sym_rune_literal] = ACTIONS(3006), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_shared] = ACTIONS(3006), - [anon_sym_map_LBRACK] = ACTIONS(3006), - [anon_sym_chan] = ACTIONS(3006), - [anon_sym_thread] = ACTIONS(3006), - [anon_sym_atomic] = ACTIONS(3006), - [sym___double_quote] = ACTIONS(3006), - [sym___single_quote] = ACTIONS(3006), - [sym___c_double_quote] = ACTIONS(3006), - [sym___c_single_quote] = ACTIONS(3006), - [sym___r_double_quote] = ACTIONS(3006), - [sym___r_single_quote] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_CR] = ACTIONS(3218), + [anon_sym_CR_LF] = ACTIONS(3218), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3218), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3218), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3218), + [anon_sym_AMP_CARET] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3218), + [anon_sym_POUND_LBRACK] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + [sym_rune_literal] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3218), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3218), + [sym___single_quote] = ACTIONS(3218), + [sym___c_double_quote] = ACTIONS(3218), + [sym___c_single_quote] = ACTIONS(3218), + [sym___r_double_quote] = ACTIONS(3218), + [sym___r_single_quote] = ACTIONS(3218), }, [1214] = { - [sym_identifier] = ACTIONS(2970), - [anon_sym_LF] = ACTIONS(2970), - [anon_sym_CR] = ACTIONS(2970), - [anon_sym_CR_LF] = ACTIONS(2970), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_mut] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(2970), - [anon_sym_spawn] = ACTIONS(2970), - [anon_sym_json_DOTdecode] = ACTIONS(2970), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_nil] = ACTIONS(2970), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_DOLLARif] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_select] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(2970), - [anon_sym_rlock] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_sql] = ACTIONS(2970), - [sym_int_literal] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), - [sym_rune_literal] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2970), - [anon_sym_shared] = ACTIONS(2970), - [anon_sym_map_LBRACK] = ACTIONS(2970), - [anon_sym_chan] = ACTIONS(2970), - [anon_sym_thread] = ACTIONS(2970), - [anon_sym_atomic] = ACTIONS(2970), - [sym___double_quote] = ACTIONS(2970), - [sym___single_quote] = ACTIONS(2970), - [sym___c_double_quote] = ACTIONS(2970), - [sym___c_single_quote] = ACTIONS(2970), - [sym___r_double_quote] = ACTIONS(2970), - [sym___r_single_quote] = ACTIONS(2970), + [sym_identifier] = ACTIONS(3160), + [anon_sym_LF] = ACTIONS(3160), + [anon_sym_CR] = ACTIONS(3160), + [anon_sym_CR_LF] = ACTIONS(3160), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_mut] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3160), + [anon_sym_spawn] = ACTIONS(3160), + [anon_sym_json_DOTdecode] = ACTIONS(3160), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3160), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_nil] = ACTIONS(3160), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_DOLLARif] = ACTIONS(3160), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3160), + [anon_sym_select] = ACTIONS(3160), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(3160), + [anon_sym_sql] = ACTIONS(3160), + [sym_int_literal] = ACTIONS(3160), + [sym_float_literal] = ACTIONS(3160), + [sym_rune_literal] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_shared] = ACTIONS(3160), + [anon_sym_map_LBRACK] = ACTIONS(3160), + [anon_sym_chan] = ACTIONS(3160), + [anon_sym_thread] = ACTIONS(3160), + [anon_sym_atomic] = ACTIONS(3160), + [sym___double_quote] = ACTIONS(3160), + [sym___single_quote] = ACTIONS(3160), + [sym___c_double_quote] = ACTIONS(3160), + [sym___c_single_quote] = ACTIONS(3160), + [sym___r_double_quote] = ACTIONS(3160), + [sym___r_single_quote] = ACTIONS(3160), }, [1215] = { - [sym_identifier] = ACTIONS(3066), - [anon_sym_LF] = ACTIONS(3066), - [anon_sym_CR] = ACTIONS(3066), - [anon_sym_CR_LF] = ACTIONS(3066), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_COMMA] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_fn] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3066), - [anon_sym_BANG_EQ] = ACTIONS(3066), - [anon_sym_LT_EQ] = ACTIONS(3066), - [anon_sym_GT_EQ] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_mut] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_go] = ACTIONS(3066), - [anon_sym_spawn] = ACTIONS(3066), - [anon_sym_json_DOTdecode] = ACTIONS(3066), - [anon_sym_LBRACK2] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_CARET] = ACTIONS(3066), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3066), - [anon_sym_LT_LT] = ACTIONS(3066), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3066), - [anon_sym_AMP_CARET] = ACTIONS(3066), - [anon_sym_AMP_AMP] = ACTIONS(3066), - [anon_sym_PIPE_PIPE] = ACTIONS(3066), - [anon_sym_or] = ACTIONS(3066), - [sym_none] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_nil] = ACTIONS(3066), - [anon_sym_QMARK_DOT] = ACTIONS(3066), - [anon_sym_POUND_LBRACK] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_DOLLARif] = ACTIONS(3066), - [anon_sym_is] = ACTIONS(3066), - [anon_sym_BANGis] = ACTIONS(3066), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_BANGin] = ACTIONS(3066), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_rlock] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_sql] = ACTIONS(3066), - [sym_int_literal] = ACTIONS(3066), - [sym_float_literal] = ACTIONS(3066), - [sym_rune_literal] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_shared] = ACTIONS(3066), - [anon_sym_map_LBRACK] = ACTIONS(3066), - [anon_sym_chan] = ACTIONS(3066), - [anon_sym_thread] = ACTIONS(3066), - [anon_sym_atomic] = ACTIONS(3066), - [sym___double_quote] = ACTIONS(3066), - [sym___single_quote] = ACTIONS(3066), - [sym___c_double_quote] = ACTIONS(3066), - [sym___c_single_quote] = ACTIONS(3066), - [sym___r_double_quote] = ACTIONS(3066), - [sym___r_single_quote] = ACTIONS(3066), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_CR] = ACTIONS(3048), + [anon_sym_CR_LF] = ACTIONS(3048), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_as] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_fn] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(3048), + [anon_sym_GT] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(3048), + [anon_sym_BANG_EQ] = ACTIONS(3048), + [anon_sym_LT_EQ] = ACTIONS(3048), + [anon_sym_GT_EQ] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_mut] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(3048), + [anon_sym_spawn] = ACTIONS(3048), + [anon_sym_json_DOTdecode] = ACTIONS(3048), + [anon_sym_LBRACK2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3048), + [anon_sym_CARET] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3048), + [anon_sym_LT_LT] = ACTIONS(3048), + [anon_sym_GT_GT] = ACTIONS(3048), + [anon_sym_GT_GT_GT] = ACTIONS(3048), + [anon_sym_AMP_CARET] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_or] = ACTIONS(3048), + [sym_none] = ACTIONS(3048), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [sym_nil] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(3048), + [anon_sym_POUND_LBRACK] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_DOLLARif] = ACTIONS(3048), + [anon_sym_is] = ACTIONS(3048), + [anon_sym_BANGis] = ACTIONS(3048), + [anon_sym_in] = ACTIONS(3048), + [anon_sym_BANGin] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_select] = ACTIONS(3048), + [anon_sym_lock] = ACTIONS(3048), + [anon_sym_rlock] = ACTIONS(3048), + [anon_sym_unsafe] = ACTIONS(3048), + [anon_sym_sql] = ACTIONS(3048), + [sym_int_literal] = ACTIONS(3048), + [sym_float_literal] = ACTIONS(3048), + [sym_rune_literal] = ACTIONS(3048), + [anon_sym_AT] = ACTIONS(3048), + [anon_sym_shared] = ACTIONS(3048), + [anon_sym_map_LBRACK] = ACTIONS(3048), + [anon_sym_chan] = ACTIONS(3048), + [anon_sym_thread] = ACTIONS(3048), + [anon_sym_atomic] = ACTIONS(3048), + [sym___double_quote] = ACTIONS(3048), + [sym___single_quote] = ACTIONS(3048), + [sym___c_double_quote] = ACTIONS(3048), + [sym___c_single_quote] = ACTIONS(3048), + [sym___r_double_quote] = ACTIONS(3048), + [sym___r_single_quote] = ACTIONS(3048), }, [1216] = { - [sym_identifier] = ACTIONS(2978), - [anon_sym_LF] = ACTIONS(2978), - [anon_sym_CR] = ACTIONS(2978), - [anon_sym_CR_LF] = ACTIONS(2978), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2978), - [anon_sym_DOT] = ACTIONS(2978), - [anon_sym_as] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_COMMA] = ACTIONS(2978), - [anon_sym_RBRACE] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_fn] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_PERCENT] = ACTIONS(2978), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_GT] = ACTIONS(2978), - [anon_sym_EQ_EQ] = ACTIONS(2978), - [anon_sym_BANG_EQ] = ACTIONS(2978), - [anon_sym_LT_EQ] = ACTIONS(2978), - [anon_sym_GT_EQ] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2978), - [anon_sym_mut] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2978), - [anon_sym_DASH_DASH] = ACTIONS(2978), - [anon_sym_QMARK] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_go] = ACTIONS(2978), - [anon_sym_spawn] = ACTIONS(2978), - [anon_sym_json_DOTdecode] = ACTIONS(2978), - [anon_sym_LBRACK2] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_LT_DASH] = ACTIONS(2978), - [anon_sym_LT_LT] = ACTIONS(2978), - [anon_sym_GT_GT] = ACTIONS(2978), - [anon_sym_GT_GT_GT] = ACTIONS(2978), - [anon_sym_AMP_CARET] = ACTIONS(2978), - [anon_sym_AMP_AMP] = ACTIONS(2978), - [anon_sym_PIPE_PIPE] = ACTIONS(2978), - [anon_sym_or] = ACTIONS(2978), - [sym_none] = ACTIONS(2978), - [sym_true] = ACTIONS(2978), - [sym_false] = ACTIONS(2978), - [sym_nil] = ACTIONS(2978), - [anon_sym_QMARK_DOT] = ACTIONS(2978), - [anon_sym_POUND_LBRACK] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_DOLLARif] = ACTIONS(2978), - [anon_sym_is] = ACTIONS(2978), - [anon_sym_BANGis] = ACTIONS(2978), - [anon_sym_in] = ACTIONS(2978), - [anon_sym_BANGin] = ACTIONS(2978), - [anon_sym_match] = ACTIONS(2978), - [anon_sym_select] = ACTIONS(2978), - [anon_sym_lock] = ACTIONS(2978), - [anon_sym_rlock] = ACTIONS(2978), - [anon_sym_unsafe] = ACTIONS(2978), - [anon_sym_sql] = ACTIONS(2978), - [sym_int_literal] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2978), - [sym_rune_literal] = ACTIONS(2978), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_shared] = ACTIONS(2978), - [anon_sym_map_LBRACK] = ACTIONS(2978), - [anon_sym_chan] = ACTIONS(2978), - [anon_sym_thread] = ACTIONS(2978), - [anon_sym_atomic] = ACTIONS(2978), - [sym___double_quote] = ACTIONS(2978), - [sym___single_quote] = ACTIONS(2978), - [sym___c_double_quote] = ACTIONS(2978), - [sym___c_single_quote] = ACTIONS(2978), - [sym___r_double_quote] = ACTIONS(2978), - [sym___r_single_quote] = ACTIONS(2978), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3214), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3214), + [anon_sym_AMP_CARET] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_PIPE_PIPE] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3214), + [anon_sym_POUND_LBRACK] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), }, [1217] = { - [sym_identifier] = ACTIONS(2966), - [anon_sym_LF] = ACTIONS(2966), - [anon_sym_CR] = ACTIONS(2966), - [anon_sym_CR_LF] = ACTIONS(2966), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2966), - [anon_sym_DOT] = ACTIONS(2966), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_COMMA] = ACTIONS(2966), - [anon_sym_RBRACE] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_fn] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_EQ_EQ] = ACTIONS(2966), - [anon_sym_BANG_EQ] = ACTIONS(2966), - [anon_sym_LT_EQ] = ACTIONS(2966), - [anon_sym_GT_EQ] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_mut] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2966), - [anon_sym_DASH_DASH] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_go] = ACTIONS(2966), - [anon_sym_spawn] = ACTIONS(2966), - [anon_sym_json_DOTdecode] = ACTIONS(2966), - [anon_sym_LBRACK2] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2966), - [anon_sym_CARET] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2966), - [anon_sym_LT_LT] = ACTIONS(2966), - [anon_sym_GT_GT] = ACTIONS(2966), - [anon_sym_GT_GT_GT] = ACTIONS(2966), - [anon_sym_AMP_CARET] = ACTIONS(2966), - [anon_sym_AMP_AMP] = ACTIONS(2966), - [anon_sym_PIPE_PIPE] = ACTIONS(2966), - [anon_sym_or] = ACTIONS(2966), - [sym_none] = ACTIONS(2966), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_nil] = ACTIONS(2966), - [anon_sym_QMARK_DOT] = ACTIONS(2966), - [anon_sym_POUND_LBRACK] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_DOLLARif] = ACTIONS(2966), - [anon_sym_is] = ACTIONS(2966), - [anon_sym_BANGis] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(2966), - [anon_sym_BANGin] = ACTIONS(2966), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_select] = ACTIONS(2966), - [anon_sym_lock] = ACTIONS(2966), - [anon_sym_rlock] = ACTIONS(2966), - [anon_sym_unsafe] = ACTIONS(2966), - [anon_sym_sql] = ACTIONS(2966), - [sym_int_literal] = ACTIONS(2966), - [sym_float_literal] = ACTIONS(2966), - [sym_rune_literal] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_shared] = ACTIONS(2966), - [anon_sym_map_LBRACK] = ACTIONS(2966), - [anon_sym_chan] = ACTIONS(2966), - [anon_sym_thread] = ACTIONS(2966), - [anon_sym_atomic] = ACTIONS(2966), - [sym___double_quote] = ACTIONS(2966), - [sym___single_quote] = ACTIONS(2966), - [sym___c_double_quote] = ACTIONS(2966), - [sym___c_single_quote] = ACTIONS(2966), - [sym___r_double_quote] = ACTIONS(2966), - [sym___r_single_quote] = ACTIONS(2966), + [sym_identifier] = ACTIONS(3148), + [anon_sym_LF] = ACTIONS(3148), + [anon_sym_CR] = ACTIONS(3148), + [anon_sym_CR_LF] = ACTIONS(3148), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_COMMA] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_PIPE] = ACTIONS(3148), + [anon_sym_fn] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_LT_EQ] = ACTIONS(3148), + [anon_sym_GT_EQ] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3148), + [anon_sym_mut] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_QMARK] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3148), + [anon_sym_spawn] = ACTIONS(3148), + [anon_sym_json_DOTdecode] = ACTIONS(3148), + [anon_sym_LBRACK2] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_CARET] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_LT_DASH] = ACTIONS(3148), + [anon_sym_LT_LT] = ACTIONS(3148), + [anon_sym_GT_GT] = ACTIONS(3148), + [anon_sym_GT_GT_GT] = ACTIONS(3148), + [anon_sym_AMP_CARET] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_PIPE_PIPE] = ACTIONS(3148), + [anon_sym_or] = ACTIONS(3148), + [sym_none] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nil] = ACTIONS(3148), + [anon_sym_QMARK_DOT] = ACTIONS(3148), + [anon_sym_POUND_LBRACK] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_DOLLARif] = ACTIONS(3148), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_BANGin] = ACTIONS(3148), + [anon_sym_match] = ACTIONS(3148), + [anon_sym_select] = ACTIONS(3148), + [anon_sym_lock] = ACTIONS(3148), + [anon_sym_rlock] = ACTIONS(3148), + [anon_sym_unsafe] = ACTIONS(3148), + [anon_sym_sql] = ACTIONS(3148), + [sym_int_literal] = ACTIONS(3148), + [sym_float_literal] = ACTIONS(3148), + [sym_rune_literal] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_shared] = ACTIONS(3148), + [anon_sym_map_LBRACK] = ACTIONS(3148), + [anon_sym_chan] = ACTIONS(3148), + [anon_sym_thread] = ACTIONS(3148), + [anon_sym_atomic] = ACTIONS(3148), + [sym___double_quote] = ACTIONS(3148), + [sym___single_quote] = ACTIONS(3148), + [sym___c_double_quote] = ACTIONS(3148), + [sym___c_single_quote] = ACTIONS(3148), + [sym___r_double_quote] = ACTIONS(3148), + [sym___r_single_quote] = ACTIONS(3148), }, [1218] = { - [sym_identifier] = ACTIONS(3058), - [anon_sym_LF] = ACTIONS(3058), - [anon_sym_CR] = ACTIONS(3058), - [anon_sym_CR_LF] = ACTIONS(3058), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3058), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3058), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(3058), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3058), - [anon_sym_BANG_EQ] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3058), - [anon_sym_GT_EQ] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3058), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3058), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3058), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3058), - [anon_sym_AMP_CARET] = ACTIONS(3058), - [anon_sym_AMP_AMP] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3058), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3058), - [anon_sym_POUND_LBRACK] = ACTIONS(3058), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3058), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3058), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3058), - [sym_rune_literal] = ACTIONS(3058), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3058), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3058), - [sym___single_quote] = ACTIONS(3058), - [sym___c_double_quote] = ACTIONS(3058), - [sym___c_single_quote] = ACTIONS(3058), - [sym___r_double_quote] = ACTIONS(3058), - [sym___r_single_quote] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3052), + [anon_sym_LF] = ACTIONS(3052), + [anon_sym_CR] = ACTIONS(3052), + [anon_sym_CR_LF] = ACTIONS(3052), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3052), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3052), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_CARET] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3052), + [anon_sym_POUND_LBRACK] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3052), + [sym_rune_literal] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3052), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), + [sym___double_quote] = ACTIONS(3052), + [sym___single_quote] = ACTIONS(3052), + [sym___c_double_quote] = ACTIONS(3052), + [sym___c_single_quote] = ACTIONS(3052), + [sym___r_double_quote] = ACTIONS(3052), + [sym___r_single_quote] = ACTIONS(3052), }, [1219] = { - [sym_identifier] = ACTIONS(2918), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_CR] = ACTIONS(2918), - [anon_sym_CR_LF] = ACTIONS(2918), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2918), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2918), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2918), - [anon_sym_AMP_CARET] = ACTIONS(2918), - [anon_sym_AMP_AMP] = ACTIONS(2918), - [anon_sym_PIPE_PIPE] = ACTIONS(2918), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2918), - [anon_sym_POUND_LBRACK] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2918), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2918), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_rune_literal] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2918), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2918), - [sym___single_quote] = ACTIONS(2918), - [sym___c_double_quote] = ACTIONS(2918), - [sym___c_single_quote] = ACTIONS(2918), - [sym___r_double_quote] = ACTIONS(2918), - [sym___r_single_quote] = ACTIONS(2918), + [sym_identifier] = ACTIONS(3056), + [anon_sym_LF] = ACTIONS(3056), + [anon_sym_CR] = ACTIONS(3056), + [anon_sym_CR_LF] = ACTIONS(3056), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3056), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT_EQ] = ACTIONS(3056), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_DASH_DASH] = ACTIONS(3056), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3056), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3056), + [anon_sym_CARET] = ACTIONS(3056), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3056), + [anon_sym_LT_LT] = ACTIONS(3056), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3056), + [anon_sym_AMP_CARET] = ACTIONS(3056), + [anon_sym_AMP_AMP] = ACTIONS(3056), + [anon_sym_PIPE_PIPE] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3056), + [anon_sym_POUND_LBRACK] = ACTIONS(3056), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3056), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3056), + [sym_rune_literal] = ACTIONS(3056), + [anon_sym_AT] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3056), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), + [sym___double_quote] = ACTIONS(3056), + [sym___single_quote] = ACTIONS(3056), + [sym___c_double_quote] = ACTIONS(3056), + [sym___c_single_quote] = ACTIONS(3056), + [sym___r_double_quote] = ACTIONS(3056), + [sym___r_single_quote] = ACTIONS(3056), }, [1220] = { - [sym_identifier] = ACTIONS(2906), - [anon_sym_LF] = ACTIONS(2906), - [anon_sym_CR] = ACTIONS(2906), - [anon_sym_CR_LF] = ACTIONS(2906), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2906), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2906), - [anon_sym_BANG_EQ] = ACTIONS(2906), - [anon_sym_LT_EQ] = ACTIONS(2906), - [anon_sym_GT_EQ] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2906), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_CARET] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2906), - [anon_sym_LT_LT] = ACTIONS(2906), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2906), - [anon_sym_AMP_CARET] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_PIPE_PIPE] = ACTIONS(2906), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2906), - [anon_sym_POUND_LBRACK] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2906), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2906), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_rune_literal] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2906), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2906), - [sym___single_quote] = ACTIONS(2906), - [sym___c_double_quote] = ACTIONS(2906), - [sym___c_single_quote] = ACTIONS(2906), - [sym___r_double_quote] = ACTIONS(2906), - [sym___r_single_quote] = ACTIONS(2906), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_COMMA] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3245), + [anon_sym_POUND_LBRACK] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3245), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), }, [1221] = { - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), + [sym_identifier] = ACTIONS(3064), + [anon_sym_LF] = ACTIONS(3064), + [anon_sym_CR] = ACTIONS(3064), + [anon_sym_CR_LF] = ACTIONS(3064), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3064), + [anon_sym_as] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_COMMA] = ACTIONS(3064), + [anon_sym_RBRACE] = ACTIONS(3064), + [anon_sym_LPAREN] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_GT] = ACTIONS(3064), + [anon_sym_EQ_EQ] = ACTIONS(3064), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(3064), + [anon_sym_GT_EQ] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_mut] = ACTIONS(3064), + [anon_sym_PLUS_PLUS] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3064), + [anon_sym_QMARK] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3064), + [anon_sym_go] = ACTIONS(3064), + [anon_sym_spawn] = ACTIONS(3064), + [anon_sym_json_DOTdecode] = ACTIONS(3064), + [anon_sym_LBRACK2] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3064), + [anon_sym_CARET] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT_DASH] = ACTIONS(3064), + [anon_sym_LT_LT] = ACTIONS(3064), + [anon_sym_GT_GT] = ACTIONS(3064), + [anon_sym_GT_GT_GT] = ACTIONS(3064), + [anon_sym_AMP_CARET] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_PIPE_PIPE] = ACTIONS(3064), + [anon_sym_or] = ACTIONS(3064), + [sym_none] = ACTIONS(3064), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [sym_nil] = ACTIONS(3064), + [anon_sym_QMARK_DOT] = ACTIONS(3064), + [anon_sym_POUND_LBRACK] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_DOLLARif] = ACTIONS(3064), + [anon_sym_is] = ACTIONS(3064), + [anon_sym_BANGis] = ACTIONS(3064), + [anon_sym_in] = ACTIONS(3064), + [anon_sym_BANGin] = ACTIONS(3064), + [anon_sym_match] = ACTIONS(3064), + [anon_sym_select] = ACTIONS(3064), + [anon_sym_lock] = ACTIONS(3064), + [anon_sym_rlock] = ACTIONS(3064), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_sql] = ACTIONS(3064), + [sym_int_literal] = ACTIONS(3064), + [sym_float_literal] = ACTIONS(3064), + [sym_rune_literal] = ACTIONS(3064), + [anon_sym_AT] = ACTIONS(3064), + [anon_sym_shared] = ACTIONS(3064), + [anon_sym_map_LBRACK] = ACTIONS(3064), + [anon_sym_chan] = ACTIONS(3064), + [anon_sym_thread] = ACTIONS(3064), + [anon_sym_atomic] = ACTIONS(3064), + [sym___double_quote] = ACTIONS(3064), + [sym___single_quote] = ACTIONS(3064), + [sym___c_double_quote] = ACTIONS(3064), + [sym___c_single_quote] = ACTIONS(3064), + [sym___r_double_quote] = ACTIONS(3064), + [sym___r_single_quote] = ACTIONS(3064), }, [1222] = { - [sym_identifier] = ACTIONS(2866), - [anon_sym_LF] = ACTIONS(2866), - [anon_sym_CR] = ACTIONS(2866), - [anon_sym_CR_LF] = ACTIONS(2866), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_as] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_fn] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_GT] = ACTIONS(2866), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2866), - [anon_sym_mut] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_go] = ACTIONS(2866), - [anon_sym_spawn] = ACTIONS(2866), - [anon_sym_json_DOTdecode] = ACTIONS(2866), - [anon_sym_LBRACK2] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2866), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_or] = ACTIONS(2866), - [sym_none] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_nil] = ACTIONS(2866), - [anon_sym_QMARK_DOT] = ACTIONS(2866), - [anon_sym_POUND_LBRACK] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_DOLLARif] = ACTIONS(2866), - [anon_sym_is] = ACTIONS(2866), - [anon_sym_BANGis] = ACTIONS(2866), - [anon_sym_in] = ACTIONS(2866), - [anon_sym_BANGin] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_select] = ACTIONS(2866), - [anon_sym_lock] = ACTIONS(2866), - [anon_sym_rlock] = ACTIONS(2866), - [anon_sym_unsafe] = ACTIONS(2866), - [anon_sym_sql] = ACTIONS(2866), - [sym_int_literal] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), - [sym_rune_literal] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2866), - [anon_sym_shared] = ACTIONS(2866), - [anon_sym_map_LBRACK] = ACTIONS(2866), - [anon_sym_chan] = ACTIONS(2866), - [anon_sym_thread] = ACTIONS(2866), - [anon_sym_atomic] = ACTIONS(2866), - [sym___double_quote] = ACTIONS(2866), - [sym___single_quote] = ACTIONS(2866), - [sym___c_double_quote] = ACTIONS(2866), - [sym___c_single_quote] = ACTIONS(2866), - [sym___r_double_quote] = ACTIONS(2866), - [sym___r_single_quote] = ACTIONS(2866), + [sym_identifier] = ACTIONS(3068), + [anon_sym_LF] = ACTIONS(3068), + [anon_sym_CR] = ACTIONS(3068), + [anon_sym_CR_LF] = ACTIONS(3068), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_RBRACE] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3068), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3068), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3068), + [anon_sym_CARET] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3068), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3068), + [anon_sym_AMP_CARET] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3068), + [anon_sym_POUND_LBRACK] = ACTIONS(3068), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3068), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3068), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3068), + [sym_rune_literal] = ACTIONS(3068), + [anon_sym_AT] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3068), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3068), + [sym___single_quote] = ACTIONS(3068), + [sym___c_double_quote] = ACTIONS(3068), + [sym___c_single_quote] = ACTIONS(3068), + [sym___r_double_quote] = ACTIONS(3068), + [sym___r_single_quote] = ACTIONS(3068), }, [1223] = { - [sym_identifier] = ACTIONS(2878), - [anon_sym_LF] = ACTIONS(2878), - [anon_sym_CR] = ACTIONS(2878), - [anon_sym_CR_LF] = ACTIONS(2878), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_format_specifier] = STATE(4362), + [sym_identifier] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_mut] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(3762), + [anon_sym_spawn] = ACTIONS(3762), + [anon_sym_json_DOTdecode] = ACTIONS(3766), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3766), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(3762), + [sym_true] = ACTIONS(3762), + [sym_false] = ACTIONS(3762), + [sym_nil] = ACTIONS(3762), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_DOLLARif] = ACTIONS(3762), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3796), + [anon_sym_BANGin] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_select] = ACTIONS(3762), + [anon_sym_lock] = ACTIONS(3762), + [anon_sym_rlock] = ACTIONS(3762), + [anon_sym_unsafe] = ACTIONS(3762), + [anon_sym_sql] = ACTIONS(3762), + [sym_int_literal] = ACTIONS(3762), + [sym_float_literal] = ACTIONS(3766), + [sym_rune_literal] = ACTIONS(3766), + [anon_sym_AT] = ACTIONS(3762), + [anon_sym_shared] = ACTIONS(3762), + [anon_sym_map_LBRACK] = ACTIONS(3766), + [anon_sym_chan] = ACTIONS(3762), + [anon_sym_thread] = ACTIONS(3762), + [anon_sym_atomic] = ACTIONS(3762), + [sym___double_quote] = ACTIONS(3766), + [sym___single_quote] = ACTIONS(3766), + [sym___c_double_quote] = ACTIONS(3766), + [sym___c_single_quote] = ACTIONS(3766), + [sym___r_double_quote] = ACTIONS(3766), + [sym___r_single_quote] = ACTIONS(3766), }, [1224] = { - [sym_identifier] = ACTIONS(3030), - [anon_sym_LF] = ACTIONS(3030), - [anon_sym_CR] = ACTIONS(3030), - [anon_sym_CR_LF] = ACTIONS(3030), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3030), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_as] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_RBRACE] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_fn] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_SLASH] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_GT] = ACTIONS(3030), - [anon_sym_EQ_EQ] = ACTIONS(3030), - [anon_sym_BANG_EQ] = ACTIONS(3030), - [anon_sym_LT_EQ] = ACTIONS(3030), - [anon_sym_GT_EQ] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_struct] = ACTIONS(3030), - [anon_sym_mut] = ACTIONS(3030), - [anon_sym_PLUS_PLUS] = ACTIONS(3030), - [anon_sym_DASH_DASH] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_go] = ACTIONS(3030), - [anon_sym_spawn] = ACTIONS(3030), - [anon_sym_json_DOTdecode] = ACTIONS(3030), - [anon_sym_LBRACK2] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [anon_sym_LT_LT] = ACTIONS(3030), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_GT_GT_GT] = ACTIONS(3030), - [anon_sym_AMP_CARET] = ACTIONS(3030), - [anon_sym_AMP_AMP] = ACTIONS(3030), - [anon_sym_PIPE_PIPE] = ACTIONS(3030), - [anon_sym_or] = ACTIONS(3030), - [sym_none] = ACTIONS(3030), - [sym_true] = ACTIONS(3030), - [sym_false] = ACTIONS(3030), - [sym_nil] = ACTIONS(3030), - [anon_sym_QMARK_DOT] = ACTIONS(3030), - [anon_sym_POUND_LBRACK] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_DOLLARif] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3030), - [anon_sym_BANGis] = ACTIONS(3030), - [anon_sym_in] = ACTIONS(3030), - [anon_sym_BANGin] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_select] = ACTIONS(3030), - [anon_sym_lock] = ACTIONS(3030), - [anon_sym_rlock] = ACTIONS(3030), - [anon_sym_unsafe] = ACTIONS(3030), - [anon_sym_sql] = ACTIONS(3030), - [sym_int_literal] = ACTIONS(3030), - [sym_float_literal] = ACTIONS(3030), - [sym_rune_literal] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_shared] = ACTIONS(3030), - [anon_sym_map_LBRACK] = ACTIONS(3030), - [anon_sym_chan] = ACTIONS(3030), - [anon_sym_thread] = ACTIONS(3030), - [anon_sym_atomic] = ACTIONS(3030), - [sym___double_quote] = ACTIONS(3030), - [sym___single_quote] = ACTIONS(3030), - [sym___c_double_quote] = ACTIONS(3030), - [sym___c_single_quote] = ACTIONS(3030), - [sym___r_double_quote] = ACTIONS(3030), - [sym___r_single_quote] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3108), + [anon_sym_LF] = ACTIONS(3108), + [anon_sym_CR] = ACTIONS(3108), + [anon_sym_CR_LF] = ACTIONS(3108), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_mut] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3108), + [anon_sym_spawn] = ACTIONS(3108), + [anon_sym_json_DOTdecode] = ACTIONS(3108), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_CARET] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3108), + [anon_sym_LT_LT] = ACTIONS(3110), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3110), + [anon_sym_AMP_CARET] = ACTIONS(3110), + [anon_sym_AMP_AMP] = ACTIONS(3110), + [anon_sym_PIPE_PIPE] = ACTIONS(3110), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_nil] = ACTIONS(3108), + [anon_sym_QMARK_DOT] = ACTIONS(3110), + [anon_sym_POUND_LBRACK] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_DOLLARif] = ACTIONS(3108), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3110), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3110), + [anon_sym_match] = ACTIONS(3108), + [anon_sym_select] = ACTIONS(3108), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(3108), + [anon_sym_sql] = ACTIONS(3108), + [sym_int_literal] = ACTIONS(3108), + [sym_float_literal] = ACTIONS(3108), + [sym_rune_literal] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_shared] = ACTIONS(3108), + [anon_sym_map_LBRACK] = ACTIONS(3108), + [anon_sym_chan] = ACTIONS(3108), + [anon_sym_thread] = ACTIONS(3108), + [anon_sym_atomic] = ACTIONS(3108), + [sym___double_quote] = ACTIONS(3108), + [sym___single_quote] = ACTIONS(3108), + [sym___c_double_quote] = ACTIONS(3108), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3108), + [sym___r_single_quote] = ACTIONS(3108), }, [1225] = { - [sym_identifier] = ACTIONS(3002), - [anon_sym_LF] = ACTIONS(3002), - [anon_sym_CR] = ACTIONS(3002), - [anon_sym_CR_LF] = ACTIONS(3002), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_as] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_COMMA] = ACTIONS(3002), - [anon_sym_RBRACE] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_fn] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_EQ_EQ] = ACTIONS(3002), - [anon_sym_BANG_EQ] = ACTIONS(3002), - [anon_sym_LT_EQ] = ACTIONS(3002), - [anon_sym_GT_EQ] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3002), - [anon_sym_mut] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3002), - [anon_sym_DASH_DASH] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_go] = ACTIONS(3002), - [anon_sym_spawn] = ACTIONS(3002), - [anon_sym_json_DOTdecode] = ACTIONS(3002), - [anon_sym_LBRACK2] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [anon_sym_LT_LT] = ACTIONS(3002), - [anon_sym_GT_GT] = ACTIONS(3002), - [anon_sym_GT_GT_GT] = ACTIONS(3002), - [anon_sym_AMP_CARET] = ACTIONS(3002), - [anon_sym_AMP_AMP] = ACTIONS(3002), - [anon_sym_PIPE_PIPE] = ACTIONS(3002), - [anon_sym_or] = ACTIONS(3002), - [sym_none] = ACTIONS(3002), - [sym_true] = ACTIONS(3002), - [sym_false] = ACTIONS(3002), - [sym_nil] = ACTIONS(3002), - [anon_sym_QMARK_DOT] = ACTIONS(3002), - [anon_sym_POUND_LBRACK] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_DOLLARif] = ACTIONS(3002), - [anon_sym_is] = ACTIONS(3002), - [anon_sym_BANGis] = ACTIONS(3002), - [anon_sym_in] = ACTIONS(3002), - [anon_sym_BANGin] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_select] = ACTIONS(3002), - [anon_sym_lock] = ACTIONS(3002), - [anon_sym_rlock] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_sql] = ACTIONS(3002), - [sym_int_literal] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3002), - [sym_rune_literal] = ACTIONS(3002), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_shared] = ACTIONS(3002), - [anon_sym_map_LBRACK] = ACTIONS(3002), - [anon_sym_chan] = ACTIONS(3002), - [anon_sym_thread] = ACTIONS(3002), - [anon_sym_atomic] = ACTIONS(3002), - [sym___double_quote] = ACTIONS(3002), - [sym___single_quote] = ACTIONS(3002), - [sym___c_double_quote] = ACTIONS(3002), - [sym___c_single_quote] = ACTIONS(3002), - [sym___r_double_quote] = ACTIONS(3002), - [sym___r_single_quote] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3076), + [anon_sym_LF] = ACTIONS(3076), + [anon_sym_CR] = ACTIONS(3076), + [anon_sym_CR_LF] = ACTIONS(3076), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_fn] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_SLASH] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3076), + [anon_sym_GT] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_struct] = ACTIONS(3076), + [anon_sym_mut] = ACTIONS(3076), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3076), + [anon_sym_json_DOTdecode] = ACTIONS(3076), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3076), + [anon_sym_GT_GT] = ACTIONS(3076), + [anon_sym_GT_GT_GT] = ACTIONS(3076), + [anon_sym_AMP_CARET] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_or] = ACTIONS(3076), + [sym_none] = ACTIONS(3076), + [sym_true] = ACTIONS(3076), + [sym_false] = ACTIONS(3076), + [sym_nil] = ACTIONS(3076), + [anon_sym_QMARK_DOT] = ACTIONS(3076), + [anon_sym_POUND_LBRACK] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_DOLLARif] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3076), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_select] = ACTIONS(3076), + [anon_sym_lock] = ACTIONS(3076), + [anon_sym_rlock] = ACTIONS(3076), + [anon_sym_unsafe] = ACTIONS(3076), + [anon_sym_sql] = ACTIONS(3076), + [sym_int_literal] = ACTIONS(3076), + [sym_float_literal] = ACTIONS(3076), + [sym_rune_literal] = ACTIONS(3076), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_shared] = ACTIONS(3076), + [anon_sym_map_LBRACK] = ACTIONS(3076), + [anon_sym_chan] = ACTIONS(3076), + [anon_sym_thread] = ACTIONS(3076), + [anon_sym_atomic] = ACTIONS(3076), + [sym___double_quote] = ACTIONS(3076), + [sym___single_quote] = ACTIONS(3076), + [sym___c_double_quote] = ACTIONS(3076), + [sym___c_single_quote] = ACTIONS(3076), + [sym___r_double_quote] = ACTIONS(3076), + [sym___r_single_quote] = ACTIONS(3076), }, [1226] = { - [sym_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_CR] = ACTIONS(2874), - [anon_sym_CR_LF] = ACTIONS(2874), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), + [sym_identifier] = ACTIONS(3325), + [anon_sym_LF] = ACTIONS(3325), + [anon_sym_CR] = ACTIONS(3325), + [anon_sym_CR_LF] = ACTIONS(3325), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_DOT] = ACTIONS(3325), + [anon_sym_as] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_COMMA] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_PIPE] = ACTIONS(3325), + [anon_sym_fn] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3325), + [anon_sym_mut] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_QMARK] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_go] = ACTIONS(3325), + [anon_sym_spawn] = ACTIONS(3325), + [anon_sym_json_DOTdecode] = ACTIONS(3325), + [anon_sym_LBRACK2] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_LT_DASH] = ACTIONS(3325), + [anon_sym_LT_LT] = ACTIONS(3325), + [anon_sym_GT_GT] = ACTIONS(3325), + [anon_sym_GT_GT_GT] = ACTIONS(3325), + [anon_sym_AMP_CARET] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_or] = ACTIONS(3325), + [sym_none] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_nil] = ACTIONS(3325), + [anon_sym_QMARK_DOT] = ACTIONS(3325), + [anon_sym_POUND_LBRACK] = ACTIONS(3325), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_DOLLARif] = ACTIONS(3325), + [anon_sym_is] = ACTIONS(3325), + [anon_sym_BANGis] = ACTIONS(3325), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3325), + [anon_sym_match] = ACTIONS(3325), + [anon_sym_select] = ACTIONS(3325), + [anon_sym_lock] = ACTIONS(3325), + [anon_sym_rlock] = ACTIONS(3325), + [anon_sym_unsafe] = ACTIONS(3325), + [anon_sym_sql] = ACTIONS(3325), + [sym_int_literal] = ACTIONS(3325), + [sym_float_literal] = ACTIONS(3325), + [sym_rune_literal] = ACTIONS(3325), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_shared] = ACTIONS(3325), + [anon_sym_map_LBRACK] = ACTIONS(3325), + [anon_sym_chan] = ACTIONS(3325), + [anon_sym_thread] = ACTIONS(3325), + [anon_sym_atomic] = ACTIONS(3325), + [sym___double_quote] = ACTIONS(3325), + [sym___single_quote] = ACTIONS(3325), + [sym___c_double_quote] = ACTIONS(3325), + [sym___c_single_quote] = ACTIONS(3325), + [sym___r_double_quote] = ACTIONS(3325), + [sym___r_single_quote] = ACTIONS(3325), }, [1227] = { - [sym_identifier] = ACTIONS(2882), - [anon_sym_LF] = ACTIONS(2882), - [anon_sym_CR] = ACTIONS(2882), - [anon_sym_CR_LF] = ACTIONS(2882), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_as] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_fn] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_GT] = ACTIONS(2882), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_mut] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_go] = ACTIONS(2882), - [anon_sym_spawn] = ACTIONS(2882), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2882), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2882), - [sym_none] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_nil] = ACTIONS(2882), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_DOLLARif] = ACTIONS(2882), - [anon_sym_is] = ACTIONS(2882), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2882), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_select] = ACTIONS(2882), - [anon_sym_lock] = ACTIONS(2882), - [anon_sym_rlock] = ACTIONS(2882), - [anon_sym_unsafe] = ACTIONS(2882), - [anon_sym_sql] = ACTIONS(2882), - [sym_int_literal] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2882), - [anon_sym_shared] = ACTIONS(2882), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2882), - [anon_sym_thread] = ACTIONS(2882), - [anon_sym_atomic] = ACTIONS(2882), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_COMMA] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2748), + [anon_sym_BANG_EQ] = ACTIONS(2748), + [anon_sym_LT_EQ] = ACTIONS(2748), + [anon_sym_GT_EQ] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2748), + [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [anon_sym_LT_LT] = ACTIONS(2748), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2748), + [anon_sym_AMP_CARET] = ACTIONS(2748), + [anon_sym_AMP_AMP] = ACTIONS(2748), + [anon_sym_PIPE_PIPE] = ACTIONS(2748), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2748), + [anon_sym_POUND_LBRACK] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2748), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, [1228] = { - [sym_identifier] = ACTIONS(2886), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_CR] = ACTIONS(2886), - [anon_sym_CR_LF] = ACTIONS(2886), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_COMMA] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2886), - [anon_sym_BANG_EQ] = ACTIONS(2886), - [anon_sym_LT_EQ] = ACTIONS(2886), - [anon_sym_GT_EQ] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [anon_sym_LT_LT] = ACTIONS(2886), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2886), - [anon_sym_AMP_CARET] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_PIPE_PIPE] = ACTIONS(2886), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2886), - [anon_sym_POUND_LBRACK] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2886), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3241), + [sym___single_quote] = ACTIONS(3241), + [sym___c_double_quote] = ACTIONS(3241), + [sym___c_single_quote] = ACTIONS(3241), + [sym___r_double_quote] = ACTIONS(3241), + [sym___r_single_quote] = ACTIONS(3241), }, [1229] = { - [sym_identifier] = ACTIONS(2894), - [anon_sym_LF] = ACTIONS(2894), - [anon_sym_CR] = ACTIONS(2894), - [anon_sym_CR_LF] = ACTIONS(2894), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_COMMA] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2894), - [anon_sym_BANG_EQ] = ACTIONS(2894), - [anon_sym_LT_EQ] = ACTIONS(2894), - [anon_sym_GT_EQ] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [anon_sym_LT_LT] = ACTIONS(2894), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2894), - [anon_sym_AMP_CARET] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_PIPE_PIPE] = ACTIONS(2894), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2894), - [anon_sym_POUND_LBRACK] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2894), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LF] = ACTIONS(3080), + [anon_sym_CR] = ACTIONS(3080), + [anon_sym_CR_LF] = ACTIONS(3080), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_RBRACE] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + [sym___double_quote] = ACTIONS(3080), + [sym___single_quote] = ACTIONS(3080), + [sym___c_double_quote] = ACTIONS(3080), + [sym___c_single_quote] = ACTIONS(3080), + [sym___r_double_quote] = ACTIONS(3080), + [sym___r_single_quote] = ACTIONS(3080), }, [1230] = { - [sym_identifier] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(2910), - [anon_sym_CR] = ACTIONS(2910), - [anon_sym_CR_LF] = ACTIONS(2910), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_COMMA] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_LT_EQ] = ACTIONS(2910), - [anon_sym_GT_EQ] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2910), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2910), - [anon_sym_AMP_CARET] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_PIPE_PIPE] = ACTIONS(2910), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2910), - [anon_sym_POUND_LBRACK] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2910), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3072), + [anon_sym_POUND_LBRACK] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3072), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), }, [1231] = { - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_PERCENT] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_GT] = ACTIONS(2914), - [anon_sym_EQ_EQ] = ACTIONS(2914), - [anon_sym_BANG_EQ] = ACTIONS(2914), - [anon_sym_LT_EQ] = ACTIONS(2914), - [anon_sym_GT_EQ] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [anon_sym_LT_LT] = ACTIONS(2914), - [anon_sym_GT_GT] = ACTIONS(2914), - [anon_sym_GT_GT_GT] = ACTIONS(2914), - [anon_sym_AMP_CARET] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_PIPE_PIPE] = ACTIONS(2914), - [anon_sym_or] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_QMARK_DOT] = ACTIONS(2914), - [anon_sym_POUND_LBRACK] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_is] = ACTIONS(2914), - [anon_sym_BANGis] = ACTIONS(2914), - [anon_sym_in] = ACTIONS(2914), - [anon_sym_BANGin] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), + [sym_identifier] = ACTIONS(3329), + [anon_sym_LF] = ACTIONS(3329), + [anon_sym_CR] = ACTIONS(3329), + [anon_sym_CR_LF] = ACTIONS(3329), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_DOT] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_fn] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_mut] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_QMARK] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_go] = ACTIONS(3329), + [anon_sym_spawn] = ACTIONS(3329), + [anon_sym_json_DOTdecode] = ACTIONS(3329), + [anon_sym_LBRACK2] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_LT_DASH] = ACTIONS(3329), + [anon_sym_LT_LT] = ACTIONS(3329), + [anon_sym_GT_GT] = ACTIONS(3329), + [anon_sym_GT_GT_GT] = ACTIONS(3329), + [anon_sym_AMP_CARET] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_or] = ACTIONS(3329), + [sym_none] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_nil] = ACTIONS(3329), + [anon_sym_QMARK_DOT] = ACTIONS(3329), + [anon_sym_POUND_LBRACK] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_DOLLARif] = ACTIONS(3329), + [anon_sym_is] = ACTIONS(3329), + [anon_sym_BANGis] = ACTIONS(3329), + [anon_sym_in] = ACTIONS(3329), + [anon_sym_BANGin] = ACTIONS(3329), + [anon_sym_match] = ACTIONS(3329), + [anon_sym_select] = ACTIONS(3329), + [anon_sym_lock] = ACTIONS(3329), + [anon_sym_rlock] = ACTIONS(3329), + [anon_sym_unsafe] = ACTIONS(3329), + [anon_sym_sql] = ACTIONS(3329), + [sym_int_literal] = ACTIONS(3329), + [sym_float_literal] = ACTIONS(3329), + [sym_rune_literal] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_shared] = ACTIONS(3329), + [anon_sym_map_LBRACK] = ACTIONS(3329), + [anon_sym_chan] = ACTIONS(3329), + [anon_sym_thread] = ACTIONS(3329), + [anon_sym_atomic] = ACTIONS(3329), + [sym___double_quote] = ACTIONS(3329), + [sym___single_quote] = ACTIONS(3329), + [sym___c_double_quote] = ACTIONS(3329), + [sym___c_single_quote] = ACTIONS(3329), + [sym___r_double_quote] = ACTIONS(3329), + [sym___r_single_quote] = ACTIONS(3329), }, [1232] = { - [sym_identifier] = ACTIONS(3175), - [anon_sym_LF] = ACTIONS(3175), - [anon_sym_CR] = ACTIONS(3175), - [anon_sym_CR_LF] = ACTIONS(3175), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LF] = ACTIONS(2956), + [anon_sym_CR] = ACTIONS(2956), + [anon_sym_CR_LF] = ACTIONS(2956), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2956), + [anon_sym_DOT] = ACTIONS(2956), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2956), + [anon_sym_RBRACE] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_fn] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_EQ_EQ] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2956), + [anon_sym_GT_EQ] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_mut] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_go] = ACTIONS(2956), + [anon_sym_spawn] = ACTIONS(2956), + [anon_sym_json_DOTdecode] = ACTIONS(2956), + [anon_sym_LBRACK2] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_GT_GT_GT] = ACTIONS(2956), + [anon_sym_AMP_CARET] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2956), + [sym_none] = ACTIONS(2956), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [sym_nil] = ACTIONS(2956), + [anon_sym_QMARK_DOT] = ACTIONS(2956), + [anon_sym_POUND_LBRACK] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_DOLLARif] = ACTIONS(2956), + [anon_sym_is] = ACTIONS(2956), + [anon_sym_BANGis] = ACTIONS(2956), + [anon_sym_in] = ACTIONS(2956), + [anon_sym_BANGin] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_select] = ACTIONS(2956), + [anon_sym_lock] = ACTIONS(2956), + [anon_sym_rlock] = ACTIONS(2956), + [anon_sym_unsafe] = ACTIONS(2956), + [anon_sym_sql] = ACTIONS(2956), + [sym_int_literal] = ACTIONS(2956), + [sym_float_literal] = ACTIONS(2956), + [sym_rune_literal] = ACTIONS(2956), + [anon_sym_AT] = ACTIONS(2956), + [anon_sym_shared] = ACTIONS(2956), + [anon_sym_map_LBRACK] = ACTIONS(2956), + [anon_sym_chan] = ACTIONS(2956), + [anon_sym_thread] = ACTIONS(2956), + [anon_sym_atomic] = ACTIONS(2956), + [sym___double_quote] = ACTIONS(2956), + [sym___single_quote] = ACTIONS(2956), + [sym___c_double_quote] = ACTIONS(2956), + [sym___c_single_quote] = ACTIONS(2956), + [sym___r_double_quote] = ACTIONS(2956), + [sym___r_single_quote] = ACTIONS(2956), }, [1233] = { - [sym_identifier] = ACTIONS(2926), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_CR] = ACTIONS(2926), - [anon_sym_CR_LF] = ACTIONS(2926), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_as] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_fn] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_LT_EQ] = ACTIONS(2926), - [anon_sym_GT_EQ] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2926), - [anon_sym_mut] = ACTIONS(2926), - [anon_sym_PLUS_PLUS] = ACTIONS(2926), - [anon_sym_DASH_DASH] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_go] = ACTIONS(2926), - [anon_sym_spawn] = ACTIONS(2926), - [anon_sym_json_DOTdecode] = ACTIONS(2926), - [anon_sym_LBRACK2] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_GT_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_CARET] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_or] = ACTIONS(2926), - [sym_none] = ACTIONS(2926), - [sym_true] = ACTIONS(2926), - [sym_false] = ACTIONS(2926), - [sym_nil] = ACTIONS(2926), - [anon_sym_QMARK_DOT] = ACTIONS(2926), - [anon_sym_POUND_LBRACK] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_DOLLARif] = ACTIONS(2926), - [anon_sym_is] = ACTIONS(2926), - [anon_sym_BANGis] = ACTIONS(2926), - [anon_sym_in] = ACTIONS(2926), - [anon_sym_BANGin] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_select] = ACTIONS(2926), - [anon_sym_lock] = ACTIONS(2926), - [anon_sym_rlock] = ACTIONS(2926), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_sql] = ACTIONS(2926), - [sym_int_literal] = ACTIONS(2926), - [sym_float_literal] = ACTIONS(2926), - [sym_rune_literal] = ACTIONS(2926), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_shared] = ACTIONS(2926), - [anon_sym_map_LBRACK] = ACTIONS(2926), - [anon_sym_chan] = ACTIONS(2926), - [anon_sym_thread] = ACTIONS(2926), - [anon_sym_atomic] = ACTIONS(2926), - [sym___double_quote] = ACTIONS(2926), - [sym___single_quote] = ACTIONS(2926), - [sym___c_double_quote] = ACTIONS(2926), - [sym___c_single_quote] = ACTIONS(2926), - [sym___r_double_quote] = ACTIONS(2926), - [sym___r_single_quote] = ACTIONS(2926), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LF] = ACTIONS(3084), + [anon_sym_CR] = ACTIONS(3084), + [anon_sym_CR_LF] = ACTIONS(3084), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_RBRACE] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3084), + [anon_sym_POUND_LBRACK] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3084), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_AT] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), + [sym___double_quote] = ACTIONS(3084), + [sym___single_quote] = ACTIONS(3084), + [sym___c_double_quote] = ACTIONS(3084), + [sym___c_single_quote] = ACTIONS(3084), + [sym___r_double_quote] = ACTIONS(3084), + [sym___r_single_quote] = ACTIONS(3084), }, [1234] = { - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_as] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_PERCENT] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_EQ] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_QMARK] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3183), - [anon_sym_GT_GT] = ACTIONS(3183), - [anon_sym_GT_GT_GT] = ACTIONS(3183), - [anon_sym_AMP_CARET] = ACTIONS(3183), - [anon_sym_AMP_AMP] = ACTIONS(3183), - [anon_sym_PIPE_PIPE] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(3183), - [anon_sym_POUND_LBRACK] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(3183), - [anon_sym_BANGis] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_BANGin] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3313), + [anon_sym_LF] = ACTIONS(3313), + [anon_sym_CR] = ACTIONS(3313), + [anon_sym_CR_LF] = ACTIONS(3313), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3313), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_COMMA] = ACTIONS(3313), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_PIPE] = ACTIONS(3313), + [anon_sym_fn] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_SLASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_GT] = ACTIONS(3313), + [anon_sym_EQ_EQ] = ACTIONS(3313), + [anon_sym_BANG_EQ] = ACTIONS(3313), + [anon_sym_LT_EQ] = ACTIONS(3313), + [anon_sym_GT_EQ] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_struct] = ACTIONS(3313), + [anon_sym_mut] = ACTIONS(3313), + [anon_sym_PLUS_PLUS] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3313), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_go] = ACTIONS(3313), + [anon_sym_spawn] = ACTIONS(3313), + [anon_sym_json_DOTdecode] = ACTIONS(3313), + [anon_sym_LBRACK2] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_LT_DASH] = ACTIONS(3313), + [anon_sym_LT_LT] = ACTIONS(3313), + [anon_sym_GT_GT] = ACTIONS(3313), + [anon_sym_GT_GT_GT] = ACTIONS(3313), + [anon_sym_AMP_CARET] = ACTIONS(3313), + [anon_sym_AMP_AMP] = ACTIONS(3313), + [anon_sym_PIPE_PIPE] = ACTIONS(3313), + [anon_sym_or] = ACTIONS(3313), + [sym_none] = ACTIONS(3313), + [sym_true] = ACTIONS(3313), + [sym_false] = ACTIONS(3313), + [sym_nil] = ACTIONS(3313), + [anon_sym_QMARK_DOT] = ACTIONS(3313), + [anon_sym_POUND_LBRACK] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_DOLLARif] = ACTIONS(3313), + [anon_sym_is] = ACTIONS(3313), + [anon_sym_BANGis] = ACTIONS(3313), + [anon_sym_in] = ACTIONS(3313), + [anon_sym_BANGin] = ACTIONS(3313), + [anon_sym_match] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_rlock] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_sql] = ACTIONS(3313), + [sym_int_literal] = ACTIONS(3313), + [sym_float_literal] = ACTIONS(3313), + [sym_rune_literal] = ACTIONS(3313), + [anon_sym_AT] = ACTIONS(3313), + [anon_sym_shared] = ACTIONS(3313), + [anon_sym_map_LBRACK] = ACTIONS(3313), + [anon_sym_chan] = ACTIONS(3313), + [anon_sym_thread] = ACTIONS(3313), + [anon_sym_atomic] = ACTIONS(3313), + [sym___double_quote] = ACTIONS(3313), + [sym___single_quote] = ACTIONS(3313), + [sym___c_double_quote] = ACTIONS(3313), + [sym___c_single_quote] = ACTIONS(3313), + [sym___r_double_quote] = ACTIONS(3313), + [sym___r_single_quote] = ACTIONS(3313), }, [1235] = { - [sym_identifier] = ACTIONS(2798), - [anon_sym_LF] = ACTIONS(2798), - [anon_sym_CR] = ACTIONS(2798), - [anon_sym_CR_LF] = ACTIONS(2798), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [sym_identifier] = ACTIONS(3152), + [anon_sym_LF] = ACTIONS(3152), + [anon_sym_CR] = ACTIONS(3152), + [anon_sym_CR_LF] = ACTIONS(3152), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3152), + [anon_sym_mut] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_go] = ACTIONS(3152), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(3152), + [anon_sym_LBRACK2] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_LT_DASH] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_GT_GT_GT] = ACTIONS(3152), + [anon_sym_AMP_CARET] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_PIPE_PIPE] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [sym_none] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_nil] = ACTIONS(3152), + [anon_sym_QMARK_DOT] = ACTIONS(3152), + [anon_sym_POUND_LBRACK] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_DOLLARif] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_BANGin] = ACTIONS(3152), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_select] = ACTIONS(3152), + [anon_sym_lock] = ACTIONS(3152), + [anon_sym_rlock] = ACTIONS(3152), + [anon_sym_unsafe] = ACTIONS(3152), + [anon_sym_sql] = ACTIONS(3152), + [sym_int_literal] = ACTIONS(3152), + [sym_float_literal] = ACTIONS(3152), + [sym_rune_literal] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_shared] = ACTIONS(3152), + [anon_sym_map_LBRACK] = ACTIONS(3152), + [anon_sym_chan] = ACTIONS(3152), + [anon_sym_thread] = ACTIONS(3152), + [anon_sym_atomic] = ACTIONS(3152), + [sym___double_quote] = ACTIONS(3152), + [sym___single_quote] = ACTIONS(3152), + [sym___c_double_quote] = ACTIONS(3152), + [sym___c_single_quote] = ACTIONS(3152), + [sym___r_double_quote] = ACTIONS(3152), + [sym___r_single_quote] = ACTIONS(3152), }, [1236] = { - [sym_identifier] = ACTIONS(3078), - [anon_sym_LF] = ACTIONS(3078), - [anon_sym_CR] = ACTIONS(3078), - [anon_sym_CR_LF] = ACTIONS(3078), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_as] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_COMMA] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_fn] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_PERCENT] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_EQ_EQ] = ACTIONS(3078), - [anon_sym_BANG_EQ] = ACTIONS(3078), - [anon_sym_LT_EQ] = ACTIONS(3078), - [anon_sym_GT_EQ] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_mut] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [anon_sym_QMARK] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_go] = ACTIONS(3078), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(3078), - [anon_sym_LBRACK2] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_CARET] = ACTIONS(3078), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_LT_DASH] = ACTIONS(3078), - [anon_sym_LT_LT] = ACTIONS(3078), - [anon_sym_GT_GT] = ACTIONS(3078), - [anon_sym_GT_GT_GT] = ACTIONS(3078), - [anon_sym_AMP_CARET] = ACTIONS(3078), - [anon_sym_AMP_AMP] = ACTIONS(3078), - [anon_sym_PIPE_PIPE] = ACTIONS(3078), - [anon_sym_or] = ACTIONS(3078), - [sym_none] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_nil] = ACTIONS(3078), - [anon_sym_QMARK_DOT] = ACTIONS(3078), - [anon_sym_POUND_LBRACK] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_DOLLARif] = ACTIONS(3078), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3078), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_BANGin] = ACTIONS(3078), - [anon_sym_match] = ACTIONS(3078), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3078), - [anon_sym_rlock] = ACTIONS(3078), - [anon_sym_unsafe] = ACTIONS(3078), - [anon_sym_sql] = ACTIONS(3078), - [sym_int_literal] = ACTIONS(3078), - [sym_float_literal] = ACTIONS(3078), - [sym_rune_literal] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_shared] = ACTIONS(3078), - [anon_sym_map_LBRACK] = ACTIONS(3078), - [anon_sym_chan] = ACTIONS(3078), - [anon_sym_thread] = ACTIONS(3078), - [anon_sym_atomic] = ACTIONS(3078), - [sym___double_quote] = ACTIONS(3078), - [sym___single_quote] = ACTIONS(3078), - [sym___c_double_quote] = ACTIONS(3078), - [sym___c_single_quote] = ACTIONS(3078), - [sym___r_double_quote] = ACTIONS(3078), - [sym___r_single_quote] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_CR] = ACTIONS(3230), + [anon_sym_CR_LF] = ACTIONS(3230), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), }, [1237] = { - [sym_identifier] = ACTIONS(2802), - [anon_sym_LF] = ACTIONS(2802), - [anon_sym_CR] = ACTIONS(2802), - [anon_sym_CR_LF] = ACTIONS(2802), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [anon_sym_AT] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_CR] = ACTIONS(2980), + [anon_sym_CR_LF] = ACTIONS(2980), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2980), + [anon_sym_DOT] = ACTIONS(2980), + [anon_sym_as] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_RBRACE] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_mut] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_go] = ACTIONS(2980), + [anon_sym_spawn] = ACTIONS(2980), + [anon_sym_json_DOTdecode] = ACTIONS(2980), + [anon_sym_LBRACK2] = ACTIONS(2980), + [anon_sym_TILDE] = ACTIONS(2980), + [anon_sym_CARET] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2980), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_GT_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_CARET] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2980), + [sym_none] = ACTIONS(2980), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [sym_nil] = ACTIONS(2980), + [anon_sym_QMARK_DOT] = ACTIONS(2980), + [anon_sym_POUND_LBRACK] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_DOLLARif] = ACTIONS(2980), + [anon_sym_is] = ACTIONS(2980), + [anon_sym_BANGis] = ACTIONS(2980), + [anon_sym_in] = ACTIONS(2980), + [anon_sym_BANGin] = ACTIONS(2980), + [anon_sym_match] = ACTIONS(2980), + [anon_sym_select] = ACTIONS(2980), + [anon_sym_lock] = ACTIONS(2980), + [anon_sym_rlock] = ACTIONS(2980), + [anon_sym_unsafe] = ACTIONS(2980), + [anon_sym_sql] = ACTIONS(2980), + [sym_int_literal] = ACTIONS(2980), + [sym_float_literal] = ACTIONS(2980), + [sym_rune_literal] = ACTIONS(2980), + [anon_sym_AT] = ACTIONS(2980), + [anon_sym_shared] = ACTIONS(2980), + [anon_sym_map_LBRACK] = ACTIONS(2980), + [anon_sym_chan] = ACTIONS(2980), + [anon_sym_thread] = ACTIONS(2980), + [anon_sym_atomic] = ACTIONS(2980), + [sym___double_quote] = ACTIONS(2980), + [sym___single_quote] = ACTIONS(2980), + [sym___c_double_quote] = ACTIONS(2980), + [sym___c_single_quote] = ACTIONS(2980), + [sym___r_double_quote] = ACTIONS(2980), + [sym___r_single_quote] = ACTIONS(2980), }, [1238] = { - [sym_identifier] = ACTIONS(2938), - [anon_sym_LF] = ACTIONS(2938), - [anon_sym_CR] = ACTIONS(2938), - [anon_sym_CR_LF] = ACTIONS(2938), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2938), - [anon_sym_as] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_COMMA] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_fn] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_PERCENT] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_GT] = ACTIONS(2938), - [anon_sym_EQ_EQ] = ACTIONS(2938), - [anon_sym_BANG_EQ] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_mut] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_QMARK] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_go] = ACTIONS(2938), - [anon_sym_spawn] = ACTIONS(2938), - [anon_sym_json_DOTdecode] = ACTIONS(2938), - [anon_sym_LBRACK2] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_LT_DASH] = ACTIONS(2938), - [anon_sym_LT_LT] = ACTIONS(2938), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_GT_GT_GT] = ACTIONS(2938), - [anon_sym_AMP_CARET] = ACTIONS(2938), - [anon_sym_AMP_AMP] = ACTIONS(2938), - [anon_sym_PIPE_PIPE] = ACTIONS(2938), - [anon_sym_or] = ACTIONS(2938), - [sym_none] = ACTIONS(2938), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_nil] = ACTIONS(2938), - [anon_sym_QMARK_DOT] = ACTIONS(2938), - [anon_sym_POUND_LBRACK] = ACTIONS(2938), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_DOLLARif] = ACTIONS(2938), - [anon_sym_is] = ACTIONS(2938), - [anon_sym_BANGis] = ACTIONS(2938), - [anon_sym_in] = ACTIONS(2938), - [anon_sym_BANGin] = ACTIONS(2938), - [anon_sym_match] = ACTIONS(2938), - [anon_sym_select] = ACTIONS(2938), - [anon_sym_lock] = ACTIONS(2938), - [anon_sym_rlock] = ACTIONS(2938), - [anon_sym_unsafe] = ACTIONS(2938), - [anon_sym_sql] = ACTIONS(2938), - [sym_int_literal] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), - [sym_rune_literal] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2938), - [anon_sym_shared] = ACTIONS(2938), - [anon_sym_map_LBRACK] = ACTIONS(2938), - [anon_sym_chan] = ACTIONS(2938), - [anon_sym_thread] = ACTIONS(2938), - [anon_sym_atomic] = ACTIONS(2938), - [sym___double_quote] = ACTIONS(2938), - [sym___single_quote] = ACTIONS(2938), - [sym___c_double_quote] = ACTIONS(2938), - [sym___c_single_quote] = ACTIONS(2938), - [sym___r_double_quote] = ACTIONS(2938), - [sym___r_single_quote] = ACTIONS(2938), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LF] = ACTIONS(3186), + [anon_sym_CR] = ACTIONS(3186), + [anon_sym_CR_LF] = ACTIONS(3186), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3186), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3186), + [anon_sym_AMP_CARET] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3186), + [anon_sym_POUND_LBRACK] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3186), + [sym_rune_literal] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3186), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3186), + [sym___single_quote] = ACTIONS(3186), + [sym___c_double_quote] = ACTIONS(3186), + [sym___c_single_quote] = ACTIONS(3186), + [sym___r_double_quote] = ACTIONS(3186), + [sym___r_single_quote] = ACTIONS(3186), }, [1239] = { - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [1240] = { - [sym_identifier] = ACTIONS(3038), - [anon_sym_LF] = ACTIONS(3038), - [anon_sym_CR] = ACTIONS(3038), - [anon_sym_CR_LF] = ACTIONS(3038), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_COMMA] = ACTIONS(3038), - [anon_sym_RBRACE] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_fn] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_PERCENT] = ACTIONS(3038), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_GT] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3038), - [anon_sym_BANG_EQ] = ACTIONS(3038), - [anon_sym_LT_EQ] = ACTIONS(3038), - [anon_sym_GT_EQ] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_mut] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3038), - [anon_sym_DASH_DASH] = ACTIONS(3038), - [anon_sym_QMARK] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_go] = ACTIONS(3038), - [anon_sym_spawn] = ACTIONS(3038), - [anon_sym_json_DOTdecode] = ACTIONS(3038), - [anon_sym_LBRACK2] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LT_DASH] = ACTIONS(3038), - [anon_sym_LT_LT] = ACTIONS(3038), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_GT_GT_GT] = ACTIONS(3038), - [anon_sym_AMP_CARET] = ACTIONS(3038), - [anon_sym_AMP_AMP] = ACTIONS(3038), - [anon_sym_PIPE_PIPE] = ACTIONS(3038), - [anon_sym_or] = ACTIONS(3038), - [sym_none] = ACTIONS(3038), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_nil] = ACTIONS(3038), - [anon_sym_QMARK_DOT] = ACTIONS(3038), - [anon_sym_POUND_LBRACK] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_DOLLARif] = ACTIONS(3038), - [anon_sym_is] = ACTIONS(3038), - [anon_sym_BANGis] = ACTIONS(3038), - [anon_sym_in] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3038), - [anon_sym_match] = ACTIONS(3038), - [anon_sym_select] = ACTIONS(3038), - [anon_sym_lock] = ACTIONS(3038), - [anon_sym_rlock] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(3038), - [anon_sym_sql] = ACTIONS(3038), - [sym_int_literal] = ACTIONS(3038), - [sym_float_literal] = ACTIONS(3038), - [sym_rune_literal] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_shared] = ACTIONS(3038), - [anon_sym_map_LBRACK] = ACTIONS(3038), - [anon_sym_chan] = ACTIONS(3038), - [anon_sym_thread] = ACTIONS(3038), - [anon_sym_atomic] = ACTIONS(3038), - [sym___double_quote] = ACTIONS(3038), - [sym___single_quote] = ACTIONS(3038), - [sym___c_double_quote] = ACTIONS(3038), - [sym___c_single_quote] = ACTIONS(3038), - [sym___r_double_quote] = ACTIONS(3038), - [sym___r_single_quote] = ACTIONS(3038), - }, - [1241] = { - [sym_identifier] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3042), - [anon_sym_CR] = ACTIONS(3042), - [anon_sym_CR_LF] = ACTIONS(3042), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3042), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_COMMA] = ACTIONS(3042), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3042), - [anon_sym_BANG_EQ] = ACTIONS(3042), - [anon_sym_LT_EQ] = ACTIONS(3042), - [anon_sym_GT_EQ] = ACTIONS(3042), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3042), - [anon_sym_DASH_DASH] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3042), - [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3042), - [anon_sym_LT_LT] = ACTIONS(3042), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3042), - [anon_sym_AMP_CARET] = ACTIONS(3042), - [anon_sym_AMP_AMP] = ACTIONS(3042), - [anon_sym_PIPE_PIPE] = ACTIONS(3042), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3042), - [anon_sym_POUND_LBRACK] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3042), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3042), - [sym_rune_literal] = ACTIONS(3042), - [anon_sym_AT] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3042), - [sym___single_quote] = ACTIONS(3042), - [sym___c_double_quote] = ACTIONS(3042), - [sym___c_single_quote] = ACTIONS(3042), - [sym___r_double_quote] = ACTIONS(3042), - [sym___r_single_quote] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + [sym_rune_literal] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3202), + [sym___single_quote] = ACTIONS(3202), + [sym___c_double_quote] = ACTIONS(3202), + [sym___c_single_quote] = ACTIONS(3202), + [sym___r_double_quote] = ACTIONS(3202), + [sym___r_single_quote] = ACTIONS(3202), + }, + [1240] = { + [sym_identifier] = ACTIONS(3206), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_CR] = ACTIONS(3206), + [anon_sym_CR_LF] = ACTIONS(3206), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3206), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3206), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3206), + [anon_sym_AMP_CARET] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3206), + [anon_sym_POUND_LBRACK] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3206), + [sym_rune_literal] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3206), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3206), + [sym___single_quote] = ACTIONS(3206), + [sym___c_double_quote] = ACTIONS(3206), + [sym___c_single_quote] = ACTIONS(3206), + [sym___r_double_quote] = ACTIONS(3206), + [sym___r_single_quote] = ACTIONS(3206), + }, + [1241] = { + [sym_identifier] = ACTIONS(2976), + [anon_sym_LF] = ACTIONS(2976), + [anon_sym_CR] = ACTIONS(2976), + [anon_sym_CR_LF] = ACTIONS(2976), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(2976), + [anon_sym_as] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_RBRACE] = ACTIONS(2976), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2976), + [anon_sym_fn] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2976), + [anon_sym_PERCENT] = ACTIONS(2976), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_GT] = ACTIONS(2976), + [anon_sym_EQ_EQ] = ACTIONS(2976), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_LT_EQ] = ACTIONS(2976), + [anon_sym_GT_EQ] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_mut] = ACTIONS(2976), + [anon_sym_PLUS_PLUS] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2976), + [anon_sym_QMARK] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_go] = ACTIONS(2976), + [anon_sym_spawn] = ACTIONS(2976), + [anon_sym_json_DOTdecode] = ACTIONS(2976), + [anon_sym_LBRACK2] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_CARET] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_LT_DASH] = ACTIONS(2976), + [anon_sym_LT_LT] = ACTIONS(2976), + [anon_sym_GT_GT] = ACTIONS(2976), + [anon_sym_GT_GT_GT] = ACTIONS(2976), + [anon_sym_AMP_CARET] = ACTIONS(2976), + [anon_sym_AMP_AMP] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2976), + [sym_none] = ACTIONS(2976), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [sym_nil] = ACTIONS(2976), + [anon_sym_QMARK_DOT] = ACTIONS(2976), + [anon_sym_POUND_LBRACK] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_DOLLARif] = ACTIONS(2976), + [anon_sym_is] = ACTIONS(2976), + [anon_sym_BANGis] = ACTIONS(2976), + [anon_sym_in] = ACTIONS(2976), + [anon_sym_BANGin] = ACTIONS(2976), + [anon_sym_match] = ACTIONS(2976), + [anon_sym_select] = ACTIONS(2976), + [anon_sym_lock] = ACTIONS(2976), + [anon_sym_rlock] = ACTIONS(2976), + [anon_sym_unsafe] = ACTIONS(2976), + [anon_sym_sql] = ACTIONS(2976), + [sym_int_literal] = ACTIONS(2976), + [sym_float_literal] = ACTIONS(2976), + [sym_rune_literal] = ACTIONS(2976), + [anon_sym_AT] = ACTIONS(2976), + [anon_sym_shared] = ACTIONS(2976), + [anon_sym_map_LBRACK] = ACTIONS(2976), + [anon_sym_chan] = ACTIONS(2976), + [anon_sym_thread] = ACTIONS(2976), + [anon_sym_atomic] = ACTIONS(2976), + [sym___double_quote] = ACTIONS(2976), + [sym___single_quote] = ACTIONS(2976), + [sym___c_double_quote] = ACTIONS(2976), + [sym___c_single_quote] = ACTIONS(2976), + [sym___r_double_quote] = ACTIONS(2976), + [sym___r_single_quote] = ACTIONS(2976), }, [1242] = { + [sym_identifier] = ACTIONS(3210), + [anon_sym_LF] = ACTIONS(3210), + [anon_sym_CR] = ACTIONS(3210), + [anon_sym_CR_LF] = ACTIONS(3210), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_COMMA] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3210), + [anon_sym_BANG_EQ] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3210), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3210), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3210), + [anon_sym_AMP_CARET] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_PIPE_PIPE] = ACTIONS(3210), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3210), + [anon_sym_POUND_LBRACK] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3210), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3210), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3210), + [sym_rune_literal] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3210), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3210), + [sym___single_quote] = ACTIONS(3210), + [sym___c_double_quote] = ACTIONS(3210), + [sym___c_single_quote] = ACTIONS(3210), + [sym___r_double_quote] = ACTIONS(3210), + [sym___r_single_quote] = ACTIONS(3210), + }, + [1243] = { + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [anon_sym_EQ_EQ] = ACTIONS(3297), + [anon_sym_BANG_EQ] = ACTIONS(3297), + [anon_sym_LT_EQ] = ACTIONS(3297), + [anon_sym_GT_EQ] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_GT_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_CARET] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_or] = ACTIONS(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3297), + [anon_sym_POUND_LBRACK] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [sym___double_quote] = ACTIONS(3297), + [sym___single_quote] = ACTIONS(3297), + [sym___c_double_quote] = ACTIONS(3297), + [sym___c_single_quote] = ACTIONS(3297), + [sym___r_double_quote] = ACTIONS(3297), + [sym___r_single_quote] = ACTIONS(3297), + }, + [1244] = { + [sym_identifier] = ACTIONS(3289), + [anon_sym_LF] = ACTIONS(3289), + [anon_sym_CR] = ACTIONS(3289), + [anon_sym_CR_LF] = ACTIONS(3289), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3289), + [anon_sym_BANG_EQ] = ACTIONS(3289), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_GT_EQ] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3289), + [anon_sym_GT_GT_GT] = ACTIONS(3289), + [anon_sym_AMP_CARET] = ACTIONS(3289), + [anon_sym_AMP_AMP] = ACTIONS(3289), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_or] = ACTIONS(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3289), + [anon_sym_POUND_LBRACK] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3289), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [sym___double_quote] = ACTIONS(3289), + [sym___single_quote] = ACTIONS(3289), + [sym___c_double_quote] = ACTIONS(3289), + [sym___c_single_quote] = ACTIONS(3289), + [sym___r_double_quote] = ACTIONS(3289), + [sym___r_single_quote] = ACTIONS(3289), + }, + [1245] = { + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3237), + [sym___single_quote] = ACTIONS(3237), + [sym___c_double_quote] = ACTIONS(3237), + [sym___c_single_quote] = ACTIONS(3237), + [sym___r_double_quote] = ACTIONS(3237), + [sym___r_single_quote] = ACTIONS(3237), + }, + [1246] = { [sym_identifier] = ACTIONS(3118), [anon_sym_LF] = ACTIONS(3118), [anon_sym_CR] = ACTIONS(3118), [anon_sym_CR_LF] = ACTIONS(3118), - [sym_comment] = ACTIONS(493), + [sym_comment] = ACTIONS(495), [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_DOT] = ACTIONS(3118), [anon_sym_as] = ACTIONS(3118), [anon_sym_LBRACE] = ACTIONS(3118), [anon_sym_COMMA] = ACTIONS(3118), @@ -162776,4465 +163934,3525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3118), [sym___r_single_quote] = ACTIONS(3118), }, - [1243] = { - [sym_identifier] = ACTIONS(3171), - [anon_sym_LF] = ACTIONS(3171), - [anon_sym_CR] = ACTIONS(3171), - [anon_sym_CR_LF] = ACTIONS(3171), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), - }, - [1244] = { - [sym_identifier] = ACTIONS(3163), - [anon_sym_LF] = ACTIONS(3163), - [anon_sym_CR] = ACTIONS(3163), - [anon_sym_CR_LF] = ACTIONS(3163), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), - }, - [1245] = { - [sym_identifier] = ACTIONS(2958), - [anon_sym_LF] = ACTIONS(2958), - [anon_sym_CR] = ACTIONS(2958), - [anon_sym_CR_LF] = ACTIONS(2958), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_as] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2958), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_fn] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_PERCENT] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_GT] = ACTIONS(2958), - [anon_sym_EQ_EQ] = ACTIONS(2958), - [anon_sym_BANG_EQ] = ACTIONS(2958), - [anon_sym_LT_EQ] = ACTIONS(2958), - [anon_sym_GT_EQ] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_struct] = ACTIONS(2958), - [anon_sym_mut] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2958), - [anon_sym_DASH_DASH] = ACTIONS(2958), - [anon_sym_QMARK] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_go] = ACTIONS(2958), - [anon_sym_spawn] = ACTIONS(2958), - [anon_sym_json_DOTdecode] = ACTIONS(2958), - [anon_sym_LBRACK2] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_LT_DASH] = ACTIONS(2958), - [anon_sym_LT_LT] = ACTIONS(2958), - [anon_sym_GT_GT] = ACTIONS(2958), - [anon_sym_GT_GT_GT] = ACTIONS(2958), - [anon_sym_AMP_CARET] = ACTIONS(2958), - [anon_sym_AMP_AMP] = ACTIONS(2958), - [anon_sym_PIPE_PIPE] = ACTIONS(2958), - [anon_sym_or] = ACTIONS(2958), - [sym_none] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_nil] = ACTIONS(2958), - [anon_sym_QMARK_DOT] = ACTIONS(2958), - [anon_sym_POUND_LBRACK] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_DOLLARif] = ACTIONS(2958), - [anon_sym_is] = ACTIONS(2958), - [anon_sym_BANGis] = ACTIONS(2958), - [anon_sym_in] = ACTIONS(2958), - [anon_sym_BANGin] = ACTIONS(2958), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_select] = ACTIONS(2958), - [anon_sym_lock] = ACTIONS(2958), - [anon_sym_rlock] = ACTIONS(2958), - [anon_sym_unsafe] = ACTIONS(2958), - [anon_sym_sql] = ACTIONS(2958), - [sym_int_literal] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2958), - [sym_rune_literal] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_shared] = ACTIONS(2958), - [anon_sym_map_LBRACK] = ACTIONS(2958), - [anon_sym_chan] = ACTIONS(2958), - [anon_sym_thread] = ACTIONS(2958), - [anon_sym_atomic] = ACTIONS(2958), - [sym___double_quote] = ACTIONS(2958), - [sym___single_quote] = ACTIONS(2958), - [sym___c_double_quote] = ACTIONS(2958), - [sym___c_single_quote] = ACTIONS(2958), - [sym___r_double_quote] = ACTIONS(2958), - [sym___r_single_quote] = ACTIONS(2958), - }, - [1246] = { - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), - }, [1247] = { - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), + [sym_identifier] = ACTIONS(3273), + [anon_sym_LF] = ACTIONS(3273), + [anon_sym_CR] = ACTIONS(3273), + [anon_sym_CR_LF] = ACTIONS(3273), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_DOT] = ACTIONS(3273), + [anon_sym_as] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_PIPE] = ACTIONS(3273), + [anon_sym_fn] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_PERCENT] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3273), + [anon_sym_BANG_EQ] = ACTIONS(3273), + [anon_sym_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_EQ] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_mut] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [anon_sym_QMARK] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_go] = ACTIONS(3273), + [anon_sym_spawn] = ACTIONS(3273), + [anon_sym_json_DOTdecode] = ACTIONS(3273), + [anon_sym_LBRACK2] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_CARET] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_LT_DASH] = ACTIONS(3273), + [anon_sym_LT_LT] = ACTIONS(3273), + [anon_sym_GT_GT] = ACTIONS(3273), + [anon_sym_GT_GT_GT] = ACTIONS(3273), + [anon_sym_AMP_CARET] = ACTIONS(3273), + [anon_sym_AMP_AMP] = ACTIONS(3273), + [anon_sym_PIPE_PIPE] = ACTIONS(3273), + [anon_sym_or] = ACTIONS(3273), + [sym_none] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_nil] = ACTIONS(3273), + [anon_sym_QMARK_DOT] = ACTIONS(3273), + [anon_sym_POUND_LBRACK] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_DOLLARif] = ACTIONS(3273), + [anon_sym_is] = ACTIONS(3273), + [anon_sym_BANGis] = ACTIONS(3273), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(3273), + [anon_sym_select] = ACTIONS(3273), + [anon_sym_lock] = ACTIONS(3273), + [anon_sym_rlock] = ACTIONS(3273), + [anon_sym_unsafe] = ACTIONS(3273), + [anon_sym_sql] = ACTIONS(3273), + [sym_int_literal] = ACTIONS(3273), + [sym_float_literal] = ACTIONS(3273), + [sym_rune_literal] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_shared] = ACTIONS(3273), + [anon_sym_map_LBRACK] = ACTIONS(3273), + [anon_sym_chan] = ACTIONS(3273), + [anon_sym_thread] = ACTIONS(3273), + [anon_sym_atomic] = ACTIONS(3273), + [sym___double_quote] = ACTIONS(3273), + [sym___single_quote] = ACTIONS(3273), + [sym___c_double_quote] = ACTIONS(3273), + [sym___c_single_quote] = ACTIONS(3273), + [sym___r_double_quote] = ACTIONS(3273), + [sym___r_single_quote] = ACTIONS(3273), }, [1248] = { - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), + [sym_identifier] = ACTIONS(3341), + [anon_sym_LF] = ACTIONS(3341), + [anon_sym_CR] = ACTIONS(3341), + [anon_sym_CR_LF] = ACTIONS(3341), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_DOT] = ACTIONS(3341), + [anon_sym_as] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_COMMA] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_PIPE] = ACTIONS(3341), + [anon_sym_fn] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_struct] = ACTIONS(3341), + [anon_sym_mut] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_QMARK] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_go] = ACTIONS(3341), + [anon_sym_spawn] = ACTIONS(3341), + [anon_sym_json_DOTdecode] = ACTIONS(3341), + [anon_sym_LBRACK2] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_LT_DASH] = ACTIONS(3341), + [anon_sym_LT_LT] = ACTIONS(3341), + [anon_sym_GT_GT] = ACTIONS(3341), + [anon_sym_GT_GT_GT] = ACTIONS(3341), + [anon_sym_AMP_CARET] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_or] = ACTIONS(3341), + [sym_none] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_nil] = ACTIONS(3341), + [anon_sym_QMARK_DOT] = ACTIONS(3341), + [anon_sym_POUND_LBRACK] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_DOLLARif] = ACTIONS(3341), + [anon_sym_is] = ACTIONS(3341), + [anon_sym_BANGis] = ACTIONS(3341), + [anon_sym_in] = ACTIONS(3341), + [anon_sym_BANGin] = ACTIONS(3341), + [anon_sym_match] = ACTIONS(3341), + [anon_sym_select] = ACTIONS(3341), + [anon_sym_lock] = ACTIONS(3341), + [anon_sym_rlock] = ACTIONS(3341), + [anon_sym_unsafe] = ACTIONS(3341), + [anon_sym_sql] = ACTIONS(3341), + [sym_int_literal] = ACTIONS(3341), + [sym_float_literal] = ACTIONS(3341), + [sym_rune_literal] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_shared] = ACTIONS(3341), + [anon_sym_map_LBRACK] = ACTIONS(3341), + [anon_sym_chan] = ACTIONS(3341), + [anon_sym_thread] = ACTIONS(3341), + [anon_sym_atomic] = ACTIONS(3341), + [sym___double_quote] = ACTIONS(3341), + [sym___single_quote] = ACTIONS(3341), + [sym___c_double_quote] = ACTIONS(3341), + [sym___c_single_quote] = ACTIONS(3341), + [sym___r_double_quote] = ACTIONS(3341), + [sym___r_single_quote] = ACTIONS(3341), }, [1249] = { - [sym_identifier] = ACTIONS(2794), - [anon_sym_LF] = ACTIONS(2794), - [anon_sym_CR] = ACTIONS(2794), - [anon_sym_CR_LF] = ACTIONS(2794), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2936), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_CR] = ACTIONS(2936), + [anon_sym_CR_LF] = ACTIONS(2936), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(2936), + [anon_sym_as] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_RBRACE] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_fn] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_PERCENT] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2936), + [anon_sym_EQ_EQ] = ACTIONS(2936), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(2936), + [anon_sym_GT_EQ] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_mut] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2936), + [anon_sym_QMARK] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2936), + [anon_sym_go] = ACTIONS(2936), + [anon_sym_spawn] = ACTIONS(2936), + [anon_sym_json_DOTdecode] = ACTIONS(2936), + [anon_sym_LBRACK2] = ACTIONS(2936), + [anon_sym_TILDE] = ACTIONS(2936), + [anon_sym_CARET] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_LT_DASH] = ACTIONS(2936), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2936), + [anon_sym_GT_GT_GT] = ACTIONS(2936), + [anon_sym_AMP_CARET] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2936), + [sym_none] = ACTIONS(2936), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_nil] = ACTIONS(2936), + [anon_sym_QMARK_DOT] = ACTIONS(2936), + [anon_sym_POUND_LBRACK] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_DOLLARif] = ACTIONS(2936), + [anon_sym_is] = ACTIONS(2936), + [anon_sym_BANGis] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(2936), + [anon_sym_BANGin] = ACTIONS(2936), + [anon_sym_match] = ACTIONS(2936), + [anon_sym_select] = ACTIONS(2936), + [anon_sym_lock] = ACTIONS(2936), + [anon_sym_rlock] = ACTIONS(2936), + [anon_sym_unsafe] = ACTIONS(2936), + [anon_sym_sql] = ACTIONS(2936), + [sym_int_literal] = ACTIONS(2936), + [sym_float_literal] = ACTIONS(2936), + [sym_rune_literal] = ACTIONS(2936), + [anon_sym_AT] = ACTIONS(2936), + [anon_sym_shared] = ACTIONS(2936), + [anon_sym_map_LBRACK] = ACTIONS(2936), + [anon_sym_chan] = ACTIONS(2936), + [anon_sym_thread] = ACTIONS(2936), + [anon_sym_atomic] = ACTIONS(2936), + [sym___double_quote] = ACTIONS(2936), + [sym___single_quote] = ACTIONS(2936), + [sym___c_double_quote] = ACTIONS(2936), + [sym___c_single_quote] = ACTIONS(2936), + [sym___r_double_quote] = ACTIONS(2936), + [sym___r_single_quote] = ACTIONS(2936), }, [1250] = { - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3046), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_COMMA] = ACTIONS(3046), - [anon_sym_RBRACE] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3046), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3046), - [anon_sym_BANG_EQ] = ACTIONS(3046), - [anon_sym_LT_EQ] = ACTIONS(3046), - [anon_sym_GT_EQ] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3046), - [anon_sym_DASH_DASH] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [anon_sym_LT_LT] = ACTIONS(3046), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3046), - [anon_sym_AMP_CARET] = ACTIONS(3046), - [anon_sym_AMP_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3046), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3046), - [anon_sym_POUND_LBRACK] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3046), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3046), - [sym___single_quote] = ACTIONS(3046), - [sym___c_double_quote] = ACTIONS(3046), - [sym___c_single_quote] = ACTIONS(3046), - [sym___r_double_quote] = ACTIONS(3046), - [sym___r_single_quote] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LF] = ACTIONS(3028), + [anon_sym_CR] = ACTIONS(3028), + [anon_sym_CR_LF] = ACTIONS(3028), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3028), + [anon_sym_DOT] = ACTIONS(3028), + [anon_sym_as] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_COMMA] = ACTIONS(3028), + [anon_sym_RBRACE] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3028), + [anon_sym_SLASH] = ACTIONS(3028), + [anon_sym_PERCENT] = ACTIONS(3028), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3028), + [anon_sym_EQ_EQ] = ACTIONS(3028), + [anon_sym_BANG_EQ] = ACTIONS(3028), + [anon_sym_LT_EQ] = ACTIONS(3028), + [anon_sym_GT_EQ] = ACTIONS(3028), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_mut] = ACTIONS(3028), + [anon_sym_PLUS_PLUS] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_go] = ACTIONS(3028), + [anon_sym_spawn] = ACTIONS(3028), + [anon_sym_json_DOTdecode] = ACTIONS(3028), + [anon_sym_LBRACK2] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_CARET] = ACTIONS(3028), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_LT_DASH] = ACTIONS(3028), + [anon_sym_LT_LT] = ACTIONS(3028), + [anon_sym_GT_GT] = ACTIONS(3028), + [anon_sym_GT_GT_GT] = ACTIONS(3028), + [anon_sym_AMP_CARET] = ACTIONS(3028), + [anon_sym_AMP_AMP] = ACTIONS(3028), + [anon_sym_PIPE_PIPE] = ACTIONS(3028), + [anon_sym_or] = ACTIONS(3028), + [sym_none] = ACTIONS(3028), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [sym_nil] = ACTIONS(3028), + [anon_sym_QMARK_DOT] = ACTIONS(3028), + [anon_sym_POUND_LBRACK] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_DOLLARif] = ACTIONS(3028), + [anon_sym_is] = ACTIONS(3028), + [anon_sym_BANGis] = ACTIONS(3028), + [anon_sym_in] = ACTIONS(3028), + [anon_sym_BANGin] = ACTIONS(3028), + [anon_sym_match] = ACTIONS(3028), + [anon_sym_select] = ACTIONS(3028), + [anon_sym_lock] = ACTIONS(3028), + [anon_sym_rlock] = ACTIONS(3028), + [anon_sym_unsafe] = ACTIONS(3028), + [anon_sym_sql] = ACTIONS(3028), + [sym_int_literal] = ACTIONS(3028), + [sym_float_literal] = ACTIONS(3028), + [sym_rune_literal] = ACTIONS(3028), + [anon_sym_AT] = ACTIONS(3028), + [anon_sym_shared] = ACTIONS(3028), + [anon_sym_map_LBRACK] = ACTIONS(3028), + [anon_sym_chan] = ACTIONS(3028), + [anon_sym_thread] = ACTIONS(3028), + [anon_sym_atomic] = ACTIONS(3028), + [sym___double_quote] = ACTIONS(3028), + [sym___single_quote] = ACTIONS(3028), + [sym___c_double_quote] = ACTIONS(3028), + [sym___c_single_quote] = ACTIONS(3028), + [sym___r_double_quote] = ACTIONS(3028), + [sym___r_single_quote] = ACTIONS(3028), }, [1251] = { - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LF] = ACTIONS(3194), + [anon_sym_CR] = ACTIONS(3194), + [anon_sym_CR_LF] = ACTIONS(3194), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3194), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3194), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3194), + [anon_sym_AMP_CARET] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3194), + [anon_sym_POUND_LBRACK] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3194), + [sym_rune_literal] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3194), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3194), + [sym___single_quote] = ACTIONS(3194), + [sym___c_double_quote] = ACTIONS(3194), + [sym___c_single_quote] = ACTIONS(3194), + [sym___r_double_quote] = ACTIONS(3194), + [sym___r_single_quote] = ACTIONS(3194), }, [1252] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3257), + [sym___single_quote] = ACTIONS(3257), + [sym___c_double_quote] = ACTIONS(3257), + [sym___c_single_quote] = ACTIONS(3257), + [sym___r_double_quote] = ACTIONS(3257), + [sym___r_single_quote] = ACTIONS(3257), }, [1253] = { - [sym_identifier] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2922), - [anon_sym_CR] = ACTIONS(2922), - [anon_sym_CR_LF] = ACTIONS(2922), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_as] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_fn] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2922), - [anon_sym_LT_EQ] = ACTIONS(2922), - [anon_sym_GT_EQ] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_mut] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_go] = ACTIONS(2922), - [anon_sym_spawn] = ACTIONS(2922), - [anon_sym_json_DOTdecode] = ACTIONS(2922), - [anon_sym_LBRACK2] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_GT_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_CARET] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2922), - [sym_none] = ACTIONS(2922), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_nil] = ACTIONS(2922), - [anon_sym_QMARK_DOT] = ACTIONS(2922), - [anon_sym_POUND_LBRACK] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_DOLLARif] = ACTIONS(2922), - [anon_sym_is] = ACTIONS(2922), - [anon_sym_BANGis] = ACTIONS(2922), - [anon_sym_in] = ACTIONS(2922), - [anon_sym_BANGin] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_select] = ACTIONS(2922), - [anon_sym_lock] = ACTIONS(2922), - [anon_sym_rlock] = ACTIONS(2922), - [anon_sym_unsafe] = ACTIONS(2922), - [anon_sym_sql] = ACTIONS(2922), - [sym_int_literal] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), - [sym_rune_literal] = ACTIONS(2922), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_shared] = ACTIONS(2922), - [anon_sym_map_LBRACK] = ACTIONS(2922), - [anon_sym_chan] = ACTIONS(2922), - [anon_sym_thread] = ACTIONS(2922), - [anon_sym_atomic] = ACTIONS(2922), - [sym___double_quote] = ACTIONS(2922), - [sym___single_quote] = ACTIONS(2922), - [sym___c_double_quote] = ACTIONS(2922), - [sym___c_single_quote] = ACTIONS(2922), - [sym___r_double_quote] = ACTIONS(2922), - [sym___r_single_quote] = ACTIONS(2922), + [sym_identifier] = ACTIONS(3281), + [anon_sym_LF] = ACTIONS(3281), + [anon_sym_CR] = ACTIONS(3281), + [anon_sym_CR_LF] = ACTIONS(3281), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_mut] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3281), + [anon_sym_spawn] = ACTIONS(3281), + [anon_sym_json_DOTdecode] = ACTIONS(3281), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_GT_GT_GT] = ACTIONS(3281), + [anon_sym_AMP_CARET] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_or] = ACTIONS(3281), + [sym_none] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_nil] = ACTIONS(3281), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_DOLLARif] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_rlock] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_sql] = ACTIONS(3281), + [sym_int_literal] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3281), + [sym_rune_literal] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_shared] = ACTIONS(3281), + [anon_sym_map_LBRACK] = ACTIONS(3281), + [anon_sym_chan] = ACTIONS(3281), + [anon_sym_thread] = ACTIONS(3281), + [anon_sym_atomic] = ACTIONS(3281), + [sym___double_quote] = ACTIONS(3281), + [sym___single_quote] = ACTIONS(3281), + [sym___c_double_quote] = ACTIONS(3281), + [sym___c_single_quote] = ACTIONS(3281), + [sym___r_double_quote] = ACTIONS(3281), + [sym___r_single_quote] = ACTIONS(3281), }, [1254] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3285), + [anon_sym_LF] = ACTIONS(3285), + [anon_sym_CR] = ACTIONS(3285), + [anon_sym_CR_LF] = ACTIONS(3285), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_COMMA] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_fn] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_LT_EQ] = ACTIONS(3285), + [anon_sym_GT_EQ] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_struct] = ACTIONS(3285), + [anon_sym_mut] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_go] = ACTIONS(3285), + [anon_sym_spawn] = ACTIONS(3285), + [anon_sym_json_DOTdecode] = ACTIONS(3285), + [anon_sym_LBRACK2] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3285), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_GT_GT_GT] = ACTIONS(3285), + [anon_sym_AMP_CARET] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_or] = ACTIONS(3285), + [sym_none] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_nil] = ACTIONS(3285), + [anon_sym_QMARK_DOT] = ACTIONS(3285), + [anon_sym_POUND_LBRACK] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_DOLLARif] = ACTIONS(3285), + [anon_sym_is] = ACTIONS(3285), + [anon_sym_BANGis] = ACTIONS(3285), + [anon_sym_in] = ACTIONS(3285), + [anon_sym_BANGin] = ACTIONS(3285), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_select] = ACTIONS(3285), + [anon_sym_lock] = ACTIONS(3285), + [anon_sym_rlock] = ACTIONS(3285), + [anon_sym_unsafe] = ACTIONS(3285), + [anon_sym_sql] = ACTIONS(3285), + [sym_int_literal] = ACTIONS(3285), + [sym_float_literal] = ACTIONS(3285), + [sym_rune_literal] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_shared] = ACTIONS(3285), + [anon_sym_map_LBRACK] = ACTIONS(3285), + [anon_sym_chan] = ACTIONS(3285), + [anon_sym_thread] = ACTIONS(3285), + [anon_sym_atomic] = ACTIONS(3285), + [sym___double_quote] = ACTIONS(3285), + [sym___single_quote] = ACTIONS(3285), + [sym___c_double_quote] = ACTIONS(3285), + [sym___c_single_quote] = ACTIONS(3285), + [sym___r_double_quote] = ACTIONS(3285), + [sym___r_single_quote] = ACTIONS(3285), }, [1255] = { - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2764), - [anon_sym_BANG_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_CARET] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2764), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2764), - [anon_sym_POUND_LBRACK] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2764), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), + [sym_identifier] = ACTIONS(3000), + [anon_sym_LF] = ACTIONS(3000), + [anon_sym_CR] = ACTIONS(3000), + [anon_sym_CR_LF] = ACTIONS(3000), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3000), + [anon_sym_DOT] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_RBRACE] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_PIPE] = ACTIONS(3000), + [anon_sym_fn] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_SLASH] = ACTIONS(3000), + [anon_sym_PERCENT] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(3000), + [anon_sym_EQ_EQ] = ACTIONS(3000), + [anon_sym_BANG_EQ] = ACTIONS(3000), + [anon_sym_LT_EQ] = ACTIONS(3000), + [anon_sym_GT_EQ] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_mut] = ACTIONS(3000), + [anon_sym_PLUS_PLUS] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3000), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(3000), + [anon_sym_go] = ACTIONS(3000), + [anon_sym_spawn] = ACTIONS(3000), + [anon_sym_json_DOTdecode] = ACTIONS(3000), + [anon_sym_LBRACK2] = ACTIONS(3000), + [anon_sym_TILDE] = ACTIONS(3000), + [anon_sym_CARET] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_LT_DASH] = ACTIONS(3000), + [anon_sym_LT_LT] = ACTIONS(3000), + [anon_sym_GT_GT] = ACTIONS(3000), + [anon_sym_GT_GT_GT] = ACTIONS(3000), + [anon_sym_AMP_CARET] = ACTIONS(3000), + [anon_sym_AMP_AMP] = ACTIONS(3000), + [anon_sym_PIPE_PIPE] = ACTIONS(3000), + [anon_sym_or] = ACTIONS(3000), + [sym_none] = ACTIONS(3000), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [sym_nil] = ACTIONS(3000), + [anon_sym_QMARK_DOT] = ACTIONS(3000), + [anon_sym_POUND_LBRACK] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_DOLLARif] = ACTIONS(3000), + [anon_sym_is] = ACTIONS(3000), + [anon_sym_BANGis] = ACTIONS(3000), + [anon_sym_in] = ACTIONS(3000), + [anon_sym_BANGin] = ACTIONS(3000), + [anon_sym_match] = ACTIONS(3000), + [anon_sym_select] = ACTIONS(3000), + [anon_sym_lock] = ACTIONS(3000), + [anon_sym_rlock] = ACTIONS(3000), + [anon_sym_unsafe] = ACTIONS(3000), + [anon_sym_sql] = ACTIONS(3000), + [sym_int_literal] = ACTIONS(3000), + [sym_float_literal] = ACTIONS(3000), + [sym_rune_literal] = ACTIONS(3000), + [anon_sym_AT] = ACTIONS(3000), + [anon_sym_shared] = ACTIONS(3000), + [anon_sym_map_LBRACK] = ACTIONS(3000), + [anon_sym_chan] = ACTIONS(3000), + [anon_sym_thread] = ACTIONS(3000), + [anon_sym_atomic] = ACTIONS(3000), + [sym___double_quote] = ACTIONS(3000), + [sym___single_quote] = ACTIONS(3000), + [sym___c_double_quote] = ACTIONS(3000), + [sym___c_single_quote] = ACTIONS(3000), + [sym___r_double_quote] = ACTIONS(3000), + [sym___r_single_quote] = ACTIONS(3000), }, [1256] = { - [sym_identifier] = ACTIONS(3018), - [anon_sym_LF] = ACTIONS(3018), - [anon_sym_CR] = ACTIONS(3018), - [anon_sym_CR_LF] = ACTIONS(3018), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_fn] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3018), - [anon_sym_BANG_EQ] = ACTIONS(3018), - [anon_sym_LT_EQ] = ACTIONS(3018), - [anon_sym_GT_EQ] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_struct] = ACTIONS(3018), - [anon_sym_mut] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_go] = ACTIONS(3018), - [anon_sym_spawn] = ACTIONS(3018), - [anon_sym_json_DOTdecode] = ACTIONS(3018), - [anon_sym_LBRACK2] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_CARET] = ACTIONS(3018), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3018), - [anon_sym_LT_LT] = ACTIONS(3018), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_GT_GT_GT] = ACTIONS(3018), - [anon_sym_AMP_CARET] = ACTIONS(3018), - [anon_sym_AMP_AMP] = ACTIONS(3018), - [anon_sym_PIPE_PIPE] = ACTIONS(3018), - [anon_sym_or] = ACTIONS(3018), - [sym_none] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_nil] = ACTIONS(3018), - [anon_sym_QMARK_DOT] = ACTIONS(3018), - [anon_sym_POUND_LBRACK] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_DOLLARif] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3018), - [anon_sym_BANGis] = ACTIONS(3018), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3018), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_select] = ACTIONS(3018), - [anon_sym_lock] = ACTIONS(3018), - [anon_sym_rlock] = ACTIONS(3018), - [anon_sym_unsafe] = ACTIONS(3018), - [anon_sym_sql] = ACTIONS(3018), - [sym_int_literal] = ACTIONS(3018), - [sym_float_literal] = ACTIONS(3018), - [sym_rune_literal] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_shared] = ACTIONS(3018), - [anon_sym_map_LBRACK] = ACTIONS(3018), - [anon_sym_chan] = ACTIONS(3018), - [anon_sym_thread] = ACTIONS(3018), - [anon_sym_atomic] = ACTIONS(3018), - [sym___double_quote] = ACTIONS(3018), - [sym___single_quote] = ACTIONS(3018), - [sym___c_double_quote] = ACTIONS(3018), - [sym___c_single_quote] = ACTIONS(3018), - [sym___r_double_quote] = ACTIONS(3018), - [sym___r_single_quote] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LF] = ACTIONS(3178), + [anon_sym_CR] = ACTIONS(3178), + [anon_sym_CR_LF] = ACTIONS(3178), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3178), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3178), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3178), + [anon_sym_AMP_CARET] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3178), + [anon_sym_POUND_LBRACK] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3178), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + [sym_rune_literal] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3178), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3178), + [sym___single_quote] = ACTIONS(3178), + [sym___c_double_quote] = ACTIONS(3178), + [sym___c_single_quote] = ACTIONS(3178), + [sym___r_double_quote] = ACTIONS(3178), + [sym___r_single_quote] = ACTIONS(3178), }, [1257] = { - [sym_identifier] = ACTIONS(2826), - [anon_sym_LF] = ACTIONS(2826), - [anon_sym_CR] = ACTIONS(2826), - [anon_sym_CR_LF] = ACTIONS(2826), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_fn] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_GT] = ACTIONS(2826), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_mut] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_go] = ACTIONS(2826), - [anon_sym_spawn] = ACTIONS(2826), - [anon_sym_json_DOTdecode] = ACTIONS(2826), - [anon_sym_LBRACK2] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2826), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_or] = ACTIONS(2826), - [sym_none] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_nil] = ACTIONS(2826), - [anon_sym_QMARK_DOT] = ACTIONS(2826), - [anon_sym_POUND_LBRACK] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_DOLLARif] = ACTIONS(2826), - [anon_sym_is] = ACTIONS(2826), - [anon_sym_BANGis] = ACTIONS(2826), - [anon_sym_in] = ACTIONS(2826), - [anon_sym_BANGin] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_select] = ACTIONS(2826), - [anon_sym_lock] = ACTIONS(2826), - [anon_sym_rlock] = ACTIONS(2826), - [anon_sym_unsafe] = ACTIONS(2826), - [anon_sym_sql] = ACTIONS(2826), - [sym_int_literal] = ACTIONS(2826), - [sym_float_literal] = ACTIONS(2826), - [sym_rune_literal] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_shared] = ACTIONS(2826), - [anon_sym_map_LBRACK] = ACTIONS(2826), - [anon_sym_chan] = ACTIONS(2826), - [anon_sym_thread] = ACTIONS(2826), - [anon_sym_atomic] = ACTIONS(2826), - [sym___double_quote] = ACTIONS(2826), - [sym___single_quote] = ACTIONS(2826), - [sym___c_double_quote] = ACTIONS(2826), - [sym___c_single_quote] = ACTIONS(2826), - [sym___r_double_quote] = ACTIONS(2826), - [sym___r_single_quote] = ACTIONS(2826), + [sym_identifier] = ACTIONS(3004), + [anon_sym_LF] = ACTIONS(3004), + [anon_sym_CR] = ACTIONS(3004), + [anon_sym_CR_LF] = ACTIONS(3004), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_DOT] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_RBRACE] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym_PIPE] = ACTIONS(3004), + [anon_sym_fn] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_SLASH] = ACTIONS(3004), + [anon_sym_PERCENT] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3004), + [anon_sym_GT] = ACTIONS(3004), + [anon_sym_EQ_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3004), + [anon_sym_LT_EQ] = ACTIONS(3004), + [anon_sym_GT_EQ] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_mut] = ACTIONS(3004), + [anon_sym_PLUS_PLUS] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3004), + [anon_sym_QMARK] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3004), + [anon_sym_go] = ACTIONS(3004), + [anon_sym_spawn] = ACTIONS(3004), + [anon_sym_json_DOTdecode] = ACTIONS(3004), + [anon_sym_LBRACK2] = ACTIONS(3004), + [anon_sym_TILDE] = ACTIONS(3004), + [anon_sym_CARET] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_LT_DASH] = ACTIONS(3004), + [anon_sym_LT_LT] = ACTIONS(3004), + [anon_sym_GT_GT] = ACTIONS(3004), + [anon_sym_GT_GT_GT] = ACTIONS(3004), + [anon_sym_AMP_CARET] = ACTIONS(3004), + [anon_sym_AMP_AMP] = ACTIONS(3004), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_or] = ACTIONS(3004), + [sym_none] = ACTIONS(3004), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [sym_nil] = ACTIONS(3004), + [anon_sym_QMARK_DOT] = ACTIONS(3004), + [anon_sym_POUND_LBRACK] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_DOLLARif] = ACTIONS(3004), + [anon_sym_is] = ACTIONS(3004), + [anon_sym_BANGis] = ACTIONS(3004), + [anon_sym_in] = ACTIONS(3004), + [anon_sym_BANGin] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_select] = ACTIONS(3004), + [anon_sym_lock] = ACTIONS(3004), + [anon_sym_rlock] = ACTIONS(3004), + [anon_sym_unsafe] = ACTIONS(3004), + [anon_sym_sql] = ACTIONS(3004), + [sym_int_literal] = ACTIONS(3004), + [sym_float_literal] = ACTIONS(3004), + [sym_rune_literal] = ACTIONS(3004), + [anon_sym_AT] = ACTIONS(3004), + [anon_sym_shared] = ACTIONS(3004), + [anon_sym_map_LBRACK] = ACTIONS(3004), + [anon_sym_chan] = ACTIONS(3004), + [anon_sym_thread] = ACTIONS(3004), + [anon_sym_atomic] = ACTIONS(3004), + [sym___double_quote] = ACTIONS(3004), + [sym___single_quote] = ACTIONS(3004), + [sym___c_double_quote] = ACTIONS(3004), + [sym___c_single_quote] = ACTIONS(3004), + [sym___r_double_quote] = ACTIONS(3004), + [sym___r_single_quote] = ACTIONS(3004), }, [1258] = { - [sym_identifier] = ACTIONS(3106), - [anon_sym_LF] = ACTIONS(3106), - [anon_sym_CR] = ACTIONS(3106), - [anon_sym_CR_LF] = ACTIONS(3106), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_DOT] = ACTIONS(3106), - [anon_sym_as] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_COMMA] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_fn] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_PERCENT] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_EQ_EQ] = ACTIONS(3106), - [anon_sym_BANG_EQ] = ACTIONS(3106), - [anon_sym_LT_EQ] = ACTIONS(3106), - [anon_sym_GT_EQ] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_mut] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_QMARK] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_go] = ACTIONS(3106), - [anon_sym_spawn] = ACTIONS(3106), - [anon_sym_json_DOTdecode] = ACTIONS(3106), - [anon_sym_LBRACK2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_CARET] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_LT_DASH] = ACTIONS(3106), - [anon_sym_LT_LT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3106), - [anon_sym_GT_GT_GT] = ACTIONS(3106), - [anon_sym_AMP_CARET] = ACTIONS(3106), - [anon_sym_AMP_AMP] = ACTIONS(3106), - [anon_sym_PIPE_PIPE] = ACTIONS(3106), - [anon_sym_or] = ACTIONS(3106), - [sym_none] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_nil] = ACTIONS(3106), - [anon_sym_QMARK_DOT] = ACTIONS(3106), - [anon_sym_POUND_LBRACK] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_DOLLARif] = ACTIONS(3106), - [anon_sym_is] = ACTIONS(3106), - [anon_sym_BANGis] = ACTIONS(3106), - [anon_sym_in] = ACTIONS(3106), - [anon_sym_BANGin] = ACTIONS(3106), - [anon_sym_match] = ACTIONS(3106), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(3106), - [anon_sym_sql] = ACTIONS(3106), - [sym_int_literal] = ACTIONS(3106), - [sym_float_literal] = ACTIONS(3106), - [sym_rune_literal] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_shared] = ACTIONS(3106), - [anon_sym_map_LBRACK] = ACTIONS(3106), - [anon_sym_chan] = ACTIONS(3106), - [anon_sym_thread] = ACTIONS(3106), - [anon_sym_atomic] = ACTIONS(3106), - [sym___double_quote] = ACTIONS(3106), - [sym___single_quote] = ACTIONS(3106), - [sym___c_double_quote] = ACTIONS(3106), - [sym___c_single_quote] = ACTIONS(3106), - [sym___r_double_quote] = ACTIONS(3106), - [sym___r_single_quote] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3349), + [anon_sym_LF] = ACTIONS(3349), + [anon_sym_CR] = ACTIONS(3349), + [anon_sym_CR_LF] = ACTIONS(3349), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3349), + [anon_sym_as] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_COMMA] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_fn] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_PERCENT] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_BANG_EQ] = ACTIONS(3349), + [anon_sym_LT_EQ] = ACTIONS(3349), + [anon_sym_GT_EQ] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3349), + [anon_sym_mut] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_go] = ACTIONS(3349), + [anon_sym_spawn] = ACTIONS(3349), + [anon_sym_json_DOTdecode] = ACTIONS(3349), + [anon_sym_LBRACK2] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_LT_DASH] = ACTIONS(3349), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_GT_GT_GT] = ACTIONS(3349), + [anon_sym_AMP_CARET] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_or] = ACTIONS(3349), + [sym_none] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_nil] = ACTIONS(3349), + [anon_sym_QMARK_DOT] = ACTIONS(3349), + [anon_sym_POUND_LBRACK] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_DOLLARif] = ACTIONS(3349), + [anon_sym_is] = ACTIONS(3349), + [anon_sym_BANGis] = ACTIONS(3349), + [anon_sym_in] = ACTIONS(3349), + [anon_sym_BANGin] = ACTIONS(3349), + [anon_sym_match] = ACTIONS(3349), + [anon_sym_select] = ACTIONS(3349), + [anon_sym_lock] = ACTIONS(3349), + [anon_sym_rlock] = ACTIONS(3349), + [anon_sym_unsafe] = ACTIONS(3349), + [anon_sym_sql] = ACTIONS(3349), + [sym_int_literal] = ACTIONS(3349), + [sym_float_literal] = ACTIONS(3349), + [sym_rune_literal] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_shared] = ACTIONS(3349), + [anon_sym_map_LBRACK] = ACTIONS(3349), + [anon_sym_chan] = ACTIONS(3349), + [anon_sym_thread] = ACTIONS(3349), + [anon_sym_atomic] = ACTIONS(3349), + [sym___double_quote] = ACTIONS(3349), + [sym___single_quote] = ACTIONS(3349), + [sym___c_double_quote] = ACTIONS(3349), + [sym___c_single_quote] = ACTIONS(3349), + [sym___r_double_quote] = ACTIONS(3349), + [sym___r_single_quote] = ACTIONS(3349), }, [1259] = { - [sym_identifier] = ACTIONS(2814), - [anon_sym_LF] = ACTIONS(2814), - [anon_sym_CR] = ACTIONS(2814), - [anon_sym_CR_LF] = ACTIONS(2814), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2814), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_mut] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_go] = ACTIONS(2814), - [anon_sym_spawn] = ACTIONS(2814), - [anon_sym_json_DOTdecode] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_or] = ACTIONS(2814), - [sym_none] = ACTIONS(2814), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_nil] = ACTIONS(2814), - [anon_sym_QMARK_DOT] = ACTIONS(2814), - [anon_sym_POUND_LBRACK] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_DOLLARif] = ACTIONS(2814), - [anon_sym_is] = ACTIONS(2814), - [anon_sym_BANGis] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2814), - [anon_sym_BANGin] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_select] = ACTIONS(2814), - [anon_sym_lock] = ACTIONS(2814), - [anon_sym_rlock] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_sql] = ACTIONS(2814), - [sym_int_literal] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2814), - [sym_rune_literal] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2814), - [anon_sym_shared] = ACTIONS(2814), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2814), - [anon_sym_thread] = ACTIONS(2814), - [anon_sym_atomic] = ACTIONS(2814), - [sym___double_quote] = ACTIONS(2814), - [sym___single_quote] = ACTIONS(2814), - [sym___c_double_quote] = ACTIONS(2814), - [sym___c_single_quote] = ACTIONS(2814), - [sym___r_double_quote] = ACTIONS(2814), - [sym___r_single_quote] = ACTIONS(2814), + [sym_identifier] = ACTIONS(3008), + [anon_sym_LF] = ACTIONS(3008), + [anon_sym_CR] = ACTIONS(3008), + [anon_sym_CR_LF] = ACTIONS(3008), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_DOT] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_fn] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_PERCENT] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3008), + [anon_sym_BANG_EQ] = ACTIONS(3008), + [anon_sym_LT_EQ] = ACTIONS(3008), + [anon_sym_GT_EQ] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3006), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_mut] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [anon_sym_QMARK] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_go] = ACTIONS(3008), + [anon_sym_spawn] = ACTIONS(3008), + [anon_sym_json_DOTdecode] = ACTIONS(3008), + [anon_sym_LBRACK2] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_CARET] = ACTIONS(3008), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT_DASH] = ACTIONS(3008), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(3008), + [anon_sym_GT_GT_GT] = ACTIONS(3008), + [anon_sym_AMP_CARET] = ACTIONS(3008), + [anon_sym_AMP_AMP] = ACTIONS(3008), + [anon_sym_PIPE_PIPE] = ACTIONS(3008), + [anon_sym_or] = ACTIONS(3008), + [sym_none] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_nil] = ACTIONS(3008), + [anon_sym_QMARK_DOT] = ACTIONS(3008), + [anon_sym_POUND_LBRACK] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_DOLLARif] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3008), + [anon_sym_BANGis] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3008), + [anon_sym_match] = ACTIONS(3008), + [anon_sym_select] = ACTIONS(3008), + [anon_sym_lock] = ACTIONS(3008), + [anon_sym_rlock] = ACTIONS(3008), + [anon_sym_unsafe] = ACTIONS(3008), + [anon_sym_sql] = ACTIONS(3008), + [sym_int_literal] = ACTIONS(3008), + [sym_float_literal] = ACTIONS(3008), + [sym_rune_literal] = ACTIONS(3008), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_shared] = ACTIONS(3008), + [anon_sym_map_LBRACK] = ACTIONS(3008), + [anon_sym_chan] = ACTIONS(3008), + [anon_sym_thread] = ACTIONS(3008), + [anon_sym_atomic] = ACTIONS(3008), + [sym___double_quote] = ACTIONS(3008), + [sym___single_quote] = ACTIONS(3008), + [sym___c_double_quote] = ACTIONS(3008), + [sym___c_single_quote] = ACTIONS(3008), + [sym___r_double_quote] = ACTIONS(3008), + [sym___r_single_quote] = ACTIONS(3008), }, [1260] = { - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), + [sym_identifier] = ACTIONS(3253), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_CR] = ACTIONS(3253), + [anon_sym_CR_LF] = ACTIONS(3253), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3253), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3253), + [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3253), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + [sym_rune_literal] = ACTIONS(3253), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3253), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3253), + [sym___single_quote] = ACTIONS(3253), + [sym___c_double_quote] = ACTIONS(3253), + [sym___c_single_quote] = ACTIONS(3253), + [sym___r_double_quote] = ACTIONS(3253), + [sym___r_single_quote] = ACTIONS(3253), }, [1261] = { - [sym_identifier] = ACTIONS(3086), - [anon_sym_LF] = ACTIONS(3086), - [anon_sym_CR] = ACTIONS(3086), - [anon_sym_CR_LF] = ACTIONS(3086), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_DOT] = ACTIONS(3086), - [anon_sym_as] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_fn] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_PERCENT] = ACTIONS(3086), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_EQ_EQ] = ACTIONS(3086), - [anon_sym_BANG_EQ] = ACTIONS(3086), - [anon_sym_LT_EQ] = ACTIONS(3086), - [anon_sym_GT_EQ] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_mut] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3086), - [anon_sym_spawn] = ACTIONS(3086), - [anon_sym_json_DOTdecode] = ACTIONS(3086), - [anon_sym_LBRACK2] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_LT_DASH] = ACTIONS(3086), - [anon_sym_LT_LT] = ACTIONS(3086), - [anon_sym_GT_GT] = ACTIONS(3086), - [anon_sym_GT_GT_GT] = ACTIONS(3086), - [anon_sym_AMP_CARET] = ACTIONS(3086), - [anon_sym_AMP_AMP] = ACTIONS(3086), - [anon_sym_PIPE_PIPE] = ACTIONS(3086), - [anon_sym_or] = ACTIONS(3086), - [sym_none] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_nil] = ACTIONS(3086), - [anon_sym_QMARK_DOT] = ACTIONS(3086), - [anon_sym_POUND_LBRACK] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_DOLLARif] = ACTIONS(3086), - [anon_sym_is] = ACTIONS(3086), - [anon_sym_BANGis] = ACTIONS(3086), - [anon_sym_in] = ACTIONS(3086), - [anon_sym_BANGin] = ACTIONS(3086), - [anon_sym_match] = ACTIONS(3086), - [anon_sym_select] = ACTIONS(3086), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(3086), - [anon_sym_sql] = ACTIONS(3086), - [sym_int_literal] = ACTIONS(3086), - [sym_float_literal] = ACTIONS(3086), - [sym_rune_literal] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_shared] = ACTIONS(3086), - [anon_sym_map_LBRACK] = ACTIONS(3086), - [anon_sym_chan] = ACTIONS(3086), - [anon_sym_thread] = ACTIONS(3086), - [anon_sym_atomic] = ACTIONS(3086), - [sym___double_quote] = ACTIONS(3086), - [sym___single_quote] = ACTIONS(3086), - [sym___c_double_quote] = ACTIONS(3086), - [sym___c_single_quote] = ACTIONS(3086), - [sym___r_double_quote] = ACTIONS(3086), - [sym___r_single_quote] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_EQ_EQ] = ACTIONS(3305), + [anon_sym_BANG_EQ] = ACTIONS(3305), + [anon_sym_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3305), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_PIPE_PIPE] = ACTIONS(3305), + [anon_sym_or] = ACTIONS(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [sym___double_quote] = ACTIONS(3305), + [sym___single_quote] = ACTIONS(3305), + [sym___c_double_quote] = ACTIONS(3305), + [sym___c_single_quote] = ACTIONS(3305), + [sym___r_double_quote] = ACTIONS(3305), + [sym___r_single_quote] = ACTIONS(3305), }, [1262] = { - [sym_identifier] = ACTIONS(2830), - [anon_sym_LF] = ACTIONS(2830), - [anon_sym_CR] = ACTIONS(2830), - [anon_sym_CR_LF] = ACTIONS(2830), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_fn] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_mut] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_go] = ACTIONS(2830), - [anon_sym_spawn] = ACTIONS(2830), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2830), - [sym_none] = ACTIONS(2830), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_nil] = ACTIONS(2830), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_DOLLARif] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2830), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_select] = ACTIONS(2830), - [anon_sym_lock] = ACTIONS(2830), - [anon_sym_rlock] = ACTIONS(2830), - [anon_sym_unsafe] = ACTIONS(2830), - [anon_sym_sql] = ACTIONS(2830), - [sym_int_literal] = ACTIONS(2830), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2830), - [anon_sym_shared] = ACTIONS(2830), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2830), - [anon_sym_thread] = ACTIONS(2830), - [anon_sym_atomic] = ACTIONS(2830), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_EQ] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3249), + [anon_sym_AMP_CARET] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3249), + [sym___single_quote] = ACTIONS(3249), + [sym___c_double_quote] = ACTIONS(3249), + [sym___c_single_quote] = ACTIONS(3249), + [sym___r_double_quote] = ACTIONS(3249), + [sym___r_single_quote] = ACTIONS(3249), }, [1263] = { - [sym_identifier] = ACTIONS(3102), - [anon_sym_LF] = ACTIONS(3102), - [anon_sym_CR] = ACTIONS(3102), - [anon_sym_CR_LF] = ACTIONS(3102), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_COMMA] = ACTIONS(3102), - [anon_sym_RBRACE] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_fn] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3102), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_EQ_EQ] = ACTIONS(3102), - [anon_sym_BANG_EQ] = ACTIONS(3102), - [anon_sym_LT_EQ] = ACTIONS(3102), - [anon_sym_GT_EQ] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_mut] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [anon_sym_QMARK] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_go] = ACTIONS(3102), - [anon_sym_spawn] = ACTIONS(3102), - [anon_sym_json_DOTdecode] = ACTIONS(3102), - [anon_sym_LBRACK2] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_LT_DASH] = ACTIONS(3102), - [anon_sym_LT_LT] = ACTIONS(3102), - [anon_sym_GT_GT] = ACTIONS(3102), - [anon_sym_GT_GT_GT] = ACTIONS(3102), - [anon_sym_AMP_CARET] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3102), - [anon_sym_PIPE_PIPE] = ACTIONS(3102), - [anon_sym_or] = ACTIONS(3102), - [sym_none] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_nil] = ACTIONS(3102), - [anon_sym_QMARK_DOT] = ACTIONS(3102), - [anon_sym_POUND_LBRACK] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_DOLLARif] = ACTIONS(3102), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3102), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_BANGin] = ACTIONS(3102), - [anon_sym_match] = ACTIONS(3102), - [anon_sym_select] = ACTIONS(3102), - [anon_sym_lock] = ACTIONS(3102), - [anon_sym_rlock] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(3102), - [anon_sym_sql] = ACTIONS(3102), - [sym_int_literal] = ACTIONS(3102), - [sym_float_literal] = ACTIONS(3102), - [sym_rune_literal] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_shared] = ACTIONS(3102), - [anon_sym_map_LBRACK] = ACTIONS(3102), - [anon_sym_chan] = ACTIONS(3102), - [anon_sym_thread] = ACTIONS(3102), - [anon_sym_atomic] = ACTIONS(3102), - [sym___double_quote] = ACTIONS(3102), - [sym___single_quote] = ACTIONS(3102), - [sym___c_double_quote] = ACTIONS(3102), - [sym___c_single_quote] = ACTIONS(3102), - [sym___r_double_quote] = ACTIONS(3102), - [sym___r_single_quote] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3132), + [anon_sym_LF] = ACTIONS(3132), + [anon_sym_CR] = ACTIONS(3132), + [anon_sym_CR_LF] = ACTIONS(3132), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_PIPE] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_mut] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3132), + [anon_sym_json_DOTdecode] = ACTIONS(3132), + [anon_sym_LBRACK2] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_CARET] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3132), + [anon_sym_LT_LT] = ACTIONS(3132), + [anon_sym_GT_GT] = ACTIONS(3132), + [anon_sym_GT_GT_GT] = ACTIONS(3132), + [anon_sym_AMP_CARET] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_or] = ACTIONS(3132), + [sym_none] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_nil] = ACTIONS(3132), + [anon_sym_QMARK_DOT] = ACTIONS(3132), + [anon_sym_POUND_LBRACK] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_DOLLARif] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3132), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_in] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_select] = ACTIONS(3132), + [anon_sym_lock] = ACTIONS(3132), + [anon_sym_rlock] = ACTIONS(3132), + [anon_sym_unsafe] = ACTIONS(3132), + [anon_sym_sql] = ACTIONS(3132), + [sym_int_literal] = ACTIONS(3132), + [sym_float_literal] = ACTIONS(3132), + [sym_rune_literal] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_shared] = ACTIONS(3132), + [anon_sym_map_LBRACK] = ACTIONS(3132), + [anon_sym_chan] = ACTIONS(3132), + [anon_sym_thread] = ACTIONS(3132), + [anon_sym_atomic] = ACTIONS(3132), + [sym___double_quote] = ACTIONS(3132), + [sym___single_quote] = ACTIONS(3132), + [sym___c_double_quote] = ACTIONS(3132), + [sym___c_single_quote] = ACTIONS(3132), + [sym___r_double_quote] = ACTIONS(3132), + [sym___r_single_quote] = ACTIONS(3132), }, [1264] = { - [sym_identifier] = ACTIONS(2850), - [anon_sym_LF] = ACTIONS(2850), - [anon_sym_CR] = ACTIONS(2850), - [anon_sym_CR_LF] = ACTIONS(2850), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2850), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), }, [1265] = { - [sym_identifier] = ACTIONS(3110), - [anon_sym_LF] = ACTIONS(3110), - [anon_sym_CR] = ACTIONS(3110), - [anon_sym_CR_LF] = ACTIONS(3110), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3110), - [anon_sym_DOT] = ACTIONS(3110), - [anon_sym_as] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3110), - [anon_sym_COMMA] = ACTIONS(3110), - [anon_sym_RBRACE] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3110), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_fn] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_SLASH] = ACTIONS(3110), - [anon_sym_PERCENT] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT_EQ] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3110), - [anon_sym_mut] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_DASH_DASH] = ACTIONS(3110), - [anon_sym_QMARK] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_go] = ACTIONS(3110), - [anon_sym_spawn] = ACTIONS(3110), - [anon_sym_json_DOTdecode] = ACTIONS(3110), - [anon_sym_LBRACK2] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3110), - [anon_sym_CARET] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(3110), - [anon_sym_LT_DASH] = ACTIONS(3110), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_GT_GT] = ACTIONS(3110), - [anon_sym_GT_GT_GT] = ACTIONS(3110), - [anon_sym_AMP_CARET] = ACTIONS(3110), - [anon_sym_AMP_AMP] = ACTIONS(3110), - [anon_sym_PIPE_PIPE] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [sym_none] = ACTIONS(3110), - [sym_true] = ACTIONS(3110), - [sym_false] = ACTIONS(3110), - [sym_nil] = ACTIONS(3110), - [anon_sym_QMARK_DOT] = ACTIONS(3110), - [anon_sym_POUND_LBRACK] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_DOLLARif] = ACTIONS(3110), - [anon_sym_is] = ACTIONS(3110), - [anon_sym_BANGis] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_BANGin] = ACTIONS(3110), - [anon_sym_match] = ACTIONS(3110), - [anon_sym_select] = ACTIONS(3110), - [anon_sym_lock] = ACTIONS(3110), - [anon_sym_rlock] = ACTIONS(3110), - [anon_sym_unsafe] = ACTIONS(3110), - [anon_sym_sql] = ACTIONS(3110), - [sym_int_literal] = ACTIONS(3110), - [sym_float_literal] = ACTIONS(3110), - [sym_rune_literal] = ACTIONS(3110), - [anon_sym_AT] = ACTIONS(3110), - [anon_sym_shared] = ACTIONS(3110), - [anon_sym_map_LBRACK] = ACTIONS(3110), - [anon_sym_chan] = ACTIONS(3110), - [anon_sym_thread] = ACTIONS(3110), - [anon_sym_atomic] = ACTIONS(3110), - [sym___double_quote] = ACTIONS(3110), - [sym___single_quote] = ACTIONS(3110), - [sym___c_double_quote] = ACTIONS(3110), - [sym___c_single_quote] = ACTIONS(3110), - [sym___r_double_quote] = ACTIONS(3110), - [sym___r_single_quote] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3044), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3044), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3044), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3044), + [anon_sym_AMP_CARET] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3044), + [anon_sym_POUND_LBRACK] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3044), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [anon_sym_AT] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), }, [1266] = { - [sym_identifier] = ACTIONS(3098), - [anon_sym_LF] = ACTIONS(3098), - [anon_sym_CR] = ACTIONS(3098), - [anon_sym_CR_LF] = ACTIONS(3098), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3098), - [anon_sym_DOT] = ACTIONS(3098), - [anon_sym_as] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_COMMA] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3098), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_PERCENT] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3098), - [anon_sym_BANG_EQ] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(3098), - [anon_sym_GT_EQ] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_mut] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [anon_sym_QMARK] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_go] = ACTIONS(3098), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(3098), - [anon_sym_LBRACK2] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_CARET] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_LT_DASH] = ACTIONS(3098), - [anon_sym_LT_LT] = ACTIONS(3098), - [anon_sym_GT_GT] = ACTIONS(3098), - [anon_sym_GT_GT_GT] = ACTIONS(3098), - [anon_sym_AMP_CARET] = ACTIONS(3098), - [anon_sym_AMP_AMP] = ACTIONS(3098), - [anon_sym_PIPE_PIPE] = ACTIONS(3098), - [anon_sym_or] = ACTIONS(3098), - [sym_none] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_nil] = ACTIONS(3098), - [anon_sym_QMARK_DOT] = ACTIONS(3098), - [anon_sym_POUND_LBRACK] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_DOLLARif] = ACTIONS(3098), - [anon_sym_is] = ACTIONS(3098), - [anon_sym_BANGis] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_BANGin] = ACTIONS(3098), - [anon_sym_match] = ACTIONS(3098), - [anon_sym_select] = ACTIONS(3098), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(3098), - [anon_sym_sql] = ACTIONS(3098), - [sym_int_literal] = ACTIONS(3098), - [sym_float_literal] = ACTIONS(3098), - [sym_rune_literal] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_shared] = ACTIONS(3098), - [anon_sym_map_LBRACK] = ACTIONS(3098), - [anon_sym_chan] = ACTIONS(3098), - [anon_sym_thread] = ACTIONS(3098), - [anon_sym_atomic] = ACTIONS(3098), - [sym___double_quote] = ACTIONS(3098), - [sym___single_quote] = ACTIONS(3098), - [sym___c_double_quote] = ACTIONS(3098), - [sym___c_single_quote] = ACTIONS(3098), - [sym___r_double_quote] = ACTIONS(3098), - [sym___r_single_quote] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3345), + [anon_sym_LF] = ACTIONS(3345), + [anon_sym_CR] = ACTIONS(3345), + [anon_sym_CR_LF] = ACTIONS(3345), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_DOT] = ACTIONS(3345), + [anon_sym_as] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_COMMA] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_PIPE] = ACTIONS(3345), + [anon_sym_fn] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_PERCENT] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_GT] = ACTIONS(3345), + [anon_sym_EQ_EQ] = ACTIONS(3345), + [anon_sym_BANG_EQ] = ACTIONS(3345), + [anon_sym_LT_EQ] = ACTIONS(3345), + [anon_sym_GT_EQ] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3345), + [anon_sym_mut] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_QMARK] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_go] = ACTIONS(3345), + [anon_sym_spawn] = ACTIONS(3345), + [anon_sym_json_DOTdecode] = ACTIONS(3345), + [anon_sym_LBRACK2] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_CARET] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_LT_DASH] = ACTIONS(3345), + [anon_sym_LT_LT] = ACTIONS(3345), + [anon_sym_GT_GT] = ACTIONS(3345), + [anon_sym_GT_GT_GT] = ACTIONS(3345), + [anon_sym_AMP_CARET] = ACTIONS(3345), + [anon_sym_AMP_AMP] = ACTIONS(3345), + [anon_sym_PIPE_PIPE] = ACTIONS(3345), + [anon_sym_or] = ACTIONS(3345), + [sym_none] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_nil] = ACTIONS(3345), + [anon_sym_QMARK_DOT] = ACTIONS(3345), + [anon_sym_POUND_LBRACK] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_DOLLARif] = ACTIONS(3345), + [anon_sym_is] = ACTIONS(3345), + [anon_sym_BANGis] = ACTIONS(3345), + [anon_sym_in] = ACTIONS(3345), + [anon_sym_BANGin] = ACTIONS(3345), + [anon_sym_match] = ACTIONS(3345), + [anon_sym_select] = ACTIONS(3345), + [anon_sym_lock] = ACTIONS(3345), + [anon_sym_rlock] = ACTIONS(3345), + [anon_sym_unsafe] = ACTIONS(3345), + [anon_sym_sql] = ACTIONS(3345), + [sym_int_literal] = ACTIONS(3345), + [sym_float_literal] = ACTIONS(3345), + [sym_rune_literal] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_shared] = ACTIONS(3345), + [anon_sym_map_LBRACK] = ACTIONS(3345), + [anon_sym_chan] = ACTIONS(3345), + [anon_sym_thread] = ACTIONS(3345), + [anon_sym_atomic] = ACTIONS(3345), + [sym___double_quote] = ACTIONS(3345), + [sym___single_quote] = ACTIONS(3345), + [sym___c_double_quote] = ACTIONS(3345), + [sym___c_single_quote] = ACTIONS(3345), + [sym___r_double_quote] = ACTIONS(3345), + [sym___r_single_quote] = ACTIONS(3345), }, [1267] = { - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [sym_identifier] = ACTIONS(3140), + [anon_sym_LF] = ACTIONS(3140), + [anon_sym_CR] = ACTIONS(3140), + [anon_sym_CR_LF] = ACTIONS(3140), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3140), + [anon_sym_fn] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3140), + [anon_sym_mut] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_go] = ACTIONS(3140), + [anon_sym_spawn] = ACTIONS(3140), + [anon_sym_json_DOTdecode] = ACTIONS(3140), + [anon_sym_LBRACK2] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_GT_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_CARET] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_or] = ACTIONS(3140), + [sym_none] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_nil] = ACTIONS(3140), + [anon_sym_QMARK_DOT] = ACTIONS(3140), + [anon_sym_POUND_LBRACK] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_DOLLARif] = ACTIONS(3140), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3140), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_BANGin] = ACTIONS(3140), + [anon_sym_match] = ACTIONS(3140), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(3140), + [anon_sym_sql] = ACTIONS(3140), + [sym_int_literal] = ACTIONS(3140), + [sym_float_literal] = ACTIONS(3140), + [sym_rune_literal] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_shared] = ACTIONS(3140), + [anon_sym_map_LBRACK] = ACTIONS(3140), + [anon_sym_chan] = ACTIONS(3140), + [anon_sym_thread] = ACTIONS(3140), + [anon_sym_atomic] = ACTIONS(3140), + [sym___double_quote] = ACTIONS(3140), + [sym___single_quote] = ACTIONS(3140), + [sym___c_double_quote] = ACTIONS(3140), + [sym___c_single_quote] = ACTIONS(3140), + [sym___r_double_quote] = ACTIONS(3140), + [sym___r_single_quote] = ACTIONS(3140), }, [1268] = { - [sym_identifier] = ACTIONS(2890), - [anon_sym_LF] = ACTIONS(2890), - [anon_sym_CR] = ACTIONS(2890), - [anon_sym_CR_LF] = ACTIONS(2890), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_DOT] = ACTIONS(2890), - [anon_sym_as] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_fn] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_EQ_EQ] = ACTIONS(2890), - [anon_sym_BANG_EQ] = ACTIONS(2890), - [anon_sym_LT_EQ] = ACTIONS(2890), - [anon_sym_GT_EQ] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2890), - [anon_sym_mut] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_QMARK] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_go] = ACTIONS(2890), - [anon_sym_spawn] = ACTIONS(2890), - [anon_sym_json_DOTdecode] = ACTIONS(2890), - [anon_sym_LBRACK2] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_CARET] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_LT_DASH] = ACTIONS(2890), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2890), - [anon_sym_GT_GT_GT] = ACTIONS(2890), - [anon_sym_AMP_CARET] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_PIPE_PIPE] = ACTIONS(2890), - [anon_sym_or] = ACTIONS(2890), - [sym_none] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_nil] = ACTIONS(2890), - [anon_sym_QMARK_DOT] = ACTIONS(2890), - [anon_sym_POUND_LBRACK] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_DOLLARif] = ACTIONS(2890), - [anon_sym_is] = ACTIONS(2890), - [anon_sym_BANGis] = ACTIONS(2890), - [anon_sym_in] = ACTIONS(2890), - [anon_sym_BANGin] = ACTIONS(2890), - [anon_sym_match] = ACTIONS(2890), - [anon_sym_select] = ACTIONS(2890), - [anon_sym_lock] = ACTIONS(2890), - [anon_sym_rlock] = ACTIONS(2890), - [anon_sym_unsafe] = ACTIONS(2890), - [anon_sym_sql] = ACTIONS(2890), - [sym_int_literal] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), - [sym_rune_literal] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2890), - [anon_sym_shared] = ACTIONS(2890), - [anon_sym_map_LBRACK] = ACTIONS(2890), - [anon_sym_chan] = ACTIONS(2890), - [anon_sym_thread] = ACTIONS(2890), - [anon_sym_atomic] = ACTIONS(2890), - [sym___double_quote] = ACTIONS(2890), - [sym___single_quote] = ACTIONS(2890), - [sym___c_double_quote] = ACTIONS(2890), - [sym___c_single_quote] = ACTIONS(2890), - [sym___r_double_quote] = ACTIONS(2890), - [sym___r_single_quote] = ACTIONS(2890), + [sym_identifier] = ACTIONS(3309), + [anon_sym_LF] = ACTIONS(3309), + [anon_sym_CR] = ACTIONS(3309), + [anon_sym_CR_LF] = ACTIONS(3309), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3309), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_or] = ACTIONS(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [sym___double_quote] = ACTIONS(3309), + [sym___single_quote] = ACTIONS(3309), + [sym___c_double_quote] = ACTIONS(3309), + [sym___c_single_quote] = ACTIONS(3309), + [sym___r_double_quote] = ACTIONS(3309), + [sym___r_single_quote] = ACTIONS(3309), }, [1269] = { - [sym_identifier] = ACTIONS(3090), - [anon_sym_LF] = ACTIONS(3090), - [anon_sym_CR] = ACTIONS(3090), - [anon_sym_CR_LF] = ACTIONS(3090), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3090), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3090), - [anon_sym_LT_EQ] = ACTIONS(3090), - [anon_sym_GT_EQ] = ACTIONS(3090), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3090), - [anon_sym_DASH_DASH] = ACTIONS(3090), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3090), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3090), - [anon_sym_CARET] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3090), - [anon_sym_LT_LT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3090), - [anon_sym_AMP_CARET] = ACTIONS(3090), - [anon_sym_AMP_AMP] = ACTIONS(3090), - [anon_sym_PIPE_PIPE] = ACTIONS(3090), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3090), - [anon_sym_POUND_LBRACK] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3090), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3090), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3090), - [sym_rune_literal] = ACTIONS(3090), - [anon_sym_AT] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3090), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [sym___double_quote] = ACTIONS(3090), - [sym___single_quote] = ACTIONS(3090), - [sym___c_double_quote] = ACTIONS(3090), - [sym___c_single_quote] = ACTIONS(3090), - [sym___r_double_quote] = ACTIONS(3090), - [sym___r_single_quote] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [anon_sym_AT] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [1270] = { - [sym_identifier] = ACTIONS(2898), - [anon_sym_LF] = ACTIONS(2898), - [anon_sym_CR] = ACTIONS(2898), - [anon_sym_CR_LF] = ACTIONS(2898), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_COMMA] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2898), - [anon_sym_BANG_EQ] = ACTIONS(2898), - [anon_sym_LT_EQ] = ACTIONS(2898), - [anon_sym_GT_EQ] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2898), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_CARET] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2898), - [anon_sym_LT_LT] = ACTIONS(2898), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2898), - [anon_sym_AMP_CARET] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_PIPE_PIPE] = ACTIONS(2898), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2898), - [anon_sym_POUND_LBRACK] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2898), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2898), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), - [sym_rune_literal] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2898), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2898), - [sym___single_quote] = ACTIONS(2898), - [sym___c_double_quote] = ACTIONS(2898), - [sym___c_single_quote] = ACTIONS(2898), - [sym___r_double_quote] = ACTIONS(2898), - [sym___r_single_quote] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2750), + [anon_sym_LF] = ACTIONS(2750), + [anon_sym_CR] = ACTIONS(2750), + [anon_sym_CR_LF] = ACTIONS(2750), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_COMMA] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2750), + [anon_sym_BANG_EQ] = ACTIONS(2750), + [anon_sym_LT_EQ] = ACTIONS(2750), + [anon_sym_GT_EQ] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2750), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_CARET] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2750), + [anon_sym_LT_LT] = ACTIONS(2750), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2750), + [anon_sym_AMP_CARET] = ACTIONS(2750), + [anon_sym_AMP_AMP] = ACTIONS(2750), + [anon_sym_PIPE_PIPE] = ACTIONS(2750), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2750), + [anon_sym_POUND_LBRACK] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2750), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + [sym_rune_literal] = ACTIONS(2750), + [anon_sym_AT] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2750), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2750), + [sym___single_quote] = ACTIONS(2750), + [sym___c_double_quote] = ACTIONS(2750), + [sym___c_single_quote] = ACTIONS(2750), + [sym___r_double_quote] = ACTIONS(2750), + [sym___r_single_quote] = ACTIONS(2750), }, [1271] = { - [sym_identifier] = ACTIONS(2930), - [anon_sym_LF] = ACTIONS(2930), - [anon_sym_CR] = ACTIONS(2930), - [anon_sym_CR_LF] = ACTIONS(2930), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2930), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_as] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_fn] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_GT] = ACTIONS(2930), - [anon_sym_EQ_EQ] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_mut] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2930), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_go] = ACTIONS(2930), - [anon_sym_spawn] = ACTIONS(2930), - [anon_sym_json_DOTdecode] = ACTIONS(2930), - [anon_sym_LBRACK2] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2930), - [anon_sym_LT_LT] = ACTIONS(2930), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_GT_GT_GT] = ACTIONS(2930), - [anon_sym_AMP_CARET] = ACTIONS(2930), - [anon_sym_AMP_AMP] = ACTIONS(2930), - [anon_sym_PIPE_PIPE] = ACTIONS(2930), - [anon_sym_or] = ACTIONS(2930), - [sym_none] = ACTIONS(2930), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_nil] = ACTIONS(2930), - [anon_sym_QMARK_DOT] = ACTIONS(2930), - [anon_sym_POUND_LBRACK] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_DOLLARif] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2930), - [anon_sym_BANGis] = ACTIONS(2930), - [anon_sym_in] = ACTIONS(2930), - [anon_sym_BANGin] = ACTIONS(2930), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_select] = ACTIONS(2930), - [anon_sym_lock] = ACTIONS(2930), - [anon_sym_rlock] = ACTIONS(2930), - [anon_sym_unsafe] = ACTIONS(2930), - [anon_sym_sql] = ACTIONS(2930), - [sym_int_literal] = ACTIONS(2930), - [sym_float_literal] = ACTIONS(2930), - [sym_rune_literal] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2930), - [anon_sym_shared] = ACTIONS(2930), - [anon_sym_map_LBRACK] = ACTIONS(2930), - [anon_sym_chan] = ACTIONS(2930), - [anon_sym_thread] = ACTIONS(2930), - [anon_sym_atomic] = ACTIONS(2930), - [sym___double_quote] = ACTIONS(2930), - [sym___single_quote] = ACTIONS(2930), - [sym___c_double_quote] = ACTIONS(2930), - [sym___c_single_quote] = ACTIONS(2930), - [sym___r_double_quote] = ACTIONS(2930), - [sym___r_single_quote] = ACTIONS(2930), + [sym_identifier] = ACTIONS(3301), + [anon_sym_LF] = ACTIONS(3301), + [anon_sym_CR] = ACTIONS(3301), + [anon_sym_CR_LF] = ACTIONS(3301), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [anon_sym_EQ_EQ] = ACTIONS(3301), + [anon_sym_BANG_EQ] = ACTIONS(3301), + [anon_sym_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_EQ] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3301), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3301), + [anon_sym_PIPE_PIPE] = ACTIONS(3301), + [anon_sym_or] = ACTIONS(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [sym___double_quote] = ACTIONS(3301), + [sym___single_quote] = ACTIONS(3301), + [sym___c_double_quote] = ACTIONS(3301), + [sym___c_single_quote] = ACTIONS(3301), + [sym___r_double_quote] = ACTIONS(3301), + [sym___r_single_quote] = ACTIONS(3301), }, [1272] = { - [sym_identifier] = ACTIONS(2902), - [anon_sym_LF] = ACTIONS(2902), - [anon_sym_CR] = ACTIONS(2902), - [anon_sym_CR_LF] = ACTIONS(2902), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_COMMA] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2902), - [anon_sym_BANG_EQ] = ACTIONS(2902), - [anon_sym_LT_EQ] = ACTIONS(2902), - [anon_sym_GT_EQ] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2902), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_CARET] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2902), - [anon_sym_LT_LT] = ACTIONS(2902), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2902), - [anon_sym_AMP_CARET] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_PIPE_PIPE] = ACTIONS(2902), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2902), - [anon_sym_POUND_LBRACK] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2902), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2902), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_rune_literal] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2902), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2902), - [sym___single_quote] = ACTIONS(2902), - [sym___c_double_quote] = ACTIONS(2902), - [sym___c_single_quote] = ACTIONS(2902), - [sym___r_double_quote] = ACTIONS(2902), - [sym___r_single_quote] = ACTIONS(2902), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3072), + [anon_sym_POUND_LBRACK] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3072), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), }, [1273] = { - [sym_identifier] = ACTIONS(2838), - [anon_sym_LF] = ACTIONS(2838), - [anon_sym_CR] = ACTIONS(2838), - [anon_sym_CR_LF] = ACTIONS(2838), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_as] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_fn] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_mut] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_go] = ACTIONS(2838), - [anon_sym_spawn] = ACTIONS(2838), - [anon_sym_json_DOTdecode] = ACTIONS(2838), - [anon_sym_LBRACK2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2838), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_or] = ACTIONS(2838), - [sym_none] = ACTIONS(2838), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_nil] = ACTIONS(2838), - [anon_sym_QMARK_DOT] = ACTIONS(2838), - [anon_sym_POUND_LBRACK] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_DOLLARif] = ACTIONS(2838), - [anon_sym_is] = ACTIONS(2838), - [anon_sym_BANGis] = ACTIONS(2838), - [anon_sym_in] = ACTIONS(2838), - [anon_sym_BANGin] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_select] = ACTIONS(2838), - [anon_sym_lock] = ACTIONS(2838), - [anon_sym_rlock] = ACTIONS(2838), - [anon_sym_unsafe] = ACTIONS(2838), - [anon_sym_sql] = ACTIONS(2838), - [sym_int_literal] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2838), - [sym_rune_literal] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2838), - [anon_sym_shared] = ACTIONS(2838), - [anon_sym_map_LBRACK] = ACTIONS(2838), - [anon_sym_chan] = ACTIONS(2838), - [anon_sym_thread] = ACTIONS(2838), - [anon_sym_atomic] = ACTIONS(2838), - [sym___double_quote] = ACTIONS(2838), - [sym___single_quote] = ACTIONS(2838), - [sym___c_double_quote] = ACTIONS(2838), - [sym___c_single_quote] = ACTIONS(2838), - [sym___r_double_quote] = ACTIONS(2838), - [sym___r_single_quote] = ACTIONS(2838), + [sym_identifier] = ACTIONS(3100), + [anon_sym_LF] = ACTIONS(3100), + [anon_sym_CR] = ACTIONS(3100), + [anon_sym_CR_LF] = ACTIONS(3100), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_DOT] = ACTIONS(3100), + [anon_sym_as] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_PIPE] = ACTIONS(3100), + [anon_sym_fn] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_LT_EQ] = ACTIONS(3100), + [anon_sym_GT_EQ] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_mut] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_QMARK] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3100), + [anon_sym_spawn] = ACTIONS(3100), + [anon_sym_json_DOTdecode] = ACTIONS(3100), + [anon_sym_LBRACK2] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_CARET] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3100), + [anon_sym_LT_LT] = ACTIONS(3100), + [anon_sym_GT_GT] = ACTIONS(3100), + [anon_sym_GT_GT_GT] = ACTIONS(3100), + [anon_sym_AMP_CARET] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_or] = ACTIONS(3100), + [sym_none] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_nil] = ACTIONS(3100), + [anon_sym_QMARK_DOT] = ACTIONS(3100), + [anon_sym_POUND_LBRACK] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_DOLLARif] = ACTIONS(3100), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3100), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_BANGin] = ACTIONS(3100), + [anon_sym_match] = ACTIONS(3100), + [anon_sym_select] = ACTIONS(3100), + [anon_sym_lock] = ACTIONS(3100), + [anon_sym_rlock] = ACTIONS(3100), + [anon_sym_unsafe] = ACTIONS(3100), + [anon_sym_sql] = ACTIONS(3100), + [sym_int_literal] = ACTIONS(3100), + [sym_float_literal] = ACTIONS(3100), + [sym_rune_literal] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(3100), + [anon_sym_map_LBRACK] = ACTIONS(3100), + [anon_sym_chan] = ACTIONS(3100), + [anon_sym_thread] = ACTIONS(3100), + [anon_sym_atomic] = ACTIONS(3100), + [sym___double_quote] = ACTIONS(3100), + [sym___single_quote] = ACTIONS(3100), + [sym___c_double_quote] = ACTIONS(3100), + [sym___c_single_quote] = ACTIONS(3100), + [sym___r_double_quote] = ACTIONS(3100), + [sym___r_single_quote] = ACTIONS(3100), }, [1274] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(3602), + [sym_else_branch] = STATE(1413), + [sym_identifier] = ACTIONS(2558), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3602), - [anon_sym_mut] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(3602), - [anon_sym_spawn] = ACTIONS(3602), - [anon_sym_json_DOTdecode] = ACTIONS(3608), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(3608), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [anon_sym_or] = ACTIONS(3642), - [sym_none] = ACTIONS(3602), - [sym_true] = ACTIONS(3602), - [sym_false] = ACTIONS(3602), - [sym_nil] = ACTIONS(3602), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_DOLLARif] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3648), - [anon_sym_BANGis] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_BANGin] = ACTIONS(3654), - [anon_sym_match] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_lock] = ACTIONS(3602), - [anon_sym_rlock] = ACTIONS(3602), - [anon_sym_unsafe] = ACTIONS(3602), - [anon_sym_sql] = ACTIONS(3602), - [sym_int_literal] = ACTIONS(3602), - [sym_float_literal] = ACTIONS(3608), - [sym_rune_literal] = ACTIONS(3608), - [anon_sym_AT] = ACTIONS(3602), - [anon_sym_shared] = ACTIONS(3602), - [anon_sym_map_LBRACK] = ACTIONS(3608), - [anon_sym_chan] = ACTIONS(3602), - [anon_sym_thread] = ACTIONS(3602), - [anon_sym_atomic] = ACTIONS(3602), - [sym___double_quote] = ACTIONS(3608), - [sym___single_quote] = ACTIONS(3608), - [sym___c_double_quote] = ACTIONS(3608), - [sym___c_single_quote] = ACTIONS(3608), - [sym___r_double_quote] = ACTIONS(3608), - [sym___r_single_quote] = ACTIONS(3608), + [anon_sym_DOT] = ACTIONS(2558), + [anon_sym_as] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2556), + [anon_sym_COMMA] = ACTIONS(2556), + [anon_sym_RBRACE] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_fn] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2558), + [anon_sym_PERCENT] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_RBRACK] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2558), + [anon_sym_mut] = ACTIONS(2558), + [anon_sym_COLON] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2556), + [anon_sym_QMARK] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_go] = ACTIONS(2558), + [anon_sym_spawn] = ACTIONS(2558), + [anon_sym_json_DOTdecode] = ACTIONS(2556), + [anon_sym_LBRACK2] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2556), + [anon_sym_CARET] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_LT_DASH] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(2556), + [anon_sym_GT_GT] = ACTIONS(2558), + [anon_sym_GT_GT_GT] = ACTIONS(2556), + [anon_sym_AMP_CARET] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2556), + [anon_sym_PIPE_PIPE] = ACTIONS(2556), + [anon_sym_or] = ACTIONS(2558), + [sym_none] = ACTIONS(2558), + [sym_true] = ACTIONS(2558), + [sym_false] = ACTIONS(2558), + [sym_nil] = ACTIONS(2558), + [anon_sym_QMARK_DOT] = ACTIONS(2556), + [anon_sym_POUND_LBRACK] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(3802), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_is] = ACTIONS(2558), + [anon_sym_BANGis] = ACTIONS(2556), + [anon_sym_in] = ACTIONS(2558), + [anon_sym_BANGin] = ACTIONS(2556), + [anon_sym_match] = ACTIONS(2558), + [anon_sym_select] = ACTIONS(2558), + [anon_sym_lock] = ACTIONS(2558), + [anon_sym_rlock] = ACTIONS(2558), + [anon_sym_unsafe] = ACTIONS(2558), + [anon_sym_sql] = ACTIONS(2558), + [sym_int_literal] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2556), + [sym_rune_literal] = ACTIONS(2556), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_shared] = ACTIONS(2558), + [anon_sym_map_LBRACK] = ACTIONS(2556), + [anon_sym_chan] = ACTIONS(2558), + [anon_sym_thread] = ACTIONS(2558), + [anon_sym_atomic] = ACTIONS(2558), + [sym___double_quote] = ACTIONS(2556), + [sym___single_quote] = ACTIONS(2556), + [sym___c_double_quote] = ACTIONS(2556), + [sym___c_single_quote] = ACTIONS(2556), + [sym___r_double_quote] = ACTIONS(2556), + [sym___r_single_quote] = ACTIONS(2556), }, [1275] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2160), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_LT_DASH] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_AMP_CARET] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2160), - [sym_rune_literal] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2160), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2160), - [sym___single_quote] = ACTIONS(2160), - [sym___c_double_quote] = ACTIONS(2160), - [sym___c_single_quote] = ACTIONS(2160), - [sym___r_double_quote] = ACTIONS(2160), - [sym___r_single_quote] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2940), + [anon_sym_LF] = ACTIONS(2940), + [anon_sym_CR] = ACTIONS(2940), + [anon_sym_CR_LF] = ACTIONS(2940), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2940), + [anon_sym_DOT] = ACTIONS(2940), + [anon_sym_as] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_RBRACE] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(2940), + [anon_sym_fn] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_PERCENT] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_GT] = ACTIONS(2940), + [anon_sym_EQ_EQ] = ACTIONS(2940), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_LT_EQ] = ACTIONS(2940), + [anon_sym_GT_EQ] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_mut] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_QMARK] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2940), + [anon_sym_go] = ACTIONS(2940), + [anon_sym_spawn] = ACTIONS(2940), + [anon_sym_json_DOTdecode] = ACTIONS(2940), + [anon_sym_LBRACK2] = ACTIONS(2940), + [anon_sym_TILDE] = ACTIONS(2940), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_LT_DASH] = ACTIONS(2940), + [anon_sym_LT_LT] = ACTIONS(2940), + [anon_sym_GT_GT] = ACTIONS(2940), + [anon_sym_GT_GT_GT] = ACTIONS(2940), + [anon_sym_AMP_CARET] = ACTIONS(2940), + [anon_sym_AMP_AMP] = ACTIONS(2940), + [anon_sym_PIPE_PIPE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2940), + [sym_none] = ACTIONS(2940), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [sym_nil] = ACTIONS(2940), + [anon_sym_QMARK_DOT] = ACTIONS(2940), + [anon_sym_POUND_LBRACK] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_DOLLARif] = ACTIONS(2940), + [anon_sym_is] = ACTIONS(2940), + [anon_sym_BANGis] = ACTIONS(2940), + [anon_sym_in] = ACTIONS(2940), + [anon_sym_BANGin] = ACTIONS(2940), + [anon_sym_match] = ACTIONS(2940), + [anon_sym_select] = ACTIONS(2940), + [anon_sym_lock] = ACTIONS(2940), + [anon_sym_rlock] = ACTIONS(2940), + [anon_sym_unsafe] = ACTIONS(2940), + [anon_sym_sql] = ACTIONS(2940), + [sym_int_literal] = ACTIONS(2940), + [sym_float_literal] = ACTIONS(2940), + [sym_rune_literal] = ACTIONS(2940), + [anon_sym_AT] = ACTIONS(2940), + [anon_sym_shared] = ACTIONS(2940), + [anon_sym_map_LBRACK] = ACTIONS(2940), + [anon_sym_chan] = ACTIONS(2940), + [anon_sym_thread] = ACTIONS(2940), + [anon_sym_atomic] = ACTIONS(2940), + [sym___double_quote] = ACTIONS(2940), + [sym___single_quote] = ACTIONS(2940), + [sym___c_double_quote] = ACTIONS(2940), + [sym___c_single_quote] = ACTIONS(2940), + [sym___r_double_quote] = ACTIONS(2940), + [sym___r_single_quote] = ACTIONS(2940), }, [1276] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2246), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2244), - [anon_sym_BANG_EQ] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2244), - [anon_sym_GT_EQ] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2244), - [anon_sym_struct] = ACTIONS(2246), - [anon_sym_mut] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2244), - [anon_sym_DASH_DASH] = ACTIONS(2244), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2246), - [anon_sym_spawn] = ACTIONS(2246), - [anon_sym_json_DOTdecode] = ACTIONS(2244), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_LT_DASH] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2244), - [anon_sym_AMP_CARET] = ACTIONS(2244), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [anon_sym_or] = ACTIONS(2246), - [sym_none] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_nil] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_DOLLARif] = ACTIONS(2246), - [anon_sym_is] = ACTIONS(2246), - [anon_sym_BANGis] = ACTIONS(2244), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_BANGin] = ACTIONS(2244), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_select] = ACTIONS(2246), - [anon_sym_lock] = ACTIONS(2246), - [anon_sym_rlock] = ACTIONS(2246), - [anon_sym_unsafe] = ACTIONS(2246), - [anon_sym_sql] = ACTIONS(2246), - [sym_int_literal] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2244), - [sym_rune_literal] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_shared] = ACTIONS(2246), - [anon_sym_map_LBRACK] = ACTIONS(2244), - [anon_sym_chan] = ACTIONS(2246), - [anon_sym_thread] = ACTIONS(2246), - [anon_sym_atomic] = ACTIONS(2246), - [sym___double_quote] = ACTIONS(2244), - [sym___single_quote] = ACTIONS(2244), - [sym___c_double_quote] = ACTIONS(2244), - [sym___c_single_quote] = ACTIONS(2244), - [sym___r_double_quote] = ACTIONS(2244), - [sym___r_single_quote] = ACTIONS(2244), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LF] = ACTIONS(3060), + [anon_sym_CR] = ACTIONS(3060), + [anon_sym_CR_LF] = ACTIONS(3060), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3060), + [anon_sym_BANG_EQ] = ACTIONS(3060), + [anon_sym_LT_EQ] = ACTIONS(3060), + [anon_sym_GT_EQ] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_mut] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3060), + [anon_sym_DASH_DASH] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_go] = ACTIONS(3060), + [anon_sym_spawn] = ACTIONS(3060), + [anon_sym_json_DOTdecode] = ACTIONS(3060), + [anon_sym_LBRACK2] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [anon_sym_LT_LT] = ACTIONS(3060), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_GT_GT_GT] = ACTIONS(3060), + [anon_sym_AMP_CARET] = ACTIONS(3060), + [anon_sym_AMP_AMP] = ACTIONS(3060), + [anon_sym_PIPE_PIPE] = ACTIONS(3060), + [anon_sym_or] = ACTIONS(3060), + [sym_none] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_nil] = ACTIONS(3060), + [anon_sym_QMARK_DOT] = ACTIONS(3060), + [anon_sym_POUND_LBRACK] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_DOLLARif] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3060), + [anon_sym_BANGis] = ACTIONS(3060), + [anon_sym_in] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_select] = ACTIONS(3060), + [anon_sym_lock] = ACTIONS(3060), + [anon_sym_rlock] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_sql] = ACTIONS(3060), + [sym_int_literal] = ACTIONS(3060), + [sym_float_literal] = ACTIONS(3060), + [sym_rune_literal] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3060), + [anon_sym_shared] = ACTIONS(3060), + [anon_sym_map_LBRACK] = ACTIONS(3060), + [anon_sym_chan] = ACTIONS(3060), + [anon_sym_thread] = ACTIONS(3060), + [anon_sym_atomic] = ACTIONS(3060), + [sym___double_quote] = ACTIONS(3060), + [sym___single_quote] = ACTIONS(3060), + [sym___c_double_quote] = ACTIONS(3060), + [sym___c_single_quote] = ACTIONS(3060), + [sym___r_double_quote] = ACTIONS(3060), + [sym___r_single_quote] = ACTIONS(3060), }, [1277] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2224), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2224), - [anon_sym_PERCENT] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_EQ_EQ] = ACTIONS(2222), - [anon_sym_BANG_EQ] = ACTIONS(2222), - [anon_sym_LT_EQ] = ACTIONS(2222), - [anon_sym_GT_EQ] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_mut] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2224), - [anon_sym_spawn] = ACTIONS(2224), - [anon_sym_json_DOTdecode] = ACTIONS(2222), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_LT_DASH] = ACTIONS(2222), - [anon_sym_LT_LT] = ACTIONS(2222), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2222), - [anon_sym_AMP_CARET] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2222), - [anon_sym_PIPE_PIPE] = ACTIONS(2222), - [anon_sym_or] = ACTIONS(2224), - [sym_none] = ACTIONS(2224), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [sym_nil] = ACTIONS(2224), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_DOLLARif] = ACTIONS(2224), - [anon_sym_is] = ACTIONS(2224), - [anon_sym_BANGis] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2224), - [anon_sym_BANGin] = ACTIONS(2222), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_select] = ACTIONS(2224), - [anon_sym_lock] = ACTIONS(2224), - [anon_sym_rlock] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_sql] = ACTIONS(2224), - [sym_int_literal] = ACTIONS(2224), - [sym_float_literal] = ACTIONS(2222), - [sym_rune_literal] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [anon_sym_shared] = ACTIONS(2224), - [anon_sym_map_LBRACK] = ACTIONS(2222), - [anon_sym_chan] = ACTIONS(2224), - [anon_sym_thread] = ACTIONS(2224), - [anon_sym_atomic] = ACTIONS(2224), - [sym___double_quote] = ACTIONS(2222), - [sym___single_quote] = ACTIONS(2222), - [sym___c_double_quote] = ACTIONS(2222), - [sym___c_single_quote] = ACTIONS(2222), - [sym___r_double_quote] = ACTIONS(2222), - [sym___r_single_quote] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LF] = ACTIONS(2960), + [anon_sym_CR] = ACTIONS(2960), + [anon_sym_CR_LF] = ACTIONS(2960), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_DOT] = ACTIONS(2960), + [anon_sym_as] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_RBRACE] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_PIPE] = ACTIONS(2960), + [anon_sym_fn] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_GT] = ACTIONS(2960), + [anon_sym_EQ_EQ] = ACTIONS(2960), + [anon_sym_BANG_EQ] = ACTIONS(2960), + [anon_sym_LT_EQ] = ACTIONS(2960), + [anon_sym_GT_EQ] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_struct] = ACTIONS(2960), + [anon_sym_mut] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2960), + [anon_sym_QMARK] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2960), + [anon_sym_go] = ACTIONS(2960), + [anon_sym_spawn] = ACTIONS(2960), + [anon_sym_json_DOTdecode] = ACTIONS(2960), + [anon_sym_LBRACK2] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2960), + [anon_sym_CARET] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2960), + [anon_sym_LT_DASH] = ACTIONS(2960), + [anon_sym_LT_LT] = ACTIONS(2960), + [anon_sym_GT_GT] = ACTIONS(2960), + [anon_sym_GT_GT_GT] = ACTIONS(2960), + [anon_sym_AMP_CARET] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_PIPE_PIPE] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2960), + [sym_none] = ACTIONS(2960), + [sym_true] = ACTIONS(2960), + [sym_false] = ACTIONS(2960), + [sym_nil] = ACTIONS(2960), + [anon_sym_QMARK_DOT] = ACTIONS(2960), + [anon_sym_POUND_LBRACK] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_DOLLARif] = ACTIONS(2960), + [anon_sym_is] = ACTIONS(2960), + [anon_sym_BANGis] = ACTIONS(2960), + [anon_sym_in] = ACTIONS(2960), + [anon_sym_BANGin] = ACTIONS(2960), + [anon_sym_match] = ACTIONS(2960), + [anon_sym_select] = ACTIONS(2960), + [anon_sym_lock] = ACTIONS(2960), + [anon_sym_rlock] = ACTIONS(2960), + [anon_sym_unsafe] = ACTIONS(2960), + [anon_sym_sql] = ACTIONS(2960), + [sym_int_literal] = ACTIONS(2960), + [sym_float_literal] = ACTIONS(2960), + [sym_rune_literal] = ACTIONS(2960), + [anon_sym_AT] = ACTIONS(2960), + [anon_sym_shared] = ACTIONS(2960), + [anon_sym_map_LBRACK] = ACTIONS(2960), + [anon_sym_chan] = ACTIONS(2960), + [anon_sym_thread] = ACTIONS(2960), + [anon_sym_atomic] = ACTIONS(2960), + [sym___double_quote] = ACTIONS(2960), + [sym___single_quote] = ACTIONS(2960), + [sym___c_double_quote] = ACTIONS(2960), + [sym___c_single_quote] = ACTIONS(2960), + [sym___r_double_quote] = ACTIONS(2960), + [sym___r_single_quote] = ACTIONS(2960), }, [1278] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2144), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2144), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2144), - [anon_sym_GT] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2144), - [anon_sym_spawn] = ACTIONS(2144), - [anon_sym_json_DOTdecode] = ACTIONS(2142), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_or] = ACTIONS(2144), - [sym_none] = ACTIONS(2144), - [sym_true] = ACTIONS(2144), - [sym_false] = ACTIONS(2144), - [sym_nil] = ACTIONS(2144), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_DOLLARif] = ACTIONS(2144), - [anon_sym_is] = ACTIONS(2144), - [anon_sym_BANGis] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2144), - [anon_sym_BANGin] = ACTIONS(2142), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_select] = ACTIONS(2144), - [anon_sym_lock] = ACTIONS(2144), - [anon_sym_rlock] = ACTIONS(2144), - [anon_sym_unsafe] = ACTIONS(2144), - [anon_sym_sql] = ACTIONS(2144), - [sym_int_literal] = ACTIONS(2144), - [sym_float_literal] = ACTIONS(2142), - [sym_rune_literal] = ACTIONS(2142), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_shared] = ACTIONS(2144), - [anon_sym_map_LBRACK] = ACTIONS(2142), - [anon_sym_chan] = ACTIONS(2144), - [anon_sym_thread] = ACTIONS(2144), - [anon_sym_atomic] = ACTIONS(2144), - [sym___double_quote] = ACTIONS(2142), - [sym___single_quote] = ACTIONS(2142), - [sym___c_double_quote] = ACTIONS(2142), - [sym___c_single_quote] = ACTIONS(2142), - [sym___r_double_quote] = ACTIONS(2142), - [sym___r_single_quote] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2964), + [anon_sym_LF] = ACTIONS(2964), + [anon_sym_CR] = ACTIONS(2964), + [anon_sym_CR_LF] = ACTIONS(2964), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2964), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2964), + [anon_sym_mut] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_go] = ACTIONS(2964), + [anon_sym_spawn] = ACTIONS(2964), + [anon_sym_json_DOTdecode] = ACTIONS(2964), + [anon_sym_LBRACK2] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_LT_LT] = ACTIONS(2964), + [anon_sym_GT_GT] = ACTIONS(2964), + [anon_sym_GT_GT_GT] = ACTIONS(2964), + [anon_sym_AMP_CARET] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2964), + [sym_none] = ACTIONS(2964), + [sym_true] = ACTIONS(2964), + [sym_false] = ACTIONS(2964), + [sym_nil] = ACTIONS(2964), + [anon_sym_QMARK_DOT] = ACTIONS(2964), + [anon_sym_POUND_LBRACK] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_DOLLARif] = ACTIONS(2964), + [anon_sym_is] = ACTIONS(2964), + [anon_sym_BANGis] = ACTIONS(2964), + [anon_sym_in] = ACTIONS(2964), + [anon_sym_BANGin] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_select] = ACTIONS(2964), + [anon_sym_lock] = ACTIONS(2964), + [anon_sym_rlock] = ACTIONS(2964), + [anon_sym_unsafe] = ACTIONS(2964), + [anon_sym_sql] = ACTIONS(2964), + [sym_int_literal] = ACTIONS(2964), + [sym_float_literal] = ACTIONS(2964), + [sym_rune_literal] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_shared] = ACTIONS(2964), + [anon_sym_map_LBRACK] = ACTIONS(2964), + [anon_sym_chan] = ACTIONS(2964), + [anon_sym_thread] = ACTIONS(2964), + [anon_sym_atomic] = ACTIONS(2964), + [sym___double_quote] = ACTIONS(2964), + [sym___single_quote] = ACTIONS(2964), + [sym___c_double_quote] = ACTIONS(2964), + [sym___c_single_quote] = ACTIONS(2964), + [sym___r_double_quote] = ACTIONS(2964), + [sym___r_single_quote] = ACTIONS(2964), }, [1279] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_COMMA] = ACTIONS(2154), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_mut] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2156), - [anon_sym_spawn] = ACTIONS(2156), - [anon_sym_json_DOTdecode] = ACTIONS(2154), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_or] = ACTIONS(2156), - [sym_none] = ACTIONS(2156), - [sym_true] = ACTIONS(2156), - [sym_false] = ACTIONS(2156), - [sym_nil] = ACTIONS(2156), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_DOLLARif] = ACTIONS(2156), - [anon_sym_is] = ACTIONS(2156), - [anon_sym_BANGis] = ACTIONS(2154), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_BANGin] = ACTIONS(2154), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_select] = ACTIONS(2156), - [anon_sym_lock] = ACTIONS(2156), - [anon_sym_rlock] = ACTIONS(2156), - [anon_sym_unsafe] = ACTIONS(2156), - [anon_sym_sql] = ACTIONS(2156), - [sym_int_literal] = ACTIONS(2156), - [sym_float_literal] = ACTIONS(2154), - [sym_rune_literal] = ACTIONS(2154), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_shared] = ACTIONS(2156), - [anon_sym_map_LBRACK] = ACTIONS(2154), - [anon_sym_chan] = ACTIONS(2156), - [anon_sym_thread] = ACTIONS(2156), - [anon_sym_atomic] = ACTIONS(2156), - [sym___double_quote] = ACTIONS(2154), - [sym___single_quote] = ACTIONS(2154), - [sym___c_double_quote] = ACTIONS(2154), - [sym___c_single_quote] = ACTIONS(2154), - [sym___r_double_quote] = ACTIONS(2154), - [sym___r_single_quote] = ACTIONS(2154), + [sym_identifier] = ACTIONS(3156), + [anon_sym_LF] = ACTIONS(3156), + [anon_sym_CR] = ACTIONS(3156), + [anon_sym_CR_LF] = ACTIONS(3156), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_DOT] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_PIPE] = ACTIONS(3156), + [anon_sym_fn] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_GT] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_mut] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3156), + [anon_sym_json_DOTdecode] = ACTIONS(3156), + [anon_sym_LBRACK2] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_CARET] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_LT_DASH] = ACTIONS(3156), + [anon_sym_LT_LT] = ACTIONS(3156), + [anon_sym_GT_GT] = ACTIONS(3156), + [anon_sym_GT_GT_GT] = ACTIONS(3156), + [anon_sym_AMP_CARET] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_or] = ACTIONS(3156), + [sym_none] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_nil] = ACTIONS(3156), + [anon_sym_QMARK_DOT] = ACTIONS(3156), + [anon_sym_POUND_LBRACK] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_DOLLARif] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3156), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_match] = ACTIONS(3156), + [anon_sym_select] = ACTIONS(3156), + [anon_sym_lock] = ACTIONS(3156), + [anon_sym_rlock] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(3156), + [anon_sym_sql] = ACTIONS(3156), + [sym_int_literal] = ACTIONS(3156), + [sym_float_literal] = ACTIONS(3156), + [sym_rune_literal] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_shared] = ACTIONS(3156), + [anon_sym_map_LBRACK] = ACTIONS(3156), + [anon_sym_chan] = ACTIONS(3156), + [anon_sym_thread] = ACTIONS(3156), + [anon_sym_atomic] = ACTIONS(3156), + [sym___double_quote] = ACTIONS(3156), + [sym___single_quote] = ACTIONS(3156), + [sym___c_double_quote] = ACTIONS(3156), + [sym___c_single_quote] = ACTIONS(3156), + [sym___r_double_quote] = ACTIONS(3156), + [sym___r_single_quote] = ACTIONS(3156), }, [1280] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2160), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2160), - [sym_rune_literal] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2160), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2160), - [sym___single_quote] = ACTIONS(2160), - [sym___c_double_quote] = ACTIONS(2160), - [sym___c_single_quote] = ACTIONS(2160), - [sym___r_double_quote] = ACTIONS(2160), - [sym___r_single_quote] = ACTIONS(2160), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LF] = ACTIONS(3024), + [anon_sym_CR] = ACTIONS(3024), + [anon_sym_CR_LF] = ACTIONS(3024), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3024), + [anon_sym_POUND_LBRACK] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [anon_sym_AT] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), }, [1281] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2160), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_BANGin] = ACTIONS(3654), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2160), - [sym_rune_literal] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2160), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2160), - [sym___single_quote] = ACTIONS(2160), - [sym___c_double_quote] = ACTIONS(2160), - [sym___c_single_quote] = ACTIONS(2160), - [sym___r_double_quote] = ACTIONS(2160), - [sym___r_single_quote] = ACTIONS(2160), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LF] = ACTIONS(3096), + [anon_sym_CR] = ACTIONS(3096), + [anon_sym_CR_LF] = ACTIONS(3096), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_RBRACE] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_struct] = ACTIONS(3096), + [anon_sym_mut] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_DASH_DASH] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3096), + [anon_sym_json_DOTdecode] = ACTIONS(3096), + [anon_sym_LBRACK2] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_LT_LT] = ACTIONS(3096), + [anon_sym_GT_GT] = ACTIONS(3096), + [anon_sym_GT_GT_GT] = ACTIONS(3096), + [anon_sym_AMP_CARET] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [sym_none] = ACTIONS(3096), + [sym_true] = ACTIONS(3096), + [sym_false] = ACTIONS(3096), + [sym_nil] = ACTIONS(3096), + [anon_sym_QMARK_DOT] = ACTIONS(3096), + [anon_sym_POUND_LBRACK] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_DOLLARif] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3096), + [anon_sym_rlock] = ACTIONS(3096), + [anon_sym_unsafe] = ACTIONS(3096), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3096), + [sym_float_literal] = ACTIONS(3096), + [sym_rune_literal] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3096), + [anon_sym_shared] = ACTIONS(3096), + [anon_sym_map_LBRACK] = ACTIONS(3096), + [anon_sym_chan] = ACTIONS(3096), + [anon_sym_thread] = ACTIONS(3096), + [anon_sym_atomic] = ACTIONS(3096), + [sym___double_quote] = ACTIONS(3096), + [sym___single_quote] = ACTIONS(3096), + [sym___c_double_quote] = ACTIONS(3096), + [sym___c_single_quote] = ACTIONS(3096), + [sym___r_double_quote] = ACTIONS(3096), + [sym___r_single_quote] = ACTIONS(3096), }, [1282] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2160), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_BANGin] = ACTIONS(3654), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2160), - [sym_rune_literal] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2160), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2160), - [sym___single_quote] = ACTIONS(2160), - [sym___c_double_quote] = ACTIONS(2160), - [sym___c_single_quote] = ACTIONS(2160), - [sym___r_double_quote] = ACTIONS(2160), - [sym___r_single_quote] = ACTIONS(2160), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LF] = ACTIONS(3092), + [anon_sym_CR] = ACTIONS(3092), + [anon_sym_CR_LF] = ACTIONS(3092), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_RBRACE] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_fn] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT_EQ] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3092), + [anon_sym_mut] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_go] = ACTIONS(3092), + [anon_sym_spawn] = ACTIONS(3092), + [anon_sym_json_DOTdecode] = ACTIONS(3092), + [anon_sym_LBRACK2] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_CARET] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_LT_LT] = ACTIONS(3092), + [anon_sym_GT_GT] = ACTIONS(3092), + [anon_sym_GT_GT_GT] = ACTIONS(3092), + [anon_sym_AMP_CARET] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3092), + [sym_none] = ACTIONS(3092), + [sym_true] = ACTIONS(3092), + [sym_false] = ACTIONS(3092), + [sym_nil] = ACTIONS(3092), + [anon_sym_QMARK_DOT] = ACTIONS(3092), + [anon_sym_POUND_LBRACK] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_DOLLARif] = ACTIONS(3092), + [anon_sym_is] = ACTIONS(3092), + [anon_sym_BANGis] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_BANGin] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_select] = ACTIONS(3092), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3092), + [anon_sym_sql] = ACTIONS(3092), + [sym_int_literal] = ACTIONS(3092), + [sym_float_literal] = ACTIONS(3092), + [sym_rune_literal] = ACTIONS(3092), + [anon_sym_AT] = ACTIONS(3092), + [anon_sym_shared] = ACTIONS(3092), + [anon_sym_map_LBRACK] = ACTIONS(3092), + [anon_sym_chan] = ACTIONS(3092), + [anon_sym_thread] = ACTIONS(3092), + [anon_sym_atomic] = ACTIONS(3092), + [sym___double_quote] = ACTIONS(3092), + [sym___single_quote] = ACTIONS(3092), + [sym___c_double_quote] = ACTIONS(3092), + [sym___c_single_quote] = ACTIONS(3092), + [sym___r_double_quote] = ACTIONS(3092), + [sym___r_single_quote] = ACTIONS(3092), }, [1283] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2052), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_COMMA] = ACTIONS(2050), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2052), - [anon_sym_mut] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2052), - [anon_sym_json_DOTdecode] = ACTIONS(2050), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2050), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [anon_sym_or] = ACTIONS(3642), - [sym_none] = ACTIONS(2052), - [sym_true] = ACTIONS(2052), - [sym_false] = ACTIONS(2052), - [sym_nil] = ACTIONS(2052), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_DOLLARif] = ACTIONS(2052), - [anon_sym_is] = ACTIONS(3648), - [anon_sym_BANGis] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_BANGin] = ACTIONS(3654), - [anon_sym_match] = ACTIONS(2052), - [anon_sym_select] = ACTIONS(2052), - [anon_sym_lock] = ACTIONS(2052), - [anon_sym_rlock] = ACTIONS(2052), - [anon_sym_unsafe] = ACTIONS(2052), - [anon_sym_sql] = ACTIONS(2052), - [sym_int_literal] = ACTIONS(2052), - [sym_float_literal] = ACTIONS(2050), - [sym_rune_literal] = ACTIONS(2050), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_shared] = ACTIONS(2052), - [anon_sym_map_LBRACK] = ACTIONS(2050), - [anon_sym_chan] = ACTIONS(2052), - [anon_sym_thread] = ACTIONS(2052), - [anon_sym_atomic] = ACTIONS(2052), - [sym___double_quote] = ACTIONS(2050), - [sym___single_quote] = ACTIONS(2050), - [sym___c_double_quote] = ACTIONS(2050), - [sym___c_single_quote] = ACTIONS(2050), - [sym___r_double_quote] = ACTIONS(2050), - [sym___r_single_quote] = ACTIONS(2050), + [sym_identifier] = ACTIONS(3088), + [anon_sym_LF] = ACTIONS(3088), + [anon_sym_CR] = ACTIONS(3088), + [anon_sym_CR_LF] = ACTIONS(3088), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_RBRACE] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_fn] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_EQ_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_mut] = ACTIONS(3088), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3088), + [anon_sym_json_DOTdecode] = ACTIONS(3088), + [anon_sym_LBRACK2] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_CARET] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_LT_LT] = ACTIONS(3088), + [anon_sym_GT_GT] = ACTIONS(3088), + [anon_sym_GT_GT_GT] = ACTIONS(3088), + [anon_sym_AMP_CARET] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_or] = ACTIONS(3088), + [sym_none] = ACTIONS(3088), + [sym_true] = ACTIONS(3088), + [sym_false] = ACTIONS(3088), + [sym_nil] = ACTIONS(3088), + [anon_sym_QMARK_DOT] = ACTIONS(3088), + [anon_sym_POUND_LBRACK] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_DOLLARif] = ACTIONS(3088), + [anon_sym_is] = ACTIONS(3088), + [anon_sym_BANGis] = ACTIONS(3088), + [anon_sym_in] = ACTIONS(3088), + [anon_sym_BANGin] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3088), + [anon_sym_lock] = ACTIONS(3088), + [anon_sym_rlock] = ACTIONS(3088), + [anon_sym_unsafe] = ACTIONS(3088), + [anon_sym_sql] = ACTIONS(3088), + [sym_int_literal] = ACTIONS(3088), + [sym_float_literal] = ACTIONS(3088), + [sym_rune_literal] = ACTIONS(3088), + [anon_sym_AT] = ACTIONS(3088), + [anon_sym_shared] = ACTIONS(3088), + [anon_sym_map_LBRACK] = ACTIONS(3088), + [anon_sym_chan] = ACTIONS(3088), + [anon_sym_thread] = ACTIONS(3088), + [anon_sym_atomic] = ACTIONS(3088), + [sym___double_quote] = ACTIONS(3088), + [sym___single_quote] = ACTIONS(3088), + [sym___c_double_quote] = ACTIONS(3088), + [sym___c_single_quote] = ACTIONS(3088), + [sym___r_double_quote] = ACTIONS(3088), + [sym___r_single_quote] = ACTIONS(3088), }, [1284] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_mut] = ACTIONS(2234), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2234), - [anon_sym_spawn] = ACTIONS(2234), - [anon_sym_json_DOTdecode] = ACTIONS(2232), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [anon_sym_or] = ACTIONS(3642), - [sym_none] = ACTIONS(2234), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_nil] = ACTIONS(2234), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_DOLLARif] = ACTIONS(2234), - [anon_sym_is] = ACTIONS(3648), - [anon_sym_BANGis] = ACTIONS(3650), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_BANGin] = ACTIONS(3654), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_select] = ACTIONS(2234), - [anon_sym_lock] = ACTIONS(2234), - [anon_sym_rlock] = ACTIONS(2234), - [anon_sym_unsafe] = ACTIONS(2234), - [anon_sym_sql] = ACTIONS(2234), - [sym_int_literal] = ACTIONS(2234), - [sym_float_literal] = ACTIONS(2232), - [sym_rune_literal] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2234), - [anon_sym_shared] = ACTIONS(2234), - [anon_sym_map_LBRACK] = ACTIONS(2232), - [anon_sym_chan] = ACTIONS(2234), - [anon_sym_thread] = ACTIONS(2234), - [anon_sym_atomic] = ACTIONS(2234), - [sym___double_quote] = ACTIONS(2232), - [sym___single_quote] = ACTIONS(2232), - [sym___c_double_quote] = ACTIONS(2232), - [sym___c_single_quote] = ACTIONS(2232), - [sym___r_double_quote] = ACTIONS(2232), - [sym___r_single_quote] = ACTIONS(2232), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LF] = ACTIONS(3144), + [anon_sym_CR] = ACTIONS(3144), + [anon_sym_CR_LF] = ACTIONS(3144), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3144), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_as] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_PIPE] = ACTIONS(3144), + [anon_sym_fn] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_LT_EQ] = ACTIONS(3144), + [anon_sym_GT_EQ] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_struct] = ACTIONS(3144), + [anon_sym_mut] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_go] = ACTIONS(3144), + [anon_sym_spawn] = ACTIONS(3144), + [anon_sym_json_DOTdecode] = ACTIONS(3144), + [anon_sym_LBRACK2] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_LT_LT] = ACTIONS(3144), + [anon_sym_GT_GT] = ACTIONS(3144), + [anon_sym_GT_GT_GT] = ACTIONS(3144), + [anon_sym_AMP_CARET] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3144), + [sym_none] = ACTIONS(3144), + [sym_true] = ACTIONS(3144), + [sym_false] = ACTIONS(3144), + [sym_nil] = ACTIONS(3144), + [anon_sym_QMARK_DOT] = ACTIONS(3144), + [anon_sym_POUND_LBRACK] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_DOLLARif] = ACTIONS(3144), + [anon_sym_is] = ACTIONS(3144), + [anon_sym_BANGis] = ACTIONS(3144), + [anon_sym_in] = ACTIONS(3144), + [anon_sym_BANGin] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3144), + [anon_sym_rlock] = ACTIONS(3144), + [anon_sym_unsafe] = ACTIONS(3144), + [anon_sym_sql] = ACTIONS(3144), + [sym_int_literal] = ACTIONS(3144), + [sym_float_literal] = ACTIONS(3144), + [sym_rune_literal] = ACTIONS(3144), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_shared] = ACTIONS(3144), + [anon_sym_map_LBRACK] = ACTIONS(3144), + [anon_sym_chan] = ACTIONS(3144), + [anon_sym_thread] = ACTIONS(3144), + [anon_sym_atomic] = ACTIONS(3144), + [sym___double_quote] = ACTIONS(3144), + [sym___single_quote] = ACTIONS(3144), + [sym___c_double_quote] = ACTIONS(3144), + [sym___c_single_quote] = ACTIONS(3144), + [sym___r_double_quote] = ACTIONS(3144), + [sym___r_single_quote] = ACTIONS(3144), }, [1285] = { - [sym_type_parameters] = STATE(4375), - [sym_argument_list] = STATE(1355), - [sym_or_block] = STATE(1356), - [sym_identifier] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3604), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_fn] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_mut] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_QMARK] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_go] = ACTIONS(2162), - [anon_sym_spawn] = ACTIONS(2162), - [anon_sym_json_DOTdecode] = ACTIONS(2160), - [anon_sym_LBRACK2] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_or] = ACTIONS(2162), - [sym_none] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(3644), - [anon_sym_POUND_LBRACK] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_DOLLARif] = ACTIONS(2162), - [anon_sym_is] = ACTIONS(2162), - [anon_sym_BANGis] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_BANGin] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2162), - [anon_sym_select] = ACTIONS(2162), - [anon_sym_lock] = ACTIONS(2162), - [anon_sym_rlock] = ACTIONS(2162), - [anon_sym_unsafe] = ACTIONS(2162), - [anon_sym_sql] = ACTIONS(2162), - [sym_int_literal] = ACTIONS(2162), - [sym_float_literal] = ACTIONS(2160), - [sym_rune_literal] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2162), - [anon_sym_shared] = ACTIONS(2162), - [anon_sym_map_LBRACK] = ACTIONS(2160), - [anon_sym_chan] = ACTIONS(2162), - [anon_sym_thread] = ACTIONS(2162), - [anon_sym_atomic] = ACTIONS(2162), - [sym___double_quote] = ACTIONS(2160), - [sym___single_quote] = ACTIONS(2160), - [sym___c_double_quote] = ACTIONS(2160), - [sym___c_single_quote] = ACTIONS(2160), - [sym___r_double_quote] = ACTIONS(2160), - [sym___r_single_quote] = ACTIONS(2160), + [sym_identifier] = ACTIONS(3170), + [anon_sym_LF] = ACTIONS(3170), + [anon_sym_CR] = ACTIONS(3170), + [anon_sym_CR_LF] = ACTIONS(3170), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3170), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3170), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3170), + [anon_sym_AMP_CARET] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_PIPE_PIPE] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3170), + [anon_sym_POUND_LBRACK] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3170), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3170), + [sym_rune_literal] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3170), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3170), + [sym___single_quote] = ACTIONS(3170), + [sym___c_double_quote] = ACTIONS(3170), + [sym___c_single_quote] = ACTIONS(3170), + [sym___r_double_quote] = ACTIONS(3170), + [sym___r_single_quote] = ACTIONS(3170), }, [1286] = { - [sym_else_branch] = STATE(1407), - [sym_identifier] = ACTIONS(2392), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2392), - [anon_sym_as] = ACTIONS(2392), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_PIPE] = ACTIONS(2392), - [anon_sym_fn] = ACTIONS(2392), - [anon_sym_PLUS] = ACTIONS(2392), - [anon_sym_DASH] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2390), - [anon_sym_SLASH] = ACTIONS(2392), - [anon_sym_PERCENT] = ACTIONS(2390), - [anon_sym_LT] = ACTIONS(2392), - [anon_sym_GT] = ACTIONS(2392), - [anon_sym_EQ_EQ] = ACTIONS(2390), - [anon_sym_BANG_EQ] = ACTIONS(2390), - [anon_sym_LT_EQ] = ACTIONS(2390), - [anon_sym_GT_EQ] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2390), - [anon_sym_RBRACK] = ACTIONS(2390), - [anon_sym_struct] = ACTIONS(2392), - [anon_sym_mut] = ACTIONS(2392), - [anon_sym_PLUS_PLUS] = ACTIONS(2390), - [anon_sym_DASH_DASH] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(2392), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_go] = ACTIONS(2392), - [anon_sym_spawn] = ACTIONS(2392), - [anon_sym_json_DOTdecode] = ACTIONS(2390), - [anon_sym_LBRACK2] = ACTIONS(2392), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_CARET] = ACTIONS(2390), - [anon_sym_AMP] = ACTIONS(2392), - [anon_sym_LT_DASH] = ACTIONS(2390), - [anon_sym_LT_LT] = ACTIONS(2390), - [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_GT_GT_GT] = ACTIONS(2390), - [anon_sym_AMP_CARET] = ACTIONS(2390), - [anon_sym_AMP_AMP] = ACTIONS(2390), - [anon_sym_PIPE_PIPE] = ACTIONS(2390), - [anon_sym_or] = ACTIONS(2392), - [sym_none] = ACTIONS(2392), - [sym_true] = ACTIONS(2392), - [sym_false] = ACTIONS(2392), - [sym_nil] = ACTIONS(2392), - [anon_sym_QMARK_DOT] = ACTIONS(2390), - [anon_sym_POUND_LBRACK] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_DOLLARif] = ACTIONS(2392), - [anon_sym_is] = ACTIONS(2392), - [anon_sym_BANGis] = ACTIONS(2390), - [anon_sym_in] = ACTIONS(2392), - [anon_sym_BANGin] = ACTIONS(2390), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_select] = ACTIONS(2392), - [anon_sym_lock] = ACTIONS(2392), - [anon_sym_rlock] = ACTIONS(2392), - [anon_sym_unsafe] = ACTIONS(2392), - [anon_sym_sql] = ACTIONS(2392), - [sym_int_literal] = ACTIONS(2392), - [sym_float_literal] = ACTIONS(2390), - [sym_rune_literal] = ACTIONS(2390), - [anon_sym_AT] = ACTIONS(2392), - [anon_sym_shared] = ACTIONS(2392), - [anon_sym_map_LBRACK] = ACTIONS(2390), - [anon_sym_chan] = ACTIONS(2392), - [anon_sym_thread] = ACTIONS(2392), - [anon_sym_atomic] = ACTIONS(2392), - [sym___double_quote] = ACTIONS(2390), - [sym___single_quote] = ACTIONS(2390), - [sym___c_double_quote] = ACTIONS(2390), - [sym___c_single_quote] = ACTIONS(2390), - [sym___r_double_quote] = ACTIONS(2390), - [sym___r_single_quote] = ACTIONS(2390), + [sym_identifier] = ACTIONS(3174), + [anon_sym_LF] = ACTIONS(3174), + [anon_sym_CR] = ACTIONS(3174), + [anon_sym_CR_LF] = ACTIONS(3174), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3174), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3174), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3174), + [anon_sym_AMP_CARET] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3174), + [anon_sym_POUND_LBRACK] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3174), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + [sym_rune_literal] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3174), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3174), + [sym___single_quote] = ACTIONS(3174), + [sym___c_double_quote] = ACTIONS(3174), + [sym___c_single_quote] = ACTIONS(3174), + [sym___r_double_quote] = ACTIONS(3174), + [sym___r_single_quote] = ACTIONS(3174), }, [1287] = { - [sym_else_branch] = STATE(1408), - [sym_identifier] = ACTIONS(2398), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2398), - [anon_sym_as] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_fn] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_SLASH] = ACTIONS(2398), - [anon_sym_PERCENT] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_RBRACK] = ACTIONS(2396), - [anon_sym_struct] = ACTIONS(2398), - [anon_sym_mut] = ACTIONS(2398), - [anon_sym_PLUS_PLUS] = ACTIONS(2396), - [anon_sym_DASH_DASH] = ACTIONS(2396), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2398), - [anon_sym_go] = ACTIONS(2398), - [anon_sym_spawn] = ACTIONS(2398), - [anon_sym_json_DOTdecode] = ACTIONS(2396), - [anon_sym_LBRACK2] = ACTIONS(2398), - [anon_sym_TILDE] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2398), - [anon_sym_LT_DASH] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_GT_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_CARET] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_or] = ACTIONS(2398), - [sym_none] = ACTIONS(2398), - [sym_true] = ACTIONS(2398), - [sym_false] = ACTIONS(2398), - [sym_nil] = ACTIONS(2398), - [anon_sym_QMARK_DOT] = ACTIONS(2396), - [anon_sym_POUND_LBRACK] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_DOLLARif] = ACTIONS(2398), - [anon_sym_is] = ACTIONS(2398), - [anon_sym_BANGis] = ACTIONS(2396), - [anon_sym_in] = ACTIONS(2398), - [anon_sym_BANGin] = ACTIONS(2396), - [anon_sym_match] = ACTIONS(2398), - [anon_sym_select] = ACTIONS(2398), - [anon_sym_lock] = ACTIONS(2398), - [anon_sym_rlock] = ACTIONS(2398), - [anon_sym_unsafe] = ACTIONS(2398), - [anon_sym_sql] = ACTIONS(2398), - [sym_int_literal] = ACTIONS(2398), - [sym_float_literal] = ACTIONS(2396), - [sym_rune_literal] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2398), - [anon_sym_shared] = ACTIONS(2398), - [anon_sym_map_LBRACK] = ACTIONS(2396), - [anon_sym_chan] = ACTIONS(2398), - [anon_sym_thread] = ACTIONS(2398), - [anon_sym_atomic] = ACTIONS(2398), - [sym___double_quote] = ACTIONS(2396), - [sym___single_quote] = ACTIONS(2396), - [sym___c_double_quote] = ACTIONS(2396), - [sym___c_single_quote] = ACTIONS(2396), - [sym___r_double_quote] = ACTIONS(2396), - [sym___r_single_quote] = ACTIONS(2396), + [sym_identifier] = ACTIONS(3032), + [anon_sym_LF] = ACTIONS(3032), + [anon_sym_CR] = ACTIONS(3032), + [anon_sym_CR_LF] = ACTIONS(3032), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_RBRACE] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_fn] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_mut] = ACTIONS(3032), + [anon_sym_PLUS_PLUS] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_go] = ACTIONS(3032), + [anon_sym_spawn] = ACTIONS(3032), + [anon_sym_json_DOTdecode] = ACTIONS(3032), + [anon_sym_LBRACK2] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_CARET] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3032), + [anon_sym_GT_GT_GT] = ACTIONS(3032), + [anon_sym_AMP_CARET] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_or] = ACTIONS(3032), + [sym_none] = ACTIONS(3032), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [sym_nil] = ACTIONS(3032), + [anon_sym_QMARK_DOT] = ACTIONS(3032), + [anon_sym_POUND_LBRACK] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_DOLLARif] = ACTIONS(3032), + [anon_sym_is] = ACTIONS(3032), + [anon_sym_BANGis] = ACTIONS(3032), + [anon_sym_in] = ACTIONS(3032), + [anon_sym_BANGin] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_select] = ACTIONS(3032), + [anon_sym_lock] = ACTIONS(3032), + [anon_sym_rlock] = ACTIONS(3032), + [anon_sym_unsafe] = ACTIONS(3032), + [anon_sym_sql] = ACTIONS(3032), + [sym_int_literal] = ACTIONS(3032), + [sym_float_literal] = ACTIONS(3032), + [sym_rune_literal] = ACTIONS(3032), + [anon_sym_AT] = ACTIONS(3032), + [anon_sym_shared] = ACTIONS(3032), + [anon_sym_map_LBRACK] = ACTIONS(3032), + [anon_sym_chan] = ACTIONS(3032), + [anon_sym_thread] = ACTIONS(3032), + [anon_sym_atomic] = ACTIONS(3032), + [sym___double_quote] = ACTIONS(3032), + [sym___single_quote] = ACTIONS(3032), + [sym___c_double_quote] = ACTIONS(3032), + [sym___c_single_quote] = ACTIONS(3032), + [sym___r_double_quote] = ACTIONS(3032), + [sym___r_single_quote] = ACTIONS(3032), }, [1288] = { - [sym_identifier] = ACTIONS(2740), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(2738), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2738), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2738), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_CARET] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2738), - [anon_sym_POUND_LBRACK] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2738), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2738), - [sym_rune_literal] = ACTIONS(2738), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2738), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2738), - [sym___single_quote] = ACTIONS(2738), - [sym___c_double_quote] = ACTIONS(2738), - [sym___c_single_quote] = ACTIONS(2738), - [sym___r_double_quote] = ACTIONS(2738), - [sym___r_single_quote] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_CR] = ACTIONS(2944), + [anon_sym_CR_LF] = ACTIONS(2944), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_as] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2944), + [anon_sym_RBRACE] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_fn] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_GT] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_mut] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_go] = ACTIONS(2944), + [anon_sym_spawn] = ACTIONS(2944), + [anon_sym_json_DOTdecode] = ACTIONS(2944), + [anon_sym_LBRACK2] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_CARET] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2944), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_GT_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_CARET] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_or] = ACTIONS(2944), + [sym_none] = ACTIONS(2944), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [sym_nil] = ACTIONS(2944), + [anon_sym_QMARK_DOT] = ACTIONS(2944), + [anon_sym_POUND_LBRACK] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_DOLLARif] = ACTIONS(2944), + [anon_sym_is] = ACTIONS(2944), + [anon_sym_BANGis] = ACTIONS(2944), + [anon_sym_in] = ACTIONS(2944), + [anon_sym_BANGin] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_select] = ACTIONS(2944), + [anon_sym_lock] = ACTIONS(2944), + [anon_sym_rlock] = ACTIONS(2944), + [anon_sym_unsafe] = ACTIONS(2944), + [anon_sym_sql] = ACTIONS(2944), + [sym_int_literal] = ACTIONS(2944), + [sym_float_literal] = ACTIONS(2944), + [sym_rune_literal] = ACTIONS(2944), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_shared] = ACTIONS(2944), + [anon_sym_map_LBRACK] = ACTIONS(2944), + [anon_sym_chan] = ACTIONS(2944), + [anon_sym_thread] = ACTIONS(2944), + [anon_sym_atomic] = ACTIONS(2944), + [sym___double_quote] = ACTIONS(2944), + [sym___single_quote] = ACTIONS(2944), + [sym___c_double_quote] = ACTIONS(2944), + [sym___c_single_quote] = ACTIONS(2944), + [sym___r_double_quote] = ACTIONS(2944), + [sym___r_single_quote] = ACTIONS(2944), }, [1289] = { - [sym_identifier] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_DOT] = ACTIONS(3120), - [anon_sym_as] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_fn] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3118), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_COLON] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_go] = ACTIONS(3118), - [anon_sym_spawn] = ACTIONS(3118), - [anon_sym_json_DOTdecode] = ACTIONS(3116), - [anon_sym_LBRACK2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_CARET] = ACTIONS(3116), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_LT_DASH] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3116), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_CARET] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_or] = ACTIONS(3118), - [sym_none] = ACTIONS(3118), - [sym_true] = ACTIONS(3118), - [sym_false] = ACTIONS(3118), - [sym_nil] = ACTIONS(3118), - [anon_sym_QMARK_DOT] = ACTIONS(3116), - [anon_sym_POUND_LBRACK] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_DOLLARif] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3118), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_match] = ACTIONS(3118), - [anon_sym_select] = ACTIONS(3118), - [anon_sym_lock] = ACTIONS(3118), - [anon_sym_rlock] = ACTIONS(3118), - [anon_sym_unsafe] = ACTIONS(3118), - [anon_sym_sql] = ACTIONS(3118), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(3116), - [sym_rune_literal] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_shared] = ACTIONS(3118), - [anon_sym_map_LBRACK] = ACTIONS(3116), - [anon_sym_chan] = ACTIONS(3118), - [anon_sym_thread] = ACTIONS(3118), - [anon_sym_atomic] = ACTIONS(3118), - [sym___double_quote] = ACTIONS(3116), - [sym___single_quote] = ACTIONS(3116), - [sym___c_double_quote] = ACTIONS(3116), - [sym___c_single_quote] = ACTIONS(3116), - [sym___r_double_quote] = ACTIONS(3116), - [sym___r_single_quote] = ACTIONS(3116), - }, - [1290] = { - [sym_identifier] = ACTIONS(3660), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_DOT] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_COMMA] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_PIPE] = ACTIONS(3660), - [anon_sym_fn] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_PERCENT] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3664), - [anon_sym_BANG_EQ] = ACTIONS(3664), - [anon_sym_LT_EQ] = ACTIONS(3664), - [anon_sym_GT_EQ] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_RBRACK] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3660), - [anon_sym_mut] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_QMARK] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_go] = ACTIONS(3660), - [anon_sym_spawn] = ACTIONS(3660), - [anon_sym_json_DOTdecode] = ACTIONS(3664), - [anon_sym_LBRACK2] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_CARET] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_LT_DASH] = ACTIONS(3664), - [anon_sym_LT_LT] = ACTIONS(3664), - [anon_sym_GT_GT] = ACTIONS(3660), - [anon_sym_GT_GT_GT] = ACTIONS(3664), - [anon_sym_AMP_CARET] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_PIPE_PIPE] = ACTIONS(3664), - [anon_sym_or] = ACTIONS(3660), - [sym_none] = ACTIONS(3660), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [sym_nil] = ACTIONS(3660), - [anon_sym_QMARK_DOT] = ACTIONS(3664), - [anon_sym_POUND_LBRACK] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_DOLLARif] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3664), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_BANGin] = ACTIONS(3664), - [anon_sym_match] = ACTIONS(3660), - [anon_sym_select] = ACTIONS(3660), - [anon_sym_lock] = ACTIONS(3660), - [anon_sym_rlock] = ACTIONS(3660), - [anon_sym_unsafe] = ACTIONS(3660), - [anon_sym_sql] = ACTIONS(3660), - [sym_int_literal] = ACTIONS(3660), - [sym_float_literal] = ACTIONS(3664), - [sym_rune_literal] = ACTIONS(3664), - [anon_sym_AT] = ACTIONS(3660), - [anon_sym_shared] = ACTIONS(3660), - [anon_sym_map_LBRACK] = ACTIONS(3664), - [anon_sym_chan] = ACTIONS(3660), - [anon_sym_thread] = ACTIONS(3660), - [anon_sym_atomic] = ACTIONS(3660), - [sym___double_quote] = ACTIONS(3664), - [sym___single_quote] = ACTIONS(3664), - [sym___c_double_quote] = ACTIONS(3664), - [sym___c_single_quote] = ACTIONS(3664), - [sym___r_double_quote] = ACTIONS(3664), - [sym___r_single_quote] = ACTIONS(3664), - }, - [1291] = { - [sym_identifier] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), - }, - [1292] = { - [sym_identifier] = ACTIONS(2736), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), - }, - [1293] = { - [sym_identifier] = ACTIONS(2694), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_RBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2692), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2692), - [anon_sym_POUND_LBRACK] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2692), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2692), - [sym_rune_literal] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2692), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2692), - [sym___single_quote] = ACTIONS(2692), - [sym___c_double_quote] = ACTIONS(2692), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2692), - [sym___r_single_quote] = ACTIONS(2692), - }, - [1294] = { - [sym_identifier] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), - }, - [1295] = { - [sym_identifier] = ACTIONS(2694), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_RBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2692), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2692), - [anon_sym_POUND_LBRACK] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_DOLLARelse] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2692), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2692), - [sym_rune_literal] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2692), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2692), - [sym___single_quote] = ACTIONS(2692), - [sym___c_double_quote] = ACTIONS(2692), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2692), - [sym___r_single_quote] = ACTIONS(2692), - }, - [1296] = { - [sym_identifier] = ACTIONS(3066), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3064), - [anon_sym_DOT] = ACTIONS(3066), - [anon_sym_as] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(3064), - [anon_sym_LPAREN] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_fn] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_GT] = ACTIONS(3066), - [anon_sym_EQ_EQ] = ACTIONS(3064), - [anon_sym_BANG_EQ] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(3064), - [anon_sym_GT_EQ] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3064), - [anon_sym_RBRACK] = ACTIONS(3064), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_mut] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3064), - [anon_sym_QMARK] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_go] = ACTIONS(3066), - [anon_sym_spawn] = ACTIONS(3066), - [anon_sym_json_DOTdecode] = ACTIONS(3064), - [anon_sym_LBRACK2] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT_DASH] = ACTIONS(3064), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3066), - [anon_sym_GT_GT_GT] = ACTIONS(3064), - [anon_sym_AMP_CARET] = ACTIONS(3064), - [anon_sym_AMP_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3064), - [anon_sym_or] = ACTIONS(3066), - [sym_none] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_nil] = ACTIONS(3066), - [anon_sym_QMARK_DOT] = ACTIONS(3064), - [anon_sym_POUND_LBRACK] = ACTIONS(3064), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_DOLLARif] = ACTIONS(3066), - [anon_sym_is] = ACTIONS(3066), - [anon_sym_BANGis] = ACTIONS(3064), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_BANGin] = ACTIONS(3064), - [anon_sym_match] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_rlock] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_sql] = ACTIONS(3066), - [sym_int_literal] = ACTIONS(3066), - [sym_float_literal] = ACTIONS(3064), - [sym_rune_literal] = ACTIONS(3064), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_shared] = ACTIONS(3066), - [anon_sym_map_LBRACK] = ACTIONS(3064), - [anon_sym_chan] = ACTIONS(3066), - [anon_sym_thread] = ACTIONS(3066), - [anon_sym_atomic] = ACTIONS(3066), - [sym___double_quote] = ACTIONS(3064), - [sym___single_quote] = ACTIONS(3064), - [sym___c_double_quote] = ACTIONS(3064), - [sym___c_single_quote] = ACTIONS(3064), - [sym___r_double_quote] = ACTIONS(3064), - [sym___r_single_quote] = ACTIONS(3064), - }, - [1297] = { - [sym_identifier] = ACTIONS(2970), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2968), + [anon_sym_LF] = ACTIONS(2968), + [anon_sym_CR] = ACTIONS(2968), + [anon_sym_CR_LF] = ACTIONS(2968), + [sym_comment] = ACTIONS(495), [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), + [anon_sym_DOT] = ACTIONS(2968), + [anon_sym_as] = ACTIONS(2968), [anon_sym_LBRACE] = ACTIONS(2968), [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_RBRACE] = ACTIONS(2968), [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_fn] = ACTIONS(2968), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(2968), - [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_SLASH] = ACTIONS(2968), [anon_sym_PERCENT] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2968), [anon_sym_EQ_EQ] = ACTIONS(2968), [anon_sym_BANG_EQ] = ACTIONS(2968), [anon_sym_LT_EQ] = ACTIONS(2968), [anon_sym_GT_EQ] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_RBRACK] = ACTIONS(2968), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_mut] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2968), + [anon_sym_mut] = ACTIONS(2968), [anon_sym_PLUS_PLUS] = ACTIONS(2968), [anon_sym_DASH_DASH] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(2970), - [anon_sym_spawn] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_go] = ACTIONS(2968), + [anon_sym_spawn] = ACTIONS(2968), [anon_sym_json_DOTdecode] = ACTIONS(2968), - [anon_sym_LBRACK2] = ACTIONS(2970), + [anon_sym_LBRACK2] = ACTIONS(2968), [anon_sym_TILDE] = ACTIONS(2968), [anon_sym_CARET] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2968), [anon_sym_LT_DASH] = ACTIONS(2968), [anon_sym_LT_LT] = ACTIONS(2968), - [anon_sym_GT_GT] = ACTIONS(2970), + [anon_sym_GT_GT] = ACTIONS(2968), [anon_sym_GT_GT_GT] = ACTIONS(2968), [anon_sym_AMP_CARET] = ACTIONS(2968), [anon_sym_AMP_AMP] = ACTIONS(2968), [anon_sym_PIPE_PIPE] = ACTIONS(2968), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_nil] = ACTIONS(2970), + [anon_sym_or] = ACTIONS(2968), + [sym_none] = ACTIONS(2968), + [sym_true] = ACTIONS(2968), + [sym_false] = ACTIONS(2968), + [sym_nil] = ACTIONS(2968), [anon_sym_QMARK_DOT] = ACTIONS(2968), [anon_sym_POUND_LBRACK] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_DOLLARif] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_DOLLARif] = ACTIONS(2968), + [anon_sym_is] = ACTIONS(2968), [anon_sym_BANGis] = ACTIONS(2968), - [anon_sym_in] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2968), [anon_sym_BANGin] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_select] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(2970), - [anon_sym_rlock] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_sql] = ACTIONS(2970), - [sym_int_literal] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2968), + [anon_sym_select] = ACTIONS(2968), + [anon_sym_lock] = ACTIONS(2968), + [anon_sym_rlock] = ACTIONS(2968), + [anon_sym_unsafe] = ACTIONS(2968), + [anon_sym_sql] = ACTIONS(2968), + [sym_int_literal] = ACTIONS(2968), [sym_float_literal] = ACTIONS(2968), [sym_rune_literal] = ACTIONS(2968), - [anon_sym_AT] = ACTIONS(2970), - [anon_sym_shared] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_shared] = ACTIONS(2968), [anon_sym_map_LBRACK] = ACTIONS(2968), - [anon_sym_chan] = ACTIONS(2970), - [anon_sym_thread] = ACTIONS(2970), - [anon_sym_atomic] = ACTIONS(2970), + [anon_sym_chan] = ACTIONS(2968), + [anon_sym_thread] = ACTIONS(2968), + [anon_sym_atomic] = ACTIONS(2968), [sym___double_quote] = ACTIONS(2968), [sym___single_quote] = ACTIONS(2968), [sym___c_double_quote] = ACTIONS(2968), @@ -167242,1348 +167460,1647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2968), [sym___r_single_quote] = ACTIONS(2968), }, + [1290] = { + [sym_identifier] = ACTIONS(2972), + [anon_sym_LF] = ACTIONS(2972), + [anon_sym_CR] = ACTIONS(2972), + [anon_sym_CR_LF] = ACTIONS(2972), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2972), + [anon_sym_as] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_RBRACE] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_fn] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_LT_EQ] = ACTIONS(2972), + [anon_sym_GT_EQ] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2972), + [anon_sym_mut] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_QMARK] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_go] = ACTIONS(2972), + [anon_sym_spawn] = ACTIONS(2972), + [anon_sym_json_DOTdecode] = ACTIONS(2972), + [anon_sym_LBRACK2] = ACTIONS(2972), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_LT_DASH] = ACTIONS(2972), + [anon_sym_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT] = ACTIONS(2972), + [anon_sym_GT_GT_GT] = ACTIONS(2972), + [anon_sym_AMP_CARET] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2972), + [sym_none] = ACTIONS(2972), + [sym_true] = ACTIONS(2972), + [sym_false] = ACTIONS(2972), + [sym_nil] = ACTIONS(2972), + [anon_sym_QMARK_DOT] = ACTIONS(2972), + [anon_sym_POUND_LBRACK] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_DOLLARif] = ACTIONS(2972), + [anon_sym_is] = ACTIONS(2972), + [anon_sym_BANGis] = ACTIONS(2972), + [anon_sym_in] = ACTIONS(2972), + [anon_sym_BANGin] = ACTIONS(2972), + [anon_sym_match] = ACTIONS(2972), + [anon_sym_select] = ACTIONS(2972), + [anon_sym_lock] = ACTIONS(2972), + [anon_sym_rlock] = ACTIONS(2972), + [anon_sym_unsafe] = ACTIONS(2972), + [anon_sym_sql] = ACTIONS(2972), + [sym_int_literal] = ACTIONS(2972), + [sym_float_literal] = ACTIONS(2972), + [sym_rune_literal] = ACTIONS(2972), + [anon_sym_AT] = ACTIONS(2972), + [anon_sym_shared] = ACTIONS(2972), + [anon_sym_map_LBRACK] = ACTIONS(2972), + [anon_sym_chan] = ACTIONS(2972), + [anon_sym_thread] = ACTIONS(2972), + [anon_sym_atomic] = ACTIONS(2972), + [sym___double_quote] = ACTIONS(2972), + [sym___single_quote] = ACTIONS(2972), + [sym___c_double_quote] = ACTIONS(2972), + [sym___c_single_quote] = ACTIONS(2972), + [sym___r_double_quote] = ACTIONS(2972), + [sym___r_single_quote] = ACTIONS(2972), + }, + [1291] = { + [sym_identifier] = ACTIONS(3182), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_CR] = ACTIONS(3182), + [anon_sym_CR_LF] = ACTIONS(3182), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3182), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3182), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3182), + [anon_sym_AMP_CARET] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3182), + [anon_sym_POUND_LBRACK] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3182), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3182), + [sym_rune_literal] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3182), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3182), + [sym___single_quote] = ACTIONS(3182), + [sym___c_double_quote] = ACTIONS(3182), + [sym___c_single_quote] = ACTIONS(3182), + [sym___r_double_quote] = ACTIONS(3182), + [sym___r_single_quote] = ACTIONS(3182), + }, + [1292] = { + [sym_identifier] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_CR] = ACTIONS(3190), + [anon_sym_CR_LF] = ACTIONS(3190), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3190), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3190), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3190), + [anon_sym_AMP_CARET] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(3190), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_POUND_LBRACK] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3190), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + [sym_rune_literal] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3190), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3190), + [sym___single_quote] = ACTIONS(3190), + [sym___c_double_quote] = ACTIONS(3190), + [sym___c_single_quote] = ACTIONS(3190), + [sym___r_double_quote] = ACTIONS(3190), + [sym___r_single_quote] = ACTIONS(3190), + }, + [1293] = { + [sym_identifier] = ACTIONS(3265), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_CR] = ACTIONS(3265), + [anon_sym_CR_LF] = ACTIONS(3265), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3265), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3265), + [anon_sym_POUND_LBRACK] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3265), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3265), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + [sym_rune_literal] = ACTIONS(3265), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3265), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3265), + [sym___single_quote] = ACTIONS(3265), + [sym___c_double_quote] = ACTIONS(3265), + [sym___c_single_quote] = ACTIONS(3265), + [sym___r_double_quote] = ACTIONS(3265), + [sym___r_single_quote] = ACTIONS(3265), + }, + [1294] = { + [sym_identifier] = ACTIONS(2988), + [anon_sym_LF] = ACTIONS(2988), + [anon_sym_CR] = ACTIONS(2988), + [anon_sym_CR_LF] = ACTIONS(2988), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2988), + [anon_sym_COMMA] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2988), + [anon_sym_LPAREN] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2988), + [anon_sym_fn] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2988), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_LT_EQ] = ACTIONS(2988), + [anon_sym_GT_EQ] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_mut] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_go] = ACTIONS(2988), + [anon_sym_spawn] = ACTIONS(2988), + [anon_sym_json_DOTdecode] = ACTIONS(2988), + [anon_sym_LBRACK2] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2988), + [anon_sym_CARET] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2988), + [anon_sym_LT_LT] = ACTIONS(2988), + [anon_sym_GT_GT] = ACTIONS(2988), + [anon_sym_GT_GT_GT] = ACTIONS(2988), + [anon_sym_AMP_CARET] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_or] = ACTIONS(2988), + [sym_none] = ACTIONS(2988), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [sym_nil] = ACTIONS(2988), + [anon_sym_QMARK_DOT] = ACTIONS(2988), + [anon_sym_POUND_LBRACK] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_DOLLARif] = ACTIONS(2988), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2988), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_BANGin] = ACTIONS(2988), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_select] = ACTIONS(2988), + [anon_sym_lock] = ACTIONS(2988), + [anon_sym_rlock] = ACTIONS(2988), + [anon_sym_unsafe] = ACTIONS(2988), + [anon_sym_sql] = ACTIONS(2988), + [sym_int_literal] = ACTIONS(2988), + [sym_float_literal] = ACTIONS(2988), + [sym_rune_literal] = ACTIONS(2988), + [anon_sym_AT] = ACTIONS(2988), + [anon_sym_shared] = ACTIONS(2988), + [anon_sym_map_LBRACK] = ACTIONS(2988), + [anon_sym_chan] = ACTIONS(2988), + [anon_sym_thread] = ACTIONS(2988), + [anon_sym_atomic] = ACTIONS(2988), + [sym___double_quote] = ACTIONS(2988), + [sym___single_quote] = ACTIONS(2988), + [sym___c_double_quote] = ACTIONS(2988), + [sym___c_single_quote] = ACTIONS(2988), + [sym___r_double_quote] = ACTIONS(2988), + [sym___r_single_quote] = ACTIONS(2988), + }, + [1295] = { + [sym_identifier] = ACTIONS(3277), + [anon_sym_LF] = ACTIONS(3277), + [anon_sym_CR] = ACTIONS(3277), + [anon_sym_CR_LF] = ACTIONS(3277), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_DOT] = ACTIONS(3277), + [anon_sym_as] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_fn] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_PERCENT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_EQ_EQ] = ACTIONS(3277), + [anon_sym_BANG_EQ] = ACTIONS(3277), + [anon_sym_LT_EQ] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3277), + [anon_sym_mut] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_QMARK] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_go] = ACTIONS(3277), + [anon_sym_spawn] = ACTIONS(3277), + [anon_sym_json_DOTdecode] = ACTIONS(3277), + [anon_sym_LBRACK2] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(3277), + [anon_sym_GT_GT_GT] = ACTIONS(3277), + [anon_sym_AMP_CARET] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_or] = ACTIONS(3277), + [sym_none] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_nil] = ACTIONS(3277), + [anon_sym_QMARK_DOT] = ACTIONS(3277), + [anon_sym_POUND_LBRACK] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_DOLLARif] = ACTIONS(3277), + [anon_sym_is] = ACTIONS(3277), + [anon_sym_BANGis] = ACTIONS(3277), + [anon_sym_in] = ACTIONS(3277), + [anon_sym_BANGin] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_lock] = ACTIONS(3277), + [anon_sym_rlock] = ACTIONS(3277), + [anon_sym_unsafe] = ACTIONS(3277), + [anon_sym_sql] = ACTIONS(3277), + [sym_int_literal] = ACTIONS(3277), + [sym_float_literal] = ACTIONS(3277), + [sym_rune_literal] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_shared] = ACTIONS(3277), + [anon_sym_map_LBRACK] = ACTIONS(3277), + [anon_sym_chan] = ACTIONS(3277), + [anon_sym_thread] = ACTIONS(3277), + [anon_sym_atomic] = ACTIONS(3277), + [sym___double_quote] = ACTIONS(3277), + [sym___single_quote] = ACTIONS(3277), + [sym___c_double_quote] = ACTIONS(3277), + [sym___c_single_quote] = ACTIONS(3277), + [sym___r_double_quote] = ACTIONS(3277), + [sym___r_single_quote] = ACTIONS(3277), + }, + [1296] = { + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3269), + [anon_sym_AMP_CARET] = ACTIONS(3269), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3269), + [anon_sym_POUND_LBRACK] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3269), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3269), + [sym___single_quote] = ACTIONS(3269), + [sym___c_double_quote] = ACTIONS(3269), + [sym___c_single_quote] = ACTIONS(3269), + [sym___r_double_quote] = ACTIONS(3269), + [sym___r_single_quote] = ACTIONS(3269), + }, + [1297] = { + [sym_identifier] = ACTIONS(3293), + [anon_sym_LF] = ACTIONS(3293), + [anon_sym_CR] = ACTIONS(3293), + [anon_sym_CR_LF] = ACTIONS(3293), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [anon_sym_EQ_EQ] = ACTIONS(3293), + [anon_sym_BANG_EQ] = ACTIONS(3293), + [anon_sym_LT_EQ] = ACTIONS(3293), + [anon_sym_GT_EQ] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_GT_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_CARET] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_or] = ACTIONS(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3293), + [anon_sym_POUND_LBRACK] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [sym___double_quote] = ACTIONS(3293), + [sym___single_quote] = ACTIONS(3293), + [sym___c_double_quote] = ACTIONS(3293), + [sym___c_single_quote] = ACTIONS(3293), + [sym___r_double_quote] = ACTIONS(3293), + [sym___r_single_quote] = ACTIONS(3293), + }, [1298] = { - [sym_identifier] = ACTIONS(3006), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3004), - [anon_sym_DOT] = ACTIONS(3006), - [anon_sym_as] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3006), - [anon_sym_fn] = ACTIONS(3006), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_DASH] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3004), - [anon_sym_SLASH] = ACTIONS(3006), - [anon_sym_PERCENT] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3006), - [anon_sym_GT] = ACTIONS(3006), - [anon_sym_EQ_EQ] = ACTIONS(3004), - [anon_sym_BANG_EQ] = ACTIONS(3004), - [anon_sym_LT_EQ] = ACTIONS(3004), - [anon_sym_GT_EQ] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_RBRACK] = ACTIONS(3004), - [anon_sym_struct] = ACTIONS(3006), - [anon_sym_mut] = ACTIONS(3006), - [anon_sym_PLUS_PLUS] = ACTIONS(3004), - [anon_sym_DASH_DASH] = ACTIONS(3004), - [anon_sym_QMARK] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_go] = ACTIONS(3006), - [anon_sym_spawn] = ACTIONS(3006), - [anon_sym_json_DOTdecode] = ACTIONS(3004), - [anon_sym_LBRACK2] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(3004), - [anon_sym_CARET] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3006), - [anon_sym_LT_DASH] = ACTIONS(3004), - [anon_sym_LT_LT] = ACTIONS(3004), - [anon_sym_GT_GT] = ACTIONS(3006), - [anon_sym_GT_GT_GT] = ACTIONS(3004), - [anon_sym_AMP_CARET] = ACTIONS(3004), - [anon_sym_AMP_AMP] = ACTIONS(3004), - [anon_sym_PIPE_PIPE] = ACTIONS(3004), - [anon_sym_or] = ACTIONS(3006), - [sym_none] = ACTIONS(3006), - [sym_true] = ACTIONS(3006), - [sym_false] = ACTIONS(3006), - [sym_nil] = ACTIONS(3006), - [anon_sym_QMARK_DOT] = ACTIONS(3004), - [anon_sym_POUND_LBRACK] = ACTIONS(3004), - [anon_sym_if] = ACTIONS(3006), - [anon_sym_DOLLARif] = ACTIONS(3006), - [anon_sym_is] = ACTIONS(3006), - [anon_sym_BANGis] = ACTIONS(3004), - [anon_sym_in] = ACTIONS(3006), - [anon_sym_BANGin] = ACTIONS(3004), - [anon_sym_match] = ACTIONS(3006), - [anon_sym_select] = ACTIONS(3006), - [anon_sym_lock] = ACTIONS(3006), - [anon_sym_rlock] = ACTIONS(3006), - [anon_sym_unsafe] = ACTIONS(3006), - [anon_sym_sql] = ACTIONS(3006), - [sym_int_literal] = ACTIONS(3006), - [sym_float_literal] = ACTIONS(3004), - [sym_rune_literal] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_shared] = ACTIONS(3006), - [anon_sym_map_LBRACK] = ACTIONS(3004), - [anon_sym_chan] = ACTIONS(3006), - [anon_sym_thread] = ACTIONS(3006), - [anon_sym_atomic] = ACTIONS(3006), - [sym___double_quote] = ACTIONS(3004), - [sym___single_quote] = ACTIONS(3004), - [sym___c_double_quote] = ACTIONS(3004), - [sym___c_single_quote] = ACTIONS(3004), - [sym___r_double_quote] = ACTIONS(3004), - [sym___r_single_quote] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3333), + [anon_sym_LF] = ACTIONS(3333), + [anon_sym_CR] = ACTIONS(3333), + [anon_sym_CR_LF] = ACTIONS(3333), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_as] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_COMMA] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_PIPE] = ACTIONS(3333), + [anon_sym_fn] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_mut] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_QMARK] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_go] = ACTIONS(3333), + [anon_sym_spawn] = ACTIONS(3333), + [anon_sym_json_DOTdecode] = ACTIONS(3333), + [anon_sym_LBRACK2] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_LT_DASH] = ACTIONS(3333), + [anon_sym_LT_LT] = ACTIONS(3333), + [anon_sym_GT_GT] = ACTIONS(3333), + [anon_sym_GT_GT_GT] = ACTIONS(3333), + [anon_sym_AMP_CARET] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3333), + [sym_none] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_nil] = ACTIONS(3333), + [anon_sym_QMARK_DOT] = ACTIONS(3333), + [anon_sym_POUND_LBRACK] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_DOLLARif] = ACTIONS(3333), + [anon_sym_is] = ACTIONS(3333), + [anon_sym_BANGis] = ACTIONS(3333), + [anon_sym_in] = ACTIONS(3333), + [anon_sym_BANGin] = ACTIONS(3333), + [anon_sym_match] = ACTIONS(3333), + [anon_sym_select] = ACTIONS(3333), + [anon_sym_lock] = ACTIONS(3333), + [anon_sym_rlock] = ACTIONS(3333), + [anon_sym_unsafe] = ACTIONS(3333), + [anon_sym_sql] = ACTIONS(3333), + [sym_int_literal] = ACTIONS(3333), + [sym_float_literal] = ACTIONS(3333), + [sym_rune_literal] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_shared] = ACTIONS(3333), + [anon_sym_map_LBRACK] = ACTIONS(3333), + [anon_sym_chan] = ACTIONS(3333), + [anon_sym_thread] = ACTIONS(3333), + [anon_sym_atomic] = ACTIONS(3333), + [sym___double_quote] = ACTIONS(3333), + [sym___single_quote] = ACTIONS(3333), + [sym___c_double_quote] = ACTIONS(3333), + [sym___c_single_quote] = ACTIONS(3333), + [sym___r_double_quote] = ACTIONS(3333), + [sym___r_single_quote] = ACTIONS(3333), }, [1299] = { - [sym_identifier] = ACTIONS(3010), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3008), - [anon_sym_DOT] = ACTIONS(3010), - [anon_sym_as] = ACTIONS(3010), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_COMMA] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3008), - [anon_sym_PIPE] = ACTIONS(3010), - [anon_sym_fn] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3010), - [anon_sym_PERCENT] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3010), - [anon_sym_GT] = ACTIONS(3010), - [anon_sym_EQ_EQ] = ACTIONS(3008), - [anon_sym_BANG_EQ] = ACTIONS(3008), - [anon_sym_LT_EQ] = ACTIONS(3008), - [anon_sym_GT_EQ] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_RBRACK] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3010), - [anon_sym_mut] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3008), - [anon_sym_QMARK] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_go] = ACTIONS(3010), - [anon_sym_spawn] = ACTIONS(3010), - [anon_sym_json_DOTdecode] = ACTIONS(3008), - [anon_sym_LBRACK2] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3008), - [anon_sym_CARET] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_LT_DASH] = ACTIONS(3008), - [anon_sym_LT_LT] = ACTIONS(3008), - [anon_sym_GT_GT] = ACTIONS(3010), - [anon_sym_GT_GT_GT] = ACTIONS(3008), - [anon_sym_AMP_CARET] = ACTIONS(3008), - [anon_sym_AMP_AMP] = ACTIONS(3008), - [anon_sym_PIPE_PIPE] = ACTIONS(3008), - [anon_sym_or] = ACTIONS(3010), - [sym_none] = ACTIONS(3010), - [sym_true] = ACTIONS(3010), - [sym_false] = ACTIONS(3010), - [sym_nil] = ACTIONS(3010), - [anon_sym_QMARK_DOT] = ACTIONS(3008), - [anon_sym_POUND_LBRACK] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3010), - [anon_sym_DOLLARif] = ACTIONS(3010), - [anon_sym_is] = ACTIONS(3010), - [anon_sym_BANGis] = ACTIONS(3008), - [anon_sym_in] = ACTIONS(3010), - [anon_sym_BANGin] = ACTIONS(3008), - [anon_sym_match] = ACTIONS(3010), - [anon_sym_select] = ACTIONS(3010), - [anon_sym_lock] = ACTIONS(3010), - [anon_sym_rlock] = ACTIONS(3010), - [anon_sym_unsafe] = ACTIONS(3010), - [anon_sym_sql] = ACTIONS(3010), - [sym_int_literal] = ACTIONS(3010), - [sym_float_literal] = ACTIONS(3008), - [sym_rune_literal] = ACTIONS(3008), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_shared] = ACTIONS(3010), - [anon_sym_map_LBRACK] = ACTIONS(3008), - [anon_sym_chan] = ACTIONS(3010), - [anon_sym_thread] = ACTIONS(3010), - [anon_sym_atomic] = ACTIONS(3010), - [sym___double_quote] = ACTIONS(3008), - [sym___single_quote] = ACTIONS(3008), - [sym___c_double_quote] = ACTIONS(3008), - [sym___c_single_quote] = ACTIONS(3008), - [sym___r_double_quote] = ACTIONS(3008), - [sym___r_single_quote] = ACTIONS(3008), + [sym_identifier] = ACTIONS(2992), + [anon_sym_LF] = ACTIONS(2992), + [anon_sym_CR] = ACTIONS(2992), + [anon_sym_CR_LF] = ACTIONS(2992), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2992), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_as] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2992), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2992), + [anon_sym_PERCENT] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2992), + [anon_sym_EQ_EQ] = ACTIONS(2992), + [anon_sym_BANG_EQ] = ACTIONS(2992), + [anon_sym_LT_EQ] = ACTIONS(2992), + [anon_sym_GT_EQ] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2992), + [anon_sym_LBRACK2] = ACTIONS(2992), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_CARET] = ACTIONS(2992), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_LT_DASH] = ACTIONS(2992), + [anon_sym_LT_LT] = ACTIONS(2992), + [anon_sym_GT_GT] = ACTIONS(2992), + [anon_sym_GT_GT_GT] = ACTIONS(2992), + [anon_sym_AMP_CARET] = ACTIONS(2992), + [anon_sym_AMP_AMP] = ACTIONS(2992), + [anon_sym_PIPE_PIPE] = ACTIONS(2992), + [anon_sym_or] = ACTIONS(2992), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2992), + [anon_sym_POUND_LBRACK] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2992), + [anon_sym_BANGis] = ACTIONS(2992), + [anon_sym_in] = ACTIONS(2992), + [anon_sym_BANGin] = ACTIONS(2992), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), + [sym_rune_literal] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2992), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2992), + [sym___single_quote] = ACTIONS(2992), + [sym___c_double_quote] = ACTIONS(2992), + [sym___c_single_quote] = ACTIONS(2992), + [sym___r_double_quote] = ACTIONS(2992), + [sym___r_single_quote] = ACTIONS(2992), }, [1300] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_CR] = ACTIONS(617), - [anon_sym_CR_LF] = ACTIONS(617), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym___global] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(617), - [anon_sym_mut] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_AT_LBRACK] = ACTIONS(617), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LF] = ACTIONS(3016), + [anon_sym_CR] = ACTIONS(3016), + [anon_sym_CR_LF] = ACTIONS(3016), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3016), + [anon_sym_DOT] = ACTIONS(3016), + [anon_sym_as] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(3016), + [anon_sym_RBRACE] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3016), + [anon_sym_fn] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_PERCENT] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3016), + [anon_sym_BANG_EQ] = ACTIONS(3016), + [anon_sym_LT_EQ] = ACTIONS(3016), + [anon_sym_GT_EQ] = ACTIONS(3016), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_mut] = ACTIONS(3016), + [anon_sym_PLUS_PLUS] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3016), + [anon_sym_QMARK] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3016), + [anon_sym_go] = ACTIONS(3016), + [anon_sym_spawn] = ACTIONS(3016), + [anon_sym_json_DOTdecode] = ACTIONS(3016), + [anon_sym_LBRACK2] = ACTIONS(3016), + [anon_sym_TILDE] = ACTIONS(3016), + [anon_sym_CARET] = ACTIONS(3016), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_LT_DASH] = ACTIONS(3016), + [anon_sym_LT_LT] = ACTIONS(3016), + [anon_sym_GT_GT] = ACTIONS(3016), + [anon_sym_GT_GT_GT] = ACTIONS(3016), + [anon_sym_AMP_CARET] = ACTIONS(3016), + [anon_sym_AMP_AMP] = ACTIONS(3016), + [anon_sym_PIPE_PIPE] = ACTIONS(3016), + [anon_sym_or] = ACTIONS(3016), + [sym_none] = ACTIONS(3016), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [sym_nil] = ACTIONS(3016), + [anon_sym_QMARK_DOT] = ACTIONS(3016), + [anon_sym_POUND_LBRACK] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_DOLLARif] = ACTIONS(3016), + [anon_sym_is] = ACTIONS(3016), + [anon_sym_BANGis] = ACTIONS(3016), + [anon_sym_in] = ACTIONS(3016), + [anon_sym_BANGin] = ACTIONS(3016), + [anon_sym_match] = ACTIONS(3016), + [anon_sym_select] = ACTIONS(3016), + [anon_sym_lock] = ACTIONS(3016), + [anon_sym_rlock] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(3016), + [anon_sym_sql] = ACTIONS(3016), + [sym_int_literal] = ACTIONS(3016), + [sym_float_literal] = ACTIONS(3016), + [sym_rune_literal] = ACTIONS(3016), + [anon_sym_AT] = ACTIONS(3016), + [anon_sym_shared] = ACTIONS(3016), + [anon_sym_map_LBRACK] = ACTIONS(3016), + [anon_sym_chan] = ACTIONS(3016), + [anon_sym_thread] = ACTIONS(3016), + [anon_sym_atomic] = ACTIONS(3016), + [sym___double_quote] = ACTIONS(3016), + [sym___single_quote] = ACTIONS(3016), + [sym___c_double_quote] = ACTIONS(3016), + [sym___c_single_quote] = ACTIONS(3016), + [sym___r_double_quote] = ACTIONS(3016), + [sym___r_single_quote] = ACTIONS(3016), }, [1301] = { - [sym_identifier] = ACTIONS(2736), + [sym_else_branch] = STATE(1414), + [sym_identifier] = ACTIONS(2548), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_as] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2736), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_DOLLARelse] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), + [anon_sym_DOT] = ACTIONS(2548), + [anon_sym_as] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_PERCENT] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_GT] = ACTIONS(2548), + [anon_sym_EQ_EQ] = ACTIONS(2546), + [anon_sym_BANG_EQ] = ACTIONS(2546), + [anon_sym_LT_EQ] = ACTIONS(2546), + [anon_sym_GT_EQ] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_RBRACK] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_mut] = ACTIONS(2548), + [anon_sym_COLON] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_go] = ACTIONS(2548), + [anon_sym_spawn] = ACTIONS(2548), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_LT_DASH] = ACTIONS(2546), + [anon_sym_LT_LT] = ACTIONS(2546), + [anon_sym_GT_GT] = ACTIONS(2548), + [anon_sym_GT_GT_GT] = ACTIONS(2546), + [anon_sym_AMP_CARET] = ACTIONS(2546), + [anon_sym_AMP_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2546), + [anon_sym_or] = ACTIONS(2548), + [sym_none] = ACTIONS(2548), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [sym_nil] = ACTIONS(2548), + [anon_sym_QMARK_DOT] = ACTIONS(2546), + [anon_sym_POUND_LBRACK] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_else] = ACTIONS(3802), + [anon_sym_DOLLARif] = ACTIONS(2548), + [anon_sym_is] = ACTIONS(2548), + [anon_sym_BANGis] = ACTIONS(2546), + [anon_sym_in] = ACTIONS(2548), + [anon_sym_BANGin] = ACTIONS(2546), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_select] = ACTIONS(2548), + [anon_sym_lock] = ACTIONS(2548), + [anon_sym_rlock] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_sql] = ACTIONS(2548), + [sym_int_literal] = ACTIONS(2548), + [sym_float_literal] = ACTIONS(2546), + [sym_rune_literal] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2548), + [anon_sym_shared] = ACTIONS(2548), + [anon_sym_map_LBRACK] = ACTIONS(2546), + [anon_sym_chan] = ACTIONS(2548), + [anon_sym_thread] = ACTIONS(2548), + [anon_sym_atomic] = ACTIONS(2548), + [sym___double_quote] = ACTIONS(2546), + [sym___single_quote] = ACTIONS(2546), + [sym___c_double_quote] = ACTIONS(2546), + [sym___c_single_quote] = ACTIONS(2546), + [sym___r_double_quote] = ACTIONS(2546), + [sym___r_single_quote] = ACTIONS(2546), }, [1302] = { - [sym_identifier] = ACTIONS(3074), + [sym_identifier] = ACTIONS(2884), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_DOT] = ACTIONS(3074), - [anon_sym_as] = ACTIONS(3074), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_COMMA] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_fn] = ACTIONS(3074), - [anon_sym_PLUS] = ACTIONS(3074), - [anon_sym_DASH] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3074), - [anon_sym_PERCENT] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3074), - [anon_sym_GT] = ACTIONS(3074), - [anon_sym_EQ_EQ] = ACTIONS(3072), - [anon_sym_BANG_EQ] = ACTIONS(3072), - [anon_sym_LT_EQ] = ACTIONS(3072), - [anon_sym_GT_EQ] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_RBRACK] = ACTIONS(3072), - [anon_sym_struct] = ACTIONS(3074), - [anon_sym_mut] = ACTIONS(3074), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_QMARK] = ACTIONS(3074), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_go] = ACTIONS(3074), - [anon_sym_spawn] = ACTIONS(3074), - [anon_sym_json_DOTdecode] = ACTIONS(3072), - [anon_sym_LBRACK2] = ACTIONS(3074), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3074), - [anon_sym_LT_DASH] = ACTIONS(3072), - [anon_sym_LT_LT] = ACTIONS(3072), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_GT_GT_GT] = ACTIONS(3072), - [anon_sym_AMP_CARET] = ACTIONS(3072), - [anon_sym_AMP_AMP] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3072), - [anon_sym_or] = ACTIONS(3074), - [sym_none] = ACTIONS(3074), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [sym_nil] = ACTIONS(3074), - [anon_sym_QMARK_DOT] = ACTIONS(3072), - [anon_sym_POUND_LBRACK] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_DOLLARif] = ACTIONS(3074), - [anon_sym_is] = ACTIONS(3074), - [anon_sym_BANGis] = ACTIONS(3072), - [anon_sym_in] = ACTIONS(3074), - [anon_sym_BANGin] = ACTIONS(3072), - [anon_sym_match] = ACTIONS(3074), - [anon_sym_select] = ACTIONS(3074), - [anon_sym_lock] = ACTIONS(3074), - [anon_sym_rlock] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(3074), - [anon_sym_sql] = ACTIONS(3074), - [sym_int_literal] = ACTIONS(3074), - [sym_float_literal] = ACTIONS(3072), - [sym_rune_literal] = ACTIONS(3072), - [anon_sym_AT] = ACTIONS(3074), - [anon_sym_shared] = ACTIONS(3074), - [anon_sym_map_LBRACK] = ACTIONS(3072), - [anon_sym_chan] = ACTIONS(3074), - [anon_sym_thread] = ACTIONS(3074), - [anon_sym_atomic] = ACTIONS(3074), - [sym___double_quote] = ACTIONS(3072), - [sym___single_quote] = ACTIONS(3072), - [sym___c_double_quote] = ACTIONS(3072), - [sym___c_single_quote] = ACTIONS(3072), - [sym___r_double_quote] = ACTIONS(3072), - [sym___r_single_quote] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(2884), + [anon_sym_as] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_fn] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_GT] = ACTIONS(2884), + [anon_sym_EQ_EQ] = ACTIONS(2882), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_LT_EQ] = ACTIONS(2882), + [anon_sym_GT_EQ] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_RBRACK] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_mut] = ACTIONS(2884), + [anon_sym_COLON] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_go] = ACTIONS(2884), + [anon_sym_spawn] = ACTIONS(2884), + [anon_sym_json_DOTdecode] = ACTIONS(2882), + [anon_sym_LBRACK2] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_CARET] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_LT_DASH] = ACTIONS(2882), + [anon_sym_LT_LT] = ACTIONS(2882), + [anon_sym_GT_GT] = ACTIONS(2884), + [anon_sym_GT_GT_GT] = ACTIONS(2882), + [anon_sym_AMP_CARET] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_PIPE_PIPE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2884), + [sym_none] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_nil] = ACTIONS(2884), + [anon_sym_QMARK_DOT] = ACTIONS(2882), + [anon_sym_POUND_LBRACK] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_DOLLARif] = ACTIONS(2884), + [anon_sym_DOLLARelse] = ACTIONS(3804), + [anon_sym_is] = ACTIONS(2884), + [anon_sym_BANGis] = ACTIONS(2882), + [anon_sym_in] = ACTIONS(2884), + [anon_sym_BANGin] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_select] = ACTIONS(2884), + [anon_sym_lock] = ACTIONS(2884), + [anon_sym_rlock] = ACTIONS(2884), + [anon_sym_unsafe] = ACTIONS(2884), + [anon_sym_sql] = ACTIONS(2884), + [sym_int_literal] = ACTIONS(2884), + [sym_float_literal] = ACTIONS(2882), + [sym_rune_literal] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_shared] = ACTIONS(2884), + [anon_sym_map_LBRACK] = ACTIONS(2882), + [anon_sym_chan] = ACTIONS(2884), + [anon_sym_thread] = ACTIONS(2884), + [anon_sym_atomic] = ACTIONS(2884), + [sym___double_quote] = ACTIONS(2882), + [sym___single_quote] = ACTIONS(2882), + [sym___c_double_quote] = ACTIONS(2882), + [sym___c_single_quote] = ACTIONS(2882), + [sym___r_double_quote] = ACTIONS(2882), + [sym___r_single_quote] = ACTIONS(2882), }, [1303] = { - [sym_type_parameters] = STATE(1317), - [sym_identifier] = ACTIONS(2764), + [sym_identifier] = ACTIONS(3269), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_COMMA] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_EQ] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_RBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2762), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2762), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2762), - [anon_sym_LT_LT] = ACTIONS(2762), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2762), - [anon_sym_AMP_CARET] = ACTIONS(2762), - [anon_sym_AMP_AMP] = ACTIONS(2762), - [anon_sym_PIPE_PIPE] = ACTIONS(2762), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2762), - [anon_sym_POUND_LBRACK] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2762), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2762), - [sym_rune_literal] = ACTIONS(2762), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2762), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2762), - [sym___single_quote] = ACTIONS(2762), - [sym___c_double_quote] = ACTIONS(2762), - [sym___c_single_quote] = ACTIONS(2762), - [sym___r_double_quote] = ACTIONS(2762), - [sym___r_single_quote] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3267), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_RBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3267), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3267), + [anon_sym_AMP_CARET] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3267), + [anon_sym_POUND_LBRACK] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3267), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3267), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3267), + [sym_rune_literal] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3267), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3267), + [sym___single_quote] = ACTIONS(3267), + [sym___c_double_quote] = ACTIONS(3267), + [sym___c_single_quote] = ACTIONS(3267), + [sym___r_double_quote] = ACTIONS(3267), + [sym___r_single_quote] = ACTIONS(3267), }, [1304] = { - [sym_identifier] = ACTIONS(2616), + [sym_identifier] = ACTIONS(2798), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_as] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_COMMA] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_fn] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2616), - [anon_sym_PERCENT] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_RBRACK] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2616), - [anon_sym_mut] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_go] = ACTIONS(2616), - [anon_sym_spawn] = ACTIONS(2616), - [anon_sym_json_DOTdecode] = ACTIONS(2614), - [anon_sym_LBRACK2] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_CARET] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(2614), - [anon_sym_GT_GT] = ACTIONS(2616), - [anon_sym_GT_GT_GT] = ACTIONS(2614), - [anon_sym_AMP_CARET] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_or] = ACTIONS(2616), - [sym_none] = ACTIONS(2616), - [sym_true] = ACTIONS(2616), - [sym_false] = ACTIONS(2616), - [sym_nil] = ACTIONS(2616), - [anon_sym_QMARK_DOT] = ACTIONS(2614), - [anon_sym_POUND_LBRACK] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_DOLLARif] = ACTIONS(2616), - [anon_sym_DOLLARelse] = ACTIONS(3669), - [anon_sym_is] = ACTIONS(2616), - [anon_sym_BANGis] = ACTIONS(2614), - [anon_sym_in] = ACTIONS(2616), - [anon_sym_BANGin] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_select] = ACTIONS(2616), - [anon_sym_lock] = ACTIONS(2616), - [anon_sym_rlock] = ACTIONS(2616), - [anon_sym_unsafe] = ACTIONS(2616), - [anon_sym_sql] = ACTIONS(2616), - [sym_int_literal] = ACTIONS(2616), - [sym_float_literal] = ACTIONS(2614), - [sym_rune_literal] = ACTIONS(2614), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_shared] = ACTIONS(2616), - [anon_sym_map_LBRACK] = ACTIONS(2614), - [anon_sym_chan] = ACTIONS(2616), - [anon_sym_thread] = ACTIONS(2616), - [anon_sym_atomic] = ACTIONS(2616), - [sym___double_quote] = ACTIONS(2614), - [sym___single_quote] = ACTIONS(2614), - [sym___c_double_quote] = ACTIONS(2614), - [sym___c_single_quote] = ACTIONS(2614), - [sym___r_double_quote] = ACTIONS(2614), - [sym___r_single_quote] = ACTIONS(2614), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_COMMA] = ACTIONS(2796), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2796), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2796), + [anon_sym_BANG_EQ] = ACTIONS(2796), + [anon_sym_LT_EQ] = ACTIONS(2796), + [anon_sym_GT_EQ] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_COLON] = ACTIONS(2796), + [anon_sym_PLUS_PLUS] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2796), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2796), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2796), + [anon_sym_CARET] = ACTIONS(2796), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2796), + [anon_sym_LT_LT] = ACTIONS(2796), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2796), + [anon_sym_AMP_CARET] = ACTIONS(2796), + [anon_sym_AMP_AMP] = ACTIONS(2796), + [anon_sym_PIPE_PIPE] = ACTIONS(2796), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2796), + [anon_sym_POUND_LBRACK] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_DOLLARelse] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2796), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2796), + [sym_rune_literal] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2796), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2796), + [sym___single_quote] = ACTIONS(2796), + [sym___c_double_quote] = ACTIONS(2796), + [sym___c_single_quote] = ACTIONS(2796), + [sym___r_double_quote] = ACTIONS(2796), + [sym___r_single_quote] = ACTIONS(2796), }, [1305] = { - [sym_identifier] = ACTIONS(3058), + [sym_identifier] = ACTIONS(2996), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(3058), - [anon_sym_as] = ACTIONS(3058), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_fn] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_RBRACK] = ACTIONS(3056), - [anon_sym_struct] = ACTIONS(3058), - [anon_sym_mut] = ACTIONS(3058), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3058), - [anon_sym_BANG] = ACTIONS(3058), - [anon_sym_go] = ACTIONS(3058), - [anon_sym_spawn] = ACTIONS(3058), - [anon_sym_json_DOTdecode] = ACTIONS(3056), - [anon_sym_LBRACK2] = ACTIONS(3058), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_LT_DASH] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_GT_GT_GT] = ACTIONS(3056), - [anon_sym_AMP_CARET] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_or] = ACTIONS(3058), - [sym_none] = ACTIONS(3058), - [sym_true] = ACTIONS(3058), - [sym_false] = ACTIONS(3058), - [sym_nil] = ACTIONS(3058), - [anon_sym_QMARK_DOT] = ACTIONS(3056), - [anon_sym_POUND_LBRACK] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3058), - [anon_sym_DOLLARif] = ACTIONS(3058), - [anon_sym_is] = ACTIONS(3058), - [anon_sym_BANGis] = ACTIONS(3056), - [anon_sym_in] = ACTIONS(3058), - [anon_sym_BANGin] = ACTIONS(3056), - [anon_sym_match] = ACTIONS(3058), - [anon_sym_select] = ACTIONS(3058), - [anon_sym_lock] = ACTIONS(3058), - [anon_sym_rlock] = ACTIONS(3058), - [anon_sym_unsafe] = ACTIONS(3058), - [anon_sym_sql] = ACTIONS(3058), - [sym_int_literal] = ACTIONS(3058), - [sym_float_literal] = ACTIONS(3056), - [sym_rune_literal] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3058), - [anon_sym_shared] = ACTIONS(3058), - [anon_sym_map_LBRACK] = ACTIONS(3056), - [anon_sym_chan] = ACTIONS(3058), - [anon_sym_thread] = ACTIONS(3058), - [anon_sym_atomic] = ACTIONS(3058), - [sym___double_quote] = ACTIONS(3056), - [sym___single_quote] = ACTIONS(3056), - [sym___c_double_quote] = ACTIONS(3056), - [sym___c_single_quote] = ACTIONS(3056), - [sym___r_double_quote] = ACTIONS(3056), - [sym___r_single_quote] = ACTIONS(3056), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_DOT] = ACTIONS(2996), + [anon_sym_as] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_COMMA] = ACTIONS(2994), + [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2996), + [anon_sym_fn] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_SLASH] = ACTIONS(2996), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_GT] = ACTIONS(2996), + [anon_sym_EQ_EQ] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_RBRACK] = ACTIONS(2994), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_mut] = ACTIONS(2996), + [anon_sym_COLON] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2996), + [anon_sym_go] = ACTIONS(2996), + [anon_sym_spawn] = ACTIONS(2996), + [anon_sym_json_DOTdecode] = ACTIONS(2994), + [anon_sym_LBRACK2] = ACTIONS(2996), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_CARET] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_LT_DASH] = ACTIONS(2994), + [anon_sym_LT_LT] = ACTIONS(2994), + [anon_sym_GT_GT] = ACTIONS(2996), + [anon_sym_GT_GT_GT] = ACTIONS(2994), + [anon_sym_AMP_CARET] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_PIPE_PIPE] = ACTIONS(2994), + [anon_sym_or] = ACTIONS(2996), + [sym_none] = ACTIONS(2996), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_nil] = ACTIONS(2996), + [anon_sym_QMARK_DOT] = ACTIONS(2994), + [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_DOLLARif] = ACTIONS(2996), + [anon_sym_is] = ACTIONS(2996), + [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2996), + [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2996), + [anon_sym_select] = ACTIONS(2996), + [anon_sym_lock] = ACTIONS(2996), + [anon_sym_rlock] = ACTIONS(2996), + [anon_sym_unsafe] = ACTIONS(2996), + [anon_sym_sql] = ACTIONS(2996), + [sym_int_literal] = ACTIONS(2996), + [sym_float_literal] = ACTIONS(2994), + [sym_rune_literal] = ACTIONS(2994), + [anon_sym_AT] = ACTIONS(2996), + [anon_sym_shared] = ACTIONS(2996), + [anon_sym_map_LBRACK] = ACTIONS(2994), + [anon_sym_chan] = ACTIONS(2996), + [anon_sym_thread] = ACTIONS(2996), + [anon_sym_atomic] = ACTIONS(2996), + [sym___double_quote] = ACTIONS(2994), + [sym___single_quote] = ACTIONS(2994), + [sym___c_double_quote] = ACTIONS(2994), + [sym___c_single_quote] = ACTIONS(2994), + [sym___r_double_quote] = ACTIONS(2994), + [sym___r_single_quote] = ACTIONS(2994), }, [1306] = { - [sym_identifier] = ACTIONS(2758), + [sym_identifier] = ACTIONS(3000), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2758), - [anon_sym_as] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_fn] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_EQ_EQ] = ACTIONS(2756), - [anon_sym_BANG_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_RBRACK] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_mut] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_go] = ACTIONS(2758), - [anon_sym_spawn] = ACTIONS(2758), - [anon_sym_json_DOTdecode] = ACTIONS(2756), - [anon_sym_LBRACK2] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_LT_DASH] = ACTIONS(2756), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2758), - [anon_sym_GT_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_CARET] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_or] = ACTIONS(2758), - [sym_none] = ACTIONS(2758), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_nil] = ACTIONS(2758), - [anon_sym_QMARK_DOT] = ACTIONS(2756), - [anon_sym_POUND_LBRACK] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_DOLLARif] = ACTIONS(2758), - [anon_sym_DOLLARelse] = ACTIONS(3671), - [anon_sym_is] = ACTIONS(2758), - [anon_sym_BANGis] = ACTIONS(2756), - [anon_sym_in] = ACTIONS(2758), - [anon_sym_BANGin] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2758), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2758), - [anon_sym_rlock] = ACTIONS(2758), - [anon_sym_unsafe] = ACTIONS(2758), - [anon_sym_sql] = ACTIONS(2758), - [sym_int_literal] = ACTIONS(2758), - [sym_float_literal] = ACTIONS(2756), - [sym_rune_literal] = ACTIONS(2756), - [anon_sym_AT] = ACTIONS(2758), - [anon_sym_shared] = ACTIONS(2758), - [anon_sym_map_LBRACK] = ACTIONS(2756), - [anon_sym_chan] = ACTIONS(2758), - [anon_sym_thread] = ACTIONS(2758), - [anon_sym_atomic] = ACTIONS(2758), - [sym___double_quote] = ACTIONS(2756), - [sym___single_quote] = ACTIONS(2756), - [sym___c_double_quote] = ACTIONS(2756), - [sym___c_single_quote] = ACTIONS(2756), - [sym___r_double_quote] = ACTIONS(2756), - [sym___r_single_quote] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_DOT] = ACTIONS(3000), + [anon_sym_as] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_COMMA] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_PIPE] = ACTIONS(3000), + [anon_sym_fn] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_SLASH] = ACTIONS(3000), + [anon_sym_PERCENT] = ACTIONS(2998), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_GT] = ACTIONS(3000), + [anon_sym_EQ_EQ] = ACTIONS(2998), + [anon_sym_BANG_EQ] = ACTIONS(2998), + [anon_sym_LT_EQ] = ACTIONS(2998), + [anon_sym_GT_EQ] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2998), + [anon_sym_RBRACK] = ACTIONS(2998), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_mut] = ACTIONS(3000), + [anon_sym_COLON] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(3000), + [anon_sym_go] = ACTIONS(3000), + [anon_sym_spawn] = ACTIONS(3000), + [anon_sym_json_DOTdecode] = ACTIONS(2998), + [anon_sym_LBRACK2] = ACTIONS(3000), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_CARET] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_LT_DASH] = ACTIONS(2998), + [anon_sym_LT_LT] = ACTIONS(2998), + [anon_sym_GT_GT] = ACTIONS(3000), + [anon_sym_GT_GT_GT] = ACTIONS(2998), + [anon_sym_AMP_CARET] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2998), + [anon_sym_PIPE_PIPE] = ACTIONS(2998), + [anon_sym_or] = ACTIONS(3000), + [sym_none] = ACTIONS(3000), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [sym_nil] = ACTIONS(3000), + [anon_sym_QMARK_DOT] = ACTIONS(2998), + [anon_sym_POUND_LBRACK] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_DOLLARif] = ACTIONS(3000), + [anon_sym_is] = ACTIONS(3000), + [anon_sym_BANGis] = ACTIONS(2998), + [anon_sym_in] = ACTIONS(3000), + [anon_sym_BANGin] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(3000), + [anon_sym_select] = ACTIONS(3000), + [anon_sym_lock] = ACTIONS(3000), + [anon_sym_rlock] = ACTIONS(3000), + [anon_sym_unsafe] = ACTIONS(3000), + [anon_sym_sql] = ACTIONS(3000), + [sym_int_literal] = ACTIONS(3000), + [sym_float_literal] = ACTIONS(2998), + [sym_rune_literal] = ACTIONS(2998), + [anon_sym_AT] = ACTIONS(3000), + [anon_sym_shared] = ACTIONS(3000), + [anon_sym_map_LBRACK] = ACTIONS(2998), + [anon_sym_chan] = ACTIONS(3000), + [anon_sym_thread] = ACTIONS(3000), + [anon_sym_atomic] = ACTIONS(3000), + [sym___double_quote] = ACTIONS(2998), + [sym___single_quote] = ACTIONS(2998), + [sym___c_double_quote] = ACTIONS(2998), + [sym___c_single_quote] = ACTIONS(2998), + [sym___r_double_quote] = ACTIONS(2998), + [sym___r_single_quote] = ACTIONS(2998), }, [1307] = { - [sym_reference_expression] = STATE(4570), - [sym_type_reference_expression] = STATE(2164), - [sym_plain_type] = STATE(2244), - [sym__plain_type_without_special] = STATE(2191), - [sym_anon_struct_type] = STATE(2192), - [sym_multi_return_type] = STATE(2191), - [sym_result_type] = STATE(2191), - [sym_option_type] = STATE(2191), - [sym_qualified_type] = STATE(2164), - [sym_fixed_array_type] = STATE(2192), - [sym_array_type] = STATE(2192), - [sym_pointer_type] = STATE(2192), - [sym_wrong_pointer_type] = STATE(2192), - [sym_map_type] = STATE(2192), - [sym_channel_type] = STATE(2192), - [sym_shared_type] = STATE(2192), - [sym_thread_type] = STATE(2192), - [sym_atomic_type] = STATE(2192), - [sym_generic_type] = STATE(2192), - [sym_function_type] = STATE(2192), - [sym_identifier] = ACTIONS(3673), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym___global] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3681), - [anon_sym_pub] = ACTIONS(613), - [anon_sym_mut] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_LBRACK2] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3691), - [anon_sym_map_LBRACK] = ACTIONS(3693), - [anon_sym_chan] = ACTIONS(3695), - [anon_sym_thread] = ACTIONS(3697), - [anon_sym_atomic] = ACTIONS(3699), - [anon_sym_AT_LBRACK] = ACTIONS(613), + [sym_identifier] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3038), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3038), + [anon_sym_AMP_CARET] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_PIPE_PIPE] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3038), + [anon_sym_POUND_LBRACK] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3038), + [sym_rune_literal] = ACTIONS(3038), + [anon_sym_AT] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3038), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3038), + [sym___single_quote] = ACTIONS(3038), + [sym___c_double_quote] = ACTIONS(3038), + [sym___c_single_quote] = ACTIONS(3038), + [sym___r_double_quote] = ACTIONS(3038), + [sym___r_single_quote] = ACTIONS(3038), }, [1308] = { - [sym_identifier] = ACTIONS(2854), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_RBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2358), + [anon_sym_BANG_EQ] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2358), + [anon_sym_GT_EQ] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), }, [1309] = { - [sym_identifier] = ACTIONS(2842), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_as] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2842), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_RBRACK] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_mut] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_go] = ACTIONS(2842), - [anon_sym_spawn] = ACTIONS(2842), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2842), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2842), - [sym_none] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_nil] = ACTIONS(2842), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_DOLLARif] = ACTIONS(2842), - [anon_sym_is] = ACTIONS(2842), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2842), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_select] = ACTIONS(2842), - [anon_sym_lock] = ACTIONS(2842), - [anon_sym_rlock] = ACTIONS(2842), - [anon_sym_unsafe] = ACTIONS(2842), - [anon_sym_sql] = ACTIONS(2842), - [sym_int_literal] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2842), - [anon_sym_shared] = ACTIONS(2842), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2842), - [anon_sym_thread] = ACTIONS(2842), - [anon_sym_atomic] = ACTIONS(2842), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2358), + [anon_sym_BANG_EQ] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2358), + [anon_sym_GT_EQ] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), }, [1310] = { - [sym_identifier] = ACTIONS(2874), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_as] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_GT] = ACTIONS(2874), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_RBRACK] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2874), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_is] = ACTIONS(2874), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2874), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, - [1311] = { - [sym_identifier] = ACTIONS(2882), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_as] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_fn] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_GT] = ACTIONS(2882), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_RBRACK] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_mut] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_go] = ACTIONS(2882), - [anon_sym_spawn] = ACTIONS(2882), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2882), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2882), - [sym_none] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_nil] = ACTIONS(2882), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_DOLLARif] = ACTIONS(2882), - [anon_sym_is] = ACTIONS(2882), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2882), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_select] = ACTIONS(2882), - [anon_sym_lock] = ACTIONS(2882), - [anon_sym_rlock] = ACTIONS(2882), - [anon_sym_unsafe] = ACTIONS(2882), - [anon_sym_sql] = ACTIONS(2882), - [sym_int_literal] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2882), - [anon_sym_shared] = ACTIONS(2882), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2882), - [anon_sym_thread] = ACTIONS(2882), - [anon_sym_atomic] = ACTIONS(2882), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), - }, - [1312] = { - [sym_identifier] = ACTIONS(2886), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_GT] = ACTIONS(2886), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_RBRACK] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2886), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_is] = ACTIONS(2886), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2886), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [1313] = { - [sym_identifier] = ACTIONS(2894), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_as] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_PERCENT] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_GT] = ACTIONS(2894), - [anon_sym_EQ_EQ] = ACTIONS(2892), - [anon_sym_BANG_EQ] = ACTIONS(2892), - [anon_sym_LT_EQ] = ACTIONS(2892), - [anon_sym_GT_EQ] = ACTIONS(2892), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_RBRACK] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2892), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_CARET] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2892), - [anon_sym_LT_LT] = ACTIONS(2892), - [anon_sym_GT_GT] = ACTIONS(2894), - [anon_sym_GT_GT_GT] = ACTIONS(2892), - [anon_sym_AMP_CARET] = ACTIONS(2892), - [anon_sym_AMP_AMP] = ACTIONS(2892), - [anon_sym_PIPE_PIPE] = ACTIONS(2892), - [anon_sym_or] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_QMARK_DOT] = ACTIONS(2892), - [anon_sym_POUND_LBRACK] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_is] = ACTIONS(2894), - [anon_sym_BANGis] = ACTIONS(2892), - [anon_sym_in] = ACTIONS(2894), - [anon_sym_BANGin] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2892), - [sym_rune_literal] = ACTIONS(2892), - [anon_sym_AT] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2892), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2892), - [sym___single_quote] = ACTIONS(2892), - [sym___c_double_quote] = ACTIONS(2892), - [sym___c_single_quote] = ACTIONS(2892), - [sym___r_double_quote] = ACTIONS(2892), - [sym___r_single_quote] = ACTIONS(2892), - }, - [1314] = { - [sym_identifier] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_as] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_EQ_EQ] = ACTIONS(2908), - [anon_sym_BANG_EQ] = ACTIONS(2908), - [anon_sym_LT_EQ] = ACTIONS(2908), - [anon_sym_GT_EQ] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_RBRACK] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2908), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_CARET] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2908), - [anon_sym_LT_LT] = ACTIONS(2908), - [anon_sym_GT_GT] = ACTIONS(2910), - [anon_sym_GT_GT_GT] = ACTIONS(2908), - [anon_sym_AMP_CARET] = ACTIONS(2908), - [anon_sym_AMP_AMP] = ACTIONS(2908), - [anon_sym_PIPE_PIPE] = ACTIONS(2908), - [anon_sym_or] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_QMARK_DOT] = ACTIONS(2908), - [anon_sym_POUND_LBRACK] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_is] = ACTIONS(2910), - [anon_sym_BANGis] = ACTIONS(2908), - [anon_sym_in] = ACTIONS(2910), - [anon_sym_BANGin] = ACTIONS(2908), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2908), - [sym_rune_literal] = ACTIONS(2908), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2908), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2908), - [sym___single_quote] = ACTIONS(2908), - [sym___c_double_quote] = ACTIONS(2908), - [sym___c_single_quote] = ACTIONS(2908), - [sym___r_double_quote] = ACTIONS(2908), - [sym___r_single_quote] = ACTIONS(2908), - }, - [1315] = { [sym_identifier] = ACTIONS(2914), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2912), [anon_sym_DOT] = ACTIONS(2914), [anon_sym_as] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2919), [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), [anon_sym_LPAREN] = ACTIONS(2912), [anon_sym_PIPE] = ACTIONS(2914), [anon_sym_fn] = ACTIONS(2914), @@ -168598,10 +169115,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2912), [anon_sym_LT_EQ] = ACTIONS(2912), [anon_sym_GT_EQ] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2919), [anon_sym_RBRACK] = ACTIONS(2912), [anon_sym_struct] = ACTIONS(2914), [anon_sym_mut] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), [anon_sym_PLUS_PLUS] = ACTIONS(2912), [anon_sym_DASH_DASH] = ACTIONS(2912), [anon_sym_QMARK] = ACTIONS(2914), @@ -168655,13 +169173,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2912), [sym___r_single_quote] = ACTIONS(2912), }, - [1316] = { + [1311] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(3814), + [anon_sym_GT] = ACTIONS(3814), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_LT_EQ] = ACTIONS(3816), + [anon_sym_GT_EQ] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(3818), + [anon_sym_BANGin] = ACTIONS(3820), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), + }, + [1312] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(3814), + [anon_sym_GT] = ACTIONS(3814), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_LT_EQ] = ACTIONS(3816), + [anon_sym_GT_EQ] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(3822), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(3818), + [anon_sym_BANGin] = ACTIONS(3820), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), + }, + [1313] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2346), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2344), + [anon_sym_COMMA] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2344), + [anon_sym_BANG_EQ] = ACTIONS(2344), + [anon_sym_LT_EQ] = ACTIONS(2344), + [anon_sym_GT_EQ] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2344), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2346), + [anon_sym_spawn] = ACTIONS(2346), + [anon_sym_json_DOTdecode] = ACTIONS(2344), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2344), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2344), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(2344), + [anon_sym_PIPE_PIPE] = ACTIONS(2344), + [anon_sym_or] = ACTIONS(2346), + [sym_none] = ACTIONS(2346), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_nil] = ACTIONS(2346), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_DOLLARif] = ACTIONS(2346), + [anon_sym_is] = ACTIONS(2346), + [anon_sym_BANGis] = ACTIONS(2344), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_BANGin] = ACTIONS(2344), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_select] = ACTIONS(2346), + [anon_sym_lock] = ACTIONS(2346), + [anon_sym_rlock] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2346), + [sym_int_literal] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2344), + [sym_rune_literal] = ACTIONS(2344), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_shared] = ACTIONS(2346), + [anon_sym_map_LBRACK] = ACTIONS(2344), + [anon_sym_chan] = ACTIONS(2346), + [anon_sym_thread] = ACTIONS(2346), + [anon_sym_atomic] = ACTIONS(2346), + [sym___double_quote] = ACTIONS(2344), + [sym___single_quote] = ACTIONS(2344), + [sym___c_double_quote] = ACTIONS(2344), + [sym___c_single_quote] = ACTIONS(2344), + [sym___r_double_quote] = ACTIONS(2344), + [sym___r_single_quote] = ACTIONS(2344), + }, + [1314] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2342), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2340), + [anon_sym_BANG_EQ] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2340), + [anon_sym_GT_EQ] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2340), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2342), + [anon_sym_spawn] = ACTIONS(2342), + [anon_sym_json_DOTdecode] = ACTIONS(2340), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2340), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_PIPE_PIPE] = ACTIONS(2340), + [anon_sym_or] = ACTIONS(2342), + [sym_none] = ACTIONS(2342), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_nil] = ACTIONS(2342), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_DOLLARif] = ACTIONS(2342), + [anon_sym_is] = ACTIONS(2342), + [anon_sym_BANGis] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_BANGin] = ACTIONS(2340), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_select] = ACTIONS(2342), + [anon_sym_lock] = ACTIONS(2342), + [anon_sym_rlock] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_sql] = ACTIONS(2342), + [sym_int_literal] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2340), + [sym_rune_literal] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_shared] = ACTIONS(2342), + [anon_sym_map_LBRACK] = ACTIONS(2340), + [anon_sym_chan] = ACTIONS(2342), + [anon_sym_thread] = ACTIONS(2342), + [anon_sym_atomic] = ACTIONS(2342), + [sym___double_quote] = ACTIONS(2340), + [sym___single_quote] = ACTIONS(2340), + [sym___c_double_quote] = ACTIONS(2340), + [sym___c_single_quote] = ACTIONS(2340), + [sym___r_double_quote] = ACTIONS(2340), + [sym___r_single_quote] = ACTIONS(2340), + }, + [1315] = { [sym_identifier] = ACTIONS(2926), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(2926), [anon_sym_as] = ACTIONS(2926), [anon_sym_LBRACE] = ACTIONS(2924), [anon_sym_COMMA] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(2924), [anon_sym_LPAREN] = ACTIONS(2924), [anon_sym_PIPE] = ACTIONS(2926), [anon_sym_fn] = ACTIONS(2926), @@ -168680,6 +169523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(2924), [anon_sym_struct] = ACTIONS(2926), [anon_sym_mut] = ACTIONS(2926), + [anon_sym_COLON] = ACTIONS(2924), [anon_sym_PLUS_PLUS] = ACTIONS(2924), [anon_sym_DASH_DASH] = ACTIONS(2924), [anon_sym_QMARK] = ACTIONS(2926), @@ -168707,6 +169551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2924), [anon_sym_if] = ACTIONS(2926), [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_DOLLARelse] = ACTIONS(3824), [anon_sym_is] = ACTIONS(2926), [anon_sym_BANGis] = ACTIONS(2924), [anon_sym_in] = ACTIONS(2926), @@ -168724,1582 +169569,1320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_shared] = ACTIONS(2926), [anon_sym_map_LBRACK] = ACTIONS(2924), [anon_sym_chan] = ACTIONS(2926), - [anon_sym_thread] = ACTIONS(2926), - [anon_sym_atomic] = ACTIONS(2926), - [sym___double_quote] = ACTIONS(2924), - [sym___single_quote] = ACTIONS(2924), - [sym___c_double_quote] = ACTIONS(2924), - [sym___c_single_quote] = ACTIONS(2924), - [sym___r_double_quote] = ACTIONS(2924), - [sym___r_single_quote] = ACTIONS(2924), - }, - [1317] = { - [sym_identifier] = ACTIONS(2958), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_as] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_fn] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2956), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_PERCENT] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_GT] = ACTIONS(2958), - [anon_sym_EQ_EQ] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2956), - [anon_sym_GT_EQ] = ACTIONS(2956), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_struct] = ACTIONS(2958), - [anon_sym_mut] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_QMARK] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_go] = ACTIONS(2958), - [anon_sym_spawn] = ACTIONS(2958), - [anon_sym_json_DOTdecode] = ACTIONS(2956), - [anon_sym_LBRACK2] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_CARET] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_LT_DASH] = ACTIONS(2956), - [anon_sym_LT_LT] = ACTIONS(2956), - [anon_sym_GT_GT] = ACTIONS(2958), - [anon_sym_GT_GT_GT] = ACTIONS(2956), - [anon_sym_AMP_CARET] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2958), - [sym_none] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_nil] = ACTIONS(2958), - [anon_sym_QMARK_DOT] = ACTIONS(2956), - [anon_sym_POUND_LBRACK] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_DOLLARif] = ACTIONS(2958), - [anon_sym_is] = ACTIONS(2958), - [anon_sym_BANGis] = ACTIONS(2956), - [anon_sym_in] = ACTIONS(2958), - [anon_sym_BANGin] = ACTIONS(2956), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_select] = ACTIONS(2958), - [anon_sym_lock] = ACTIONS(2958), - [anon_sym_rlock] = ACTIONS(2958), - [anon_sym_unsafe] = ACTIONS(2958), - [anon_sym_sql] = ACTIONS(2958), - [sym_int_literal] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2956), - [sym_rune_literal] = ACTIONS(2956), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_shared] = ACTIONS(2958), - [anon_sym_map_LBRACK] = ACTIONS(2956), - [anon_sym_chan] = ACTIONS(2958), - [anon_sym_thread] = ACTIONS(2958), - [anon_sym_atomic] = ACTIONS(2958), - [sym___double_quote] = ACTIONS(2956), - [sym___single_quote] = ACTIONS(2956), - [sym___c_double_quote] = ACTIONS(2956), - [sym___c_single_quote] = ACTIONS(2956), - [sym___r_double_quote] = ACTIONS(2956), - [sym___r_single_quote] = ACTIONS(2956), - }, - [1318] = { - [sym_identifier] = ACTIONS(3002), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_as] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_COMMA] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3000), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_fn] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3000), - [anon_sym_SLASH] = ACTIONS(3002), - [anon_sym_PERCENT] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3002), - [anon_sym_GT] = ACTIONS(3002), - [anon_sym_EQ_EQ] = ACTIONS(3000), - [anon_sym_BANG_EQ] = ACTIONS(3000), - [anon_sym_LT_EQ] = ACTIONS(3000), - [anon_sym_GT_EQ] = ACTIONS(3000), - [anon_sym_LBRACK] = ACTIONS(3000), - [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3002), - [anon_sym_mut] = ACTIONS(3002), - [anon_sym_PLUS_PLUS] = ACTIONS(3000), - [anon_sym_DASH_DASH] = ACTIONS(3000), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_go] = ACTIONS(3002), - [anon_sym_spawn] = ACTIONS(3002), - [anon_sym_json_DOTdecode] = ACTIONS(3000), - [anon_sym_LBRACK2] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3000), - [anon_sym_CARET] = ACTIONS(3000), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3000), - [anon_sym_LT_LT] = ACTIONS(3000), - [anon_sym_GT_GT] = ACTIONS(3002), - [anon_sym_GT_GT_GT] = ACTIONS(3000), - [anon_sym_AMP_CARET] = ACTIONS(3000), - [anon_sym_AMP_AMP] = ACTIONS(3000), - [anon_sym_PIPE_PIPE] = ACTIONS(3000), - [anon_sym_or] = ACTIONS(3002), - [sym_none] = ACTIONS(3002), - [sym_true] = ACTIONS(3002), - [sym_false] = ACTIONS(3002), - [sym_nil] = ACTIONS(3002), - [anon_sym_QMARK_DOT] = ACTIONS(3000), - [anon_sym_POUND_LBRACK] = ACTIONS(3000), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_DOLLARif] = ACTIONS(3002), - [anon_sym_is] = ACTIONS(3002), - [anon_sym_BANGis] = ACTIONS(3000), - [anon_sym_in] = ACTIONS(3002), - [anon_sym_BANGin] = ACTIONS(3000), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_select] = ACTIONS(3002), - [anon_sym_lock] = ACTIONS(3002), - [anon_sym_rlock] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_sql] = ACTIONS(3002), - [sym_int_literal] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3000), - [sym_rune_literal] = ACTIONS(3000), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_shared] = ACTIONS(3002), - [anon_sym_map_LBRACK] = ACTIONS(3000), - [anon_sym_chan] = ACTIONS(3002), - [anon_sym_thread] = ACTIONS(3002), - [anon_sym_atomic] = ACTIONS(3002), - [sym___double_quote] = ACTIONS(3000), - [sym___single_quote] = ACTIONS(3000), - [sym___c_double_quote] = ACTIONS(3000), - [sym___c_single_quote] = ACTIONS(3000), - [sym___r_double_quote] = ACTIONS(3000), - [sym___r_single_quote] = ACTIONS(3000), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2924), + [sym___single_quote] = ACTIONS(2924), + [sym___c_double_quote] = ACTIONS(2924), + [sym___c_single_quote] = ACTIONS(2924), + [sym___r_double_quote] = ACTIONS(2924), + [sym___r_single_quote] = ACTIONS(2924), + }, + [1316] = { + [sym_identifier] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_COMMA] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2746), + [anon_sym_BANG_EQ] = ACTIONS(2746), + [anon_sym_LT_EQ] = ACTIONS(2746), + [anon_sym_GT_EQ] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_RBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2746), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_CARET] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2746), + [anon_sym_POUND_LBRACK] = ACTIONS(2746), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_DOLLARelse] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2746), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2746), + [sym_rune_literal] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2746), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2746), + [sym___single_quote] = ACTIONS(2746), + [sym___c_double_quote] = ACTIONS(2746), + [sym___c_single_quote] = ACTIONS(2746), + [sym___r_double_quote] = ACTIONS(2746), + [sym___r_single_quote] = ACTIONS(2746), + }, + [1317] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2220), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_mut] = ACTIONS(2220), + [anon_sym_COLON] = ACTIONS(2218), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2220), + [anon_sym_spawn] = ACTIONS(2220), + [anon_sym_json_DOTdecode] = ACTIONS(2218), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2218), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2218), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_nil] = ACTIONS(2220), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_DOLLARif] = ACTIONS(2220), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3796), + [anon_sym_BANGin] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_select] = ACTIONS(2220), + [anon_sym_lock] = ACTIONS(2220), + [anon_sym_rlock] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_sql] = ACTIONS(2220), + [sym_int_literal] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2218), + [sym_rune_literal] = ACTIONS(2218), + [anon_sym_AT] = ACTIONS(2220), + [anon_sym_shared] = ACTIONS(2220), + [anon_sym_map_LBRACK] = ACTIONS(2218), + [anon_sym_chan] = ACTIONS(2220), + [anon_sym_thread] = ACTIONS(2220), + [anon_sym_atomic] = ACTIONS(2220), + [sym___double_quote] = ACTIONS(2218), + [sym___single_quote] = ACTIONS(2218), + [sym___c_double_quote] = ACTIONS(2218), + [sym___c_single_quote] = ACTIONS(2218), + [sym___r_double_quote] = ACTIONS(2218), + [sym___r_single_quote] = ACTIONS(2218), + }, + [1318] = { + [sym_identifier] = ACTIONS(2798), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_COMMA] = ACTIONS(2796), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2796), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2796), + [anon_sym_BANG_EQ] = ACTIONS(2796), + [anon_sym_LT_EQ] = ACTIONS(2796), + [anon_sym_GT_EQ] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_COLON] = ACTIONS(2796), + [anon_sym_PLUS_PLUS] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2796), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2796), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2796), + [anon_sym_CARET] = ACTIONS(2796), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2796), + [anon_sym_LT_LT] = ACTIONS(2796), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2796), + [anon_sym_AMP_CARET] = ACTIONS(2796), + [anon_sym_AMP_AMP] = ACTIONS(2796), + [anon_sym_PIPE_PIPE] = ACTIONS(2796), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2796), + [anon_sym_POUND_LBRACK] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_else] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2796), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2796), + [sym_rune_literal] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2796), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2796), + [sym___single_quote] = ACTIONS(2796), + [sym___c_double_quote] = ACTIONS(2796), + [sym___c_single_quote] = ACTIONS(2796), + [sym___r_double_quote] = ACTIONS(2796), + [sym___r_single_quote] = ACTIONS(2796), }, [1319] = { - [sym_identifier] = ACTIONS(2846), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2234), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_RBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(3814), + [anon_sym_GT] = ACTIONS(3814), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_LT_EQ] = ACTIONS(3816), + [anon_sym_GT_EQ] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2232), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(3822), + [anon_sym_PIPE_PIPE] = ACTIONS(3826), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3818), + [anon_sym_BANGin] = ACTIONS(3820), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2232), + [sym_rune_literal] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2232), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2232), + [sym___single_quote] = ACTIONS(2232), + [sym___c_double_quote] = ACTIONS(2232), + [sym___c_single_quote] = ACTIONS(2232), + [sym___r_double_quote] = ACTIONS(2232), + [sym___r_single_quote] = ACTIONS(2232), }, [1320] = { - [sym_identifier] = ACTIONS(3118), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3118), - [anon_sym_as] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_fn] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3701), - [anon_sym_struct] = ACTIONS(3118), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_go] = ACTIONS(3118), - [anon_sym_spawn] = ACTIONS(3118), - [anon_sym_json_DOTdecode] = ACTIONS(3116), - [anon_sym_LBRACK2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_CARET] = ACTIONS(3116), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_LT_DASH] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3116), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_CARET] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_or] = ACTIONS(3118), - [sym_none] = ACTIONS(3118), - [sym_true] = ACTIONS(3118), - [sym_false] = ACTIONS(3118), - [sym_nil] = ACTIONS(3118), - [anon_sym_QMARK_DOT] = ACTIONS(3116), - [anon_sym_POUND_LBRACK] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_DOLLARif] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3118), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_match] = ACTIONS(3118), - [anon_sym_select] = ACTIONS(3118), - [anon_sym_lock] = ACTIONS(3118), - [anon_sym_rlock] = ACTIONS(3118), - [anon_sym_unsafe] = ACTIONS(3118), - [anon_sym_sql] = ACTIONS(3118), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(3116), - [sym_rune_literal] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_shared] = ACTIONS(3118), - [anon_sym_map_LBRACK] = ACTIONS(3116), - [anon_sym_chan] = ACTIONS(3118), - [anon_sym_thread] = ACTIONS(3118), - [anon_sym_atomic] = ACTIONS(3118), - [sym___double_quote] = ACTIONS(3116), - [sym___single_quote] = ACTIONS(3116), - [sym___c_double_quote] = ACTIONS(3116), - [sym___c_single_quote] = ACTIONS(3116), - [sym___r_double_quote] = ACTIONS(3116), - [sym___r_single_quote] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_COMMA] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(3814), + [anon_sym_GT] = ACTIONS(3814), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_LT_EQ] = ACTIONS(3816), + [anon_sym_GT_EQ] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2220), + [anon_sym_mut] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2220), + [anon_sym_spawn] = ACTIONS(2220), + [anon_sym_json_DOTdecode] = ACTIONS(2218), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2218), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(2218), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(3822), + [anon_sym_PIPE_PIPE] = ACTIONS(3826), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(2220), + [sym_true] = ACTIONS(2220), + [sym_false] = ACTIONS(2220), + [sym_nil] = ACTIONS(2220), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2220), + [anon_sym_DOLLARif] = ACTIONS(2220), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3818), + [anon_sym_BANGin] = ACTIONS(3820), + [anon_sym_match] = ACTIONS(2220), + [anon_sym_select] = ACTIONS(2220), + [anon_sym_lock] = ACTIONS(2220), + [anon_sym_rlock] = ACTIONS(2220), + [anon_sym_unsafe] = ACTIONS(2220), + [anon_sym_sql] = ACTIONS(2220), + [sym_int_literal] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2218), + [sym_rune_literal] = ACTIONS(2218), + [anon_sym_AT] = ACTIONS(2220), + [anon_sym_shared] = ACTIONS(2220), + [anon_sym_map_LBRACK] = ACTIONS(2218), + [anon_sym_chan] = ACTIONS(2220), + [anon_sym_thread] = ACTIONS(2220), + [anon_sym_atomic] = ACTIONS(2220), + [sym___double_quote] = ACTIONS(2218), + [sym___single_quote] = ACTIONS(2218), + [sym___c_double_quote] = ACTIONS(2218), + [sym___c_single_quote] = ACTIONS(2218), + [sym___r_double_quote] = ACTIONS(2218), + [sym___r_single_quote] = ACTIONS(2218), }, [1321] = { - [sym_identifier] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2748), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_as] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_GT] = ACTIONS(2822), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_RBRACK] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_mut] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_go] = ACTIONS(2822), - [anon_sym_spawn] = ACTIONS(2822), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2822), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2822), - [sym_none] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_nil] = ACTIONS(2822), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_DOLLARif] = ACTIONS(2822), - [anon_sym_is] = ACTIONS(2822), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2822), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_select] = ACTIONS(2822), - [anon_sym_lock] = ACTIONS(2822), - [anon_sym_rlock] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_sql] = ACTIONS(2822), - [sym_int_literal] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2822), - [anon_sym_shared] = ACTIONS(2822), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2822), - [anon_sym_thread] = ACTIONS(2822), - [anon_sym_atomic] = ACTIONS(2822), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_COMMA] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2746), + [anon_sym_BANG_EQ] = ACTIONS(2746), + [anon_sym_LT_EQ] = ACTIONS(2746), + [anon_sym_GT_EQ] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_RBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2746), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_CARET] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2746), + [anon_sym_POUND_LBRACK] = ACTIONS(2746), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2746), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2746), + [sym_rune_literal] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2746), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2746), + [sym___single_quote] = ACTIONS(2746), + [sym___c_double_quote] = ACTIONS(2746), + [sym___c_single_quote] = ACTIONS(2746), + [sym___r_double_quote] = ACTIONS(2746), + [sym___r_single_quote] = ACTIONS(2746), }, [1322] = { - [sym_identifier] = ACTIONS(2794), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(3828), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2794), - [anon_sym_as] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_fn] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2794), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_RBRACK] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_mut] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_go] = ACTIONS(2794), - [anon_sym_spawn] = ACTIONS(2794), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2794), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2794), - [sym_none] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_nil] = ACTIONS(2794), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_DOLLARif] = ACTIONS(2794), - [anon_sym_is] = ACTIONS(2794), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2794), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2794), - [anon_sym_select] = ACTIONS(2794), - [anon_sym_lock] = ACTIONS(2794), - [anon_sym_rlock] = ACTIONS(2794), - [anon_sym_unsafe] = ACTIONS(2794), - [anon_sym_sql] = ACTIONS(2794), - [sym_int_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2794), - [anon_sym_shared] = ACTIONS(2794), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2794), - [anon_sym_thread] = ACTIONS(2794), - [anon_sym_atomic] = ACTIONS(2794), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3830), + [anon_sym_COMMA] = ACTIONS(3832), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3810), + [anon_sym_fn] = ACTIONS(3828), + [anon_sym_PLUS] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_STAR] = ACTIONS(3806), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(3814), + [anon_sym_GT] = ACTIONS(3814), + [anon_sym_EQ_EQ] = ACTIONS(3816), + [anon_sym_BANG_EQ] = ACTIONS(3816), + [anon_sym_LT_EQ] = ACTIONS(3816), + [anon_sym_GT_EQ] = ACTIONS(3816), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_RBRACK] = ACTIONS(3830), + [anon_sym_struct] = ACTIONS(3828), + [anon_sym_mut] = ACTIONS(3828), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(3828), + [anon_sym_spawn] = ACTIONS(3828), + [anon_sym_json_DOTdecode] = ACTIONS(3830), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3830), + [anon_sym_CARET] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3808), + [anon_sym_LT_DASH] = ACTIONS(3830), + [anon_sym_LT_LT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_GT_GT_GT] = ACTIONS(3806), + [anon_sym_AMP_CARET] = ACTIONS(3806), + [anon_sym_AMP_AMP] = ACTIONS(3822), + [anon_sym_PIPE_PIPE] = ACTIONS(3826), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(3828), + [sym_true] = ACTIONS(3828), + [sym_false] = ACTIONS(3828), + [sym_nil] = ACTIONS(3828), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3828), + [anon_sym_DOLLARif] = ACTIONS(3828), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3818), + [anon_sym_BANGin] = ACTIONS(3820), + [anon_sym_match] = ACTIONS(3828), + [anon_sym_select] = ACTIONS(3828), + [anon_sym_lock] = ACTIONS(3828), + [anon_sym_rlock] = ACTIONS(3828), + [anon_sym_unsafe] = ACTIONS(3828), + [anon_sym_sql] = ACTIONS(3828), + [sym_int_literal] = ACTIONS(3828), + [sym_float_literal] = ACTIONS(3830), + [sym_rune_literal] = ACTIONS(3830), + [anon_sym_AT] = ACTIONS(3828), + [anon_sym_shared] = ACTIONS(3828), + [anon_sym_map_LBRACK] = ACTIONS(3830), + [anon_sym_chan] = ACTIONS(3828), + [anon_sym_thread] = ACTIONS(3828), + [anon_sym_atomic] = ACTIONS(3828), + [sym___double_quote] = ACTIONS(3830), + [sym___single_quote] = ACTIONS(3830), + [sym___c_double_quote] = ACTIONS(3830), + [sym___c_single_quote] = ACTIONS(3830), + [sym___r_double_quote] = ACTIONS(3830), + [sym___r_single_quote] = ACTIONS(3830), }, [1323] = { - [sym_identifier] = ACTIONS(3125), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2342), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3123), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3123), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3123), - [anon_sym_AMP_CARET] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3123), - [anon_sym_POUND_LBRACK] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3123), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3123), - [sym_rune_literal] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3123), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3123), - [sym___single_quote] = ACTIONS(3123), - [sym___c_double_quote] = ACTIONS(3123), - [sym___c_single_quote] = ACTIONS(3123), - [sym___r_double_quote] = ACTIONS(3123), - [sym___r_single_quote] = ACTIONS(3123), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2340), + [anon_sym_BANG_EQ] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2340), + [anon_sym_GT_EQ] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_COLON] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2342), + [anon_sym_spawn] = ACTIONS(2342), + [anon_sym_json_DOTdecode] = ACTIONS(2340), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2340), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_PIPE_PIPE] = ACTIONS(2340), + [anon_sym_or] = ACTIONS(2342), + [sym_none] = ACTIONS(2342), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_nil] = ACTIONS(2342), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_DOLLARif] = ACTIONS(2342), + [anon_sym_is] = ACTIONS(2342), + [anon_sym_BANGis] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_BANGin] = ACTIONS(2340), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_select] = ACTIONS(2342), + [anon_sym_lock] = ACTIONS(2342), + [anon_sym_rlock] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_sql] = ACTIONS(2342), + [sym_int_literal] = ACTIONS(2342), + [sym_float_literal] = ACTIONS(2340), + [sym_rune_literal] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_shared] = ACTIONS(2342), + [anon_sym_map_LBRACK] = ACTIONS(2340), + [anon_sym_chan] = ACTIONS(2342), + [anon_sym_thread] = ACTIONS(2342), + [anon_sym_atomic] = ACTIONS(2342), + [sym___double_quote] = ACTIONS(2340), + [sym___single_quote] = ACTIONS(2340), + [sym___c_double_quote] = ACTIONS(2340), + [sym___c_single_quote] = ACTIONS(2340), + [sym___r_double_quote] = ACTIONS(2340), + [sym___r_single_quote] = ACTIONS(2340), }, [1324] = { - [sym_identifier] = ACTIONS(2694), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2346), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_as] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_RBRACK] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2692), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_CARET] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2692), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_GT_GT_GT] = ACTIONS(2692), - [anon_sym_AMP_CARET] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_or] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_QMARK_DOT] = ACTIONS(2692), - [anon_sym_POUND_LBRACK] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_is] = ACTIONS(2694), - [anon_sym_BANGis] = ACTIONS(2692), - [anon_sym_in] = ACTIONS(2694), - [anon_sym_BANGin] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2692), - [sym_rune_literal] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2692), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2692), - [sym___single_quote] = ACTIONS(2692), - [sym___c_double_quote] = ACTIONS(2692), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2692), - [sym___r_single_quote] = ACTIONS(2692), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2344), + [anon_sym_BANG_EQ] = ACTIONS(2344), + [anon_sym_LT_EQ] = ACTIONS(2344), + [anon_sym_GT_EQ] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_COLON] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2346), + [anon_sym_spawn] = ACTIONS(2346), + [anon_sym_json_DOTdecode] = ACTIONS(2344), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2344), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2344), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(2344), + [anon_sym_PIPE_PIPE] = ACTIONS(2344), + [anon_sym_or] = ACTIONS(2346), + [sym_none] = ACTIONS(2346), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_nil] = ACTIONS(2346), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_DOLLARif] = ACTIONS(2346), + [anon_sym_is] = ACTIONS(2346), + [anon_sym_BANGis] = ACTIONS(2344), + [anon_sym_in] = ACTIONS(2346), + [anon_sym_BANGin] = ACTIONS(2344), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_select] = ACTIONS(2346), + [anon_sym_lock] = ACTIONS(2346), + [anon_sym_rlock] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2346), + [sym_int_literal] = ACTIONS(2346), + [sym_float_literal] = ACTIONS(2344), + [sym_rune_literal] = ACTIONS(2344), + [anon_sym_AT] = ACTIONS(2346), + [anon_sym_shared] = ACTIONS(2346), + [anon_sym_map_LBRACK] = ACTIONS(2344), + [anon_sym_chan] = ACTIONS(2346), + [anon_sym_thread] = ACTIONS(2346), + [anon_sym_atomic] = ACTIONS(2346), + [sym___double_quote] = ACTIONS(2344), + [sym___single_quote] = ACTIONS(2344), + [sym___c_double_quote] = ACTIONS(2344), + [sym___c_single_quote] = ACTIONS(2344), + [sym___r_double_quote] = ACTIONS(2344), + [sym___r_single_quote] = ACTIONS(2344), }, [1325] = { - [sym_identifier] = ACTIONS(3082), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_as] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_fn] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3080), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_mut] = ACTIONS(3082), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_go] = ACTIONS(3082), - [anon_sym_spawn] = ACTIONS(3082), - [anon_sym_json_DOTdecode] = ACTIONS(3080), - [anon_sym_LBRACK2] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3080), - [anon_sym_CARET] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(3080), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_GT_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_CARET] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_or] = ACTIONS(3082), - [sym_none] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_nil] = ACTIONS(3082), - [anon_sym_QMARK_DOT] = ACTIONS(3080), - [anon_sym_POUND_LBRACK] = ACTIONS(3080), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_DOLLARif] = ACTIONS(3082), - [anon_sym_is] = ACTIONS(3082), - [anon_sym_BANGis] = ACTIONS(3080), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_BANGin] = ACTIONS(3080), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_select] = ACTIONS(3082), - [anon_sym_lock] = ACTIONS(3082), - [anon_sym_rlock] = ACTIONS(3082), - [anon_sym_unsafe] = ACTIONS(3082), - [anon_sym_sql] = ACTIONS(3082), - [sym_int_literal] = ACTIONS(3082), - [sym_float_literal] = ACTIONS(3080), - [sym_rune_literal] = ACTIONS(3080), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_shared] = ACTIONS(3082), - [anon_sym_map_LBRACK] = ACTIONS(3080), - [anon_sym_chan] = ACTIONS(3082), - [anon_sym_thread] = ACTIONS(3082), - [anon_sym_atomic] = ACTIONS(3082), - [sym___double_quote] = ACTIONS(3080), - [sym___single_quote] = ACTIONS(3080), - [sym___c_double_quote] = ACTIONS(3080), - [sym___c_single_quote] = ACTIONS(3080), - [sym___r_double_quote] = ACTIONS(3080), - [sym___r_single_quote] = ACTIONS(3080), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_COLON] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(3796), + [anon_sym_BANGin] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), }, [1326] = { - [sym_identifier] = ACTIONS(2922), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_as] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_fn] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_LT_EQ] = ACTIONS(2920), - [anon_sym_GT_EQ] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_RBRACK] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_mut] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_go] = ACTIONS(2922), - [anon_sym_spawn] = ACTIONS(2922), - [anon_sym_json_DOTdecode] = ACTIONS(2920), - [anon_sym_LBRACK2] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2920), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_GT_GT_GT] = ACTIONS(2920), - [anon_sym_AMP_CARET] = ACTIONS(2920), - [anon_sym_AMP_AMP] = ACTIONS(2920), - [anon_sym_PIPE_PIPE] = ACTIONS(2920), - [anon_sym_or] = ACTIONS(2922), - [sym_none] = ACTIONS(2922), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_nil] = ACTIONS(2922), - [anon_sym_QMARK_DOT] = ACTIONS(2920), - [anon_sym_POUND_LBRACK] = ACTIONS(2920), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_DOLLARif] = ACTIONS(2922), - [anon_sym_is] = ACTIONS(2922), - [anon_sym_BANGis] = ACTIONS(2920), - [anon_sym_in] = ACTIONS(2922), - [anon_sym_BANGin] = ACTIONS(2920), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_select] = ACTIONS(2922), - [anon_sym_lock] = ACTIONS(2922), - [anon_sym_rlock] = ACTIONS(2922), - [anon_sym_unsafe] = ACTIONS(2922), - [anon_sym_sql] = ACTIONS(2922), - [sym_int_literal] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2920), - [sym_rune_literal] = ACTIONS(2920), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_shared] = ACTIONS(2922), - [anon_sym_map_LBRACK] = ACTIONS(2920), - [anon_sym_chan] = ACTIONS(2922), - [anon_sym_thread] = ACTIONS(2922), - [anon_sym_atomic] = ACTIONS(2922), - [sym___double_quote] = ACTIONS(2920), - [sym___single_quote] = ACTIONS(2920), - [sym___c_double_quote] = ACTIONS(2920), - [sym___c_single_quote] = ACTIONS(2920), - [sym___r_double_quote] = ACTIONS(2920), - [sym___r_single_quote] = ACTIONS(2920), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_COLON] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(3796), + [anon_sym_BANGin] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), }, [1327] = { - [sym_identifier] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3016), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3018), - [anon_sym_as] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_COMMA] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_fn] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3016), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_PERCENT] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_GT] = ACTIONS(3018), - [anon_sym_EQ_EQ] = ACTIONS(3016), - [anon_sym_BANG_EQ] = ACTIONS(3016), - [anon_sym_LT_EQ] = ACTIONS(3016), - [anon_sym_GT_EQ] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3016), - [anon_sym_RBRACK] = ACTIONS(3016), - [anon_sym_struct] = ACTIONS(3018), - [anon_sym_mut] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3016), - [anon_sym_DASH_DASH] = ACTIONS(3016), - [anon_sym_QMARK] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_go] = ACTIONS(3018), - [anon_sym_spawn] = ACTIONS(3018), - [anon_sym_json_DOTdecode] = ACTIONS(3016), - [anon_sym_LBRACK2] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3016), - [anon_sym_CARET] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3018), - [anon_sym_LT_DASH] = ACTIONS(3016), - [anon_sym_LT_LT] = ACTIONS(3016), - [anon_sym_GT_GT] = ACTIONS(3018), - [anon_sym_GT_GT_GT] = ACTIONS(3016), - [anon_sym_AMP_CARET] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [anon_sym_or] = ACTIONS(3018), - [sym_none] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_nil] = ACTIONS(3018), - [anon_sym_QMARK_DOT] = ACTIONS(3016), - [anon_sym_POUND_LBRACK] = ACTIONS(3016), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_DOLLARif] = ACTIONS(3018), - [anon_sym_is] = ACTIONS(3018), - [anon_sym_BANGis] = ACTIONS(3016), - [anon_sym_in] = ACTIONS(3018), - [anon_sym_BANGin] = ACTIONS(3016), - [anon_sym_match] = ACTIONS(3018), - [anon_sym_select] = ACTIONS(3018), - [anon_sym_lock] = ACTIONS(3018), - [anon_sym_rlock] = ACTIONS(3018), - [anon_sym_unsafe] = ACTIONS(3018), - [anon_sym_sql] = ACTIONS(3018), - [sym_int_literal] = ACTIONS(3018), - [sym_float_literal] = ACTIONS(3016), - [sym_rune_literal] = ACTIONS(3016), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_shared] = ACTIONS(3018), - [anon_sym_map_LBRACK] = ACTIONS(3016), - [anon_sym_chan] = ACTIONS(3018), - [anon_sym_thread] = ACTIONS(3018), - [anon_sym_atomic] = ACTIONS(3018), - [sym___double_quote] = ACTIONS(3016), - [sym___single_quote] = ACTIONS(3016), - [sym___c_double_quote] = ACTIONS(3016), - [sym___c_single_quote] = ACTIONS(3016), - [sym___r_double_quote] = ACTIONS(3016), - [sym___r_single_quote] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_DOT] = ACTIONS(3016), + [anon_sym_as] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_COMMA] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3016), + [anon_sym_fn] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_SLASH] = ACTIONS(3016), + [anon_sym_PERCENT] = ACTIONS(3014), + [anon_sym_LT] = ACTIONS(3016), + [anon_sym_GT] = ACTIONS(3016), + [anon_sym_EQ_EQ] = ACTIONS(3014), + [anon_sym_BANG_EQ] = ACTIONS(3014), + [anon_sym_LT_EQ] = ACTIONS(3014), + [anon_sym_GT_EQ] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_RBRACK] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_mut] = ACTIONS(3016), + [anon_sym_COLON] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_QMARK] = ACTIONS(3016), + [anon_sym_BANG] = ACTIONS(3016), + [anon_sym_go] = ACTIONS(3016), + [anon_sym_spawn] = ACTIONS(3016), + [anon_sym_json_DOTdecode] = ACTIONS(3014), + [anon_sym_LBRACK2] = ACTIONS(3016), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_CARET] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_LT_DASH] = ACTIONS(3014), + [anon_sym_LT_LT] = ACTIONS(3014), + [anon_sym_GT_GT] = ACTIONS(3016), + [anon_sym_GT_GT_GT] = ACTIONS(3014), + [anon_sym_AMP_CARET] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_PIPE_PIPE] = ACTIONS(3014), + [anon_sym_or] = ACTIONS(3016), + [sym_none] = ACTIONS(3016), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [sym_nil] = ACTIONS(3016), + [anon_sym_QMARK_DOT] = ACTIONS(3014), + [anon_sym_POUND_LBRACK] = ACTIONS(3014), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_DOLLARif] = ACTIONS(3016), + [anon_sym_is] = ACTIONS(3016), + [anon_sym_BANGis] = ACTIONS(3014), + [anon_sym_in] = ACTIONS(3016), + [anon_sym_BANGin] = ACTIONS(3014), + [anon_sym_match] = ACTIONS(3016), + [anon_sym_select] = ACTIONS(3016), + [anon_sym_lock] = ACTIONS(3016), + [anon_sym_rlock] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(3016), + [anon_sym_sql] = ACTIONS(3016), + [sym_int_literal] = ACTIONS(3016), + [sym_float_literal] = ACTIONS(3014), + [sym_rune_literal] = ACTIONS(3014), + [anon_sym_AT] = ACTIONS(3016), + [anon_sym_shared] = ACTIONS(3016), + [anon_sym_map_LBRACK] = ACTIONS(3014), + [anon_sym_chan] = ACTIONS(3016), + [anon_sym_thread] = ACTIONS(3016), + [anon_sym_atomic] = ACTIONS(3016), + [sym___double_quote] = ACTIONS(3014), + [sym___single_quote] = ACTIONS(3014), + [sym___c_double_quote] = ACTIONS(3014), + [sym___c_single_quote] = ACTIONS(3014), + [sym___r_double_quote] = ACTIONS(3014), + [sym___r_single_quote] = ACTIONS(3014), }, [1328] = { - [sym_identifier] = ACTIONS(3118), + [sym_identifier] = ACTIONS(2992), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3120), - [anon_sym_as] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_fn] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_struct] = ACTIONS(3118), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_go] = ACTIONS(3118), - [anon_sym_spawn] = ACTIONS(3118), - [anon_sym_json_DOTdecode] = ACTIONS(3116), - [anon_sym_LBRACK2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_CARET] = ACTIONS(3116), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_LT_DASH] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3116), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_CARET] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_or] = ACTIONS(3118), - [sym_none] = ACTIONS(3118), - [sym_true] = ACTIONS(3118), - [sym_false] = ACTIONS(3118), - [sym_nil] = ACTIONS(3118), - [anon_sym_QMARK_DOT] = ACTIONS(3116), - [anon_sym_POUND_LBRACK] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_DOLLARif] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3118), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_match] = ACTIONS(3118), - [anon_sym_select] = ACTIONS(3118), - [anon_sym_lock] = ACTIONS(3118), - [anon_sym_rlock] = ACTIONS(3118), - [anon_sym_unsafe] = ACTIONS(3118), - [anon_sym_sql] = ACTIONS(3118), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(3116), - [sym_rune_literal] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_shared] = ACTIONS(3118), - [anon_sym_map_LBRACK] = ACTIONS(3116), - [anon_sym_chan] = ACTIONS(3118), - [anon_sym_thread] = ACTIONS(3118), - [anon_sym_atomic] = ACTIONS(3118), - [sym___double_quote] = ACTIONS(3116), - [sym___single_quote] = ACTIONS(3116), - [sym___c_double_quote] = ACTIONS(3116), - [sym___c_single_quote] = ACTIONS(3116), - [sym___r_double_quote] = ACTIONS(3116), - [sym___r_single_quote] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(2992), + [anon_sym_as] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2990), + [anon_sym_PIPE] = ACTIONS(2992), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_SLASH] = ACTIONS(2992), + [anon_sym_PERCENT] = ACTIONS(2990), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_GT] = ACTIONS(2992), + [anon_sym_EQ_EQ] = ACTIONS(2990), + [anon_sym_BANG_EQ] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2990), + [anon_sym_GT_EQ] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2990), + [anon_sym_RBRACK] = ACTIONS(2990), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_COLON] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_QMARK] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2992), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2990), + [anon_sym_LBRACK2] = ACTIONS(2992), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_CARET] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_LT_DASH] = ACTIONS(2990), + [anon_sym_LT_LT] = ACTIONS(2990), + [anon_sym_GT_GT] = ACTIONS(2992), + [anon_sym_GT_GT_GT] = ACTIONS(2990), + [anon_sym_AMP_CARET] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2990), + [anon_sym_or] = ACTIONS(2992), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2990), + [anon_sym_POUND_LBRACK] = ACTIONS(2990), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2992), + [anon_sym_BANGis] = ACTIONS(2990), + [anon_sym_in] = ACTIONS(2992), + [anon_sym_BANGin] = ACTIONS(2990), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2990), + [sym_rune_literal] = ACTIONS(2990), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2990), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2990), + [sym___single_quote] = ACTIONS(2990), + [sym___c_double_quote] = ACTIONS(2990), + [sym___c_single_quote] = ACTIONS(2990), + [sym___r_double_quote] = ACTIONS(2990), + [sym___r_single_quote] = ACTIONS(2990), }, [1329] = { - [sym_identifier] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2988), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_as] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_fn] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_GT] = ACTIONS(2834), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_RBRACK] = ACTIONS(2832), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_mut] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_go] = ACTIONS(2834), - [anon_sym_spawn] = ACTIONS(2834), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2834), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2834), - [sym_none] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_nil] = ACTIONS(2834), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_DOLLARif] = ACTIONS(2834), - [anon_sym_is] = ACTIONS(2834), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2834), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_select] = ACTIONS(2834), - [anon_sym_lock] = ACTIONS(2834), - [anon_sym_rlock] = ACTIONS(2834), - [anon_sym_unsafe] = ACTIONS(2834), - [anon_sym_sql] = ACTIONS(2834), - [sym_int_literal] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2834), - [anon_sym_shared] = ACTIONS(2834), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2834), - [anon_sym_thread] = ACTIONS(2834), - [anon_sym_atomic] = ACTIONS(2834), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_as] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(2986), + [anon_sym_PIPE] = ACTIONS(2988), + [anon_sym_fn] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_SLASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2986), + [anon_sym_LT] = ACTIONS(2988), + [anon_sym_GT] = ACTIONS(2988), + [anon_sym_EQ_EQ] = ACTIONS(2986), + [anon_sym_BANG_EQ] = ACTIONS(2986), + [anon_sym_LT_EQ] = ACTIONS(2986), + [anon_sym_GT_EQ] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_RBRACK] = ACTIONS(2986), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_mut] = ACTIONS(2988), + [anon_sym_COLON] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_BANG] = ACTIONS(2988), + [anon_sym_go] = ACTIONS(2988), + [anon_sym_spawn] = ACTIONS(2988), + [anon_sym_json_DOTdecode] = ACTIONS(2986), + [anon_sym_LBRACK2] = ACTIONS(2988), + [anon_sym_TILDE] = ACTIONS(2986), + [anon_sym_CARET] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_LT_DASH] = ACTIONS(2986), + [anon_sym_LT_LT] = ACTIONS(2986), + [anon_sym_GT_GT] = ACTIONS(2988), + [anon_sym_GT_GT_GT] = ACTIONS(2986), + [anon_sym_AMP_CARET] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_PIPE_PIPE] = ACTIONS(2986), + [anon_sym_or] = ACTIONS(2988), + [sym_none] = ACTIONS(2988), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [sym_nil] = ACTIONS(2988), + [anon_sym_QMARK_DOT] = ACTIONS(2986), + [anon_sym_POUND_LBRACK] = ACTIONS(2986), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_DOLLARif] = ACTIONS(2988), + [anon_sym_is] = ACTIONS(2988), + [anon_sym_BANGis] = ACTIONS(2986), + [anon_sym_in] = ACTIONS(2988), + [anon_sym_BANGin] = ACTIONS(2986), + [anon_sym_match] = ACTIONS(2988), + [anon_sym_select] = ACTIONS(2988), + [anon_sym_lock] = ACTIONS(2988), + [anon_sym_rlock] = ACTIONS(2988), + [anon_sym_unsafe] = ACTIONS(2988), + [anon_sym_sql] = ACTIONS(2988), + [sym_int_literal] = ACTIONS(2988), + [sym_float_literal] = ACTIONS(2986), + [sym_rune_literal] = ACTIONS(2986), + [anon_sym_AT] = ACTIONS(2988), + [anon_sym_shared] = ACTIONS(2988), + [anon_sym_map_LBRACK] = ACTIONS(2986), + [anon_sym_chan] = ACTIONS(2988), + [anon_sym_thread] = ACTIONS(2988), + [anon_sym_atomic] = ACTIONS(2988), + [sym___double_quote] = ACTIONS(2986), + [sym___single_quote] = ACTIONS(2986), + [sym___c_double_quote] = ACTIONS(2986), + [sym___c_single_quote] = ACTIONS(2986), + [sym___r_double_quote] = ACTIONS(2986), + [sym___r_single_quote] = ACTIONS(2986), }, [1330] = { - [sym_identifier] = ACTIONS(2978), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2978), - [anon_sym_as] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_fn] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2978), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_GT] = ACTIONS(2978), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_RBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2978), - [anon_sym_mut] = ACTIONS(2978), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_go] = ACTIONS(2978), - [anon_sym_spawn] = ACTIONS(2978), - [anon_sym_json_DOTdecode] = ACTIONS(2976), - [anon_sym_LBRACK2] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2976), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2978), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2978), - [sym_none] = ACTIONS(2978), - [sym_true] = ACTIONS(2978), - [sym_false] = ACTIONS(2978), - [sym_nil] = ACTIONS(2978), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_DOLLARif] = ACTIONS(2978), - [anon_sym_is] = ACTIONS(2978), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2978), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2978), - [anon_sym_select] = ACTIONS(2978), - [anon_sym_lock] = ACTIONS(2978), - [anon_sym_rlock] = ACTIONS(2978), - [anon_sym_unsafe] = ACTIONS(2978), - [anon_sym_sql] = ACTIONS(2978), - [sym_int_literal] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2976), - [sym_rune_literal] = ACTIONS(2976), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_shared] = ACTIONS(2978), - [anon_sym_map_LBRACK] = ACTIONS(2976), - [anon_sym_chan] = ACTIONS(2978), - [anon_sym_thread] = ACTIONS(2978), - [anon_sym_atomic] = ACTIONS(2978), - [sym___double_quote] = ACTIONS(2976), - [sym___single_quote] = ACTIONS(2976), - [sym___c_double_quote] = ACTIONS(2976), - [sym___c_single_quote] = ACTIONS(2976), - [sym___r_double_quote] = ACTIONS(2976), - [sym___r_single_quote] = ACTIONS(2976), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2358), + [anon_sym_BANG_EQ] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2358), + [anon_sym_GT_EQ] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_COLON] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), }, [1331] = { - [sym_identifier] = ACTIONS(2974), + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2360), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2974), - [anon_sym_as] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2972), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_fn] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2972), - [anon_sym_SLASH] = ACTIONS(2974), - [anon_sym_PERCENT] = ACTIONS(2972), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_GT] = ACTIONS(2974), - [anon_sym_EQ_EQ] = ACTIONS(2972), - [anon_sym_BANG_EQ] = ACTIONS(2972), - [anon_sym_LT_EQ] = ACTIONS(2972), - [anon_sym_GT_EQ] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_RBRACK] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(2974), - [anon_sym_mut] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2972), - [anon_sym_DASH_DASH] = ACTIONS(2972), - [anon_sym_QMARK] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_go] = ACTIONS(2974), - [anon_sym_spawn] = ACTIONS(2974), - [anon_sym_json_DOTdecode] = ACTIONS(2972), - [anon_sym_LBRACK2] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2972), - [anon_sym_CARET] = ACTIONS(2972), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_LT_DASH] = ACTIONS(2972), - [anon_sym_LT_LT] = ACTIONS(2972), - [anon_sym_GT_GT] = ACTIONS(2974), - [anon_sym_GT_GT_GT] = ACTIONS(2972), - [anon_sym_AMP_CARET] = ACTIONS(2972), - [anon_sym_AMP_AMP] = ACTIONS(2972), - [anon_sym_PIPE_PIPE] = ACTIONS(2972), - [anon_sym_or] = ACTIONS(2974), - [sym_none] = ACTIONS(2974), - [sym_true] = ACTIONS(2974), - [sym_false] = ACTIONS(2974), - [sym_nil] = ACTIONS(2974), - [anon_sym_QMARK_DOT] = ACTIONS(2972), - [anon_sym_POUND_LBRACK] = ACTIONS(2972), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_DOLLARif] = ACTIONS(2974), - [anon_sym_is] = ACTIONS(2974), - [anon_sym_BANGis] = ACTIONS(2972), - [anon_sym_in] = ACTIONS(2974), - [anon_sym_BANGin] = ACTIONS(2972), - [anon_sym_match] = ACTIONS(2974), - [anon_sym_select] = ACTIONS(2974), - [anon_sym_lock] = ACTIONS(2974), - [anon_sym_rlock] = ACTIONS(2974), - [anon_sym_unsafe] = ACTIONS(2974), - [anon_sym_sql] = ACTIONS(2974), - [sym_int_literal] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2972), - [sym_rune_literal] = ACTIONS(2972), - [anon_sym_AT] = ACTIONS(2974), - [anon_sym_shared] = ACTIONS(2974), - [anon_sym_map_LBRACK] = ACTIONS(2972), - [anon_sym_chan] = ACTIONS(2974), - [anon_sym_thread] = ACTIONS(2974), - [anon_sym_atomic] = ACTIONS(2974), - [sym___double_quote] = ACTIONS(2972), - [sym___single_quote] = ACTIONS(2972), - [sym___c_double_quote] = ACTIONS(2972), - [sym___c_single_quote] = ACTIONS(2972), - [sym___r_double_quote] = ACTIONS(2972), - [sym___r_single_quote] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2358), + [anon_sym_BANG_EQ] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2358), + [anon_sym_GT_EQ] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_COLON] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2360), + [anon_sym_json_DOTdecode] = ACTIONS(2358), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_CARET] = ACTIONS(2358), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_or] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_nil] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_DOLLARif] = ACTIONS(2360), + [anon_sym_is] = ACTIONS(2360), + [anon_sym_BANGis] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_BANGin] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_select] = ACTIONS(2360), + [anon_sym_lock] = ACTIONS(2360), + [anon_sym_rlock] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_sql] = ACTIONS(2360), + [sym_int_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2358), + [sym_rune_literal] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_shared] = ACTIONS(2360), + [anon_sym_map_LBRACK] = ACTIONS(2358), + [anon_sym_chan] = ACTIONS(2360), + [anon_sym_thread] = ACTIONS(2360), + [anon_sym_atomic] = ACTIONS(2360), + [sym___double_quote] = ACTIONS(2358), + [sym___single_quote] = ACTIONS(2358), + [sym___c_double_quote] = ACTIONS(2358), + [sym___c_single_quote] = ACTIONS(2358), + [sym___r_double_quote] = ACTIONS(2358), + [sym___r_single_quote] = ACTIONS(2358), }, [1332] = { - [sym_identifier] = ACTIONS(2846), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_GT] = ACTIONS(2846), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_RBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2846), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_is] = ACTIONS(2846), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2846), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), - }, - [1333] = { - [sym_identifier] = ACTIONS(2982), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2984), - [anon_sym_as] = ACTIONS(2984), - [anon_sym_LBRACE] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(2980), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2984), - [anon_sym_fn] = ACTIONS(2982), - [anon_sym_PLUS] = ACTIONS(2984), - [anon_sym_DASH] = ACTIONS(2984), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2984), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2984), - [anon_sym_GT] = ACTIONS(2984), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2980), - [anon_sym_struct] = ACTIONS(2982), - [anon_sym_mut] = ACTIONS(2982), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_BANG] = ACTIONS(2984), - [anon_sym_go] = ACTIONS(2982), - [anon_sym_spawn] = ACTIONS(2982), - [anon_sym_json_DOTdecode] = ACTIONS(2980), - [anon_sym_LBRACK2] = ACTIONS(2984), - [anon_sym_TILDE] = ACTIONS(2980), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2984), - [anon_sym_LT_DASH] = ACTIONS(2980), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2984), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_AMP_CARET] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2984), - [sym_none] = ACTIONS(2982), - [sym_true] = ACTIONS(2982), - [sym_false] = ACTIONS(2982), - [sym_nil] = ACTIONS(2982), - [anon_sym_QMARK_DOT] = ACTIONS(2987), - [anon_sym_POUND_LBRACK] = ACTIONS(2987), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_DOLLARif] = ACTIONS(2982), - [anon_sym_is] = ACTIONS(2984), - [anon_sym_BANGis] = ACTIONS(2987), - [anon_sym_in] = ACTIONS(2984), - [anon_sym_BANGin] = ACTIONS(2987), - [anon_sym_match] = ACTIONS(2982), - [anon_sym_select] = ACTIONS(2982), - [anon_sym_lock] = ACTIONS(2982), - [anon_sym_rlock] = ACTIONS(2982), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_sql] = ACTIONS(2982), - [sym_int_literal] = ACTIONS(2982), - [sym_float_literal] = ACTIONS(2980), - [sym_rune_literal] = ACTIONS(2980), - [anon_sym_AT] = ACTIONS(2982), - [anon_sym_shared] = ACTIONS(2982), - [anon_sym_map_LBRACK] = ACTIONS(2980), - [anon_sym_chan] = ACTIONS(2982), - [anon_sym_thread] = ACTIONS(2982), - [anon_sym_atomic] = ACTIONS(2982), - [sym___double_quote] = ACTIONS(2980), - [sym___single_quote] = ACTIONS(2980), - [sym___c_double_quote] = ACTIONS(2980), - [sym___c_single_quote] = ACTIONS(2980), - [sym___r_double_quote] = ACTIONS(2980), - [sym___r_single_quote] = ACTIONS(2980), - }, - [1334] = { - [sym_identifier] = ACTIONS(2850), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2850), - [anon_sym_as] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_fn] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_GT] = ACTIONS(2850), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_RBRACK] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2850), - [anon_sym_mut] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_go] = ACTIONS(2850), - [anon_sym_spawn] = ACTIONS(2850), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2850), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2850), - [sym_none] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_nil] = ACTIONS(2850), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_DOLLARif] = ACTIONS(2850), - [anon_sym_is] = ACTIONS(2850), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2850), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2850), - [anon_sym_select] = ACTIONS(2850), - [anon_sym_lock] = ACTIONS(2850), - [anon_sym_rlock] = ACTIONS(2850), - [anon_sym_unsafe] = ACTIONS(2850), - [anon_sym_sql] = ACTIONS(2850), - [sym_int_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2850), - [anon_sym_shared] = ACTIONS(2850), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2850), - [anon_sym_thread] = ACTIONS(2850), - [anon_sym_atomic] = ACTIONS(2850), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), - }, - [1335] = { - [sym_identifier] = ACTIONS(3030), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_as] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3028), - [anon_sym_COMMA] = ACTIONS(3028), - [anon_sym_LPAREN] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_fn] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_SLASH] = ACTIONS(3030), - [anon_sym_PERCENT] = ACTIONS(3028), - [anon_sym_LT] = ACTIONS(3030), - [anon_sym_GT] = ACTIONS(3030), - [anon_sym_EQ_EQ] = ACTIONS(3028), - [anon_sym_BANG_EQ] = ACTIONS(3028), - [anon_sym_LT_EQ] = ACTIONS(3028), - [anon_sym_GT_EQ] = ACTIONS(3028), - [anon_sym_LBRACK] = ACTIONS(3028), - [anon_sym_RBRACK] = ACTIONS(3028), - [anon_sym_struct] = ACTIONS(3030), - [anon_sym_mut] = ACTIONS(3030), - [anon_sym_PLUS_PLUS] = ACTIONS(3028), - [anon_sym_DASH_DASH] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_go] = ACTIONS(3030), - [anon_sym_spawn] = ACTIONS(3030), - [anon_sym_json_DOTdecode] = ACTIONS(3028), - [anon_sym_LBRACK2] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_CARET] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3028), - [anon_sym_LT_LT] = ACTIONS(3028), - [anon_sym_GT_GT] = ACTIONS(3030), - [anon_sym_GT_GT_GT] = ACTIONS(3028), - [anon_sym_AMP_CARET] = ACTIONS(3028), - [anon_sym_AMP_AMP] = ACTIONS(3028), - [anon_sym_PIPE_PIPE] = ACTIONS(3028), - [anon_sym_or] = ACTIONS(3030), - [sym_none] = ACTIONS(3030), - [sym_true] = ACTIONS(3030), - [sym_false] = ACTIONS(3030), - [sym_nil] = ACTIONS(3030), - [anon_sym_QMARK_DOT] = ACTIONS(3028), - [anon_sym_POUND_LBRACK] = ACTIONS(3028), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_DOLLARif] = ACTIONS(3030), - [anon_sym_is] = ACTIONS(3030), - [anon_sym_BANGis] = ACTIONS(3028), - [anon_sym_in] = ACTIONS(3030), - [anon_sym_BANGin] = ACTIONS(3028), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_select] = ACTIONS(3030), - [anon_sym_lock] = ACTIONS(3030), - [anon_sym_rlock] = ACTIONS(3030), - [anon_sym_unsafe] = ACTIONS(3030), - [anon_sym_sql] = ACTIONS(3030), - [sym_int_literal] = ACTIONS(3030), - [sym_float_literal] = ACTIONS(3028), - [sym_rune_literal] = ACTIONS(3028), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_shared] = ACTIONS(3030), - [anon_sym_map_LBRACK] = ACTIONS(3028), - [anon_sym_chan] = ACTIONS(3030), - [anon_sym_thread] = ACTIONS(3030), - [anon_sym_atomic] = ACTIONS(3030), - [sym___double_quote] = ACTIONS(3028), - [sym___single_quote] = ACTIONS(3028), - [sym___c_double_quote] = ACTIONS(3028), - [sym___c_single_quote] = ACTIONS(3028), - [sym___r_double_quote] = ACTIONS(3028), - [sym___r_single_quote] = ACTIONS(3028), - }, - [1336] = { - [sym_identifier] = ACTIONS(3038), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_as] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_COMMA] = ACTIONS(3036), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_fn] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3036), - [anon_sym_SLASH] = ACTIONS(3038), - [anon_sym_PERCENT] = ACTIONS(3036), - [anon_sym_LT] = ACTIONS(3038), - [anon_sym_GT] = ACTIONS(3038), - [anon_sym_EQ_EQ] = ACTIONS(3036), - [anon_sym_BANG_EQ] = ACTIONS(3036), - [anon_sym_LT_EQ] = ACTIONS(3036), - [anon_sym_GT_EQ] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3036), - [anon_sym_RBRACK] = ACTIONS(3036), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_mut] = ACTIONS(3038), - [anon_sym_PLUS_PLUS] = ACTIONS(3036), - [anon_sym_DASH_DASH] = ACTIONS(3036), - [anon_sym_QMARK] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_go] = ACTIONS(3038), - [anon_sym_spawn] = ACTIONS(3038), - [anon_sym_json_DOTdecode] = ACTIONS(3036), - [anon_sym_LBRACK2] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3036), - [anon_sym_CARET] = ACTIONS(3036), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LT_DASH] = ACTIONS(3036), - [anon_sym_LT_LT] = ACTIONS(3036), - [anon_sym_GT_GT] = ACTIONS(3038), - [anon_sym_GT_GT_GT] = ACTIONS(3036), - [anon_sym_AMP_CARET] = ACTIONS(3036), - [anon_sym_AMP_AMP] = ACTIONS(3036), - [anon_sym_PIPE_PIPE] = ACTIONS(3036), - [anon_sym_or] = ACTIONS(3038), - [sym_none] = ACTIONS(3038), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_nil] = ACTIONS(3038), - [anon_sym_QMARK_DOT] = ACTIONS(3036), - [anon_sym_POUND_LBRACK] = ACTIONS(3036), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_DOLLARif] = ACTIONS(3038), - [anon_sym_is] = ACTIONS(3038), - [anon_sym_BANGis] = ACTIONS(3036), - [anon_sym_in] = ACTIONS(3038), - [anon_sym_BANGin] = ACTIONS(3036), - [anon_sym_match] = ACTIONS(3038), - [anon_sym_select] = ACTIONS(3038), - [anon_sym_lock] = ACTIONS(3038), - [anon_sym_rlock] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(3038), - [anon_sym_sql] = ACTIONS(3038), - [sym_int_literal] = ACTIONS(3038), - [sym_float_literal] = ACTIONS(3036), - [sym_rune_literal] = ACTIONS(3036), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_shared] = ACTIONS(3038), - [anon_sym_map_LBRACK] = ACTIONS(3036), - [anon_sym_chan] = ACTIONS(3038), - [anon_sym_thread] = ACTIONS(3038), - [anon_sym_atomic] = ACTIONS(3038), - [sym___double_quote] = ACTIONS(3036), - [sym___single_quote] = ACTIONS(3036), - [sym___c_double_quote] = ACTIONS(3036), - [sym___c_single_quote] = ACTIONS(3036), - [sym___r_double_quote] = ACTIONS(3036), - [sym___r_single_quote] = ACTIONS(3036), - }, - [1337] = { + [sym_type_parameters] = STATE(1345), [sym_identifier] = ACTIONS(2890), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(2890), [anon_sym_as] = ACTIONS(2890), [anon_sym_LBRACE] = ACTIONS(2888), [anon_sym_COMMA] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), [anon_sym_LPAREN] = ACTIONS(2888), [anon_sym_PIPE] = ACTIONS(2890), [anon_sym_fn] = ACTIONS(2890), @@ -170318,6 +170901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(2888), [anon_sym_struct] = ACTIONS(2890), [anon_sym_mut] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), [anon_sym_PLUS_PLUS] = ACTIONS(2888), [anon_sym_DASH_DASH] = ACTIONS(2888), [anon_sym_QMARK] = ACTIONS(2890), @@ -170371,8569 +170955,7680 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2888), [sym___r_single_quote] = ACTIONS(2888), }, + [1333] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2234), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_COLON] = ACTIONS(2232), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2232), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(2232), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3796), + [anon_sym_BANGin] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2232), + [sym_rune_literal] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2232), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2232), + [sym___single_quote] = ACTIONS(2232), + [sym___c_double_quote] = ACTIONS(2232), + [sym___c_single_quote] = ACTIONS(2232), + [sym___r_double_quote] = ACTIONS(2232), + [sym___r_single_quote] = ACTIONS(2232), + }, + [1334] = { + [sym_identifier] = ACTIONS(3253), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3251), + [anon_sym_BANG_EQ] = ACTIONS(3251), + [anon_sym_LT_EQ] = ACTIONS(3251), + [anon_sym_GT_EQ] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_RBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_COLON] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3251), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3251), + [anon_sym_LT_LT] = ACTIONS(3251), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3251), + [anon_sym_AMP_CARET] = ACTIONS(3251), + [anon_sym_AMP_AMP] = ACTIONS(3251), + [anon_sym_PIPE_PIPE] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3251), + [anon_sym_POUND_LBRACK] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3251), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3251), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3251), + [sym_rune_literal] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3251), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3251), + [sym___single_quote] = ACTIONS(3251), + [sym___c_double_quote] = ACTIONS(3251), + [sym___c_single_quote] = ACTIONS(3251), + [sym___r_double_quote] = ACTIONS(3251), + [sym___r_single_quote] = ACTIONS(3251), + }, + [1335] = { + [sym_identifier] = ACTIONS(3064), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3064), + [anon_sym_as] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_COMMA] = ACTIONS(3062), + [anon_sym_RBRACE] = ACTIONS(3062), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_PIPE] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_PLUS] = ACTIONS(3064), + [anon_sym_DASH] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(3062), + [anon_sym_SLASH] = ACTIONS(3064), + [anon_sym_PERCENT] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_GT] = ACTIONS(3064), + [anon_sym_EQ_EQ] = ACTIONS(3062), + [anon_sym_BANG_EQ] = ACTIONS(3062), + [anon_sym_LT_EQ] = ACTIONS(3062), + [anon_sym_GT_EQ] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_RBRACK] = ACTIONS(3062), + [anon_sym_struct] = ACTIONS(3064), + [anon_sym_mut] = ACTIONS(3064), + [anon_sym_COLON] = ACTIONS(3062), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [anon_sym_QMARK] = ACTIONS(3064), + [anon_sym_BANG] = ACTIONS(3064), + [anon_sym_go] = ACTIONS(3064), + [anon_sym_spawn] = ACTIONS(3064), + [anon_sym_json_DOTdecode] = ACTIONS(3062), + [anon_sym_LBRACK2] = ACTIONS(3064), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_LT_DASH] = ACTIONS(3062), + [anon_sym_LT_LT] = ACTIONS(3062), + [anon_sym_GT_GT] = ACTIONS(3064), + [anon_sym_GT_GT_GT] = ACTIONS(3062), + [anon_sym_AMP_CARET] = ACTIONS(3062), + [anon_sym_AMP_AMP] = ACTIONS(3062), + [anon_sym_PIPE_PIPE] = ACTIONS(3062), + [anon_sym_or] = ACTIONS(3064), + [sym_none] = ACTIONS(3064), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [sym_nil] = ACTIONS(3064), + [anon_sym_QMARK_DOT] = ACTIONS(3062), + [anon_sym_POUND_LBRACK] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3064), + [anon_sym_DOLLARif] = ACTIONS(3064), + [anon_sym_is] = ACTIONS(3064), + [anon_sym_BANGis] = ACTIONS(3062), + [anon_sym_in] = ACTIONS(3064), + [anon_sym_BANGin] = ACTIONS(3062), + [anon_sym_match] = ACTIONS(3064), + [anon_sym_select] = ACTIONS(3064), + [anon_sym_lock] = ACTIONS(3064), + [anon_sym_rlock] = ACTIONS(3064), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_sql] = ACTIONS(3064), + [sym_int_literal] = ACTIONS(3064), + [sym_float_literal] = ACTIONS(3062), + [sym_rune_literal] = ACTIONS(3062), + [anon_sym_AT] = ACTIONS(3064), + [anon_sym_shared] = ACTIONS(3064), + [anon_sym_map_LBRACK] = ACTIONS(3062), + [anon_sym_chan] = ACTIONS(3064), + [anon_sym_thread] = ACTIONS(3064), + [anon_sym_atomic] = ACTIONS(3064), + [sym___double_quote] = ACTIONS(3062), + [sym___single_quote] = ACTIONS(3062), + [sym___c_double_quote] = ACTIONS(3062), + [sym___c_single_quote] = ACTIONS(3062), + [sym___r_double_quote] = ACTIONS(3062), + [sym___r_single_quote] = ACTIONS(3062), + }, + [1336] = { + [sym_identifier] = ACTIONS(3345), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3345), + [anon_sym_as] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_COMMA] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_PIPE] = ACTIONS(3345), + [anon_sym_fn] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_PERCENT] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_GT] = ACTIONS(3345), + [anon_sym_EQ_EQ] = ACTIONS(3343), + [anon_sym_BANG_EQ] = ACTIONS(3343), + [anon_sym_LT_EQ] = ACTIONS(3343), + [anon_sym_GT_EQ] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_RBRACK] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3345), + [anon_sym_mut] = ACTIONS(3345), + [anon_sym_COLON] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [anon_sym_QMARK] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_go] = ACTIONS(3345), + [anon_sym_spawn] = ACTIONS(3345), + [anon_sym_json_DOTdecode] = ACTIONS(3343), + [anon_sym_LBRACK2] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_CARET] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_LT_DASH] = ACTIONS(3343), + [anon_sym_LT_LT] = ACTIONS(3343), + [anon_sym_GT_GT] = ACTIONS(3345), + [anon_sym_GT_GT_GT] = ACTIONS(3343), + [anon_sym_AMP_CARET] = ACTIONS(3343), + [anon_sym_AMP_AMP] = ACTIONS(3343), + [anon_sym_PIPE_PIPE] = ACTIONS(3343), + [anon_sym_or] = ACTIONS(3345), + [sym_none] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_nil] = ACTIONS(3345), + [anon_sym_QMARK_DOT] = ACTIONS(3343), + [anon_sym_POUND_LBRACK] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_DOLLARif] = ACTIONS(3345), + [anon_sym_is] = ACTIONS(3345), + [anon_sym_BANGis] = ACTIONS(3343), + [anon_sym_in] = ACTIONS(3345), + [anon_sym_BANGin] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3345), + [anon_sym_select] = ACTIONS(3345), + [anon_sym_lock] = ACTIONS(3345), + [anon_sym_rlock] = ACTIONS(3345), + [anon_sym_unsafe] = ACTIONS(3345), + [anon_sym_sql] = ACTIONS(3345), + [sym_int_literal] = ACTIONS(3345), + [sym_float_literal] = ACTIONS(3343), + [sym_rune_literal] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_shared] = ACTIONS(3345), + [anon_sym_map_LBRACK] = ACTIONS(3343), + [anon_sym_chan] = ACTIONS(3345), + [anon_sym_thread] = ACTIONS(3345), + [anon_sym_atomic] = ACTIONS(3345), + [sym___double_quote] = ACTIONS(3343), + [sym___single_quote] = ACTIONS(3343), + [sym___c_double_quote] = ACTIONS(3343), + [sym___c_single_quote] = ACTIONS(3343), + [sym___r_double_quote] = ACTIONS(3343), + [sym___r_single_quote] = ACTIONS(3343), + }, + [1337] = { + [sym_identifier] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3329), + [anon_sym_as] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_COMMA] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_fn] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3327), + [anon_sym_BANG_EQ] = ACTIONS(3327), + [anon_sym_LT_EQ] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_RBRACK] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_mut] = ACTIONS(3329), + [anon_sym_COLON] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), + [anon_sym_QMARK] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_go] = ACTIONS(3329), + [anon_sym_spawn] = ACTIONS(3329), + [anon_sym_json_DOTdecode] = ACTIONS(3327), + [anon_sym_LBRACK2] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_CARET] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_LT_DASH] = ACTIONS(3327), + [anon_sym_LT_LT] = ACTIONS(3327), + [anon_sym_GT_GT] = ACTIONS(3329), + [anon_sym_GT_GT_GT] = ACTIONS(3327), + [anon_sym_AMP_CARET] = ACTIONS(3327), + [anon_sym_AMP_AMP] = ACTIONS(3327), + [anon_sym_PIPE_PIPE] = ACTIONS(3327), + [anon_sym_or] = ACTIONS(3329), + [sym_none] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_nil] = ACTIONS(3329), + [anon_sym_QMARK_DOT] = ACTIONS(3327), + [anon_sym_POUND_LBRACK] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_DOLLARif] = ACTIONS(3329), + [anon_sym_is] = ACTIONS(3329), + [anon_sym_BANGis] = ACTIONS(3327), + [anon_sym_in] = ACTIONS(3329), + [anon_sym_BANGin] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3329), + [anon_sym_select] = ACTIONS(3329), + [anon_sym_lock] = ACTIONS(3329), + [anon_sym_rlock] = ACTIONS(3329), + [anon_sym_unsafe] = ACTIONS(3329), + [anon_sym_sql] = ACTIONS(3329), + [sym_int_literal] = ACTIONS(3329), + [sym_float_literal] = ACTIONS(3327), + [sym_rune_literal] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_shared] = ACTIONS(3329), + [anon_sym_map_LBRACK] = ACTIONS(3327), + [anon_sym_chan] = ACTIONS(3329), + [anon_sym_thread] = ACTIONS(3329), + [anon_sym_atomic] = ACTIONS(3329), + [sym___double_quote] = ACTIONS(3327), + [sym___single_quote] = ACTIONS(3327), + [sym___c_double_quote] = ACTIONS(3327), + [sym___c_single_quote] = ACTIONS(3327), + [sym___r_double_quote] = ACTIONS(3327), + [sym___r_single_quote] = ACTIONS(3327), + }, [1338] = { - [sym_identifier] = ACTIONS(2898), + [sym_identifier] = ACTIONS(3072), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2898), - [anon_sym_as] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_fn] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_GT] = ACTIONS(2898), - [anon_sym_EQ_EQ] = ACTIONS(2896), - [anon_sym_BANG_EQ] = ACTIONS(2896), - [anon_sym_LT_EQ] = ACTIONS(2896), - [anon_sym_GT_EQ] = ACTIONS(2896), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_RBRACK] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2898), - [anon_sym_mut] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_QMARK] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_go] = ACTIONS(2898), - [anon_sym_spawn] = ACTIONS(2898), - [anon_sym_json_DOTdecode] = ACTIONS(2896), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_LT_DASH] = ACTIONS(2896), - [anon_sym_LT_LT] = ACTIONS(2896), - [anon_sym_GT_GT] = ACTIONS(2898), - [anon_sym_GT_GT_GT] = ACTIONS(2896), - [anon_sym_AMP_CARET] = ACTIONS(2896), - [anon_sym_AMP_AMP] = ACTIONS(2896), - [anon_sym_PIPE_PIPE] = ACTIONS(2896), - [anon_sym_or] = ACTIONS(2898), - [sym_none] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_nil] = ACTIONS(2898), - [anon_sym_QMARK_DOT] = ACTIONS(2896), - [anon_sym_POUND_LBRACK] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_DOLLARif] = ACTIONS(2898), - [anon_sym_is] = ACTIONS(2898), - [anon_sym_BANGis] = ACTIONS(2896), - [anon_sym_in] = ACTIONS(2898), - [anon_sym_BANGin] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2898), - [anon_sym_select] = ACTIONS(2898), - [anon_sym_lock] = ACTIONS(2898), - [anon_sym_rlock] = ACTIONS(2898), - [anon_sym_unsafe] = ACTIONS(2898), - [anon_sym_sql] = ACTIONS(2898), - [sym_int_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2896), - [sym_rune_literal] = ACTIONS(2896), - [anon_sym_AT] = ACTIONS(2898), - [anon_sym_shared] = ACTIONS(2898), - [anon_sym_map_LBRACK] = ACTIONS(2896), - [anon_sym_chan] = ACTIONS(2898), - [anon_sym_thread] = ACTIONS(2898), - [anon_sym_atomic] = ACTIONS(2898), - [sym___double_quote] = ACTIONS(2896), - [sym___single_quote] = ACTIONS(2896), - [sym___c_double_quote] = ACTIONS(2896), - [sym___c_single_quote] = ACTIONS(2896), - [sym___r_double_quote] = ACTIONS(2896), - [sym___r_single_quote] = ACTIONS(2896), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3070), + [anon_sym_BANG_EQ] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3070), + [anon_sym_GT_EQ] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_RBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_COLON] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3070), + [anon_sym_LT_LT] = ACTIONS(3070), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3070), + [anon_sym_AMP_CARET] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_PIPE_PIPE] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3070), + [anon_sym_POUND_LBRACK] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3070), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3070), + [sym_rune_literal] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3070), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3070), + [sym___single_quote] = ACTIONS(3070), + [sym___c_double_quote] = ACTIONS(3070), + [sym___c_single_quote] = ACTIONS(3070), + [sym___r_double_quote] = ACTIONS(3070), + [sym___r_single_quote] = ACTIONS(3070), }, [1339] = { - [sym_identifier] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2750), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2902), - [anon_sym_as] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2902), - [anon_sym_fn] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_PERCENT] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(2902), - [anon_sym_EQ_EQ] = ACTIONS(2900), - [anon_sym_BANG_EQ] = ACTIONS(2900), - [anon_sym_LT_EQ] = ACTIONS(2900), - [anon_sym_GT_EQ] = ACTIONS(2900), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_RBRACK] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2902), - [anon_sym_mut] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_go] = ACTIONS(2902), - [anon_sym_spawn] = ACTIONS(2902), - [anon_sym_json_DOTdecode] = ACTIONS(2900), - [anon_sym_LBRACK2] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_CARET] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_LT_DASH] = ACTIONS(2900), - [anon_sym_LT_LT] = ACTIONS(2900), - [anon_sym_GT_GT] = ACTIONS(2902), - [anon_sym_GT_GT_GT] = ACTIONS(2900), - [anon_sym_AMP_CARET] = ACTIONS(2900), - [anon_sym_AMP_AMP] = ACTIONS(2900), - [anon_sym_PIPE_PIPE] = ACTIONS(2900), - [anon_sym_or] = ACTIONS(2902), - [sym_none] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_nil] = ACTIONS(2902), - [anon_sym_QMARK_DOT] = ACTIONS(2900), - [anon_sym_POUND_LBRACK] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_DOLLARif] = ACTIONS(2902), - [anon_sym_is] = ACTIONS(2902), - [anon_sym_BANGis] = ACTIONS(2900), - [anon_sym_in] = ACTIONS(2902), - [anon_sym_BANGin] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2902), - [anon_sym_select] = ACTIONS(2902), - [anon_sym_lock] = ACTIONS(2902), - [anon_sym_rlock] = ACTIONS(2902), - [anon_sym_unsafe] = ACTIONS(2902), - [anon_sym_sql] = ACTIONS(2902), - [sym_int_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2900), - [sym_rune_literal] = ACTIONS(2900), - [anon_sym_AT] = ACTIONS(2902), - [anon_sym_shared] = ACTIONS(2902), - [anon_sym_map_LBRACK] = ACTIONS(2900), - [anon_sym_chan] = ACTIONS(2902), - [anon_sym_thread] = ACTIONS(2902), - [anon_sym_atomic] = ACTIONS(2902), - [sym___double_quote] = ACTIONS(2900), - [sym___single_quote] = ACTIONS(2900), - [sym___c_double_quote] = ACTIONS(2900), - [sym___c_single_quote] = ACTIONS(2900), - [sym___r_double_quote] = ACTIONS(2900), - [sym___r_single_quote] = ACTIONS(2900), + [anon_sym_DOT] = ACTIONS(2750), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_COMMA] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_PLUS] = ACTIONS(2750), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2752), + [anon_sym_SLASH] = ACTIONS(2750), + [anon_sym_PERCENT] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_GT] = ACTIONS(2750), + [anon_sym_EQ_EQ] = ACTIONS(2752), + [anon_sym_BANG_EQ] = ACTIONS(2752), + [anon_sym_LT_EQ] = ACTIONS(2752), + [anon_sym_GT_EQ] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_RBRACK] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_mut] = ACTIONS(2750), + [anon_sym_COLON] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2752), + [anon_sym_DASH_DASH] = ACTIONS(2752), + [anon_sym_QMARK] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_go] = ACTIONS(2750), + [anon_sym_spawn] = ACTIONS(2750), + [anon_sym_json_DOTdecode] = ACTIONS(2752), + [anon_sym_LBRACK2] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2752), + [anon_sym_CARET] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_LT_DASH] = ACTIONS(2752), + [anon_sym_LT_LT] = ACTIONS(2752), + [anon_sym_GT_GT] = ACTIONS(2750), + [anon_sym_GT_GT_GT] = ACTIONS(2752), + [anon_sym_AMP_CARET] = ACTIONS(2752), + [anon_sym_AMP_AMP] = ACTIONS(2752), + [anon_sym_PIPE_PIPE] = ACTIONS(2752), + [anon_sym_or] = ACTIONS(2750), + [sym_none] = ACTIONS(2750), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_nil] = ACTIONS(2750), + [anon_sym_QMARK_DOT] = ACTIONS(2752), + [anon_sym_POUND_LBRACK] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_DOLLARif] = ACTIONS(2750), + [anon_sym_is] = ACTIONS(2750), + [anon_sym_BANGis] = ACTIONS(2752), + [anon_sym_in] = ACTIONS(2750), + [anon_sym_BANGin] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_select] = ACTIONS(2750), + [anon_sym_lock] = ACTIONS(2750), + [anon_sym_rlock] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_sql] = ACTIONS(2750), + [sym_int_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2752), + [sym_rune_literal] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2750), + [anon_sym_shared] = ACTIONS(2750), + [anon_sym_map_LBRACK] = ACTIONS(2752), + [anon_sym_chan] = ACTIONS(2750), + [anon_sym_thread] = ACTIONS(2750), + [anon_sym_atomic] = ACTIONS(2750), + [sym___double_quote] = ACTIONS(2752), + [sym___single_quote] = ACTIONS(2752), + [sym___c_double_quote] = ACTIONS(2752), + [sym___c_single_quote] = ACTIONS(2752), + [sym___r_double_quote] = ACTIONS(2752), + [sym___r_single_quote] = ACTIONS(2752), }, [1340] = { - [sym_identifier] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2972), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2930), - [anon_sym_as] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_COMMA] = ACTIONS(2928), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_fn] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2928), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_GT] = ACTIONS(2930), - [anon_sym_EQ_EQ] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [anon_sym_LT_EQ] = ACTIONS(2928), - [anon_sym_GT_EQ] = ACTIONS(2928), - [anon_sym_LBRACK] = ACTIONS(2928), - [anon_sym_RBRACK] = ACTIONS(2928), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_mut] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2928), - [anon_sym_DASH_DASH] = ACTIONS(2928), - [anon_sym_QMARK] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_go] = ACTIONS(2930), - [anon_sym_spawn] = ACTIONS(2930), - [anon_sym_json_DOTdecode] = ACTIONS(2928), - [anon_sym_LBRACK2] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2928), - [anon_sym_CARET] = ACTIONS(2928), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_LT_DASH] = ACTIONS(2928), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_GT_GT_GT] = ACTIONS(2928), - [anon_sym_AMP_CARET] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_or] = ACTIONS(2930), - [sym_none] = ACTIONS(2930), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_nil] = ACTIONS(2930), - [anon_sym_QMARK_DOT] = ACTIONS(2928), - [anon_sym_POUND_LBRACK] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_DOLLARif] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2930), - [anon_sym_BANGis] = ACTIONS(2928), - [anon_sym_in] = ACTIONS(2930), - [anon_sym_BANGin] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2930), - [anon_sym_select] = ACTIONS(2930), - [anon_sym_lock] = ACTIONS(2930), - [anon_sym_rlock] = ACTIONS(2930), - [anon_sym_unsafe] = ACTIONS(2930), - [anon_sym_sql] = ACTIONS(2930), - [sym_int_literal] = ACTIONS(2930), - [sym_float_literal] = ACTIONS(2928), - [sym_rune_literal] = ACTIONS(2928), - [anon_sym_AT] = ACTIONS(2930), - [anon_sym_shared] = ACTIONS(2930), - [anon_sym_map_LBRACK] = ACTIONS(2928), - [anon_sym_chan] = ACTIONS(2930), - [anon_sym_thread] = ACTIONS(2930), - [anon_sym_atomic] = ACTIONS(2930), - [sym___double_quote] = ACTIONS(2928), - [sym___single_quote] = ACTIONS(2928), - [sym___c_double_quote] = ACTIONS(2928), - [sym___c_single_quote] = ACTIONS(2928), - [sym___r_double_quote] = ACTIONS(2928), - [sym___r_single_quote] = ACTIONS(2928), + [anon_sym_DOT] = ACTIONS(2972), + [anon_sym_as] = ACTIONS(2972), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_fn] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2970), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2970), + [anon_sym_LT_EQ] = ACTIONS(2970), + [anon_sym_GT_EQ] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_RBRACK] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2972), + [anon_sym_mut] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2972), + [anon_sym_BANG] = ACTIONS(2972), + [anon_sym_go] = ACTIONS(2972), + [anon_sym_spawn] = ACTIONS(2972), + [anon_sym_json_DOTdecode] = ACTIONS(2970), + [anon_sym_LBRACK2] = ACTIONS(2972), + [anon_sym_TILDE] = ACTIONS(2970), + [anon_sym_CARET] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_LT_LT] = ACTIONS(2970), + [anon_sym_GT_GT] = ACTIONS(2972), + [anon_sym_GT_GT_GT] = ACTIONS(2970), + [anon_sym_AMP_CARET] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_or] = ACTIONS(2972), + [sym_none] = ACTIONS(2972), + [sym_true] = ACTIONS(2972), + [sym_false] = ACTIONS(2972), + [sym_nil] = ACTIONS(2972), + [anon_sym_QMARK_DOT] = ACTIONS(2970), + [anon_sym_POUND_LBRACK] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2972), + [anon_sym_DOLLARif] = ACTIONS(2972), + [anon_sym_is] = ACTIONS(2972), + [anon_sym_BANGis] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2972), + [anon_sym_BANGin] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2972), + [anon_sym_select] = ACTIONS(2972), + [anon_sym_lock] = ACTIONS(2972), + [anon_sym_rlock] = ACTIONS(2972), + [anon_sym_unsafe] = ACTIONS(2972), + [anon_sym_sql] = ACTIONS(2972), + [sym_int_literal] = ACTIONS(2972), + [sym_float_literal] = ACTIONS(2970), + [sym_rune_literal] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2972), + [anon_sym_shared] = ACTIONS(2972), + [anon_sym_map_LBRACK] = ACTIONS(2970), + [anon_sym_chan] = ACTIONS(2972), + [anon_sym_thread] = ACTIONS(2972), + [anon_sym_atomic] = ACTIONS(2972), + [sym___double_quote] = ACTIONS(2970), + [sym___single_quote] = ACTIONS(2970), + [sym___c_double_quote] = ACTIONS(2970), + [sym___c_single_quote] = ACTIONS(2970), + [sym___r_double_quote] = ACTIONS(2970), + [sym___r_single_quote] = ACTIONS(2970), }, [1341] = { - [sym_identifier] = ACTIONS(2740), + [sym_identifier] = ACTIONS(2968), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2738), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2738), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_CARET] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2738), - [anon_sym_POUND_LBRACK] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2738), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2738), - [sym_rune_literal] = ACTIONS(2738), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2738), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2738), - [sym___single_quote] = ACTIONS(2738), - [sym___c_double_quote] = ACTIONS(2738), - [sym___c_single_quote] = ACTIONS(2738), - [sym___r_double_quote] = ACTIONS(2738), - [sym___r_single_quote] = ACTIONS(2738), + [anon_sym_DOT] = ACTIONS(2968), + [anon_sym_as] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2968), + [anon_sym_fn] = ACTIONS(2968), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2968), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2968), + [anon_sym_GT] = ACTIONS(2968), + [anon_sym_EQ_EQ] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_RBRACK] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2968), + [anon_sym_mut] = ACTIONS(2968), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_go] = ACTIONS(2968), + [anon_sym_spawn] = ACTIONS(2968), + [anon_sym_json_DOTdecode] = ACTIONS(2966), + [anon_sym_LBRACK2] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2968), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2968), + [anon_sym_GT_GT_GT] = ACTIONS(2966), + [anon_sym_AMP_CARET] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2968), + [sym_none] = ACTIONS(2968), + [sym_true] = ACTIONS(2968), + [sym_false] = ACTIONS(2968), + [sym_nil] = ACTIONS(2968), + [anon_sym_QMARK_DOT] = ACTIONS(2966), + [anon_sym_POUND_LBRACK] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_DOLLARif] = ACTIONS(2968), + [anon_sym_is] = ACTIONS(2968), + [anon_sym_BANGis] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2968), + [anon_sym_BANGin] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2968), + [anon_sym_select] = ACTIONS(2968), + [anon_sym_lock] = ACTIONS(2968), + [anon_sym_rlock] = ACTIONS(2968), + [anon_sym_unsafe] = ACTIONS(2968), + [anon_sym_sql] = ACTIONS(2968), + [sym_int_literal] = ACTIONS(2968), + [sym_float_literal] = ACTIONS(2966), + [sym_rune_literal] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2968), + [anon_sym_shared] = ACTIONS(2968), + [anon_sym_map_LBRACK] = ACTIONS(2966), + [anon_sym_chan] = ACTIONS(2968), + [anon_sym_thread] = ACTIONS(2968), + [anon_sym_atomic] = ACTIONS(2968), + [sym___double_quote] = ACTIONS(2966), + [sym___single_quote] = ACTIONS(2966), + [sym___c_double_quote] = ACTIONS(2966), + [sym___c_single_quote] = ACTIONS(2966), + [sym___r_double_quote] = ACTIONS(2966), + [sym___r_single_quote] = ACTIONS(2966), }, [1342] = { - [sym_identifier] = ACTIONS(2992), + [sym_identifier] = ACTIONS(2944), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2994), - [anon_sym_as] = ACTIONS(2994), - [anon_sym_LBRACE] = ACTIONS(2990), - [anon_sym_COMMA] = ACTIONS(2990), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2994), - [anon_sym_fn] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2994), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2994), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2994), - [anon_sym_GT] = ACTIONS(2994), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_struct] = ACTIONS(2992), - [anon_sym_mut] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2994), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_go] = ACTIONS(2992), - [anon_sym_spawn] = ACTIONS(2992), - [anon_sym_json_DOTdecode] = ACTIONS(2990), - [anon_sym_LBRACK2] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2990), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT_DASH] = ACTIONS(2990), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2994), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2994), - [sym_none] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_nil] = ACTIONS(2992), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_DOLLARif] = ACTIONS(2992), - [anon_sym_is] = ACTIONS(2994), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2994), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2992), - [anon_sym_select] = ACTIONS(2992), - [anon_sym_lock] = ACTIONS(2992), - [anon_sym_rlock] = ACTIONS(2992), - [anon_sym_unsafe] = ACTIONS(2992), - [anon_sym_sql] = ACTIONS(2992), - [sym_int_literal] = ACTIONS(2992), - [sym_float_literal] = ACTIONS(2990), - [sym_rune_literal] = ACTIONS(2990), - [anon_sym_AT] = ACTIONS(2992), - [anon_sym_shared] = ACTIONS(2992), - [anon_sym_map_LBRACK] = ACTIONS(2990), - [anon_sym_chan] = ACTIONS(2992), - [anon_sym_thread] = ACTIONS(2992), - [anon_sym_atomic] = ACTIONS(2992), - [sym___double_quote] = ACTIONS(2990), - [sym___single_quote] = ACTIONS(2990), - [sym___c_double_quote] = ACTIONS(2990), - [sym___c_single_quote] = ACTIONS(2990), - [sym___r_double_quote] = ACTIONS(2990), - [sym___r_single_quote] = ACTIONS(2990), + [anon_sym_DOT] = ACTIONS(2944), + [anon_sym_as] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2944), + [anon_sym_fn] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_PERCENT] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_GT] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2942), + [anon_sym_BANG_EQ] = ACTIONS(2942), + [anon_sym_LT_EQ] = ACTIONS(2942), + [anon_sym_GT_EQ] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_RBRACK] = ACTIONS(2942), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_mut] = ACTIONS(2944), + [anon_sym_COLON] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_QMARK] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_go] = ACTIONS(2944), + [anon_sym_spawn] = ACTIONS(2944), + [anon_sym_json_DOTdecode] = ACTIONS(2942), + [anon_sym_LBRACK2] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_CARET] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_LT_DASH] = ACTIONS(2942), + [anon_sym_LT_LT] = ACTIONS(2942), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_GT_GT_GT] = ACTIONS(2942), + [anon_sym_AMP_CARET] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_PIPE_PIPE] = ACTIONS(2942), + [anon_sym_or] = ACTIONS(2944), + [sym_none] = ACTIONS(2944), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [sym_nil] = ACTIONS(2944), + [anon_sym_QMARK_DOT] = ACTIONS(2942), + [anon_sym_POUND_LBRACK] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_DOLLARif] = ACTIONS(2944), + [anon_sym_is] = ACTIONS(2944), + [anon_sym_BANGis] = ACTIONS(2942), + [anon_sym_in] = ACTIONS(2944), + [anon_sym_BANGin] = ACTIONS(2942), + [anon_sym_match] = ACTIONS(2944), + [anon_sym_select] = ACTIONS(2944), + [anon_sym_lock] = ACTIONS(2944), + [anon_sym_rlock] = ACTIONS(2944), + [anon_sym_unsafe] = ACTIONS(2944), + [anon_sym_sql] = ACTIONS(2944), + [sym_int_literal] = ACTIONS(2944), + [sym_float_literal] = ACTIONS(2942), + [sym_rune_literal] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_shared] = ACTIONS(2944), + [anon_sym_map_LBRACK] = ACTIONS(2942), + [anon_sym_chan] = ACTIONS(2944), + [anon_sym_thread] = ACTIONS(2944), + [anon_sym_atomic] = ACTIONS(2944), + [sym___double_quote] = ACTIONS(2942), + [sym___single_quote] = ACTIONS(2942), + [sym___c_double_quote] = ACTIONS(2942), + [sym___c_single_quote] = ACTIONS(2942), + [sym___r_double_quote] = ACTIONS(2942), + [sym___r_single_quote] = ACTIONS(2942), }, [1343] = { - [sym_reference_expression] = STATE(4570), - [sym_type_reference_expression] = STATE(2164), - [sym_plain_type] = STATE(2202), - [sym__plain_type_without_special] = STATE(2191), - [sym_anon_struct_type] = STATE(2192), - [sym_multi_return_type] = STATE(2191), - [sym_result_type] = STATE(2191), - [sym_option_type] = STATE(2191), - [sym_qualified_type] = STATE(2164), - [sym_fixed_array_type] = STATE(2192), - [sym_array_type] = STATE(2192), - [sym_pointer_type] = STATE(2192), - [sym_wrong_pointer_type] = STATE(2192), - [sym_map_type] = STATE(2192), - [sym_channel_type] = STATE(2192), - [sym_shared_type] = STATE(2192), - [sym_thread_type] = STATE(2192), - [sym_atomic_type] = STATE(2192), - [sym_generic_type] = STATE(2192), - [sym_function_type] = STATE(2192), - [sym_identifier] = ACTIONS(3673), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym___global] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3681), - [anon_sym_pub] = ACTIONS(561), - [anon_sym_mut] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_LBRACK2] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(561), - [anon_sym_POUND_LBRACK] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(561), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(3691), - [anon_sym_map_LBRACK] = ACTIONS(3693), - [anon_sym_chan] = ACTIONS(3695), - [anon_sym_thread] = ACTIONS(3697), - [anon_sym_atomic] = ACTIONS(3699), - [anon_sym_AT_LBRACK] = ACTIONS(561), + [sym_identifier] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_as] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LPAREN] = ACTIONS(3030), + [anon_sym_PIPE] = ACTIONS(3032), + [anon_sym_fn] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_SLASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(3032), + [anon_sym_GT] = ACTIONS(3032), + [anon_sym_EQ_EQ] = ACTIONS(3030), + [anon_sym_BANG_EQ] = ACTIONS(3030), + [anon_sym_LT_EQ] = ACTIONS(3030), + [anon_sym_GT_EQ] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_RBRACK] = ACTIONS(3030), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_mut] = ACTIONS(3032), + [anon_sym_COLON] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_go] = ACTIONS(3032), + [anon_sym_spawn] = ACTIONS(3032), + [anon_sym_json_DOTdecode] = ACTIONS(3030), + [anon_sym_LBRACK2] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_CARET] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_LT_DASH] = ACTIONS(3030), + [anon_sym_LT_LT] = ACTIONS(3030), + [anon_sym_GT_GT] = ACTIONS(3032), + [anon_sym_GT_GT_GT] = ACTIONS(3030), + [anon_sym_AMP_CARET] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_PIPE_PIPE] = ACTIONS(3030), + [anon_sym_or] = ACTIONS(3032), + [sym_none] = ACTIONS(3032), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [sym_nil] = ACTIONS(3032), + [anon_sym_QMARK_DOT] = ACTIONS(3030), + [anon_sym_POUND_LBRACK] = ACTIONS(3030), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_DOLLARif] = ACTIONS(3032), + [anon_sym_is] = ACTIONS(3032), + [anon_sym_BANGis] = ACTIONS(3030), + [anon_sym_in] = ACTIONS(3032), + [anon_sym_BANGin] = ACTIONS(3030), + [anon_sym_match] = ACTIONS(3032), + [anon_sym_select] = ACTIONS(3032), + [anon_sym_lock] = ACTIONS(3032), + [anon_sym_rlock] = ACTIONS(3032), + [anon_sym_unsafe] = ACTIONS(3032), + [anon_sym_sql] = ACTIONS(3032), + [sym_int_literal] = ACTIONS(3032), + [sym_float_literal] = ACTIONS(3030), + [sym_rune_literal] = ACTIONS(3030), + [anon_sym_AT] = ACTIONS(3032), + [anon_sym_shared] = ACTIONS(3032), + [anon_sym_map_LBRACK] = ACTIONS(3030), + [anon_sym_chan] = ACTIONS(3032), + [anon_sym_thread] = ACTIONS(3032), + [anon_sym_atomic] = ACTIONS(3032), + [sym___double_quote] = ACTIONS(3030), + [sym___single_quote] = ACTIONS(3030), + [sym___c_double_quote] = ACTIONS(3030), + [sym___c_single_quote] = ACTIONS(3030), + [sym___r_double_quote] = ACTIONS(3030), + [sym___r_single_quote] = ACTIONS(3030), }, [1344] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym___global] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(593), - [anon_sym_mut] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3704), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(593), - [anon_sym_POUND_LBRACK] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(593), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_AT_LBRACK] = ACTIONS(593), + [sym_identifier] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2980), + [anon_sym_as] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_RBRACK] = ACTIONS(2978), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_mut] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_go] = ACTIONS(2980), + [anon_sym_spawn] = ACTIONS(2980), + [anon_sym_json_DOTdecode] = ACTIONS(2978), + [anon_sym_LBRACK2] = ACTIONS(2980), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_CARET] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_LT_LT] = ACTIONS(2978), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_GT_GT_GT] = ACTIONS(2978), + [anon_sym_AMP_CARET] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_or] = ACTIONS(2980), + [sym_none] = ACTIONS(2980), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [sym_nil] = ACTIONS(2980), + [anon_sym_QMARK_DOT] = ACTIONS(2978), + [anon_sym_POUND_LBRACK] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_DOLLARif] = ACTIONS(2980), + [anon_sym_is] = ACTIONS(2980), + [anon_sym_BANGis] = ACTIONS(2978), + [anon_sym_in] = ACTIONS(2980), + [anon_sym_BANGin] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2980), + [anon_sym_select] = ACTIONS(2980), + [anon_sym_lock] = ACTIONS(2980), + [anon_sym_rlock] = ACTIONS(2980), + [anon_sym_unsafe] = ACTIONS(2980), + [anon_sym_sql] = ACTIONS(2980), + [sym_int_literal] = ACTIONS(2980), + [sym_float_literal] = ACTIONS(2978), + [sym_rune_literal] = ACTIONS(2978), + [anon_sym_AT] = ACTIONS(2980), + [anon_sym_shared] = ACTIONS(2980), + [anon_sym_map_LBRACK] = ACTIONS(2978), + [anon_sym_chan] = ACTIONS(2980), + [anon_sym_thread] = ACTIONS(2980), + [anon_sym_atomic] = ACTIONS(2980), + [sym___double_quote] = ACTIONS(2978), + [sym___single_quote] = ACTIONS(2978), + [sym___c_double_quote] = ACTIONS(2978), + [sym___c_single_quote] = ACTIONS(2978), + [sym___r_double_quote] = ACTIONS(2978), + [sym___r_single_quote] = ACTIONS(2978), }, [1345] = { - [sym_identifier] = ACTIONS(2858), + [sym_identifier] = ACTIONS(3060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_RBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_as] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3058), + [anon_sym_COMMA] = ACTIONS(3058), + [anon_sym_RBRACE] = ACTIONS(3058), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_LT] = ACTIONS(3060), + [anon_sym_GT] = ACTIONS(3060), + [anon_sym_EQ_EQ] = ACTIONS(3058), + [anon_sym_BANG_EQ] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3058), + [anon_sym_RBRACK] = ACTIONS(3058), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_mut] = ACTIONS(3060), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_PLUS_PLUS] = ACTIONS(3058), + [anon_sym_DASH_DASH] = ACTIONS(3058), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_go] = ACTIONS(3060), + [anon_sym_spawn] = ACTIONS(3060), + [anon_sym_json_DOTdecode] = ACTIONS(3058), + [anon_sym_LBRACK2] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3058), + [anon_sym_CARET] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3058), + [anon_sym_LT_LT] = ACTIONS(3058), + [anon_sym_GT_GT] = ACTIONS(3060), + [anon_sym_GT_GT_GT] = ACTIONS(3058), + [anon_sym_AMP_CARET] = ACTIONS(3058), + [anon_sym_AMP_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3058), + [anon_sym_or] = ACTIONS(3060), + [sym_none] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_nil] = ACTIONS(3060), + [anon_sym_QMARK_DOT] = ACTIONS(3058), + [anon_sym_POUND_LBRACK] = ACTIONS(3058), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_DOLLARif] = ACTIONS(3060), + [anon_sym_is] = ACTIONS(3060), + [anon_sym_BANGis] = ACTIONS(3058), + [anon_sym_in] = ACTIONS(3060), + [anon_sym_BANGin] = ACTIONS(3058), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_select] = ACTIONS(3060), + [anon_sym_lock] = ACTIONS(3060), + [anon_sym_rlock] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_sql] = ACTIONS(3060), + [sym_int_literal] = ACTIONS(3060), + [sym_float_literal] = ACTIONS(3058), + [sym_rune_literal] = ACTIONS(3058), + [anon_sym_AT] = ACTIONS(3060), + [anon_sym_shared] = ACTIONS(3060), + [anon_sym_map_LBRACK] = ACTIONS(3058), + [anon_sym_chan] = ACTIONS(3060), + [anon_sym_thread] = ACTIONS(3060), + [anon_sym_atomic] = ACTIONS(3060), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), }, [1346] = { - [sym_reference_expression] = STATE(4570), - [sym_type_reference_expression] = STATE(2164), - [sym_plain_type] = STATE(2248), - [sym__plain_type_without_special] = STATE(2191), - [sym_anon_struct_type] = STATE(2192), - [sym_multi_return_type] = STATE(2191), - [sym_result_type] = STATE(2191), - [sym_option_type] = STATE(2191), - [sym_qualified_type] = STATE(2164), - [sym_fixed_array_type] = STATE(2192), - [sym_array_type] = STATE(2192), - [sym_pointer_type] = STATE(2192), - [sym_wrong_pointer_type] = STATE(2192), - [sym_map_type] = STATE(2192), - [sym_channel_type] = STATE(2192), - [sym_shared_type] = STATE(2192), - [sym_thread_type] = STATE(2192), - [sym_atomic_type] = STATE(2192), - [sym_generic_type] = STATE(2192), - [sym_function_type] = STATE(2192), - [sym_identifier] = ACTIONS(3673), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3675), - [anon_sym___global] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3677), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3679), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3681), - [anon_sym_pub] = ACTIONS(621), - [anon_sym_mut] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3683), - [anon_sym_BANG] = ACTIONS(3685), - [anon_sym_LBRACK2] = ACTIONS(3687), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3691), - [anon_sym_map_LBRACK] = ACTIONS(3693), - [anon_sym_chan] = ACTIONS(3695), - [anon_sym_thread] = ACTIONS(3697), - [anon_sym_atomic] = ACTIONS(3699), - [anon_sym_AT_LBRACK] = ACTIONS(621), + [sym_identifier] = ACTIONS(3214), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_LT_EQ] = ACTIONS(3212), + [anon_sym_GT_EQ] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_RBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_CARET] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_LT_LT] = ACTIONS(3212), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3212), + [anon_sym_AMP_CARET] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3212), + [anon_sym_POUND_LBRACK] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3212), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3212), + [sym_rune_literal] = ACTIONS(3212), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3212), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3212), + [sym___single_quote] = ACTIONS(3212), + [sym___c_double_quote] = ACTIONS(3212), + [sym___c_single_quote] = ACTIONS(3212), + [sym___r_double_quote] = ACTIONS(3212), + [sym___r_single_quote] = ACTIONS(3212), }, [1347] = { - [sym_identifier] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3230), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_CARET] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3127), - [anon_sym_POUND_LBRACK] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3127), - [sym___single_quote] = ACTIONS(3127), - [sym___c_double_quote] = ACTIONS(3127), - [sym___c_single_quote] = ACTIONS(3127), - [sym___r_double_quote] = ACTIONS(3127), - [sym___r_single_quote] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3834), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_LT_EQ] = ACTIONS(3228), + [anon_sym_GT_EQ] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_RBRACK] = ACTIONS(3834), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3834), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3228), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_CARET] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_LT_LT] = ACTIONS(3228), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3228), + [anon_sym_AMP_CARET] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3228), + [anon_sym_POUND_LBRACK] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3228), + [sym_rune_literal] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3228), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3228), + [sym___single_quote] = ACTIONS(3228), + [sym___c_double_quote] = ACTIONS(3228), + [sym___c_single_quote] = ACTIONS(3228), + [sym___r_double_quote] = ACTIONS(3228), + [sym___r_single_quote] = ACTIONS(3228), }, [1348] = { - [sym_identifier] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2964), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2790), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_fn] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_GT] = ACTIONS(2790), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_RBRACK] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_mut] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_go] = ACTIONS(2790), - [anon_sym_spawn] = ACTIONS(2790), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2790), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2790), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2790), - [sym_none] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_nil] = ACTIONS(2790), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_DOLLARif] = ACTIONS(2790), - [anon_sym_is] = ACTIONS(2790), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2790), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2790), - [anon_sym_select] = ACTIONS(2790), - [anon_sym_lock] = ACTIONS(2790), - [anon_sym_rlock] = ACTIONS(2790), - [anon_sym_unsafe] = ACTIONS(2790), - [anon_sym_sql] = ACTIONS(2790), - [sym_int_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2790), - [anon_sym_shared] = ACTIONS(2790), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2790), - [anon_sym_thread] = ACTIONS(2790), - [anon_sym_atomic] = ACTIONS(2790), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_as] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2964), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2964), + [anon_sym_GT] = ACTIONS(2964), + [anon_sym_EQ_EQ] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_LT_EQ] = ACTIONS(2962), + [anon_sym_GT_EQ] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_RBRACK] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2964), + [anon_sym_mut] = ACTIONS(2964), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_go] = ACTIONS(2964), + [anon_sym_spawn] = ACTIONS(2964), + [anon_sym_json_DOTdecode] = ACTIONS(2962), + [anon_sym_LBRACK2] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_CARET] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_LT_LT] = ACTIONS(2962), + [anon_sym_GT_GT] = ACTIONS(2964), + [anon_sym_GT_GT_GT] = ACTIONS(2962), + [anon_sym_AMP_CARET] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_or] = ACTIONS(2964), + [sym_none] = ACTIONS(2964), + [sym_true] = ACTIONS(2964), + [sym_false] = ACTIONS(2964), + [sym_nil] = ACTIONS(2964), + [anon_sym_QMARK_DOT] = ACTIONS(2962), + [anon_sym_POUND_LBRACK] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_DOLLARif] = ACTIONS(2964), + [anon_sym_is] = ACTIONS(2964), + [anon_sym_BANGis] = ACTIONS(2962), + [anon_sym_in] = ACTIONS(2964), + [anon_sym_BANGin] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2964), + [anon_sym_select] = ACTIONS(2964), + [anon_sym_lock] = ACTIONS(2964), + [anon_sym_rlock] = ACTIONS(2964), + [anon_sym_unsafe] = ACTIONS(2964), + [anon_sym_sql] = ACTIONS(2964), + [sym_int_literal] = ACTIONS(2964), + [sym_float_literal] = ACTIONS(2962), + [sym_rune_literal] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2964), + [anon_sym_shared] = ACTIONS(2964), + [anon_sym_map_LBRACK] = ACTIONS(2962), + [anon_sym_chan] = ACTIONS(2964), + [anon_sym_thread] = ACTIONS(2964), + [anon_sym_atomic] = ACTIONS(2964), + [sym___double_quote] = ACTIONS(2962), + [sym___single_quote] = ACTIONS(2962), + [sym___c_double_quote] = ACTIONS(2962), + [sym___c_single_quote] = ACTIONS(2962), + [sym___r_double_quote] = ACTIONS(2962), + [sym___r_single_quote] = ACTIONS(2962), }, [1349] = { - [sym_identifier] = ACTIONS(3090), + [sym_identifier] = ACTIONS(2960), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3090), - [anon_sym_as] = ACTIONS(3090), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_fn] = ACTIONS(3090), - [anon_sym_PLUS] = ACTIONS(3090), - [anon_sym_DASH] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3090), - [anon_sym_PERCENT] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_EQ_EQ] = ACTIONS(3088), - [anon_sym_BANG_EQ] = ACTIONS(3088), - [anon_sym_LT_EQ] = ACTIONS(3088), - [anon_sym_GT_EQ] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_RBRACK] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3090), - [anon_sym_mut] = ACTIONS(3090), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [anon_sym_QMARK] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_go] = ACTIONS(3090), - [anon_sym_spawn] = ACTIONS(3090), - [anon_sym_json_DOTdecode] = ACTIONS(3088), - [anon_sym_LBRACK2] = ACTIONS(3090), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_CARET] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3090), - [anon_sym_LT_DASH] = ACTIONS(3088), - [anon_sym_LT_LT] = ACTIONS(3088), - [anon_sym_GT_GT] = ACTIONS(3090), - [anon_sym_GT_GT_GT] = ACTIONS(3088), - [anon_sym_AMP_CARET] = ACTIONS(3088), - [anon_sym_AMP_AMP] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3088), - [anon_sym_or] = ACTIONS(3090), - [sym_none] = ACTIONS(3090), - [sym_true] = ACTIONS(3090), - [sym_false] = ACTIONS(3090), - [sym_nil] = ACTIONS(3090), - [anon_sym_QMARK_DOT] = ACTIONS(3088), - [anon_sym_POUND_LBRACK] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3090), - [anon_sym_DOLLARif] = ACTIONS(3090), - [anon_sym_is] = ACTIONS(3090), - [anon_sym_BANGis] = ACTIONS(3088), - [anon_sym_in] = ACTIONS(3090), - [anon_sym_BANGin] = ACTIONS(3088), - [anon_sym_match] = ACTIONS(3090), - [anon_sym_select] = ACTIONS(3090), - [anon_sym_lock] = ACTIONS(3090), - [anon_sym_rlock] = ACTIONS(3090), - [anon_sym_unsafe] = ACTIONS(3090), - [anon_sym_sql] = ACTIONS(3090), - [sym_int_literal] = ACTIONS(3090), - [sym_float_literal] = ACTIONS(3088), - [sym_rune_literal] = ACTIONS(3088), - [anon_sym_AT] = ACTIONS(3090), - [anon_sym_shared] = ACTIONS(3090), - [anon_sym_map_LBRACK] = ACTIONS(3088), - [anon_sym_chan] = ACTIONS(3090), - [anon_sym_thread] = ACTIONS(3090), - [anon_sym_atomic] = ACTIONS(3090), - [sym___double_quote] = ACTIONS(3088), - [sym___single_quote] = ACTIONS(3088), - [sym___c_double_quote] = ACTIONS(3088), - [sym___c_single_quote] = ACTIONS(3088), - [sym___r_double_quote] = ACTIONS(3088), - [sym___r_single_quote] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(2960), + [anon_sym_as] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_COMMA] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2960), + [anon_sym_fn] = ACTIONS(2960), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_PERCENT] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2960), + [anon_sym_GT] = ACTIONS(2960), + [anon_sym_EQ_EQ] = ACTIONS(2958), + [anon_sym_BANG_EQ] = ACTIONS(2958), + [anon_sym_LT_EQ] = ACTIONS(2958), + [anon_sym_GT_EQ] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_RBRACK] = ACTIONS(2958), + [anon_sym_struct] = ACTIONS(2960), + [anon_sym_mut] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_QMARK] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2960), + [anon_sym_go] = ACTIONS(2960), + [anon_sym_spawn] = ACTIONS(2960), + [anon_sym_json_DOTdecode] = ACTIONS(2958), + [anon_sym_LBRACK2] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2960), + [anon_sym_LT_DASH] = ACTIONS(2958), + [anon_sym_LT_LT] = ACTIONS(2958), + [anon_sym_GT_GT] = ACTIONS(2960), + [anon_sym_GT_GT_GT] = ACTIONS(2958), + [anon_sym_AMP_CARET] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_PIPE_PIPE] = ACTIONS(2958), + [anon_sym_or] = ACTIONS(2960), + [sym_none] = ACTIONS(2960), + [sym_true] = ACTIONS(2960), + [sym_false] = ACTIONS(2960), + [sym_nil] = ACTIONS(2960), + [anon_sym_QMARK_DOT] = ACTIONS(2958), + [anon_sym_POUND_LBRACK] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_DOLLARif] = ACTIONS(2960), + [anon_sym_is] = ACTIONS(2960), + [anon_sym_BANGis] = ACTIONS(2958), + [anon_sym_in] = ACTIONS(2960), + [anon_sym_BANGin] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2960), + [anon_sym_select] = ACTIONS(2960), + [anon_sym_lock] = ACTIONS(2960), + [anon_sym_rlock] = ACTIONS(2960), + [anon_sym_unsafe] = ACTIONS(2960), + [anon_sym_sql] = ACTIONS(2960), + [sym_int_literal] = ACTIONS(2960), + [sym_float_literal] = ACTIONS(2958), + [sym_rune_literal] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2960), + [anon_sym_shared] = ACTIONS(2960), + [anon_sym_map_LBRACK] = ACTIONS(2958), + [anon_sym_chan] = ACTIONS(2960), + [anon_sym_thread] = ACTIONS(2960), + [anon_sym_atomic] = ACTIONS(2960), + [sym___double_quote] = ACTIONS(2958), + [sym___single_quote] = ACTIONS(2958), + [sym___c_double_quote] = ACTIONS(2958), + [sym___c_single_quote] = ACTIONS(2958), + [sym___r_double_quote] = ACTIONS(2958), + [sym___r_single_quote] = ACTIONS(2958), }, [1350] = { - [sym_identifier] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3230), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3098), - [anon_sym_as] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3096), - [anon_sym_PIPE] = ACTIONS(3098), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_PERCENT] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(3096), - [anon_sym_LT_EQ] = ACTIONS(3096), - [anon_sym_GT_EQ] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_RBRACK] = ACTIONS(3096), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_mut] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_QMARK] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_go] = ACTIONS(3098), - [anon_sym_spawn] = ACTIONS(3098), - [anon_sym_json_DOTdecode] = ACTIONS(3096), - [anon_sym_LBRACK2] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_CARET] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3098), - [anon_sym_LT_DASH] = ACTIONS(3096), - [anon_sym_LT_LT] = ACTIONS(3096), - [anon_sym_GT_GT] = ACTIONS(3098), - [anon_sym_GT_GT_GT] = ACTIONS(3096), - [anon_sym_AMP_CARET] = ACTIONS(3096), - [anon_sym_AMP_AMP] = ACTIONS(3096), - [anon_sym_PIPE_PIPE] = ACTIONS(3096), - [anon_sym_or] = ACTIONS(3098), - [sym_none] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_nil] = ACTIONS(3098), - [anon_sym_QMARK_DOT] = ACTIONS(3096), - [anon_sym_POUND_LBRACK] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_DOLLARif] = ACTIONS(3098), - [anon_sym_is] = ACTIONS(3098), - [anon_sym_BANGis] = ACTIONS(3096), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_BANGin] = ACTIONS(3096), - [anon_sym_match] = ACTIONS(3098), - [anon_sym_select] = ACTIONS(3098), - [anon_sym_lock] = ACTIONS(3098), - [anon_sym_rlock] = ACTIONS(3098), - [anon_sym_unsafe] = ACTIONS(3098), - [anon_sym_sql] = ACTIONS(3098), - [sym_int_literal] = ACTIONS(3098), - [sym_float_literal] = ACTIONS(3096), - [sym_rune_literal] = ACTIONS(3096), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_shared] = ACTIONS(3098), - [anon_sym_map_LBRACK] = ACTIONS(3096), - [anon_sym_chan] = ACTIONS(3098), - [anon_sym_thread] = ACTIONS(3098), - [anon_sym_atomic] = ACTIONS(3098), - [sym___double_quote] = ACTIONS(3096), - [sym___single_quote] = ACTIONS(3096), - [sym___c_double_quote] = ACTIONS(3096), - [sym___c_single_quote] = ACTIONS(3096), - [sym___r_double_quote] = ACTIONS(3096), - [sym___r_single_quote] = ACTIONS(3096), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_LT_EQ] = ACTIONS(3228), + [anon_sym_GT_EQ] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_RBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3228), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_CARET] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_LT_LT] = ACTIONS(3228), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3228), + [anon_sym_AMP_CARET] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3228), + [anon_sym_POUND_LBRACK] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3228), + [sym_rune_literal] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3228), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3228), + [sym___single_quote] = ACTIONS(3228), + [sym___c_double_quote] = ACTIONS(3228), + [sym___c_single_quote] = ACTIONS(3228), + [sym___r_double_quote] = ACTIONS(3228), + [sym___r_single_quote] = ACTIONS(3228), }, [1351] = { - [sym_identifier] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3110), - [anon_sym_as] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_fn] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3108), - [anon_sym_SLASH] = ACTIONS(3110), - [anon_sym_PERCENT] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3108), - [anon_sym_LT_EQ] = ACTIONS(3108), - [anon_sym_GT_EQ] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_struct] = ACTIONS(3110), - [anon_sym_mut] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_QMARK] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_go] = ACTIONS(3110), - [anon_sym_spawn] = ACTIONS(3110), - [anon_sym_json_DOTdecode] = ACTIONS(3108), - [anon_sym_LBRACK2] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_AMP] = ACTIONS(3110), - [anon_sym_LT_DASH] = ACTIONS(3108), - [anon_sym_LT_LT] = ACTIONS(3108), - [anon_sym_GT_GT] = ACTIONS(3110), - [anon_sym_GT_GT_GT] = ACTIONS(3108), - [anon_sym_AMP_CARET] = ACTIONS(3108), - [anon_sym_AMP_AMP] = ACTIONS(3108), - [anon_sym_PIPE_PIPE] = ACTIONS(3108), - [anon_sym_or] = ACTIONS(3110), - [sym_none] = ACTIONS(3110), - [sym_true] = ACTIONS(3110), - [sym_false] = ACTIONS(3110), - [sym_nil] = ACTIONS(3110), - [anon_sym_QMARK_DOT] = ACTIONS(3108), - [anon_sym_POUND_LBRACK] = ACTIONS(3108), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_DOLLARif] = ACTIONS(3110), - [anon_sym_is] = ACTIONS(3110), - [anon_sym_BANGis] = ACTIONS(3108), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_BANGin] = ACTIONS(3108), - [anon_sym_match] = ACTIONS(3110), - [anon_sym_select] = ACTIONS(3110), - [anon_sym_lock] = ACTIONS(3110), - [anon_sym_rlock] = ACTIONS(3110), - [anon_sym_unsafe] = ACTIONS(3110), - [anon_sym_sql] = ACTIONS(3110), - [sym_int_literal] = ACTIONS(3110), - [sym_float_literal] = ACTIONS(3108), - [sym_rune_literal] = ACTIONS(3108), - [anon_sym_AT] = ACTIONS(3110), - [anon_sym_shared] = ACTIONS(3110), - [anon_sym_map_LBRACK] = ACTIONS(3108), - [anon_sym_chan] = ACTIONS(3110), - [anon_sym_thread] = ACTIONS(3110), - [anon_sym_atomic] = ACTIONS(3110), - [sym___double_quote] = ACTIONS(3108), - [sym___single_quote] = ACTIONS(3108), - [sym___c_double_quote] = ACTIONS(3108), - [sym___c_single_quote] = ACTIONS(3108), - [sym___r_double_quote] = ACTIONS(3108), - [sym___r_single_quote] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_as] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_fn] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3088), + [anon_sym_PERCENT] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_GT] = ACTIONS(3088), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT_EQ] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_mut] = ACTIONS(3088), + [anon_sym_COLON] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3088), + [anon_sym_json_DOTdecode] = ACTIONS(3086), + [anon_sym_LBRACK2] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3086), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3086), + [anon_sym_LT_LT] = ACTIONS(3086), + [anon_sym_GT_GT] = ACTIONS(3088), + [anon_sym_GT_GT_GT] = ACTIONS(3086), + [anon_sym_AMP_CARET] = ACTIONS(3086), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3088), + [sym_none] = ACTIONS(3088), + [sym_true] = ACTIONS(3088), + [sym_false] = ACTIONS(3088), + [sym_nil] = ACTIONS(3088), + [anon_sym_QMARK_DOT] = ACTIONS(3086), + [anon_sym_POUND_LBRACK] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_DOLLARif] = ACTIONS(3088), + [anon_sym_is] = ACTIONS(3088), + [anon_sym_BANGis] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3088), + [anon_sym_BANGin] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3088), + [anon_sym_lock] = ACTIONS(3088), + [anon_sym_rlock] = ACTIONS(3088), + [anon_sym_unsafe] = ACTIONS(3088), + [anon_sym_sql] = ACTIONS(3088), + [sym_int_literal] = ACTIONS(3088), + [sym_float_literal] = ACTIONS(3086), + [sym_rune_literal] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3088), + [anon_sym_shared] = ACTIONS(3088), + [anon_sym_map_LBRACK] = ACTIONS(3086), + [anon_sym_chan] = ACTIONS(3088), + [anon_sym_thread] = ACTIONS(3088), + [anon_sym_atomic] = ACTIONS(3088), + [sym___double_quote] = ACTIONS(3086), + [sym___single_quote] = ACTIONS(3086), + [sym___c_double_quote] = ACTIONS(3086), + [sym___c_single_quote] = ACTIONS(3086), + [sym___r_double_quote] = ACTIONS(3086), + [sym___r_single_quote] = ACTIONS(3086), }, [1352] = { - [sym_identifier] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2940), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_as] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_GT] = ACTIONS(2806), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_RBRACK] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2806), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), + [anon_sym_DOT] = ACTIONS(2940), + [anon_sym_as] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2940), + [anon_sym_fn] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_GT] = ACTIONS(2940), + [anon_sym_EQ_EQ] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2938), + [anon_sym_LT_EQ] = ACTIONS(2938), + [anon_sym_GT_EQ] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_RBRACK] = ACTIONS(2938), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_mut] = ACTIONS(2940), + [anon_sym_COLON] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2940), + [anon_sym_go] = ACTIONS(2940), + [anon_sym_spawn] = ACTIONS(2940), + [anon_sym_json_DOTdecode] = ACTIONS(2938), + [anon_sym_LBRACK2] = ACTIONS(2940), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(2938), + [anon_sym_GT_GT] = ACTIONS(2940), + [anon_sym_GT_GT_GT] = ACTIONS(2938), + [anon_sym_AMP_CARET] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_or] = ACTIONS(2940), + [sym_none] = ACTIONS(2940), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [sym_nil] = ACTIONS(2940), + [anon_sym_QMARK_DOT] = ACTIONS(2938), + [anon_sym_POUND_LBRACK] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_DOLLARif] = ACTIONS(2940), + [anon_sym_is] = ACTIONS(2940), + [anon_sym_BANGis] = ACTIONS(2938), + [anon_sym_in] = ACTIONS(2940), + [anon_sym_BANGin] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2940), + [anon_sym_select] = ACTIONS(2940), + [anon_sym_lock] = ACTIONS(2940), + [anon_sym_rlock] = ACTIONS(2940), + [anon_sym_unsafe] = ACTIONS(2940), + [anon_sym_sql] = ACTIONS(2940), + [sym_int_literal] = ACTIONS(2940), + [sym_float_literal] = ACTIONS(2938), + [sym_rune_literal] = ACTIONS(2938), + [anon_sym_AT] = ACTIONS(2940), + [anon_sym_shared] = ACTIONS(2940), + [anon_sym_map_LBRACK] = ACTIONS(2938), + [anon_sym_chan] = ACTIONS(2940), + [anon_sym_thread] = ACTIONS(2940), + [anon_sym_atomic] = ACTIONS(2940), + [sym___double_quote] = ACTIONS(2938), + [sym___single_quote] = ACTIONS(2938), + [sym___c_double_quote] = ACTIONS(2938), + [sym___c_single_quote] = ACTIONS(2938), + [sym___r_double_quote] = ACTIONS(2938), + [sym___r_single_quote] = ACTIONS(2938), }, [1353] = { - [sym_identifier] = ACTIONS(2830), + [sym_identifier] = ACTIONS(3305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_as] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_fn] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2830), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_GT] = ACTIONS(2830), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_RBRACK] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_mut] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_go] = ACTIONS(2830), - [anon_sym_spawn] = ACTIONS(2830), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2830), - [sym_none] = ACTIONS(2830), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_nil] = ACTIONS(2830), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_DOLLARif] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2830), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2830), - [anon_sym_select] = ACTIONS(2830), - [anon_sym_lock] = ACTIONS(2830), - [anon_sym_rlock] = ACTIONS(2830), - [anon_sym_unsafe] = ACTIONS(2830), - [anon_sym_sql] = ACTIONS(2830), - [sym_int_literal] = ACTIONS(2830), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2830), - [anon_sym_shared] = ACTIONS(2830), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2830), - [anon_sym_thread] = ACTIONS(2830), - [anon_sym_atomic] = ACTIONS(2830), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_as] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3305), + [anon_sym_EQ_EQ] = ACTIONS(3303), + [anon_sym_BANG_EQ] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3303), + [anon_sym_GT_EQ] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_RBRACK] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3303), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3303), + [anon_sym_LT_LT] = ACTIONS(3303), + [anon_sym_GT_GT] = ACTIONS(3305), + [anon_sym_GT_GT_GT] = ACTIONS(3303), + [anon_sym_AMP_CARET] = ACTIONS(3303), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_or] = ACTIONS(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_QMARK_DOT] = ACTIONS(3303), + [anon_sym_POUND_LBRACK] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_is] = ACTIONS(3305), + [anon_sym_BANGis] = ACTIONS(3303), + [anon_sym_in] = ACTIONS(3305), + [anon_sym_BANGin] = ACTIONS(3303), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3303), + [sym_rune_literal] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3303), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [sym___double_quote] = ACTIONS(3303), + [sym___single_quote] = ACTIONS(3303), + [sym___c_double_quote] = ACTIONS(3303), + [sym___c_single_quote] = ACTIONS(3303), + [sym___r_double_quote] = ACTIONS(3303), + [sym___r_single_quote] = ACTIONS(3303), }, [1354] = { - [sym_identifier] = ACTIONS(2826), + [sym_identifier] = ACTIONS(3092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_fn] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_GT] = ACTIONS(2826), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_RBRACK] = ACTIONS(2824), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_mut] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_go] = ACTIONS(2826), - [anon_sym_spawn] = ACTIONS(2826), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2826), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2826), - [sym_none] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_nil] = ACTIONS(2826), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_DOLLARif] = ACTIONS(2826), - [anon_sym_is] = ACTIONS(2826), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2826), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2826), - [anon_sym_select] = ACTIONS(2826), - [anon_sym_lock] = ACTIONS(2826), - [anon_sym_rlock] = ACTIONS(2826), - [anon_sym_unsafe] = ACTIONS(2826), - [anon_sym_sql] = ACTIONS(2826), - [sym_int_literal] = ACTIONS(2826), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2826), - [anon_sym_shared] = ACTIONS(2826), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2826), - [anon_sym_thread] = ACTIONS(2826), - [anon_sym_atomic] = ACTIONS(2826), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_as] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_fn] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3092), + [anon_sym_GT] = ACTIONS(3092), + [anon_sym_EQ_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3090), + [anon_sym_LT_EQ] = ACTIONS(3090), + [anon_sym_GT_EQ] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3092), + [anon_sym_mut] = ACTIONS(3092), + [anon_sym_COLON] = ACTIONS(3090), + [anon_sym_PLUS_PLUS] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3090), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_go] = ACTIONS(3092), + [anon_sym_spawn] = ACTIONS(3092), + [anon_sym_json_DOTdecode] = ACTIONS(3090), + [anon_sym_LBRACK2] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3090), + [anon_sym_LT_LT] = ACTIONS(3090), + [anon_sym_GT_GT] = ACTIONS(3092), + [anon_sym_GT_GT_GT] = ACTIONS(3090), + [anon_sym_AMP_CARET] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3092), + [sym_none] = ACTIONS(3092), + [sym_true] = ACTIONS(3092), + [sym_false] = ACTIONS(3092), + [sym_nil] = ACTIONS(3092), + [anon_sym_QMARK_DOT] = ACTIONS(3090), + [anon_sym_POUND_LBRACK] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_DOLLARif] = ACTIONS(3092), + [anon_sym_is] = ACTIONS(3092), + [anon_sym_BANGis] = ACTIONS(3090), + [anon_sym_in] = ACTIONS(3092), + [anon_sym_BANGin] = ACTIONS(3090), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_select] = ACTIONS(3092), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3092), + [anon_sym_sql] = ACTIONS(3092), + [sym_int_literal] = ACTIONS(3092), + [sym_float_literal] = ACTIONS(3090), + [sym_rune_literal] = ACTIONS(3090), + [anon_sym_AT] = ACTIONS(3092), + [anon_sym_shared] = ACTIONS(3092), + [anon_sym_map_LBRACK] = ACTIONS(3090), + [anon_sym_chan] = ACTIONS(3092), + [anon_sym_thread] = ACTIONS(3092), + [anon_sym_atomic] = ACTIONS(3092), + [sym___double_quote] = ACTIONS(3090), + [sym___single_quote] = ACTIONS(3090), + [sym___c_double_quote] = ACTIONS(3090), + [sym___c_single_quote] = ACTIONS(3090), + [sym___r_double_quote] = ACTIONS(3090), + [sym___r_single_quote] = ACTIONS(3090), }, [1355] = { - [sym_identifier] = ACTIONS(3137), + [sym_identifier] = ACTIONS(3301), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_as] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_fn] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3301), + [anon_sym_EQ_EQ] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_LT_EQ] = ACTIONS(3299), + [anon_sym_GT_EQ] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_RBRACK] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3301), + [anon_sym_mut] = ACTIONS(3301), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_go] = ACTIONS(3301), + [anon_sym_spawn] = ACTIONS(3301), + [anon_sym_json_DOTdecode] = ACTIONS(3299), + [anon_sym_LBRACK2] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3301), + [anon_sym_GT_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_CARET] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3301), + [sym_none] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_nil] = ACTIONS(3301), + [anon_sym_QMARK_DOT] = ACTIONS(3299), + [anon_sym_POUND_LBRACK] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_DOLLARif] = ACTIONS(3301), + [anon_sym_is] = ACTIONS(3301), + [anon_sym_BANGis] = ACTIONS(3299), + [anon_sym_in] = ACTIONS(3301), + [anon_sym_BANGin] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3301), + [anon_sym_select] = ACTIONS(3301), + [anon_sym_lock] = ACTIONS(3301), + [anon_sym_rlock] = ACTIONS(3301), + [anon_sym_unsafe] = ACTIONS(3301), + [anon_sym_sql] = ACTIONS(3301), + [sym_int_literal] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3299), + [sym_rune_literal] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_shared] = ACTIONS(3301), + [anon_sym_map_LBRACK] = ACTIONS(3299), + [anon_sym_chan] = ACTIONS(3301), + [anon_sym_thread] = ACTIONS(3301), + [anon_sym_atomic] = ACTIONS(3301), + [sym___double_quote] = ACTIONS(3299), + [sym___single_quote] = ACTIONS(3299), + [sym___c_double_quote] = ACTIONS(3299), + [sym___c_single_quote] = ACTIONS(3299), + [sym___r_double_quote] = ACTIONS(3299), + [sym___r_single_quote] = ACTIONS(3299), }, [1356] = { - [sym_identifier] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3222), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_COMMA] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3220), + [anon_sym_BANG_EQ] = ACTIONS(3220), + [anon_sym_LT_EQ] = ACTIONS(3220), + [anon_sym_GT_EQ] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_RBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_CARET] = ACTIONS(3220), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3220), + [anon_sym_LT_LT] = ACTIONS(3220), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3220), + [anon_sym_AMP_CARET] = ACTIONS(3220), + [anon_sym_AMP_AMP] = ACTIONS(3220), + [anon_sym_PIPE_PIPE] = ACTIONS(3220), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3220), + [anon_sym_POUND_LBRACK] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3220), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3220), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3220), + [sym_rune_literal] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3220), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3220), + [sym___single_quote] = ACTIONS(3220), + [sym___c_double_quote] = ACTIONS(3220), + [sym___c_single_quote] = ACTIONS(3220), + [sym___r_double_quote] = ACTIONS(3220), + [sym___r_single_quote] = ACTIONS(3220), }, [1357] = { - [sym_identifier] = ACTIONS(2802), + [sym_identifier] = ACTIONS(3309), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2802), - [anon_sym_as] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_fn] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_RBRACK] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_mut] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_go] = ACTIONS(2802), - [anon_sym_spawn] = ACTIONS(2802), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2802), - [sym_none] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_nil] = ACTIONS(2802), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_DOLLARif] = ACTIONS(2802), - [anon_sym_is] = ACTIONS(2802), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2802), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2802), - [anon_sym_select] = ACTIONS(2802), - [anon_sym_lock] = ACTIONS(2802), - [anon_sym_rlock] = ACTIONS(2802), - [anon_sym_unsafe] = ACTIONS(2802), - [anon_sym_sql] = ACTIONS(2802), - [sym_int_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2802), - [anon_sym_shared] = ACTIONS(2802), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2802), - [anon_sym_thread] = ACTIONS(2802), - [anon_sym_atomic] = ACTIONS(2802), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_as] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_fn] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3307), + [anon_sym_RBRACK] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3309), + [anon_sym_mut] = ACTIONS(3309), + [anon_sym_COLON] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_QMARK] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_go] = ACTIONS(3309), + [anon_sym_spawn] = ACTIONS(3309), + [anon_sym_json_DOTdecode] = ACTIONS(3307), + [anon_sym_LBRACK2] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_LT_DASH] = ACTIONS(3307), + [anon_sym_LT_LT] = ACTIONS(3307), + [anon_sym_GT_GT] = ACTIONS(3309), + [anon_sym_GT_GT_GT] = ACTIONS(3307), + [anon_sym_AMP_CARET] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_or] = ACTIONS(3309), + [sym_none] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_nil] = ACTIONS(3309), + [anon_sym_QMARK_DOT] = ACTIONS(3307), + [anon_sym_POUND_LBRACK] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_DOLLARif] = ACTIONS(3309), + [anon_sym_is] = ACTIONS(3309), + [anon_sym_BANGis] = ACTIONS(3307), + [anon_sym_in] = ACTIONS(3309), + [anon_sym_BANGin] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3309), + [anon_sym_select] = ACTIONS(3309), + [anon_sym_lock] = ACTIONS(3309), + [anon_sym_rlock] = ACTIONS(3309), + [anon_sym_unsafe] = ACTIONS(3309), + [anon_sym_sql] = ACTIONS(3309), + [sym_int_literal] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3307), + [sym_rune_literal] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_shared] = ACTIONS(3309), + [anon_sym_map_LBRACK] = ACTIONS(3307), + [anon_sym_chan] = ACTIONS(3309), + [anon_sym_thread] = ACTIONS(3309), + [anon_sym_atomic] = ACTIONS(3309), + [sym___double_quote] = ACTIONS(3307), + [sym___single_quote] = ACTIONS(3307), + [sym___c_double_quote] = ACTIONS(3307), + [sym___c_single_quote] = ACTIONS(3307), + [sym___r_double_quote] = ACTIONS(3307), + [sym___r_single_quote] = ACTIONS(3307), }, [1358] = { - [sym_identifier] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3261), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3042), - [anon_sym_as] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(3040), - [anon_sym_COMMA] = ACTIONS(3040), - [anon_sym_LPAREN] = ACTIONS(3040), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(3040), - [anon_sym_SLASH] = ACTIONS(3042), - [anon_sym_PERCENT] = ACTIONS(3040), - [anon_sym_LT] = ACTIONS(3042), - [anon_sym_GT] = ACTIONS(3042), - [anon_sym_EQ_EQ] = ACTIONS(3040), - [anon_sym_BANG_EQ] = ACTIONS(3040), - [anon_sym_LT_EQ] = ACTIONS(3040), - [anon_sym_GT_EQ] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(3040), - [anon_sym_RBRACK] = ACTIONS(3040), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_PLUS_PLUS] = ACTIONS(3040), - [anon_sym_DASH_DASH] = ACTIONS(3040), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), - [anon_sym_json_DOTdecode] = ACTIONS(3040), - [anon_sym_LBRACK2] = ACTIONS(3042), - [anon_sym_TILDE] = ACTIONS(3040), - [anon_sym_CARET] = ACTIONS(3040), - [anon_sym_AMP] = ACTIONS(3042), - [anon_sym_LT_DASH] = ACTIONS(3040), - [anon_sym_LT_LT] = ACTIONS(3040), - [anon_sym_GT_GT] = ACTIONS(3042), - [anon_sym_GT_GT_GT] = ACTIONS(3040), - [anon_sym_AMP_CARET] = ACTIONS(3040), - [anon_sym_AMP_AMP] = ACTIONS(3040), - [anon_sym_PIPE_PIPE] = ACTIONS(3040), - [anon_sym_or] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_QMARK_DOT] = ACTIONS(3040), - [anon_sym_POUND_LBRACK] = ACTIONS(3040), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_is] = ACTIONS(3042), - [anon_sym_BANGis] = ACTIONS(3040), - [anon_sym_in] = ACTIONS(3042), - [anon_sym_BANGin] = ACTIONS(3040), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), - [sym_float_literal] = ACTIONS(3040), - [sym_rune_literal] = ACTIONS(3040), - [anon_sym_AT] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), - [anon_sym_map_LBRACK] = ACTIONS(3040), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [sym___double_quote] = ACTIONS(3040), - [sym___single_quote] = ACTIONS(3040), - [sym___c_double_quote] = ACTIONS(3040), - [sym___c_single_quote] = ACTIONS(3040), - [sym___r_double_quote] = ACTIONS(3040), - [sym___r_single_quote] = ACTIONS(3040), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3259), + [anon_sym_BANG_EQ] = ACTIONS(3259), + [anon_sym_LT_EQ] = ACTIONS(3259), + [anon_sym_GT_EQ] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_COLON] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3259), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_CARET] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3259), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3259), + [anon_sym_AMP_CARET] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_PIPE_PIPE] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3259), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3259), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3259), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3259), + [sym_rune_literal] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3259), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3259), + [sym___single_quote] = ACTIONS(3259), + [sym___c_double_quote] = ACTIONS(3259), + [sym___c_single_quote] = ACTIONS(3259), + [sym___r_double_quote] = ACTIONS(3259), + [sym___r_single_quote] = ACTIONS(3259), }, [1359] = { - [sym_identifier] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3096), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_PIPE] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_RBRACK] = ACTIONS(3094), + [anon_sym_struct] = ACTIONS(3096), + [anon_sym_mut] = ACTIONS(3096), + [anon_sym_COLON] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3096), + [anon_sym_json_DOTdecode] = ACTIONS(3094), + [anon_sym_LBRACK2] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_CARET] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3094), + [anon_sym_LT_LT] = ACTIONS(3094), + [anon_sym_GT_GT] = ACTIONS(3096), + [anon_sym_GT_GT_GT] = ACTIONS(3094), + [anon_sym_AMP_CARET] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_or] = ACTIONS(3096), + [sym_none] = ACTIONS(3096), + [sym_true] = ACTIONS(3096), + [sym_false] = ACTIONS(3096), + [sym_nil] = ACTIONS(3096), + [anon_sym_QMARK_DOT] = ACTIONS(3094), + [anon_sym_POUND_LBRACK] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_DOLLARif] = ACTIONS(3096), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3094), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_BANGin] = ACTIONS(3094), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3096), + [anon_sym_rlock] = ACTIONS(3096), + [anon_sym_unsafe] = ACTIONS(3096), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3096), + [sym_float_literal] = ACTIONS(3094), + [sym_rune_literal] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3096), + [anon_sym_shared] = ACTIONS(3096), + [anon_sym_map_LBRACK] = ACTIONS(3094), + [anon_sym_chan] = ACTIONS(3096), + [anon_sym_thread] = ACTIONS(3096), + [anon_sym_atomic] = ACTIONS(3096), + [sym___double_quote] = ACTIONS(3094), + [sym___single_quote] = ACTIONS(3094), + [sym___c_double_quote] = ACTIONS(3094), + [sym___c_single_quote] = ACTIONS(3094), + [sym___r_double_quote] = ACTIONS(3094), + [sym___r_single_quote] = ACTIONS(3094), }, [1360] = { - [sym_identifier] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3273), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_as] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3044), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_LPAREN] = ACTIONS(3044), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3044), - [anon_sym_SLASH] = ACTIONS(3046), - [anon_sym_PERCENT] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3046), - [anon_sym_GT] = ACTIONS(3046), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_RBRACK] = ACTIONS(3044), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_PLUS_PLUS] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3044), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3044), - [anon_sym_CARET] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3044), - [anon_sym_GT_GT] = ACTIONS(3046), - [anon_sym_GT_GT_GT] = ACTIONS(3044), - [anon_sym_AMP_CARET] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_or] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_QMARK_DOT] = ACTIONS(3044), - [anon_sym_POUND_LBRACK] = ACTIONS(3044), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_is] = ACTIONS(3046), - [anon_sym_BANGis] = ACTIONS(3044), - [anon_sym_in] = ACTIONS(3046), - [anon_sym_BANGin] = ACTIONS(3044), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3044), - [sym_rune_literal] = ACTIONS(3044), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3044), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3044), - [sym___single_quote] = ACTIONS(3044), - [sym___c_double_quote] = ACTIONS(3044), - [sym___c_single_quote] = ACTIONS(3044), - [sym___r_double_quote] = ACTIONS(3044), - [sym___r_single_quote] = ACTIONS(3044), + [anon_sym_DOT] = ACTIONS(3273), + [anon_sym_as] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_COMMA] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_PIPE] = ACTIONS(3273), + [anon_sym_fn] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_PERCENT] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_GT] = ACTIONS(3273), + [anon_sym_EQ_EQ] = ACTIONS(3271), + [anon_sym_BANG_EQ] = ACTIONS(3271), + [anon_sym_LT_EQ] = ACTIONS(3271), + [anon_sym_GT_EQ] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_RBRACK] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3273), + [anon_sym_mut] = ACTIONS(3273), + [anon_sym_COLON] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), + [anon_sym_QMARK] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_go] = ACTIONS(3273), + [anon_sym_spawn] = ACTIONS(3273), + [anon_sym_json_DOTdecode] = ACTIONS(3271), + [anon_sym_LBRACK2] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_CARET] = ACTIONS(3271), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_LT_DASH] = ACTIONS(3271), + [anon_sym_LT_LT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(3273), + [anon_sym_GT_GT_GT] = ACTIONS(3271), + [anon_sym_AMP_CARET] = ACTIONS(3271), + [anon_sym_AMP_AMP] = ACTIONS(3271), + [anon_sym_PIPE_PIPE] = ACTIONS(3271), + [anon_sym_or] = ACTIONS(3273), + [sym_none] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_nil] = ACTIONS(3273), + [anon_sym_QMARK_DOT] = ACTIONS(3271), + [anon_sym_POUND_LBRACK] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_DOLLARif] = ACTIONS(3273), + [anon_sym_is] = ACTIONS(3273), + [anon_sym_BANGis] = ACTIONS(3271), + [anon_sym_in] = ACTIONS(3273), + [anon_sym_BANGin] = ACTIONS(3271), + [anon_sym_match] = ACTIONS(3273), + [anon_sym_select] = ACTIONS(3273), + [anon_sym_lock] = ACTIONS(3273), + [anon_sym_rlock] = ACTIONS(3273), + [anon_sym_unsafe] = ACTIONS(3273), + [anon_sym_sql] = ACTIONS(3273), + [sym_int_literal] = ACTIONS(3273), + [sym_float_literal] = ACTIONS(3271), + [sym_rune_literal] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_shared] = ACTIONS(3273), + [anon_sym_map_LBRACK] = ACTIONS(3271), + [anon_sym_chan] = ACTIONS(3273), + [anon_sym_thread] = ACTIONS(3273), + [anon_sym_atomic] = ACTIONS(3273), + [sym___double_quote] = ACTIONS(3271), + [sym___single_quote] = ACTIONS(3271), + [sym___c_double_quote] = ACTIONS(3271), + [sym___c_single_quote] = ACTIONS(3271), + [sym___r_double_quote] = ACTIONS(3271), + [sym___r_single_quote] = ACTIONS(3271), }, [1361] = { - [sym_identifier] = ACTIONS(3078), + [sym_identifier] = ACTIONS(3341), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3078), - [anon_sym_as] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3076), - [anon_sym_COMMA] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3076), - [anon_sym_PIPE] = ACTIONS(3078), - [anon_sym_fn] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_STAR] = ACTIONS(3076), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_PERCENT] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_GT] = ACTIONS(3078), - [anon_sym_EQ_EQ] = ACTIONS(3076), - [anon_sym_BANG_EQ] = ACTIONS(3076), - [anon_sym_LT_EQ] = ACTIONS(3076), - [anon_sym_GT_EQ] = ACTIONS(3076), - [anon_sym_LBRACK] = ACTIONS(3076), - [anon_sym_RBRACK] = ACTIONS(3076), - [anon_sym_struct] = ACTIONS(3078), - [anon_sym_mut] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3076), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_QMARK] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_go] = ACTIONS(3078), - [anon_sym_spawn] = ACTIONS(3078), - [anon_sym_json_DOTdecode] = ACTIONS(3076), - [anon_sym_LBRACK2] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3076), - [anon_sym_CARET] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_LT_DASH] = ACTIONS(3076), - [anon_sym_LT_LT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3078), - [anon_sym_GT_GT_GT] = ACTIONS(3076), - [anon_sym_AMP_CARET] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_or] = ACTIONS(3078), - [sym_none] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_nil] = ACTIONS(3078), - [anon_sym_QMARK_DOT] = ACTIONS(3076), - [anon_sym_POUND_LBRACK] = ACTIONS(3076), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_DOLLARif] = ACTIONS(3078), - [anon_sym_is] = ACTIONS(3078), - [anon_sym_BANGis] = ACTIONS(3076), - [anon_sym_in] = ACTIONS(3078), - [anon_sym_BANGin] = ACTIONS(3076), - [anon_sym_match] = ACTIONS(3078), - [anon_sym_select] = ACTIONS(3078), - [anon_sym_lock] = ACTIONS(3078), - [anon_sym_rlock] = ACTIONS(3078), - [anon_sym_unsafe] = ACTIONS(3078), - [anon_sym_sql] = ACTIONS(3078), - [sym_int_literal] = ACTIONS(3078), - [sym_float_literal] = ACTIONS(3076), - [sym_rune_literal] = ACTIONS(3076), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_shared] = ACTIONS(3078), - [anon_sym_map_LBRACK] = ACTIONS(3076), - [anon_sym_chan] = ACTIONS(3078), - [anon_sym_thread] = ACTIONS(3078), - [anon_sym_atomic] = ACTIONS(3078), - [sym___double_quote] = ACTIONS(3076), - [sym___single_quote] = ACTIONS(3076), - [sym___c_double_quote] = ACTIONS(3076), - [sym___c_single_quote] = ACTIONS(3076), - [sym___r_double_quote] = ACTIONS(3076), - [sym___r_single_quote] = ACTIONS(3076), + [anon_sym_DOT] = ACTIONS(3341), + [anon_sym_as] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3341), + [anon_sym_fn] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3339), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3339), + [anon_sym_BANG_EQ] = ACTIONS(3339), + [anon_sym_LT_EQ] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3339), + [anon_sym_RBRACK] = ACTIONS(3339), + [anon_sym_struct] = ACTIONS(3341), + [anon_sym_mut] = ACTIONS(3341), + [anon_sym_COLON] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3339), + [anon_sym_DASH_DASH] = ACTIONS(3339), + [anon_sym_QMARK] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_go] = ACTIONS(3341), + [anon_sym_spawn] = ACTIONS(3341), + [anon_sym_json_DOTdecode] = ACTIONS(3339), + [anon_sym_LBRACK2] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3339), + [anon_sym_CARET] = ACTIONS(3339), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_LT_DASH] = ACTIONS(3339), + [anon_sym_LT_LT] = ACTIONS(3339), + [anon_sym_GT_GT] = ACTIONS(3341), + [anon_sym_GT_GT_GT] = ACTIONS(3339), + [anon_sym_AMP_CARET] = ACTIONS(3339), + [anon_sym_AMP_AMP] = ACTIONS(3339), + [anon_sym_PIPE_PIPE] = ACTIONS(3339), + [anon_sym_or] = ACTIONS(3341), + [sym_none] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_nil] = ACTIONS(3341), + [anon_sym_QMARK_DOT] = ACTIONS(3339), + [anon_sym_POUND_LBRACK] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_DOLLARif] = ACTIONS(3341), + [anon_sym_is] = ACTIONS(3341), + [anon_sym_BANGis] = ACTIONS(3339), + [anon_sym_in] = ACTIONS(3341), + [anon_sym_BANGin] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3341), + [anon_sym_select] = ACTIONS(3341), + [anon_sym_lock] = ACTIONS(3341), + [anon_sym_rlock] = ACTIONS(3341), + [anon_sym_unsafe] = ACTIONS(3341), + [anon_sym_sql] = ACTIONS(3341), + [sym_int_literal] = ACTIONS(3341), + [sym_float_literal] = ACTIONS(3339), + [sym_rune_literal] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_shared] = ACTIONS(3341), + [anon_sym_map_LBRACK] = ACTIONS(3339), + [anon_sym_chan] = ACTIONS(3341), + [anon_sym_thread] = ACTIONS(3341), + [anon_sym_atomic] = ACTIONS(3341), + [sym___double_quote] = ACTIONS(3339), + [sym___single_quote] = ACTIONS(3339), + [sym___c_double_quote] = ACTIONS(3339), + [sym___c_single_quote] = ACTIONS(3339), + [sym___r_double_quote] = ACTIONS(3339), + [sym___r_single_quote] = ACTIONS(3339), }, [1362] = { - [sym_identifier] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3321), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_RBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3321), + [anon_sym_as] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_COMMA] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(3321), + [anon_sym_fn] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3319), + [anon_sym_BANG_EQ] = ACTIONS(3319), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_RBRACK] = ACTIONS(3319), + [anon_sym_struct] = ACTIONS(3321), + [anon_sym_mut] = ACTIONS(3321), + [anon_sym_COLON] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [anon_sym_QMARK] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_go] = ACTIONS(3321), + [anon_sym_spawn] = ACTIONS(3321), + [anon_sym_json_DOTdecode] = ACTIONS(3319), + [anon_sym_LBRACK2] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_LT_DASH] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3321), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3319), + [anon_sym_or] = ACTIONS(3321), + [sym_none] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_nil] = ACTIONS(3321), + [anon_sym_QMARK_DOT] = ACTIONS(3319), + [anon_sym_POUND_LBRACK] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_DOLLARif] = ACTIONS(3321), + [anon_sym_is] = ACTIONS(3321), + [anon_sym_BANGis] = ACTIONS(3319), + [anon_sym_in] = ACTIONS(3321), + [anon_sym_BANGin] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3321), + [anon_sym_select] = ACTIONS(3321), + [anon_sym_lock] = ACTIONS(3321), + [anon_sym_rlock] = ACTIONS(3321), + [anon_sym_unsafe] = ACTIONS(3321), + [anon_sym_sql] = ACTIONS(3321), + [sym_int_literal] = ACTIONS(3321), + [sym_float_literal] = ACTIONS(3319), + [sym_rune_literal] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_shared] = ACTIONS(3321), + [anon_sym_map_LBRACK] = ACTIONS(3319), + [anon_sym_chan] = ACTIONS(3321), + [anon_sym_thread] = ACTIONS(3321), + [anon_sym_atomic] = ACTIONS(3321), + [sym___double_quote] = ACTIONS(3319), + [sym___single_quote] = ACTIONS(3319), + [sym___c_double_quote] = ACTIONS(3319), + [sym___c_single_quote] = ACTIONS(3319), + [sym___r_double_quote] = ACTIONS(3319), + [sym___r_single_quote] = ACTIONS(3319), }, [1363] = { - [sym_identifier] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3313), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_as] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3183), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3183), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3183), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(3183), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [anon_sym_AT] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_COMMA] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3313), + [anon_sym_fn] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_GT] = ACTIONS(3313), + [anon_sym_EQ_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_RBRACK] = ACTIONS(3311), + [anon_sym_struct] = ACTIONS(3313), + [anon_sym_mut] = ACTIONS(3313), + [anon_sym_COLON] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_go] = ACTIONS(3313), + [anon_sym_spawn] = ACTIONS(3313), + [anon_sym_json_DOTdecode] = ACTIONS(3311), + [anon_sym_LBRACK2] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_LT_DASH] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3311), + [anon_sym_GT_GT] = ACTIONS(3313), + [anon_sym_GT_GT_GT] = ACTIONS(3311), + [anon_sym_AMP_CARET] = ACTIONS(3311), + [anon_sym_AMP_AMP] = ACTIONS(3311), + [anon_sym_PIPE_PIPE] = ACTIONS(3311), + [anon_sym_or] = ACTIONS(3313), + [sym_none] = ACTIONS(3313), + [sym_true] = ACTIONS(3313), + [sym_false] = ACTIONS(3313), + [sym_nil] = ACTIONS(3313), + [anon_sym_QMARK_DOT] = ACTIONS(3311), + [anon_sym_POUND_LBRACK] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_DOLLARif] = ACTIONS(3313), + [anon_sym_is] = ACTIONS(3313), + [anon_sym_BANGis] = ACTIONS(3311), + [anon_sym_in] = ACTIONS(3313), + [anon_sym_BANGin] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_rlock] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_sql] = ACTIONS(3313), + [sym_int_literal] = ACTIONS(3313), + [sym_float_literal] = ACTIONS(3311), + [sym_rune_literal] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3313), + [anon_sym_shared] = ACTIONS(3313), + [anon_sym_map_LBRACK] = ACTIONS(3311), + [anon_sym_chan] = ACTIONS(3313), + [anon_sym_thread] = ACTIONS(3313), + [anon_sym_atomic] = ACTIONS(3313), + [sym___double_quote] = ACTIONS(3311), + [sym___single_quote] = ACTIONS(3311), + [sym___c_double_quote] = ACTIONS(3311), + [sym___c_single_quote] = ACTIONS(3311), + [sym___r_double_quote] = ACTIONS(3311), + [sym___r_single_quote] = ACTIONS(3311), }, [1364] = { - [sym_identifier] = ACTIONS(2798), + [sym_identifier] = ACTIONS(3325), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2798), - [anon_sym_as] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_fn] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_GT] = ACTIONS(2798), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_RBRACK] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_mut] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_go] = ACTIONS(2798), - [anon_sym_spawn] = ACTIONS(2798), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2798), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2798), - [sym_none] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_nil] = ACTIONS(2798), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_DOLLARif] = ACTIONS(2798), - [anon_sym_is] = ACTIONS(2798), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2798), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2798), - [anon_sym_select] = ACTIONS(2798), - [anon_sym_lock] = ACTIONS(2798), - [anon_sym_rlock] = ACTIONS(2798), - [anon_sym_unsafe] = ACTIONS(2798), - [anon_sym_sql] = ACTIONS(2798), - [sym_int_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2798), - [anon_sym_shared] = ACTIONS(2798), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2798), - [anon_sym_thread] = ACTIONS(2798), - [anon_sym_atomic] = ACTIONS(2798), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), + [anon_sym_DOT] = ACTIONS(3325), + [anon_sym_as] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_COMMA] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_PIPE] = ACTIONS(3325), + [anon_sym_fn] = ACTIONS(3325), + [anon_sym_PLUS] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3323), + [anon_sym_BANG_EQ] = ACTIONS(3323), + [anon_sym_LT_EQ] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_RBRACK] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3325), + [anon_sym_mut] = ACTIONS(3325), + [anon_sym_COLON] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [anon_sym_QMARK] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_go] = ACTIONS(3325), + [anon_sym_spawn] = ACTIONS(3325), + [anon_sym_json_DOTdecode] = ACTIONS(3323), + [anon_sym_LBRACK2] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_CARET] = ACTIONS(3323), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_LT_DASH] = ACTIONS(3323), + [anon_sym_LT_LT] = ACTIONS(3323), + [anon_sym_GT_GT] = ACTIONS(3325), + [anon_sym_GT_GT_GT] = ACTIONS(3323), + [anon_sym_AMP_CARET] = ACTIONS(3323), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(3323), + [anon_sym_or] = ACTIONS(3325), + [sym_none] = ACTIONS(3325), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_nil] = ACTIONS(3325), + [anon_sym_QMARK_DOT] = ACTIONS(3323), + [anon_sym_POUND_LBRACK] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3325), + [anon_sym_DOLLARif] = ACTIONS(3325), + [anon_sym_is] = ACTIONS(3325), + [anon_sym_BANGis] = ACTIONS(3323), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3325), + [anon_sym_select] = ACTIONS(3325), + [anon_sym_lock] = ACTIONS(3325), + [anon_sym_rlock] = ACTIONS(3325), + [anon_sym_unsafe] = ACTIONS(3325), + [anon_sym_sql] = ACTIONS(3325), + [sym_int_literal] = ACTIONS(3325), + [sym_float_literal] = ACTIONS(3323), + [sym_rune_literal] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3325), + [anon_sym_shared] = ACTIONS(3325), + [anon_sym_map_LBRACK] = ACTIONS(3323), + [anon_sym_chan] = ACTIONS(3325), + [anon_sym_thread] = ACTIONS(3325), + [anon_sym_atomic] = ACTIONS(3325), + [sym___double_quote] = ACTIONS(3323), + [sym___single_quote] = ACTIONS(3323), + [sym___c_double_quote] = ACTIONS(3323), + [sym___c_single_quote] = ACTIONS(3323), + [sym___r_double_quote] = ACTIONS(3323), + [sym___r_single_quote] = ACTIONS(3323), }, [1365] = { - [sym_identifier] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3004), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3120), - [anon_sym_as] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_fn] = ACTIONS(3118), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3116), - [anon_sym_SLASH] = ACTIONS(3118), - [anon_sym_PERCENT] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_EQ_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3701), - [anon_sym_struct] = ACTIONS(3118), - [anon_sym_mut] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_go] = ACTIONS(3118), - [anon_sym_spawn] = ACTIONS(3118), - [anon_sym_json_DOTdecode] = ACTIONS(3116), - [anon_sym_LBRACK2] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3116), - [anon_sym_CARET] = ACTIONS(3116), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym_LT_DASH] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3116), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_GT_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_CARET] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_or] = ACTIONS(3118), - [sym_none] = ACTIONS(3118), - [sym_true] = ACTIONS(3118), - [sym_false] = ACTIONS(3118), - [sym_nil] = ACTIONS(3118), - [anon_sym_QMARK_DOT] = ACTIONS(3116), - [anon_sym_POUND_LBRACK] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3118), - [anon_sym_DOLLARif] = ACTIONS(3118), - [anon_sym_is] = ACTIONS(3118), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_match] = ACTIONS(3118), - [anon_sym_select] = ACTIONS(3118), - [anon_sym_lock] = ACTIONS(3118), - [anon_sym_rlock] = ACTIONS(3118), - [anon_sym_unsafe] = ACTIONS(3118), - [anon_sym_sql] = ACTIONS(3118), - [sym_int_literal] = ACTIONS(3118), - [sym_float_literal] = ACTIONS(3116), - [sym_rune_literal] = ACTIONS(3116), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_shared] = ACTIONS(3118), - [anon_sym_map_LBRACK] = ACTIONS(3116), - [anon_sym_chan] = ACTIONS(3118), - [anon_sym_thread] = ACTIONS(3118), - [anon_sym_atomic] = ACTIONS(3118), - [sym___double_quote] = ACTIONS(3116), - [sym___single_quote] = ACTIONS(3116), - [sym___c_double_quote] = ACTIONS(3116), - [sym___c_single_quote] = ACTIONS(3116), - [sym___r_double_quote] = ACTIONS(3116), - [sym___r_single_quote] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3004), + [anon_sym_as] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(3002), + [anon_sym_RBRACE] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3004), + [anon_sym_fn] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_SLASH] = ACTIONS(3004), + [anon_sym_PERCENT] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3004), + [anon_sym_GT] = ACTIONS(3004), + [anon_sym_EQ_EQ] = ACTIONS(3002), + [anon_sym_BANG_EQ] = ACTIONS(3002), + [anon_sym_LT_EQ] = ACTIONS(3002), + [anon_sym_GT_EQ] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3002), + [anon_sym_RBRACK] = ACTIONS(3002), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_mut] = ACTIONS(3004), + [anon_sym_COLON] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3004), + [anon_sym_go] = ACTIONS(3004), + [anon_sym_spawn] = ACTIONS(3004), + [anon_sym_json_DOTdecode] = ACTIONS(3002), + [anon_sym_LBRACK2] = ACTIONS(3004), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_CARET] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_LT_DASH] = ACTIONS(3002), + [anon_sym_LT_LT] = ACTIONS(3002), + [anon_sym_GT_GT] = ACTIONS(3004), + [anon_sym_GT_GT_GT] = ACTIONS(3002), + [anon_sym_AMP_CARET] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_PIPE_PIPE] = ACTIONS(3002), + [anon_sym_or] = ACTIONS(3004), + [sym_none] = ACTIONS(3004), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [sym_nil] = ACTIONS(3004), + [anon_sym_QMARK_DOT] = ACTIONS(3002), + [anon_sym_POUND_LBRACK] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_DOLLARif] = ACTIONS(3004), + [anon_sym_is] = ACTIONS(3004), + [anon_sym_BANGis] = ACTIONS(3002), + [anon_sym_in] = ACTIONS(3004), + [anon_sym_BANGin] = ACTIONS(3002), + [anon_sym_match] = ACTIONS(3004), + [anon_sym_select] = ACTIONS(3004), + [anon_sym_lock] = ACTIONS(3004), + [anon_sym_rlock] = ACTIONS(3004), + [anon_sym_unsafe] = ACTIONS(3004), + [anon_sym_sql] = ACTIONS(3004), + [sym_int_literal] = ACTIONS(3004), + [sym_float_literal] = ACTIONS(3002), + [sym_rune_literal] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3004), + [anon_sym_shared] = ACTIONS(3004), + [anon_sym_map_LBRACK] = ACTIONS(3002), + [anon_sym_chan] = ACTIONS(3004), + [anon_sym_thread] = ACTIONS(3004), + [anon_sym_atomic] = ACTIONS(3004), + [sym___double_quote] = ACTIONS(3002), + [sym___single_quote] = ACTIONS(3002), + [sym___c_double_quote] = ACTIONS(3002), + [sym___c_single_quote] = ACTIONS(3002), + [sym___r_double_quote] = ACTIONS(3002), + [sym___r_single_quote] = ACTIONS(3002), }, [1366] = { - [sym_identifier] = ACTIONS(3175), + [sym_identifier] = ACTIONS(2914), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2912), + [anon_sym_LT_EQ] = ACTIONS(2912), + [anon_sym_GT_EQ] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_RBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2912), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2912), + [anon_sym_CARET] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_LT_LT] = ACTIONS(2912), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2912), + [anon_sym_AMP_CARET] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2912), + [anon_sym_POUND_LBRACK] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2912), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2912), + [sym_rune_literal] = ACTIONS(2912), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2912), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2912), + [sym___single_quote] = ACTIONS(2912), + [sym___c_double_quote] = ACTIONS(2912), + [sym___c_single_quote] = ACTIONS(2912), + [sym___r_double_quote] = ACTIONS(2912), + [sym___r_single_quote] = ACTIONS(2912), }, [1367] = { - [sym_identifier] = ACTIONS(2784), + [sym_identifier] = ACTIONS(3297), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_RBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2786), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2786), - [anon_sym_POUND_LBRACK] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_as] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3297), + [anon_sym_EQ_EQ] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_LT_EQ] = ACTIONS(3295), + [anon_sym_GT_EQ] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_RBRACK] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3295), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_GT_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_CARET] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_QMARK_DOT] = ACTIONS(3295), + [anon_sym_POUND_LBRACK] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_is] = ACTIONS(3297), + [anon_sym_BANGis] = ACTIONS(3295), + [anon_sym_in] = ACTIONS(3297), + [anon_sym_BANGin] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3295), + [sym_rune_literal] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [sym___double_quote] = ACTIONS(3295), + [sym___single_quote] = ACTIONS(3295), + [sym___c_double_quote] = ACTIONS(3295), + [sym___c_single_quote] = ACTIONS(3295), + [sym___r_double_quote] = ACTIONS(3295), + [sym___r_single_quote] = ACTIONS(3295), }, [1368] = { - [sym_identifier] = ACTIONS(2878), + [sym_identifier] = ACTIONS(3156), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2878), - [anon_sym_as] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_fn] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_GT] = ACTIONS(2878), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_RBRACK] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2878), - [anon_sym_mut] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_go] = ACTIONS(2878), - [anon_sym_spawn] = ACTIONS(2878), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2878), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2878), - [sym_none] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_nil] = ACTIONS(2878), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_DOLLARif] = ACTIONS(2878), - [anon_sym_is] = ACTIONS(2878), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2878), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2878), - [anon_sym_select] = ACTIONS(2878), - [anon_sym_lock] = ACTIONS(2878), - [anon_sym_rlock] = ACTIONS(2878), - [anon_sym_unsafe] = ACTIONS(2878), - [anon_sym_sql] = ACTIONS(2878), - [sym_int_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2878), - [anon_sym_shared] = ACTIONS(2878), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2878), - [anon_sym_thread] = ACTIONS(2878), - [anon_sym_atomic] = ACTIONS(2878), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), + [anon_sym_DOT] = ACTIONS(3156), + [anon_sym_as] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3156), + [anon_sym_fn] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_GT] = ACTIONS(3156), + [anon_sym_EQ_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_mut] = ACTIONS(3156), + [anon_sym_COLON] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3156), + [anon_sym_json_DOTdecode] = ACTIONS(3154), + [anon_sym_LBRACK2] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_CARET] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_LT_LT] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3156), + [anon_sym_GT_GT_GT] = ACTIONS(3154), + [anon_sym_AMP_CARET] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_or] = ACTIONS(3156), + [sym_none] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_nil] = ACTIONS(3156), + [anon_sym_QMARK_DOT] = ACTIONS(3154), + [anon_sym_POUND_LBRACK] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_DOLLARif] = ACTIONS(3156), + [anon_sym_is] = ACTIONS(3156), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3156), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3156), + [anon_sym_select] = ACTIONS(3156), + [anon_sym_lock] = ACTIONS(3156), + [anon_sym_rlock] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(3156), + [anon_sym_sql] = ACTIONS(3156), + [sym_int_literal] = ACTIONS(3156), + [sym_float_literal] = ACTIONS(3154), + [sym_rune_literal] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_shared] = ACTIONS(3156), + [anon_sym_map_LBRACK] = ACTIONS(3154), + [anon_sym_chan] = ACTIONS(3156), + [anon_sym_thread] = ACTIONS(3156), + [anon_sym_atomic] = ACTIONS(3156), + [sym___double_quote] = ACTIONS(3154), + [sym___single_quote] = ACTIONS(3154), + [sym___c_double_quote] = ACTIONS(3154), + [sym___c_single_quote] = ACTIONS(3154), + [sym___r_double_quote] = ACTIONS(3154), + [sym___r_single_quote] = ACTIONS(3154), }, [1369] = { - [sym_identifier] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3008), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3086), - [anon_sym_as] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3084), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_fn] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_SLASH] = ACTIONS(3086), - [anon_sym_PERCENT] = ACTIONS(3084), - [anon_sym_LT] = ACTIONS(3086), - [anon_sym_GT] = ACTIONS(3086), - [anon_sym_EQ_EQ] = ACTIONS(3084), - [anon_sym_BANG_EQ] = ACTIONS(3084), - [anon_sym_LT_EQ] = ACTIONS(3084), - [anon_sym_GT_EQ] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(3084), - [anon_sym_RBRACK] = ACTIONS(3084), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_mut] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3084), - [anon_sym_DASH_DASH] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3086), - [anon_sym_spawn] = ACTIONS(3086), - [anon_sym_json_DOTdecode] = ACTIONS(3084), - [anon_sym_LBRACK2] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_CARET] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_LT_DASH] = ACTIONS(3084), - [anon_sym_LT_LT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(3086), - [anon_sym_GT_GT_GT] = ACTIONS(3084), - [anon_sym_AMP_CARET] = ACTIONS(3084), - [anon_sym_AMP_AMP] = ACTIONS(3084), - [anon_sym_PIPE_PIPE] = ACTIONS(3084), - [anon_sym_or] = ACTIONS(3086), - [sym_none] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_nil] = ACTIONS(3086), - [anon_sym_QMARK_DOT] = ACTIONS(3084), - [anon_sym_POUND_LBRACK] = ACTIONS(3084), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_DOLLARif] = ACTIONS(3086), - [anon_sym_is] = ACTIONS(3086), - [anon_sym_BANGis] = ACTIONS(3084), - [anon_sym_in] = ACTIONS(3086), - [anon_sym_BANGin] = ACTIONS(3084), - [anon_sym_match] = ACTIONS(3086), - [anon_sym_select] = ACTIONS(3086), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(3086), - [anon_sym_sql] = ACTIONS(3086), - [sym_int_literal] = ACTIONS(3086), - [sym_float_literal] = ACTIONS(3084), - [sym_rune_literal] = ACTIONS(3084), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_shared] = ACTIONS(3086), - [anon_sym_map_LBRACK] = ACTIONS(3084), - [anon_sym_chan] = ACTIONS(3086), - [anon_sym_thread] = ACTIONS(3086), - [anon_sym_atomic] = ACTIONS(3086), - [sym___double_quote] = ACTIONS(3084), - [sym___single_quote] = ACTIONS(3084), - [sym___c_double_quote] = ACTIONS(3084), - [sym___c_single_quote] = ACTIONS(3084), - [sym___r_double_quote] = ACTIONS(3084), - [sym___r_single_quote] = ACTIONS(3084), + [anon_sym_DOT] = ACTIONS(3008), + [anon_sym_as] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_COMMA] = ACTIONS(3006), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_fn] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_PERCENT] = ACTIONS(3006), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_LT_EQ] = ACTIONS(3006), + [anon_sym_GT_EQ] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3006), + [anon_sym_RBRACK] = ACTIONS(3006), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_mut] = ACTIONS(3008), + [anon_sym_COLON] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_QMARK] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_go] = ACTIONS(3008), + [anon_sym_spawn] = ACTIONS(3008), + [anon_sym_json_DOTdecode] = ACTIONS(3006), + [anon_sym_LBRACK2] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_CARET] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT_DASH] = ACTIONS(3006), + [anon_sym_LT_LT] = ACTIONS(3006), + [anon_sym_GT_GT] = ACTIONS(3008), + [anon_sym_GT_GT_GT] = ACTIONS(3006), + [anon_sym_AMP_CARET] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_PIPE_PIPE] = ACTIONS(3006), + [anon_sym_or] = ACTIONS(3008), + [sym_none] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_nil] = ACTIONS(3008), + [anon_sym_QMARK_DOT] = ACTIONS(3006), + [anon_sym_POUND_LBRACK] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_DOLLARif] = ACTIONS(3008), + [anon_sym_is] = ACTIONS(3008), + [anon_sym_BANGis] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(3008), + [anon_sym_BANGin] = ACTIONS(3006), + [anon_sym_match] = ACTIONS(3008), + [anon_sym_select] = ACTIONS(3008), + [anon_sym_lock] = ACTIONS(3008), + [anon_sym_rlock] = ACTIONS(3008), + [anon_sym_unsafe] = ACTIONS(3008), + [anon_sym_sql] = ACTIONS(3008), + [sym_int_literal] = ACTIONS(3008), + [sym_float_literal] = ACTIONS(3006), + [sym_rune_literal] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_shared] = ACTIONS(3008), + [anon_sym_map_LBRACK] = ACTIONS(3006), + [anon_sym_chan] = ACTIONS(3008), + [anon_sym_thread] = ACTIONS(3008), + [anon_sym_atomic] = ACTIONS(3008), + [sym___double_quote] = ACTIONS(3006), + [sym___single_quote] = ACTIONS(3006), + [sym___c_double_quote] = ACTIONS(3006), + [sym___c_single_quote] = ACTIONS(3006), + [sym___r_double_quote] = ACTIONS(3006), + [sym___r_single_quote] = ACTIONS(3006), }, [1370] = { - [sym_identifier] = ACTIONS(2906), + [sym_identifier] = ACTIONS(3036), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2906), - [anon_sym_as] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_STAR] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_GT] = ACTIONS(2906), - [anon_sym_EQ_EQ] = ACTIONS(2904), - [anon_sym_BANG_EQ] = ACTIONS(2904), - [anon_sym_LT_EQ] = ACTIONS(2904), - [anon_sym_GT_EQ] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_RBRACK] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2906), - [anon_sym_mut] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_go] = ACTIONS(2906), - [anon_sym_spawn] = ACTIONS(2906), - [anon_sym_json_DOTdecode] = ACTIONS(2904), - [anon_sym_LBRACK2] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_CARET] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_LT_DASH] = ACTIONS(2904), - [anon_sym_LT_LT] = ACTIONS(2904), - [anon_sym_GT_GT] = ACTIONS(2906), - [anon_sym_GT_GT_GT] = ACTIONS(2904), - [anon_sym_AMP_CARET] = ACTIONS(2904), - [anon_sym_AMP_AMP] = ACTIONS(2904), - [anon_sym_PIPE_PIPE] = ACTIONS(2904), - [anon_sym_or] = ACTIONS(2906), - [sym_none] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_nil] = ACTIONS(2906), - [anon_sym_QMARK_DOT] = ACTIONS(2904), - [anon_sym_POUND_LBRACK] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_DOLLARif] = ACTIONS(2906), - [anon_sym_is] = ACTIONS(2906), - [anon_sym_BANGis] = ACTIONS(2904), - [anon_sym_in] = ACTIONS(2906), - [anon_sym_BANGin] = ACTIONS(2904), - [anon_sym_match] = ACTIONS(2906), - [anon_sym_select] = ACTIONS(2906), - [anon_sym_lock] = ACTIONS(2906), - [anon_sym_rlock] = ACTIONS(2906), - [anon_sym_unsafe] = ACTIONS(2906), - [anon_sym_sql] = ACTIONS(2906), - [sym_int_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2904), - [sym_rune_literal] = ACTIONS(2904), - [anon_sym_AT] = ACTIONS(2906), - [anon_sym_shared] = ACTIONS(2906), - [anon_sym_map_LBRACK] = ACTIONS(2904), - [anon_sym_chan] = ACTIONS(2906), - [anon_sym_thread] = ACTIONS(2906), - [anon_sym_atomic] = ACTIONS(2906), - [sym___double_quote] = ACTIONS(2904), - [sym___single_quote] = ACTIONS(2904), - [sym___c_double_quote] = ACTIONS(2904), - [sym___c_single_quote] = ACTIONS(2904), - [sym___r_double_quote] = ACTIONS(2904), - [sym___r_single_quote] = ACTIONS(2904), + [anon_sym_DOT] = ACTIONS(3036), + [anon_sym_as] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_COMMA] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_fn] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3034), + [anon_sym_BANG_EQ] = ACTIONS(3034), + [anon_sym_LT_EQ] = ACTIONS(3034), + [anon_sym_GT_EQ] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3034), + [anon_sym_RBRACK] = ACTIONS(3034), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_mut] = ACTIONS(3036), + [anon_sym_COLON] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_QMARK] = ACTIONS(3036), + [anon_sym_BANG] = ACTIONS(3036), + [anon_sym_go] = ACTIONS(3036), + [anon_sym_spawn] = ACTIONS(3036), + [anon_sym_json_DOTdecode] = ACTIONS(3034), + [anon_sym_LBRACK2] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_CARET] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_LT_DASH] = ACTIONS(3034), + [anon_sym_LT_LT] = ACTIONS(3034), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_GT_GT_GT] = ACTIONS(3034), + [anon_sym_AMP_CARET] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3034), + [anon_sym_or] = ACTIONS(3036), + [sym_none] = ACTIONS(3036), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [sym_nil] = ACTIONS(3036), + [anon_sym_QMARK_DOT] = ACTIONS(3034), + [anon_sym_POUND_LBRACK] = ACTIONS(3034), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_DOLLARif] = ACTIONS(3036), + [anon_sym_is] = ACTIONS(3036), + [anon_sym_BANGis] = ACTIONS(3034), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_BANGin] = ACTIONS(3034), + [anon_sym_match] = ACTIONS(3036), + [anon_sym_select] = ACTIONS(3036), + [anon_sym_lock] = ACTIONS(3036), + [anon_sym_rlock] = ACTIONS(3036), + [anon_sym_unsafe] = ACTIONS(3036), + [anon_sym_sql] = ACTIONS(3036), + [sym_int_literal] = ACTIONS(3036), + [sym_float_literal] = ACTIONS(3034), + [sym_rune_literal] = ACTIONS(3034), + [anon_sym_AT] = ACTIONS(3036), + [anon_sym_shared] = ACTIONS(3036), + [anon_sym_map_LBRACK] = ACTIONS(3034), + [anon_sym_chan] = ACTIONS(3036), + [anon_sym_thread] = ACTIONS(3036), + [anon_sym_atomic] = ACTIONS(3036), + [sym___double_quote] = ACTIONS(3034), + [sym___single_quote] = ACTIONS(3034), + [sym___c_double_quote] = ACTIONS(3034), + [sym___c_single_quote] = ACTIONS(3034), + [sym___r_double_quote] = ACTIONS(3034), + [sym___r_single_quote] = ACTIONS(3034), }, [1371] = { - [sym_identifier] = ACTIONS(2918), + [sym_identifier] = ACTIONS(3012), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2918), - [anon_sym_as] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_fn] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_PERCENT] = ACTIONS(2916), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_GT] = ACTIONS(2918), - [anon_sym_EQ_EQ] = ACTIONS(2916), - [anon_sym_BANG_EQ] = ACTIONS(2916), - [anon_sym_LT_EQ] = ACTIONS(2916), - [anon_sym_GT_EQ] = ACTIONS(2916), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_RBRACK] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_mut] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_go] = ACTIONS(2918), - [anon_sym_spawn] = ACTIONS(2918), - [anon_sym_json_DOTdecode] = ACTIONS(2916), - [anon_sym_LBRACK2] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_CARET] = ACTIONS(2916), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_LT_DASH] = ACTIONS(2916), - [anon_sym_LT_LT] = ACTIONS(2916), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_GT_GT_GT] = ACTIONS(2916), - [anon_sym_AMP_CARET] = ACTIONS(2916), - [anon_sym_AMP_AMP] = ACTIONS(2916), - [anon_sym_PIPE_PIPE] = ACTIONS(2916), - [anon_sym_or] = ACTIONS(2918), - [sym_none] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_nil] = ACTIONS(2918), - [anon_sym_QMARK_DOT] = ACTIONS(2916), - [anon_sym_POUND_LBRACK] = ACTIONS(2916), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_DOLLARif] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_BANGis] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2918), - [anon_sym_BANGin] = ACTIONS(2916), - [anon_sym_match] = ACTIONS(2918), - [anon_sym_select] = ACTIONS(2918), - [anon_sym_lock] = ACTIONS(2918), - [anon_sym_rlock] = ACTIONS(2918), - [anon_sym_unsafe] = ACTIONS(2918), - [anon_sym_sql] = ACTIONS(2918), - [sym_int_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2916), - [sym_rune_literal] = ACTIONS(2916), - [anon_sym_AT] = ACTIONS(2918), - [anon_sym_shared] = ACTIONS(2918), - [anon_sym_map_LBRACK] = ACTIONS(2916), - [anon_sym_chan] = ACTIONS(2918), - [anon_sym_thread] = ACTIONS(2918), - [anon_sym_atomic] = ACTIONS(2918), - [sym___double_quote] = ACTIONS(2916), - [sym___single_quote] = ACTIONS(2916), - [sym___c_double_quote] = ACTIONS(2916), - [sym___c_single_quote] = ACTIONS(2916), - [sym___r_double_quote] = ACTIONS(2916), - [sym___r_single_quote] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(3012), + [anon_sym_as] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_COMMA] = ACTIONS(3010), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_PIPE] = ACTIONS(3012), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_SLASH] = ACTIONS(3012), + [anon_sym_PERCENT] = ACTIONS(3010), + [anon_sym_LT] = ACTIONS(3012), + [anon_sym_GT] = ACTIONS(3012), + [anon_sym_EQ_EQ] = ACTIONS(3010), + [anon_sym_BANG_EQ] = ACTIONS(3010), + [anon_sym_LT_EQ] = ACTIONS(3010), + [anon_sym_GT_EQ] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_RBRACK] = ACTIONS(3010), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_mut] = ACTIONS(3012), + [anon_sym_COLON] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_BANG] = ACTIONS(3012), + [anon_sym_go] = ACTIONS(3012), + [anon_sym_spawn] = ACTIONS(3012), + [anon_sym_json_DOTdecode] = ACTIONS(3010), + [anon_sym_LBRACK2] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_CARET] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_LT_DASH] = ACTIONS(3010), + [anon_sym_LT_LT] = ACTIONS(3010), + [anon_sym_GT_GT] = ACTIONS(3012), + [anon_sym_GT_GT_GT] = ACTIONS(3010), + [anon_sym_AMP_CARET] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_PIPE_PIPE] = ACTIONS(3010), + [anon_sym_or] = ACTIONS(3012), + [sym_none] = ACTIONS(3012), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_nil] = ACTIONS(3012), + [anon_sym_QMARK_DOT] = ACTIONS(3010), + [anon_sym_POUND_LBRACK] = ACTIONS(3010), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_DOLLARif] = ACTIONS(3012), + [anon_sym_is] = ACTIONS(3012), + [anon_sym_BANGis] = ACTIONS(3010), + [anon_sym_in] = ACTIONS(3012), + [anon_sym_BANGin] = ACTIONS(3010), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_select] = ACTIONS(3012), + [anon_sym_lock] = ACTIONS(3012), + [anon_sym_rlock] = ACTIONS(3012), + [anon_sym_unsafe] = ACTIONS(3012), + [anon_sym_sql] = ACTIONS(3012), + [sym_int_literal] = ACTIONS(3012), + [sym_float_literal] = ACTIONS(3010), + [sym_rune_literal] = ACTIONS(3010), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_shared] = ACTIONS(3012), + [anon_sym_map_LBRACK] = ACTIONS(3010), + [anon_sym_chan] = ACTIONS(3012), + [anon_sym_thread] = ACTIONS(3012), + [anon_sym_atomic] = ACTIONS(3012), + [sym___double_quote] = ACTIONS(3010), + [sym___single_quote] = ACTIONS(3010), + [sym___c_double_quote] = ACTIONS(3010), + [sym___c_single_quote] = ACTIONS(3010), + [sym___r_double_quote] = ACTIONS(3010), + [sym___r_single_quote] = ACTIONS(3010), }, [1372] = { - [sym_identifier] = ACTIONS(2938), + [sym_identifier] = ACTIONS(3126), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2938), - [anon_sym_as] = ACTIONS(2938), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_fn] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2938), - [anon_sym_DASH] = ACTIONS(2938), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_SLASH] = ACTIONS(2938), - [anon_sym_PERCENT] = ACTIONS(2936), - [anon_sym_LT] = ACTIONS(2938), - [anon_sym_GT] = ACTIONS(2938), - [anon_sym_EQ_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(2936), - [anon_sym_GT_EQ] = ACTIONS(2936), - [anon_sym_LBRACK] = ACTIONS(2936), - [anon_sym_RBRACK] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_mut] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_QMARK] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_go] = ACTIONS(2938), - [anon_sym_spawn] = ACTIONS(2938), - [anon_sym_json_DOTdecode] = ACTIONS(2936), - [anon_sym_LBRACK2] = ACTIONS(2938), - [anon_sym_TILDE] = ACTIONS(2936), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_LT_DASH] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2936), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_GT_GT_GT] = ACTIONS(2936), - [anon_sym_AMP_CARET] = ACTIONS(2936), - [anon_sym_AMP_AMP] = ACTIONS(2936), - [anon_sym_PIPE_PIPE] = ACTIONS(2936), - [anon_sym_or] = ACTIONS(2938), - [sym_none] = ACTIONS(2938), - [sym_true] = ACTIONS(2938), - [sym_false] = ACTIONS(2938), - [sym_nil] = ACTIONS(2938), - [anon_sym_QMARK_DOT] = ACTIONS(2936), - [anon_sym_POUND_LBRACK] = ACTIONS(2936), - [anon_sym_if] = ACTIONS(2938), - [anon_sym_DOLLARif] = ACTIONS(2938), - [anon_sym_is] = ACTIONS(2938), - [anon_sym_BANGis] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(2938), - [anon_sym_BANGin] = ACTIONS(2936), - [anon_sym_match] = ACTIONS(2938), - [anon_sym_select] = ACTIONS(2938), - [anon_sym_lock] = ACTIONS(2938), - [anon_sym_rlock] = ACTIONS(2938), - [anon_sym_unsafe] = ACTIONS(2938), - [anon_sym_sql] = ACTIONS(2938), - [sym_int_literal] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2936), - [sym_rune_literal] = ACTIONS(2936), - [anon_sym_AT] = ACTIONS(2938), - [anon_sym_shared] = ACTIONS(2938), - [anon_sym_map_LBRACK] = ACTIONS(2936), - [anon_sym_chan] = ACTIONS(2938), - [anon_sym_thread] = ACTIONS(2938), - [anon_sym_atomic] = ACTIONS(2938), - [sym___double_quote] = ACTIONS(2936), - [sym___single_quote] = ACTIONS(2936), - [sym___c_double_quote] = ACTIONS(2936), - [sym___c_single_quote] = ACTIONS(2936), - [sym___r_double_quote] = ACTIONS(2936), - [sym___r_single_quote] = ACTIONS(2936), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_as] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_fn] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3124), + [anon_sym_BANG_EQ] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_mut] = ACTIONS(3126), + [anon_sym_COLON] = ACTIONS(3124), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_QMARK] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3836), + [anon_sym_go] = ACTIONS(3126), + [anon_sym_spawn] = ACTIONS(3126), + [anon_sym_json_DOTdecode] = ACTIONS(3124), + [anon_sym_LBRACK2] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_CARET] = ACTIONS(3124), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_LT_DASH] = ACTIONS(3124), + [anon_sym_LT_LT] = ACTIONS(3124), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_GT_GT_GT] = ACTIONS(3124), + [anon_sym_AMP_CARET] = ACTIONS(3124), + [anon_sym_AMP_AMP] = ACTIONS(3124), + [anon_sym_PIPE_PIPE] = ACTIONS(3124), + [anon_sym_or] = ACTIONS(3126), + [sym_none] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_nil] = ACTIONS(3126), + [anon_sym_QMARK_DOT] = ACTIONS(3124), + [anon_sym_POUND_LBRACK] = ACTIONS(3124), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_DOLLARif] = ACTIONS(3126), + [anon_sym_is] = ACTIONS(3126), + [anon_sym_BANGis] = ACTIONS(3124), + [anon_sym_in] = ACTIONS(3126), + [anon_sym_BANGin] = ACTIONS(3124), + [anon_sym_match] = ACTIONS(3126), + [anon_sym_select] = ACTIONS(3126), + [anon_sym_lock] = ACTIONS(3126), + [anon_sym_rlock] = ACTIONS(3126), + [anon_sym_unsafe] = ACTIONS(3126), + [anon_sym_sql] = ACTIONS(3126), + [sym_int_literal] = ACTIONS(3126), + [sym_float_literal] = ACTIONS(3124), + [sym_rune_literal] = ACTIONS(3124), + [anon_sym_AT] = ACTIONS(3126), + [anon_sym_shared] = ACTIONS(3126), + [anon_sym_map_LBRACK] = ACTIONS(3124), + [anon_sym_chan] = ACTIONS(3126), + [anon_sym_thread] = ACTIONS(3126), + [anon_sym_atomic] = ACTIONS(3126), + [sym___double_quote] = ACTIONS(3124), + [sym___single_quote] = ACTIONS(3124), + [sym___c_double_quote] = ACTIONS(3124), + [sym___c_single_quote] = ACTIONS(3124), + [sym___r_double_quote] = ACTIONS(3124), + [sym___r_single_quote] = ACTIONS(3124), }, [1373] = { - [sym_identifier] = ACTIONS(2942), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2942), - [anon_sym_as] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_COMMA] = ACTIONS(2940), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_fn] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_STAR] = ACTIONS(2940), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_PERCENT] = ACTIONS(2940), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_GT] = ACTIONS(2942), - [anon_sym_EQ_EQ] = ACTIONS(2940), - [anon_sym_BANG_EQ] = ACTIONS(2940), - [anon_sym_LT_EQ] = ACTIONS(2940), - [anon_sym_GT_EQ] = ACTIONS(2940), - [anon_sym_LBRACK] = ACTIONS(2940), - [anon_sym_RBRACK] = ACTIONS(2940), - [anon_sym_struct] = ACTIONS(2942), - [anon_sym_mut] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_QMARK] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_go] = ACTIONS(2942), - [anon_sym_spawn] = ACTIONS(2942), - [anon_sym_json_DOTdecode] = ACTIONS(2940), - [anon_sym_LBRACK2] = ACTIONS(2942), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_CARET] = ACTIONS(2940), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_LT_DASH] = ACTIONS(2940), - [anon_sym_LT_LT] = ACTIONS(2940), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_GT_GT_GT] = ACTIONS(2940), - [anon_sym_AMP_CARET] = ACTIONS(2940), - [anon_sym_AMP_AMP] = ACTIONS(2940), - [anon_sym_PIPE_PIPE] = ACTIONS(2940), - [anon_sym_or] = ACTIONS(2942), - [sym_none] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_nil] = ACTIONS(2942), - [anon_sym_QMARK_DOT] = ACTIONS(2940), - [anon_sym_POUND_LBRACK] = ACTIONS(2940), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_DOLLARif] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_BANGis] = ACTIONS(2940), - [anon_sym_in] = ACTIONS(2942), - [anon_sym_BANGin] = ACTIONS(2940), - [anon_sym_match] = ACTIONS(2942), - [anon_sym_select] = ACTIONS(2942), - [anon_sym_lock] = ACTIONS(2942), - [anon_sym_rlock] = ACTIONS(2942), - [anon_sym_unsafe] = ACTIONS(2942), - [anon_sym_sql] = ACTIONS(2942), - [sym_int_literal] = ACTIONS(2942), - [sym_float_literal] = ACTIONS(2940), - [sym_rune_literal] = ACTIONS(2940), - [anon_sym_AT] = ACTIONS(2942), - [anon_sym_shared] = ACTIONS(2942), - [anon_sym_map_LBRACK] = ACTIONS(2940), - [anon_sym_chan] = ACTIONS(2942), - [anon_sym_thread] = ACTIONS(2942), - [anon_sym_atomic] = ACTIONS(2942), - [sym___double_quote] = ACTIONS(2940), - [sym___single_quote] = ACTIONS(2940), - [sym___c_double_quote] = ACTIONS(2940), - [sym___c_single_quote] = ACTIONS(2940), - [sym___r_double_quote] = ACTIONS(2940), - [sym___r_single_quote] = ACTIONS(2940), - }, - [1374] = { - [sym_identifier] = ACTIONS(2810), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_RBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), - }, - [1375] = { - [sym_identifier] = ACTIONS(2814), + [sym_identifier] = ACTIONS(3100), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_RBRACK] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_mut] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_go] = ACTIONS(2814), - [anon_sym_spawn] = ACTIONS(2814), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2814), - [sym_none] = ACTIONS(2814), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_nil] = ACTIONS(2814), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_DOLLARif] = ACTIONS(2814), - [anon_sym_is] = ACTIONS(2814), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2814), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_select] = ACTIONS(2814), - [anon_sym_lock] = ACTIONS(2814), - [anon_sym_rlock] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_sql] = ACTIONS(2814), - [sym_int_literal] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2814), - [anon_sym_shared] = ACTIONS(2814), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2814), - [anon_sym_thread] = ACTIONS(2814), - [anon_sym_atomic] = ACTIONS(2814), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), - }, - [1376] = { - [sym_identifier] = ACTIONS(3106), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3106), - [anon_sym_as] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_COMMA] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3104), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_fn] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3104), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_PERCENT] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_EQ_EQ] = ACTIONS(3104), - [anon_sym_BANG_EQ] = ACTIONS(3104), - [anon_sym_LT_EQ] = ACTIONS(3104), - [anon_sym_GT_EQ] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_RBRACK] = ACTIONS(3104), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_mut] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_QMARK] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_go] = ACTIONS(3106), - [anon_sym_spawn] = ACTIONS(3106), - [anon_sym_json_DOTdecode] = ACTIONS(3104), - [anon_sym_LBRACK2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_CARET] = ACTIONS(3104), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_LT_DASH] = ACTIONS(3104), - [anon_sym_LT_LT] = ACTIONS(3104), - [anon_sym_GT_GT] = ACTIONS(3106), - [anon_sym_GT_GT_GT] = ACTIONS(3104), - [anon_sym_AMP_CARET] = ACTIONS(3104), - [anon_sym_AMP_AMP] = ACTIONS(3104), - [anon_sym_PIPE_PIPE] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(3106), - [sym_none] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_nil] = ACTIONS(3106), - [anon_sym_QMARK_DOT] = ACTIONS(3104), - [anon_sym_POUND_LBRACK] = ACTIONS(3104), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_DOLLARif] = ACTIONS(3106), - [anon_sym_is] = ACTIONS(3106), - [anon_sym_BANGis] = ACTIONS(3104), - [anon_sym_in] = ACTIONS(3106), - [anon_sym_BANGin] = ACTIONS(3104), - [anon_sym_match] = ACTIONS(3106), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(3106), - [anon_sym_sql] = ACTIONS(3106), - [sym_int_literal] = ACTIONS(3106), - [sym_float_literal] = ACTIONS(3104), - [sym_rune_literal] = ACTIONS(3104), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_shared] = ACTIONS(3106), - [anon_sym_map_LBRACK] = ACTIONS(3104), - [anon_sym_chan] = ACTIONS(3106), - [anon_sym_thread] = ACTIONS(3106), - [anon_sym_atomic] = ACTIONS(3106), - [sym___double_quote] = ACTIONS(3104), - [sym___single_quote] = ACTIONS(3104), - [sym___c_double_quote] = ACTIONS(3104), - [sym___c_single_quote] = ACTIONS(3104), - [sym___r_double_quote] = ACTIONS(3104), - [sym___r_single_quote] = ACTIONS(3104), + [anon_sym_DOT] = ACTIONS(3100), + [anon_sym_as] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_PIPE] = ACTIONS(3100), + [anon_sym_fn] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_EQ_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_mut] = ACTIONS(3100), + [anon_sym_COLON] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_QMARK] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3100), + [anon_sym_spawn] = ACTIONS(3100), + [anon_sym_json_DOTdecode] = ACTIONS(3098), + [anon_sym_LBRACK2] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_CARET] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3098), + [anon_sym_LT_LT] = ACTIONS(3098), + [anon_sym_GT_GT] = ACTIONS(3100), + [anon_sym_GT_GT_GT] = ACTIONS(3098), + [anon_sym_AMP_CARET] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3100), + [sym_none] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_nil] = ACTIONS(3100), + [anon_sym_QMARK_DOT] = ACTIONS(3098), + [anon_sym_POUND_LBRACK] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_DOLLARif] = ACTIONS(3100), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_match] = ACTIONS(3100), + [anon_sym_select] = ACTIONS(3100), + [anon_sym_lock] = ACTIONS(3100), + [anon_sym_rlock] = ACTIONS(3100), + [anon_sym_unsafe] = ACTIONS(3100), + [anon_sym_sql] = ACTIONS(3100), + [sym_int_literal] = ACTIONS(3100), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(3100), + [anon_sym_map_LBRACK] = ACTIONS(3098), + [anon_sym_chan] = ACTIONS(3100), + [anon_sym_thread] = ACTIONS(3100), + [anon_sym_atomic] = ACTIONS(3100), + [sym___double_quote] = ACTIONS(3098), + [sym___single_quote] = ACTIONS(3098), + [sym___c_double_quote] = ACTIONS(3098), + [sym___c_single_quote] = ACTIONS(3098), + [sym___r_double_quote] = ACTIONS(3098), + [sym___r_single_quote] = ACTIONS(3098), + }, + [1374] = { + [sym_identifier] = ACTIONS(3122), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3122), + [anon_sym_as] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3122), + [anon_sym_fn] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_PERCENT] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3122), + [anon_sym_mut] = ACTIONS(3122), + [anon_sym_COLON] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_go] = ACTIONS(3122), + [anon_sym_spawn] = ACTIONS(3122), + [anon_sym_json_DOTdecode] = ACTIONS(3120), + [anon_sym_LBRACK2] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3120), + [anon_sym_GT_GT] = ACTIONS(3122), + [anon_sym_GT_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_CARET] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_or] = ACTIONS(3122), + [sym_none] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_nil] = ACTIONS(3122), + [anon_sym_QMARK_DOT] = ACTIONS(3120), + [anon_sym_POUND_LBRACK] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_DOLLARif] = ACTIONS(3122), + [anon_sym_is] = ACTIONS(3122), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_in] = ACTIONS(3122), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_match] = ACTIONS(3122), + [anon_sym_select] = ACTIONS(3122), + [anon_sym_lock] = ACTIONS(3122), + [anon_sym_rlock] = ACTIONS(3122), + [anon_sym_unsafe] = ACTIONS(3122), + [anon_sym_sql] = ACTIONS(3122), + [sym_int_literal] = ACTIONS(3122), + [sym_float_literal] = ACTIONS(3120), + [sym_rune_literal] = ACTIONS(3120), + [anon_sym_AT] = ACTIONS(3122), + [anon_sym_shared] = ACTIONS(3122), + [anon_sym_map_LBRACK] = ACTIONS(3120), + [anon_sym_chan] = ACTIONS(3122), + [anon_sym_thread] = ACTIONS(3122), + [anon_sym_atomic] = ACTIONS(3122), + [sym___double_quote] = ACTIONS(3120), + [sym___single_quote] = ACTIONS(3120), + [sym___c_double_quote] = ACTIONS(3120), + [sym___c_single_quote] = ACTIONS(3120), + [sym___r_double_quote] = ACTIONS(3120), + [sym___r_single_quote] = ACTIONS(3120), + }, + [1375] = { + [sym_identifier] = ACTIONS(3226), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_COMMA] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3224), + [anon_sym_BANG_EQ] = ACTIONS(3224), + [anon_sym_LT_EQ] = ACTIONS(3224), + [anon_sym_GT_EQ] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_RBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3224), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3224), + [anon_sym_LT_LT] = ACTIONS(3224), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3224), + [anon_sym_AMP_CARET] = ACTIONS(3224), + [anon_sym_AMP_AMP] = ACTIONS(3224), + [anon_sym_PIPE_PIPE] = ACTIONS(3224), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3224), + [anon_sym_POUND_LBRACK] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3224), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3224), + [sym_rune_literal] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3224), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3224), + [sym___single_quote] = ACTIONS(3224), + [sym___c_double_quote] = ACTIONS(3224), + [sym___c_single_quote] = ACTIONS(3224), + [sym___r_double_quote] = ACTIONS(3224), + [sym___r_single_quote] = ACTIONS(3224), + }, + [1376] = { + [sym_identifier] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_BANG_EQ] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_COLON] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3018), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_CARET] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3018), + [anon_sym_POUND_LBRACK] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3018), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3018), + [sym_rune_literal] = ACTIONS(3018), + [anon_sym_AT] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3018), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3018), + [sym___single_quote] = ACTIONS(3018), + [sym___c_double_quote] = ACTIONS(3018), + [sym___c_single_quote] = ACTIONS(3018), + [sym___r_double_quote] = ACTIONS(3018), + [sym___r_single_quote] = ACTIONS(3018), }, [1377] = { - [sym_identifier] = ACTIONS(3141), + [sym_identifier] = ACTIONS(2948), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3706), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3139), - [anon_sym_AMP_CARET] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3139), - [anon_sym_POUND_LBRACK] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3139), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3139), - [sym___single_quote] = ACTIONS(3139), - [sym___c_double_quote] = ACTIONS(3139), - [sym___c_single_quote] = ACTIONS(3139), - [sym___r_double_quote] = ACTIONS(3139), - [sym___r_single_quote] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(2948), + [anon_sym_as] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2948), + [anon_sym_fn] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_PERCENT] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_LT_EQ] = ACTIONS(2946), + [anon_sym_GT_EQ] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_RBRACK] = ACTIONS(2946), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_mut] = ACTIONS(2948), + [anon_sym_COLON] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_QMARK] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2948), + [anon_sym_go] = ACTIONS(2948), + [anon_sym_spawn] = ACTIONS(2948), + [anon_sym_json_DOTdecode] = ACTIONS(2946), + [anon_sym_LBRACK2] = ACTIONS(2948), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_CARET] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_LT_DASH] = ACTIONS(2946), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2948), + [anon_sym_GT_GT_GT] = ACTIONS(2946), + [anon_sym_AMP_CARET] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_PIPE_PIPE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2948), + [sym_none] = ACTIONS(2948), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [sym_nil] = ACTIONS(2948), + [anon_sym_QMARK_DOT] = ACTIONS(2946), + [anon_sym_POUND_LBRACK] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_DOLLARif] = ACTIONS(2948), + [anon_sym_is] = ACTIONS(2948), + [anon_sym_BANGis] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2948), + [anon_sym_BANGin] = ACTIONS(2946), + [anon_sym_match] = ACTIONS(2948), + [anon_sym_select] = ACTIONS(2948), + [anon_sym_lock] = ACTIONS(2948), + [anon_sym_rlock] = ACTIONS(2948), + [anon_sym_unsafe] = ACTIONS(2948), + [anon_sym_sql] = ACTIONS(2948), + [sym_int_literal] = ACTIONS(2948), + [sym_float_literal] = ACTIONS(2946), + [sym_rune_literal] = ACTIONS(2946), + [anon_sym_AT] = ACTIONS(2948), + [anon_sym_shared] = ACTIONS(2948), + [anon_sym_map_LBRACK] = ACTIONS(2946), + [anon_sym_chan] = ACTIONS(2948), + [anon_sym_thread] = ACTIONS(2948), + [anon_sym_atomic] = ACTIONS(2948), + [sym___double_quote] = ACTIONS(2946), + [sym___single_quote] = ACTIONS(2946), + [sym___c_double_quote] = ACTIONS(2946), + [sym___c_single_quote] = ACTIONS(2946), + [sym___r_double_quote] = ACTIONS(2946), + [sym___r_single_quote] = ACTIONS(2946), }, [1378] = { - [sym_identifier] = ACTIONS(2838), + [sym_identifier] = ACTIONS(3218), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2838), - [anon_sym_as] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_fn] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_RBRACK] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_mut] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_go] = ACTIONS(2838), - [anon_sym_spawn] = ACTIONS(2838), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2838), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2838), - [sym_none] = ACTIONS(2838), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_nil] = ACTIONS(2838), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_DOLLARif] = ACTIONS(2838), - [anon_sym_is] = ACTIONS(2838), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2838), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2838), - [anon_sym_select] = ACTIONS(2838), - [anon_sym_lock] = ACTIONS(2838), - [anon_sym_rlock] = ACTIONS(2838), - [anon_sym_unsafe] = ACTIONS(2838), - [anon_sym_sql] = ACTIONS(2838), - [sym_int_literal] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2838), - [anon_sym_shared] = ACTIONS(2838), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2838), - [anon_sym_thread] = ACTIONS(2838), - [anon_sym_atomic] = ACTIONS(2838), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_COMMA] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3216), + [anon_sym_BANG_EQ] = ACTIONS(3216), + [anon_sym_LT_EQ] = ACTIONS(3216), + [anon_sym_GT_EQ] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_RBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3216), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_CARET] = ACTIONS(3216), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3216), + [anon_sym_LT_LT] = ACTIONS(3216), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3216), + [anon_sym_AMP_CARET] = ACTIONS(3216), + [anon_sym_AMP_AMP] = ACTIONS(3216), + [anon_sym_PIPE_PIPE] = ACTIONS(3216), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3216), + [anon_sym_POUND_LBRACK] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3216), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3216), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3216), + [sym_rune_literal] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3216), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3216), + [sym___single_quote] = ACTIONS(3216), + [sym___c_double_quote] = ACTIONS(3216), + [sym___c_single_quote] = ACTIONS(3216), + [sym___r_double_quote] = ACTIONS(3216), + [sym___r_single_quote] = ACTIONS(3216), }, [1379] = { - [sym_identifier] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2952), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2966), - [anon_sym_as] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_PIPE] = ACTIONS(2966), - [anon_sym_fn] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_STAR] = ACTIONS(2964), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_PERCENT] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_GT] = ACTIONS(2966), - [anon_sym_EQ_EQ] = ACTIONS(2964), - [anon_sym_BANG_EQ] = ACTIONS(2964), - [anon_sym_LT_EQ] = ACTIONS(2964), - [anon_sym_GT_EQ] = ACTIONS(2964), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_RBRACK] = ACTIONS(2964), - [anon_sym_struct] = ACTIONS(2966), - [anon_sym_mut] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_QMARK] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_go] = ACTIONS(2966), - [anon_sym_spawn] = ACTIONS(2966), - [anon_sym_json_DOTdecode] = ACTIONS(2964), - [anon_sym_LBRACK2] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2964), - [anon_sym_CARET] = ACTIONS(2964), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_LT_DASH] = ACTIONS(2964), - [anon_sym_LT_LT] = ACTIONS(2964), - [anon_sym_GT_GT] = ACTIONS(2966), - [anon_sym_GT_GT_GT] = ACTIONS(2964), - [anon_sym_AMP_CARET] = ACTIONS(2964), - [anon_sym_AMP_AMP] = ACTIONS(2964), - [anon_sym_PIPE_PIPE] = ACTIONS(2964), - [anon_sym_or] = ACTIONS(2966), - [sym_none] = ACTIONS(2966), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_nil] = ACTIONS(2966), - [anon_sym_QMARK_DOT] = ACTIONS(2964), - [anon_sym_POUND_LBRACK] = ACTIONS(2964), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_DOLLARif] = ACTIONS(2966), - [anon_sym_is] = ACTIONS(2966), - [anon_sym_BANGis] = ACTIONS(2964), - [anon_sym_in] = ACTIONS(2966), - [anon_sym_BANGin] = ACTIONS(2964), - [anon_sym_match] = ACTIONS(2966), - [anon_sym_select] = ACTIONS(2966), - [anon_sym_lock] = ACTIONS(2966), - [anon_sym_rlock] = ACTIONS(2966), - [anon_sym_unsafe] = ACTIONS(2966), - [anon_sym_sql] = ACTIONS(2966), - [sym_int_literal] = ACTIONS(2966), - [sym_float_literal] = ACTIONS(2964), - [sym_rune_literal] = ACTIONS(2964), - [anon_sym_AT] = ACTIONS(2966), - [anon_sym_shared] = ACTIONS(2966), - [anon_sym_map_LBRACK] = ACTIONS(2964), - [anon_sym_chan] = ACTIONS(2966), - [anon_sym_thread] = ACTIONS(2966), - [anon_sym_atomic] = ACTIONS(2966), - [sym___double_quote] = ACTIONS(2964), - [sym___single_quote] = ACTIONS(2964), - [sym___c_double_quote] = ACTIONS(2964), - [sym___c_single_quote] = ACTIONS(2964), - [sym___r_double_quote] = ACTIONS(2964), - [sym___r_single_quote] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_as] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2952), + [anon_sym_fn] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_SLASH] = ACTIONS(2952), + [anon_sym_PERCENT] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2952), + [anon_sym_GT] = ACTIONS(2952), + [anon_sym_EQ_EQ] = ACTIONS(2950), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_LT_EQ] = ACTIONS(2950), + [anon_sym_GT_EQ] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_RBRACK] = ACTIONS(2950), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_mut] = ACTIONS(2952), + [anon_sym_COLON] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2952), + [anon_sym_go] = ACTIONS(2952), + [anon_sym_spawn] = ACTIONS(2952), + [anon_sym_json_DOTdecode] = ACTIONS(2950), + [anon_sym_LBRACK2] = ACTIONS(2952), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_CARET] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_LT_DASH] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2952), + [anon_sym_GT_GT_GT] = ACTIONS(2950), + [anon_sym_AMP_CARET] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2952), + [sym_none] = ACTIONS(2952), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [sym_nil] = ACTIONS(2952), + [anon_sym_QMARK_DOT] = ACTIONS(2950), + [anon_sym_POUND_LBRACK] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_DOLLARif] = ACTIONS(2952), + [anon_sym_is] = ACTIONS(2952), + [anon_sym_BANGis] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(2952), + [anon_sym_BANGin] = ACTIONS(2950), + [anon_sym_match] = ACTIONS(2952), + [anon_sym_select] = ACTIONS(2952), + [anon_sym_lock] = ACTIONS(2952), + [anon_sym_rlock] = ACTIONS(2952), + [anon_sym_unsafe] = ACTIONS(2952), + [anon_sym_sql] = ACTIONS(2952), + [sym_int_literal] = ACTIONS(2952), + [sym_float_literal] = ACTIONS(2950), + [sym_rune_literal] = ACTIONS(2950), + [anon_sym_AT] = ACTIONS(2952), + [anon_sym_shared] = ACTIONS(2952), + [anon_sym_map_LBRACK] = ACTIONS(2950), + [anon_sym_chan] = ACTIONS(2952), + [anon_sym_thread] = ACTIONS(2952), + [anon_sym_atomic] = ACTIONS(2952), + [sym___double_quote] = ACTIONS(2950), + [sym___single_quote] = ACTIONS(2950), + [sym___c_double_quote] = ACTIONS(2950), + [sym___c_single_quote] = ACTIONS(2950), + [sym___r_double_quote] = ACTIONS(2950), + [sym___r_single_quote] = ACTIONS(2950), }, [1380] = { - [sym_identifier] = ACTIONS(2946), + [sym_identifier] = ACTIONS(3104), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2946), - [anon_sym_as] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_fn] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2944), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_PERCENT] = ACTIONS(2944), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_GT] = ACTIONS(2946), - [anon_sym_EQ_EQ] = ACTIONS(2944), - [anon_sym_BANG_EQ] = ACTIONS(2944), - [anon_sym_LT_EQ] = ACTIONS(2944), - [anon_sym_GT_EQ] = ACTIONS(2944), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_RBRACK] = ACTIONS(2944), - [anon_sym_struct] = ACTIONS(2946), - [anon_sym_mut] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [anon_sym_QMARK] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_go] = ACTIONS(2946), - [anon_sym_spawn] = ACTIONS(2946), - [anon_sym_json_DOTdecode] = ACTIONS(2944), - [anon_sym_LBRACK2] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_CARET] = ACTIONS(2944), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_LT_DASH] = ACTIONS(2944), - [anon_sym_LT_LT] = ACTIONS(2944), - [anon_sym_GT_GT] = ACTIONS(2946), - [anon_sym_GT_GT_GT] = ACTIONS(2944), - [anon_sym_AMP_CARET] = ACTIONS(2944), - [anon_sym_AMP_AMP] = ACTIONS(2944), - [anon_sym_PIPE_PIPE] = ACTIONS(2944), - [anon_sym_or] = ACTIONS(2946), - [sym_none] = ACTIONS(2946), - [sym_true] = ACTIONS(2946), - [sym_false] = ACTIONS(2946), - [sym_nil] = ACTIONS(2946), - [anon_sym_QMARK_DOT] = ACTIONS(2944), - [anon_sym_POUND_LBRACK] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_DOLLARif] = ACTIONS(2946), - [anon_sym_is] = ACTIONS(2946), - [anon_sym_BANGis] = ACTIONS(2944), - [anon_sym_in] = ACTIONS(2946), - [anon_sym_BANGin] = ACTIONS(2944), - [anon_sym_match] = ACTIONS(2946), - [anon_sym_select] = ACTIONS(2946), - [anon_sym_lock] = ACTIONS(2946), - [anon_sym_rlock] = ACTIONS(2946), - [anon_sym_unsafe] = ACTIONS(2946), - [anon_sym_sql] = ACTIONS(2946), - [sym_int_literal] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2944), - [sym_rune_literal] = ACTIONS(2944), - [anon_sym_AT] = ACTIONS(2946), - [anon_sym_shared] = ACTIONS(2946), - [anon_sym_map_LBRACK] = ACTIONS(2944), - [anon_sym_chan] = ACTIONS(2946), - [anon_sym_thread] = ACTIONS(2946), - [anon_sym_atomic] = ACTIONS(2946), - [sym___double_quote] = ACTIONS(2944), - [sym___single_quote] = ACTIONS(2944), - [sym___c_double_quote] = ACTIONS(2944), - [sym___c_single_quote] = ACTIONS(2944), - [sym___r_double_quote] = ACTIONS(2944), - [sym___r_single_quote] = ACTIONS(2944), + [anon_sym_DOT] = ACTIONS(3104), + [anon_sym_as] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(3104), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3104), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_mut] = ACTIONS(3104), + [anon_sym_COLON] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_go] = ACTIONS(3104), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(3102), + [anon_sym_LBRACK2] = ACTIONS(3104), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_CARET] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3104), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_LT_LT] = ACTIONS(3102), + [anon_sym_GT_GT] = ACTIONS(3104), + [anon_sym_GT_GT_GT] = ACTIONS(3102), + [anon_sym_AMP_CARET] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3104), + [sym_none] = ACTIONS(3104), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_nil] = ACTIONS(3104), + [anon_sym_QMARK_DOT] = ACTIONS(3102), + [anon_sym_POUND_LBRACK] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_DOLLARif] = ACTIONS(3104), + [anon_sym_is] = ACTIONS(3104), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_in] = ACTIONS(3104), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3104), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3104), + [anon_sym_rlock] = ACTIONS(3104), + [anon_sym_unsafe] = ACTIONS(3104), + [anon_sym_sql] = ACTIONS(3104), + [sym_int_literal] = ACTIONS(3104), + [sym_float_literal] = ACTIONS(3102), + [sym_rune_literal] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3104), + [anon_sym_shared] = ACTIONS(3104), + [anon_sym_map_LBRACK] = ACTIONS(3102), + [anon_sym_chan] = ACTIONS(3104), + [anon_sym_thread] = ACTIONS(3104), + [anon_sym_atomic] = ACTIONS(3104), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3102), + [sym___c_double_quote] = ACTIONS(3102), + [sym___c_single_quote] = ACTIONS(3102), + [sym___r_double_quote] = ACTIONS(3102), + [sym___r_single_quote] = ACTIONS(3102), }, [1381] = { - [sym_identifier] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3072), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3014), - [anon_sym_as] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_fn] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3014), - [anon_sym_DASH] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(3012), - [anon_sym_SLASH] = ACTIONS(3014), - [anon_sym_PERCENT] = ACTIONS(3012), - [anon_sym_LT] = ACTIONS(3014), - [anon_sym_GT] = ACTIONS(3014), - [anon_sym_EQ_EQ] = ACTIONS(3012), - [anon_sym_BANG_EQ] = ACTIONS(3012), - [anon_sym_LT_EQ] = ACTIONS(3012), - [anon_sym_GT_EQ] = ACTIONS(3012), - [anon_sym_LBRACK] = ACTIONS(3012), - [anon_sym_RBRACK] = ACTIONS(3012), - [anon_sym_struct] = ACTIONS(3014), - [anon_sym_mut] = ACTIONS(3014), - [anon_sym_PLUS_PLUS] = ACTIONS(3012), - [anon_sym_DASH_DASH] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3014), - [anon_sym_BANG] = ACTIONS(3014), - [anon_sym_go] = ACTIONS(3014), - [anon_sym_spawn] = ACTIONS(3014), - [anon_sym_json_DOTdecode] = ACTIONS(3012), - [anon_sym_LBRACK2] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_CARET] = ACTIONS(3012), - [anon_sym_AMP] = ACTIONS(3014), - [anon_sym_LT_DASH] = ACTIONS(3012), - [anon_sym_LT_LT] = ACTIONS(3012), - [anon_sym_GT_GT] = ACTIONS(3014), - [anon_sym_GT_GT_GT] = ACTIONS(3012), - [anon_sym_AMP_CARET] = ACTIONS(3012), - [anon_sym_AMP_AMP] = ACTIONS(3012), - [anon_sym_PIPE_PIPE] = ACTIONS(3012), - [anon_sym_or] = ACTIONS(3014), - [sym_none] = ACTIONS(3014), - [sym_true] = ACTIONS(3014), - [sym_false] = ACTIONS(3014), - [sym_nil] = ACTIONS(3014), - [anon_sym_QMARK_DOT] = ACTIONS(3012), - [anon_sym_POUND_LBRACK] = ACTIONS(3012), - [anon_sym_if] = ACTIONS(3014), - [anon_sym_DOLLARif] = ACTIONS(3014), - [anon_sym_is] = ACTIONS(3014), - [anon_sym_BANGis] = ACTIONS(3012), - [anon_sym_in] = ACTIONS(3014), - [anon_sym_BANGin] = ACTIONS(3012), - [anon_sym_match] = ACTIONS(3014), - [anon_sym_select] = ACTIONS(3014), - [anon_sym_lock] = ACTIONS(3014), - [anon_sym_rlock] = ACTIONS(3014), - [anon_sym_unsafe] = ACTIONS(3014), - [anon_sym_sql] = ACTIONS(3014), - [sym_int_literal] = ACTIONS(3014), - [sym_float_literal] = ACTIONS(3012), - [sym_rune_literal] = ACTIONS(3012), - [anon_sym_AT] = ACTIONS(3014), - [anon_sym_shared] = ACTIONS(3014), - [anon_sym_map_LBRACK] = ACTIONS(3012), - [anon_sym_chan] = ACTIONS(3014), - [anon_sym_thread] = ACTIONS(3014), - [anon_sym_atomic] = ACTIONS(3014), - [sym___double_quote] = ACTIONS(3012), - [sym___single_quote] = ACTIONS(3012), - [sym___c_double_quote] = ACTIONS(3012), - [sym___c_single_quote] = ACTIONS(3012), - [sym___r_double_quote] = ACTIONS(3012), - [sym___r_single_quote] = ACTIONS(3012), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_as] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_COMMA] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3072), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_GT] = ACTIONS(3072), + [anon_sym_EQ_EQ] = ACTIONS(3070), + [anon_sym_BANG_EQ] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3070), + [anon_sym_GT_EQ] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_RBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_COLON] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3070), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3070), + [anon_sym_LT_LT] = ACTIONS(3070), + [anon_sym_GT_GT] = ACTIONS(3072), + [anon_sym_GT_GT_GT] = ACTIONS(3070), + [anon_sym_AMP_CARET] = ACTIONS(3070), + [anon_sym_AMP_AMP] = ACTIONS(3070), + [anon_sym_PIPE_PIPE] = ACTIONS(3070), + [anon_sym_or] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_QMARK_DOT] = ACTIONS(3070), + [anon_sym_POUND_LBRACK] = ACTIONS(3070), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_is] = ACTIONS(3072), + [anon_sym_BANGis] = ACTIONS(3070), + [anon_sym_in] = ACTIONS(3072), + [anon_sym_BANGin] = ACTIONS(3070), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3070), + [sym_rune_literal] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3070), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3070), + [sym___single_quote] = ACTIONS(3070), + [sym___c_double_quote] = ACTIONS(3070), + [sym___c_single_quote] = ACTIONS(3070), + [sym___r_double_quote] = ACTIONS(3070), + [sym___r_single_quote] = ACTIONS(3070), }, [1382] = { - [sym_identifier] = ACTIONS(2950), + [sym_identifier] = ACTIONS(3160), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2950), - [anon_sym_as] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_COMMA] = ACTIONS(2948), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_fn] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_STAR] = ACTIONS(2948), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_PERCENT] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_EQ_EQ] = ACTIONS(2948), - [anon_sym_BANG_EQ] = ACTIONS(2948), - [anon_sym_LT_EQ] = ACTIONS(2948), - [anon_sym_GT_EQ] = ACTIONS(2948), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_RBRACK] = ACTIONS(2948), - [anon_sym_struct] = ACTIONS(2950), - [anon_sym_mut] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_go] = ACTIONS(2950), - [anon_sym_spawn] = ACTIONS(2950), - [anon_sym_json_DOTdecode] = ACTIONS(2948), - [anon_sym_LBRACK2] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [anon_sym_CARET] = ACTIONS(2948), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_LT_DASH] = ACTIONS(2948), - [anon_sym_LT_LT] = ACTIONS(2948), - [anon_sym_GT_GT] = ACTIONS(2950), - [anon_sym_GT_GT_GT] = ACTIONS(2948), - [anon_sym_AMP_CARET] = ACTIONS(2948), - [anon_sym_AMP_AMP] = ACTIONS(2948), - [anon_sym_PIPE_PIPE] = ACTIONS(2948), - [anon_sym_or] = ACTIONS(2950), - [sym_none] = ACTIONS(2950), - [sym_true] = ACTIONS(2950), - [sym_false] = ACTIONS(2950), - [sym_nil] = ACTIONS(2950), - [anon_sym_QMARK_DOT] = ACTIONS(2948), - [anon_sym_POUND_LBRACK] = ACTIONS(2948), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_DOLLARif] = ACTIONS(2950), - [anon_sym_is] = ACTIONS(2950), - [anon_sym_BANGis] = ACTIONS(2948), - [anon_sym_in] = ACTIONS(2950), - [anon_sym_BANGin] = ACTIONS(2948), - [anon_sym_match] = ACTIONS(2950), - [anon_sym_select] = ACTIONS(2950), - [anon_sym_lock] = ACTIONS(2950), - [anon_sym_rlock] = ACTIONS(2950), - [anon_sym_unsafe] = ACTIONS(2950), - [anon_sym_sql] = ACTIONS(2950), - [sym_int_literal] = ACTIONS(2950), - [sym_float_literal] = ACTIONS(2948), - [sym_rune_literal] = ACTIONS(2948), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_shared] = ACTIONS(2950), - [anon_sym_map_LBRACK] = ACTIONS(2948), - [anon_sym_chan] = ACTIONS(2950), - [anon_sym_thread] = ACTIONS(2950), - [anon_sym_atomic] = ACTIONS(2950), - [sym___double_quote] = ACTIONS(2948), - [sym___single_quote] = ACTIONS(2948), - [sym___c_double_quote] = ACTIONS(2948), - [sym___c_single_quote] = ACTIONS(2948), - [sym___r_double_quote] = ACTIONS(2948), - [sym___r_single_quote] = ACTIONS(2948), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3165), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_LT_EQ] = ACTIONS(3165), + [anon_sym_GT_EQ] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_mut] = ACTIONS(3160), + [anon_sym_COLON] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3160), + [anon_sym_spawn] = ACTIONS(3160), + [anon_sym_json_DOTdecode] = ACTIONS(3158), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3165), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3165), + [anon_sym_AMP_CARET] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_PIPE_PIPE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_nil] = ACTIONS(3160), + [anon_sym_QMARK_DOT] = ACTIONS(3165), + [anon_sym_POUND_LBRACK] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_DOLLARif] = ACTIONS(3160), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3165), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3160), + [anon_sym_select] = ACTIONS(3160), + [anon_sym_lock] = ACTIONS(3160), + [anon_sym_rlock] = ACTIONS(3160), + [anon_sym_unsafe] = ACTIONS(3160), + [anon_sym_sql] = ACTIONS(3160), + [sym_int_literal] = ACTIONS(3160), + [sym_float_literal] = ACTIONS(3158), + [sym_rune_literal] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_shared] = ACTIONS(3160), + [anon_sym_map_LBRACK] = ACTIONS(3158), + [anon_sym_chan] = ACTIONS(3160), + [anon_sym_thread] = ACTIONS(3160), + [anon_sym_atomic] = ACTIONS(3160), + [sym___double_quote] = ACTIONS(3158), + [sym___single_quote] = ACTIONS(3158), + [sym___c_double_quote] = ACTIONS(3158), + [sym___c_single_quote] = ACTIONS(3158), + [sym___r_double_quote] = ACTIONS(3158), + [sym___r_single_quote] = ACTIONS(3158), }, [1383] = { - [sym_identifier] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3108), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3050), - [anon_sym_as] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3048), - [anon_sym_PIPE] = ACTIONS(3050), - [anon_sym_fn] = ACTIONS(3050), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3048), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_EQ_EQ] = ACTIONS(3048), - [anon_sym_BANG_EQ] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3048), - [anon_sym_GT_EQ] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(3048), - [anon_sym_RBRACK] = ACTIONS(3048), - [anon_sym_struct] = ACTIONS(3050), - [anon_sym_mut] = ACTIONS(3050), - [anon_sym_PLUS_PLUS] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_go] = ACTIONS(3050), - [anon_sym_spawn] = ACTIONS(3050), - [anon_sym_json_DOTdecode] = ACTIONS(3048), - [anon_sym_LBRACK2] = ACTIONS(3050), - [anon_sym_TILDE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_AMP] = ACTIONS(3050), - [anon_sym_LT_DASH] = ACTIONS(3048), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3050), - [anon_sym_GT_GT_GT] = ACTIONS(3048), - [anon_sym_AMP_CARET] = ACTIONS(3048), - [anon_sym_AMP_AMP] = ACTIONS(3048), - [anon_sym_PIPE_PIPE] = ACTIONS(3048), - [anon_sym_or] = ACTIONS(3050), - [sym_none] = ACTIONS(3050), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_nil] = ACTIONS(3050), - [anon_sym_QMARK_DOT] = ACTIONS(3048), - [anon_sym_POUND_LBRACK] = ACTIONS(3048), - [anon_sym_if] = ACTIONS(3050), - [anon_sym_DOLLARif] = ACTIONS(3050), - [anon_sym_is] = ACTIONS(3050), - [anon_sym_BANGis] = ACTIONS(3048), - [anon_sym_in] = ACTIONS(3050), - [anon_sym_BANGin] = ACTIONS(3048), - [anon_sym_match] = ACTIONS(3050), - [anon_sym_select] = ACTIONS(3050), - [anon_sym_lock] = ACTIONS(3050), - [anon_sym_rlock] = ACTIONS(3050), - [anon_sym_unsafe] = ACTIONS(3050), - [anon_sym_sql] = ACTIONS(3050), - [sym_int_literal] = ACTIONS(3050), - [sym_float_literal] = ACTIONS(3048), - [sym_rune_literal] = ACTIONS(3048), - [anon_sym_AT] = ACTIONS(3050), - [anon_sym_shared] = ACTIONS(3050), - [anon_sym_map_LBRACK] = ACTIONS(3048), - [anon_sym_chan] = ACTIONS(3050), - [anon_sym_thread] = ACTIONS(3050), - [anon_sym_atomic] = ACTIONS(3050), - [sym___double_quote] = ACTIONS(3048), - [sym___single_quote] = ACTIONS(3048), - [sym___c_double_quote] = ACTIONS(3048), - [sym___c_single_quote] = ACTIONS(3048), - [sym___r_double_quote] = ACTIONS(3048), - [sym___r_single_quote] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_COMMA] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3113), + [anon_sym_GT_EQ] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_RBRACK] = ACTIONS(3106), + [anon_sym_struct] = ACTIONS(3108), + [anon_sym_mut] = ACTIONS(3108), + [anon_sym_COLON] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3108), + [anon_sym_spawn] = ACTIONS(3108), + [anon_sym_json_DOTdecode] = ACTIONS(3106), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_CARET] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3106), + [anon_sym_LT_LT] = ACTIONS(3113), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3113), + [anon_sym_AMP_CARET] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_nil] = ACTIONS(3108), + [anon_sym_QMARK_DOT] = ACTIONS(3113), + [anon_sym_POUND_LBRACK] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_DOLLARif] = ACTIONS(3108), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3113), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3113), + [anon_sym_match] = ACTIONS(3108), + [anon_sym_select] = ACTIONS(3108), + [anon_sym_lock] = ACTIONS(3108), + [anon_sym_rlock] = ACTIONS(3108), + [anon_sym_unsafe] = ACTIONS(3108), + [anon_sym_sql] = ACTIONS(3108), + [sym_int_literal] = ACTIONS(3108), + [sym_float_literal] = ACTIONS(3106), + [sym_rune_literal] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3108), + [anon_sym_shared] = ACTIONS(3108), + [anon_sym_map_LBRACK] = ACTIONS(3106), + [anon_sym_chan] = ACTIONS(3108), + [anon_sym_thread] = ACTIONS(3108), + [anon_sym_atomic] = ACTIONS(3108), + [sym___double_quote] = ACTIONS(3106), + [sym___single_quote] = ACTIONS(3106), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3106), + [sym___r_double_quote] = ACTIONS(3106), + [sym___r_single_quote] = ACTIONS(3106), }, [1384] = { - [sym_identifier] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3048), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3094), - [anon_sym_as] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_COMMA] = ACTIONS(3092), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_PIPE] = ACTIONS(3094), - [anon_sym_fn] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(3092), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_PERCENT] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3094), - [anon_sym_GT] = ACTIONS(3094), - [anon_sym_EQ_EQ] = ACTIONS(3092), - [anon_sym_BANG_EQ] = ACTIONS(3092), - [anon_sym_LT_EQ] = ACTIONS(3092), - [anon_sym_GT_EQ] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_RBRACK] = ACTIONS(3092), - [anon_sym_struct] = ACTIONS(3094), - [anon_sym_mut] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_go] = ACTIONS(3094), - [anon_sym_spawn] = ACTIONS(3094), - [anon_sym_json_DOTdecode] = ACTIONS(3092), - [anon_sym_LBRACK2] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_CARET] = ACTIONS(3092), - [anon_sym_AMP] = ACTIONS(3094), - [anon_sym_LT_DASH] = ACTIONS(3092), - [anon_sym_LT_LT] = ACTIONS(3092), - [anon_sym_GT_GT] = ACTIONS(3094), - [anon_sym_GT_GT_GT] = ACTIONS(3092), - [anon_sym_AMP_CARET] = ACTIONS(3092), - [anon_sym_AMP_AMP] = ACTIONS(3092), - [anon_sym_PIPE_PIPE] = ACTIONS(3092), - [anon_sym_or] = ACTIONS(3094), - [sym_none] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_nil] = ACTIONS(3094), - [anon_sym_QMARK_DOT] = ACTIONS(3092), - [anon_sym_POUND_LBRACK] = ACTIONS(3092), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_DOLLARif] = ACTIONS(3094), - [anon_sym_is] = ACTIONS(3094), - [anon_sym_BANGis] = ACTIONS(3092), - [anon_sym_in] = ACTIONS(3094), - [anon_sym_BANGin] = ACTIONS(3092), - [anon_sym_match] = ACTIONS(3094), - [anon_sym_select] = ACTIONS(3094), - [anon_sym_lock] = ACTIONS(3094), - [anon_sym_rlock] = ACTIONS(3094), - [anon_sym_unsafe] = ACTIONS(3094), - [anon_sym_sql] = ACTIONS(3094), - [sym_int_literal] = ACTIONS(3094), - [sym_float_literal] = ACTIONS(3092), - [sym_rune_literal] = ACTIONS(3092), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_shared] = ACTIONS(3094), - [anon_sym_map_LBRACK] = ACTIONS(3092), - [anon_sym_chan] = ACTIONS(3094), - [anon_sym_thread] = ACTIONS(3094), - [anon_sym_atomic] = ACTIONS(3094), - [sym___double_quote] = ACTIONS(3092), - [sym___single_quote] = ACTIONS(3092), - [sym___c_double_quote] = ACTIONS(3092), - [sym___c_single_quote] = ACTIONS(3092), - [sym___r_double_quote] = ACTIONS(3092), - [sym___r_single_quote] = ACTIONS(3092), + [anon_sym_DOT] = ACTIONS(3048), + [anon_sym_as] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_fn] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3048), + [anon_sym_GT] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(3046), + [anon_sym_BANG_EQ] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_EQ] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_RBRACK] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_mut] = ACTIONS(3048), + [anon_sym_COLON] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_QMARK] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(3048), + [anon_sym_spawn] = ACTIONS(3048), + [anon_sym_json_DOTdecode] = ACTIONS(3046), + [anon_sym_LBRACK2] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_LT_DASH] = ACTIONS(3046), + [anon_sym_LT_LT] = ACTIONS(3046), + [anon_sym_GT_GT] = ACTIONS(3048), + [anon_sym_GT_GT_GT] = ACTIONS(3046), + [anon_sym_AMP_CARET] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3046), + [anon_sym_or] = ACTIONS(3048), + [sym_none] = ACTIONS(3048), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [sym_nil] = ACTIONS(3048), + [anon_sym_QMARK_DOT] = ACTIONS(3046), + [anon_sym_POUND_LBRACK] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_DOLLARif] = ACTIONS(3048), + [anon_sym_is] = ACTIONS(3048), + [anon_sym_BANGis] = ACTIONS(3046), + [anon_sym_in] = ACTIONS(3048), + [anon_sym_BANGin] = ACTIONS(3046), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_select] = ACTIONS(3048), + [anon_sym_lock] = ACTIONS(3048), + [anon_sym_rlock] = ACTIONS(3048), + [anon_sym_unsafe] = ACTIONS(3048), + [anon_sym_sql] = ACTIONS(3048), + [sym_int_literal] = ACTIONS(3048), + [sym_float_literal] = ACTIONS(3046), + [sym_rune_literal] = ACTIONS(3046), + [anon_sym_AT] = ACTIONS(3048), + [anon_sym_shared] = ACTIONS(3048), + [anon_sym_map_LBRACK] = ACTIONS(3046), + [anon_sym_chan] = ACTIONS(3048), + [anon_sym_thread] = ACTIONS(3048), + [anon_sym_atomic] = ACTIONS(3048), + [sym___double_quote] = ACTIONS(3046), + [sym___single_quote] = ACTIONS(3046), + [sym___c_double_quote] = ACTIONS(3046), + [sym___c_single_quote] = ACTIONS(3046), + [sym___r_double_quote] = ACTIONS(3046), + [sym___r_single_quote] = ACTIONS(3046), }, [1385] = { - [sym_identifier] = ACTIONS(2818), + [sym_identifier] = ACTIONS(3052), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2818), - [anon_sym_as] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_fn] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_RBRACK] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_mut] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_go] = ACTIONS(2818), - [anon_sym_spawn] = ACTIONS(2818), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2818), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2818), - [sym_none] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_nil] = ACTIONS(2818), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_DOLLARif] = ACTIONS(2818), - [anon_sym_is] = ACTIONS(2818), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2818), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2818), - [anon_sym_select] = ACTIONS(2818), - [anon_sym_lock] = ACTIONS(2818), - [anon_sym_rlock] = ACTIONS(2818), - [anon_sym_unsafe] = ACTIONS(2818), - [anon_sym_sql] = ACTIONS(2818), - [sym_int_literal] = ACTIONS(2818), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2818), - [anon_sym_shared] = ACTIONS(2818), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2818), - [anon_sym_thread] = ACTIONS(2818), - [anon_sym_atomic] = ACTIONS(2818), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), + [anon_sym_DOT] = ACTIONS(3052), + [anon_sym_as] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_fn] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_mut] = ACTIONS(3052), + [anon_sym_COLON] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_go] = ACTIONS(3052), + [anon_sym_spawn] = ACTIONS(3052), + [anon_sym_json_DOTdecode] = ACTIONS(3050), + [anon_sym_LBRACK2] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_CARET] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_LT_DASH] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3050), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_GT_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_CARET] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_or] = ACTIONS(3052), + [sym_none] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_nil] = ACTIONS(3052), + [anon_sym_QMARK_DOT] = ACTIONS(3050), + [anon_sym_POUND_LBRACK] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_DOLLARif] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3052), + [anon_sym_BANGis] = ACTIONS(3050), + [anon_sym_in] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3050), + [anon_sym_match] = ACTIONS(3052), + [anon_sym_select] = ACTIONS(3052), + [anon_sym_lock] = ACTIONS(3052), + [anon_sym_rlock] = ACTIONS(3052), + [anon_sym_unsafe] = ACTIONS(3052), + [anon_sym_sql] = ACTIONS(3052), + [sym_int_literal] = ACTIONS(3052), + [sym_float_literal] = ACTIONS(3050), + [sym_rune_literal] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_shared] = ACTIONS(3052), + [anon_sym_map_LBRACK] = ACTIONS(3050), + [anon_sym_chan] = ACTIONS(3052), + [anon_sym_thread] = ACTIONS(3052), + [anon_sym_atomic] = ACTIONS(3052), + [sym___double_quote] = ACTIONS(3050), + [sym___single_quote] = ACTIONS(3050), + [sym___c_double_quote] = ACTIONS(3050), + [sym___c_single_quote] = ACTIONS(3050), + [sym___r_double_quote] = ACTIONS(3050), + [sym___r_single_quote] = ACTIONS(3050), }, [1386] = { - [sym_identifier] = ACTIONS(2862), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_as] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_fn] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_RBRACK] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2862), - [anon_sym_mut] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_go] = ACTIONS(2862), - [anon_sym_spawn] = ACTIONS(2862), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2862), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2862), - [sym_none] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_nil] = ACTIONS(2862), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_DOLLARif] = ACTIONS(2862), - [anon_sym_is] = ACTIONS(2862), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2862), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2862), - [anon_sym_select] = ACTIONS(2862), - [anon_sym_lock] = ACTIONS(2862), - [anon_sym_rlock] = ACTIONS(2862), - [anon_sym_unsafe] = ACTIONS(2862), - [anon_sym_sql] = ACTIONS(2862), - [sym_int_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2862), - [anon_sym_shared] = ACTIONS(2862), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2862), - [anon_sym_thread] = ACTIONS(2862), - [anon_sym_atomic] = ACTIONS(2862), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), + [anon_sym_DOT] = ACTIONS(3056), + [anon_sym_as] = ACTIONS(3056), + [anon_sym_LBRACE] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(3054), + [anon_sym_RBRACE] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_PIPE] = ACTIONS(3056), + [anon_sym_fn] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3056), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3054), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_PERCENT] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3054), + [anon_sym_BANG_EQ] = ACTIONS(3054), + [anon_sym_LT_EQ] = ACTIONS(3054), + [anon_sym_GT_EQ] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3054), + [anon_sym_RBRACK] = ACTIONS(3054), + [anon_sym_struct] = ACTIONS(3056), + [anon_sym_mut] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3054), + [anon_sym_PLUS_PLUS] = ACTIONS(3054), + [anon_sym_DASH_DASH] = ACTIONS(3054), + [anon_sym_QMARK] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3056), + [anon_sym_go] = ACTIONS(3056), + [anon_sym_spawn] = ACTIONS(3056), + [anon_sym_json_DOTdecode] = ACTIONS(3054), + [anon_sym_LBRACK2] = ACTIONS(3056), + [anon_sym_TILDE] = ACTIONS(3054), + [anon_sym_CARET] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3056), + [anon_sym_LT_DASH] = ACTIONS(3054), + [anon_sym_LT_LT] = ACTIONS(3054), + [anon_sym_GT_GT] = ACTIONS(3056), + [anon_sym_GT_GT_GT] = ACTIONS(3054), + [anon_sym_AMP_CARET] = ACTIONS(3054), + [anon_sym_AMP_AMP] = ACTIONS(3054), + [anon_sym_PIPE_PIPE] = ACTIONS(3054), + [anon_sym_or] = ACTIONS(3056), + [sym_none] = ACTIONS(3056), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_nil] = ACTIONS(3056), + [anon_sym_QMARK_DOT] = ACTIONS(3054), + [anon_sym_POUND_LBRACK] = ACTIONS(3054), + [anon_sym_if] = ACTIONS(3056), + [anon_sym_DOLLARif] = ACTIONS(3056), + [anon_sym_is] = ACTIONS(3056), + [anon_sym_BANGis] = ACTIONS(3054), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_BANGin] = ACTIONS(3054), + [anon_sym_match] = ACTIONS(3056), + [anon_sym_select] = ACTIONS(3056), + [anon_sym_lock] = ACTIONS(3056), + [anon_sym_rlock] = ACTIONS(3056), + [anon_sym_unsafe] = ACTIONS(3056), + [anon_sym_sql] = ACTIONS(3056), + [sym_int_literal] = ACTIONS(3056), + [sym_float_literal] = ACTIONS(3054), + [sym_rune_literal] = ACTIONS(3054), + [anon_sym_AT] = ACTIONS(3056), + [anon_sym_shared] = ACTIONS(3056), + [anon_sym_map_LBRACK] = ACTIONS(3054), + [anon_sym_chan] = ACTIONS(3056), + [anon_sym_thread] = ACTIONS(3056), + [anon_sym_atomic] = ACTIONS(3056), + [sym___double_quote] = ACTIONS(3054), + [sym___single_quote] = ACTIONS(3054), + [sym___c_double_quote] = ACTIONS(3054), + [sym___c_single_quote] = ACTIONS(3054), + [sym___r_double_quote] = ACTIONS(3054), + [sym___r_single_quote] = ACTIONS(3054), }, [1387] = { - [sym_identifier] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2984), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2870), - [anon_sym_as] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_fn] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_GT] = ACTIONS(2870), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_RBRACK] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2870), - [anon_sym_mut] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_go] = ACTIONS(2870), - [anon_sym_spawn] = ACTIONS(2870), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2870), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2870), - [sym_none] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_nil] = ACTIONS(2870), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_DOLLARif] = ACTIONS(2870), - [anon_sym_is] = ACTIONS(2870), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2870), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2870), - [anon_sym_select] = ACTIONS(2870), - [anon_sym_lock] = ACTIONS(2870), - [anon_sym_rlock] = ACTIONS(2870), - [anon_sym_unsafe] = ACTIONS(2870), - [anon_sym_sql] = ACTIONS(2870), - [sym_int_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2870), - [anon_sym_shared] = ACTIONS(2870), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2870), - [anon_sym_thread] = ACTIONS(2870), - [anon_sym_atomic] = ACTIONS(2870), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(2982), + [anon_sym_GT_EQ] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2982), + [anon_sym_RBRACK] = ACTIONS(2982), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2984), + [anon_sym_spawn] = ACTIONS(2984), + [anon_sym_json_DOTdecode] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_CARET] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2984), + [anon_sym_GT_GT_GT] = ACTIONS(2982), + [anon_sym_AMP_CARET] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2984), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_nil] = ACTIONS(2984), + [anon_sym_QMARK_DOT] = ACTIONS(2982), + [anon_sym_POUND_LBRACK] = ACTIONS(2982), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_DOLLARif] = ACTIONS(2984), + [anon_sym_is] = ACTIONS(2984), + [anon_sym_BANGis] = ACTIONS(2982), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_BANGin] = ACTIONS(2982), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_select] = ACTIONS(2984), + [anon_sym_lock] = ACTIONS(2984), + [anon_sym_rlock] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_sql] = ACTIONS(2984), + [sym_int_literal] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2982), + [sym_rune_literal] = ACTIONS(2982), + [anon_sym_AT] = ACTIONS(2984), + [anon_sym_shared] = ACTIONS(2984), + [anon_sym_map_LBRACK] = ACTIONS(2982), + [anon_sym_chan] = ACTIONS(2984), + [anon_sym_thread] = ACTIONS(2984), + [anon_sym_atomic] = ACTIONS(2984), + [sym___double_quote] = ACTIONS(2982), + [sym___single_quote] = ACTIONS(2982), + [sym___c_double_quote] = ACTIONS(2982), + [sym___c_single_quote] = ACTIONS(2982), + [sym___r_double_quote] = ACTIONS(2982), + [sym___r_single_quote] = ACTIONS(2982), }, [1388] = { - [sym_identifier] = ACTIONS(2934), + [sym_identifier] = ACTIONS(3024), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2934), - [anon_sym_as] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_COMMA] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_fn] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_PERCENT] = ACTIONS(2932), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_GT] = ACTIONS(2934), - [anon_sym_EQ_EQ] = ACTIONS(2932), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_LT_EQ] = ACTIONS(2932), - [anon_sym_GT_EQ] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_RBRACK] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_mut] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_go] = ACTIONS(2934), - [anon_sym_spawn] = ACTIONS(2934), - [anon_sym_json_DOTdecode] = ACTIONS(2932), - [anon_sym_LBRACK2] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_LT_DASH] = ACTIONS(2932), - [anon_sym_LT_LT] = ACTIONS(2932), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_GT_GT_GT] = ACTIONS(2932), - [anon_sym_AMP_CARET] = ACTIONS(2932), - [anon_sym_AMP_AMP] = ACTIONS(2932), - [anon_sym_PIPE_PIPE] = ACTIONS(2932), - [anon_sym_or] = ACTIONS(2934), - [sym_none] = ACTIONS(2934), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_nil] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(2932), - [anon_sym_POUND_LBRACK] = ACTIONS(2932), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_DOLLARif] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_BANGis] = ACTIONS(2932), - [anon_sym_in] = ACTIONS(2934), - [anon_sym_BANGin] = ACTIONS(2932), - [anon_sym_match] = ACTIONS(2934), - [anon_sym_select] = ACTIONS(2934), - [anon_sym_lock] = ACTIONS(2934), - [anon_sym_rlock] = ACTIONS(2934), - [anon_sym_unsafe] = ACTIONS(2934), - [anon_sym_sql] = ACTIONS(2934), - [sym_int_literal] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2932), - [sym_rune_literal] = ACTIONS(2932), - [anon_sym_AT] = ACTIONS(2934), - [anon_sym_shared] = ACTIONS(2934), - [anon_sym_map_LBRACK] = ACTIONS(2932), - [anon_sym_chan] = ACTIONS(2934), - [anon_sym_thread] = ACTIONS(2934), - [anon_sym_atomic] = ACTIONS(2934), - [sym___double_quote] = ACTIONS(2932), - [sym___single_quote] = ACTIONS(2932), - [sym___c_double_quote] = ACTIONS(2932), - [sym___c_single_quote] = ACTIONS(2932), - [sym___r_double_quote] = ACTIONS(2932), - [sym___r_single_quote] = ACTIONS(2932), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_RBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_COLON] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_PIPE_PIPE] = ACTIONS(3022), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3022), + [anon_sym_POUND_LBRACK] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3022), + [sym_rune_literal] = ACTIONS(3022), + [anon_sym_AT] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3022), + [sym___single_quote] = ACTIONS(3022), + [sym___c_double_quote] = ACTIONS(3022), + [sym___c_single_quote] = ACTIONS(3022), + [sym___r_double_quote] = ACTIONS(3022), + [sym___r_single_quote] = ACTIONS(3022), }, [1389] = { - [sym_identifier] = ACTIONS(2954), + [sym_identifier] = ACTIONS(3136), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2954), - [anon_sym_as] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_PIPE] = ACTIONS(2954), - [anon_sym_fn] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_STAR] = ACTIONS(2952), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_PERCENT] = ACTIONS(2952), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_GT] = ACTIONS(2954), - [anon_sym_EQ_EQ] = ACTIONS(2952), - [anon_sym_BANG_EQ] = ACTIONS(2952), - [anon_sym_LT_EQ] = ACTIONS(2952), - [anon_sym_GT_EQ] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2952), - [anon_sym_RBRACK] = ACTIONS(2952), - [anon_sym_struct] = ACTIONS(2954), - [anon_sym_mut] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2952), - [anon_sym_DASH_DASH] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_go] = ACTIONS(2954), - [anon_sym_spawn] = ACTIONS(2954), - [anon_sym_json_DOTdecode] = ACTIONS(2952), - [anon_sym_LBRACK2] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_CARET] = ACTIONS(2952), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_LT_DASH] = ACTIONS(2952), - [anon_sym_LT_LT] = ACTIONS(2952), - [anon_sym_GT_GT] = ACTIONS(2954), - [anon_sym_GT_GT_GT] = ACTIONS(2952), - [anon_sym_AMP_CARET] = ACTIONS(2952), - [anon_sym_AMP_AMP] = ACTIONS(2952), - [anon_sym_PIPE_PIPE] = ACTIONS(2952), - [anon_sym_or] = ACTIONS(2954), - [sym_none] = ACTIONS(2954), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_nil] = ACTIONS(2954), - [anon_sym_QMARK_DOT] = ACTIONS(2952), - [anon_sym_POUND_LBRACK] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_DOLLARif] = ACTIONS(2954), - [anon_sym_is] = ACTIONS(2954), - [anon_sym_BANGis] = ACTIONS(2952), - [anon_sym_in] = ACTIONS(2954), - [anon_sym_BANGin] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2954), - [anon_sym_select] = ACTIONS(2954), - [anon_sym_lock] = ACTIONS(2954), - [anon_sym_rlock] = ACTIONS(2954), - [anon_sym_unsafe] = ACTIONS(2954), - [anon_sym_sql] = ACTIONS(2954), - [sym_int_literal] = ACTIONS(2954), - [sym_float_literal] = ACTIONS(2952), - [sym_rune_literal] = ACTIONS(2952), - [anon_sym_AT] = ACTIONS(2954), - [anon_sym_shared] = ACTIONS(2954), - [anon_sym_map_LBRACK] = ACTIONS(2952), - [anon_sym_chan] = ACTIONS(2954), - [anon_sym_thread] = ACTIONS(2954), - [anon_sym_atomic] = ACTIONS(2954), - [sym___double_quote] = ACTIONS(2952), - [sym___single_quote] = ACTIONS(2952), - [sym___c_double_quote] = ACTIONS(2952), - [sym___c_single_quote] = ACTIONS(2952), - [sym___r_double_quote] = ACTIONS(2952), - [sym___r_single_quote] = ACTIONS(2952), + [anon_sym_DOT] = ACTIONS(3136), + [anon_sym_as] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_PIPE] = ACTIONS(3136), + [anon_sym_fn] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_PERCENT] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_GT] = ACTIONS(3136), + [anon_sym_EQ_EQ] = ACTIONS(3134), + [anon_sym_BANG_EQ] = ACTIONS(3134), + [anon_sym_LT_EQ] = ACTIONS(3134), + [anon_sym_GT_EQ] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3136), + [anon_sym_mut] = ACTIONS(3136), + [anon_sym_COLON] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3136), + [anon_sym_json_DOTdecode] = ACTIONS(3134), + [anon_sym_LBRACK2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_CARET] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3134), + [anon_sym_LT_LT] = ACTIONS(3134), + [anon_sym_GT_GT] = ACTIONS(3136), + [anon_sym_GT_GT_GT] = ACTIONS(3134), + [anon_sym_AMP_CARET] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_PIPE_PIPE] = ACTIONS(3134), + [anon_sym_or] = ACTIONS(3136), + [sym_none] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_nil] = ACTIONS(3136), + [anon_sym_QMARK_DOT] = ACTIONS(3134), + [anon_sym_POUND_LBRACK] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_DOLLARif] = ACTIONS(3136), + [anon_sym_is] = ACTIONS(3136), + [anon_sym_BANGis] = ACTIONS(3134), + [anon_sym_in] = ACTIONS(3136), + [anon_sym_BANGin] = ACTIONS(3134), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3136), + [anon_sym_rlock] = ACTIONS(3136), + [anon_sym_unsafe] = ACTIONS(3136), + [anon_sym_sql] = ACTIONS(3136), + [sym_int_literal] = ACTIONS(3136), + [sym_float_literal] = ACTIONS(3134), + [sym_rune_literal] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_shared] = ACTIONS(3136), + [anon_sym_map_LBRACK] = ACTIONS(3134), + [anon_sym_chan] = ACTIONS(3136), + [anon_sym_thread] = ACTIONS(3136), + [anon_sym_atomic] = ACTIONS(3136), + [sym___double_quote] = ACTIONS(3134), + [sym___single_quote] = ACTIONS(3134), + [sym___c_double_quote] = ACTIONS(3134), + [sym___c_single_quote] = ACTIONS(3134), + [sym___r_double_quote] = ACTIONS(3134), + [sym___r_single_quote] = ACTIONS(3134), }, [1390] = { - [sym_identifier] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3178), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3026), - [anon_sym_as] = ACTIONS(3026), - [anon_sym_LBRACE] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(3024), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_PIPE] = ACTIONS(3026), - [anon_sym_fn] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3024), - [anon_sym_SLASH] = ACTIONS(3026), - [anon_sym_PERCENT] = ACTIONS(3024), - [anon_sym_LT] = ACTIONS(3026), - [anon_sym_GT] = ACTIONS(3026), - [anon_sym_EQ_EQ] = ACTIONS(3024), - [anon_sym_BANG_EQ] = ACTIONS(3024), - [anon_sym_LT_EQ] = ACTIONS(3024), - [anon_sym_GT_EQ] = ACTIONS(3024), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_RBRACK] = ACTIONS(3024), - [anon_sym_struct] = ACTIONS(3026), - [anon_sym_mut] = ACTIONS(3026), - [anon_sym_PLUS_PLUS] = ACTIONS(3024), - [anon_sym_DASH_DASH] = ACTIONS(3024), - [anon_sym_QMARK] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3026), - [anon_sym_go] = ACTIONS(3026), - [anon_sym_spawn] = ACTIONS(3026), - [anon_sym_json_DOTdecode] = ACTIONS(3024), - [anon_sym_LBRACK2] = ACTIONS(3026), - [anon_sym_TILDE] = ACTIONS(3024), - [anon_sym_CARET] = ACTIONS(3024), - [anon_sym_AMP] = ACTIONS(3026), - [anon_sym_LT_DASH] = ACTIONS(3024), - [anon_sym_LT_LT] = ACTIONS(3024), - [anon_sym_GT_GT] = ACTIONS(3026), - [anon_sym_GT_GT_GT] = ACTIONS(3024), - [anon_sym_AMP_CARET] = ACTIONS(3024), - [anon_sym_AMP_AMP] = ACTIONS(3024), - [anon_sym_PIPE_PIPE] = ACTIONS(3024), - [anon_sym_or] = ACTIONS(3026), - [sym_none] = ACTIONS(3026), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_nil] = ACTIONS(3026), - [anon_sym_QMARK_DOT] = ACTIONS(3024), - [anon_sym_POUND_LBRACK] = ACTIONS(3024), - [anon_sym_if] = ACTIONS(3026), - [anon_sym_DOLLARif] = ACTIONS(3026), - [anon_sym_is] = ACTIONS(3026), - [anon_sym_BANGis] = ACTIONS(3024), - [anon_sym_in] = ACTIONS(3026), - [anon_sym_BANGin] = ACTIONS(3024), - [anon_sym_match] = ACTIONS(3026), - [anon_sym_select] = ACTIONS(3026), - [anon_sym_lock] = ACTIONS(3026), - [anon_sym_rlock] = ACTIONS(3026), - [anon_sym_unsafe] = ACTIONS(3026), - [anon_sym_sql] = ACTIONS(3026), - [sym_int_literal] = ACTIONS(3026), - [sym_float_literal] = ACTIONS(3024), - [sym_rune_literal] = ACTIONS(3024), - [anon_sym_AT] = ACTIONS(3026), - [anon_sym_shared] = ACTIONS(3026), - [anon_sym_map_LBRACK] = ACTIONS(3024), - [anon_sym_chan] = ACTIONS(3026), - [anon_sym_thread] = ACTIONS(3026), - [anon_sym_atomic] = ACTIONS(3026), - [sym___double_quote] = ACTIONS(3024), - [sym___single_quote] = ACTIONS(3024), - [sym___c_double_quote] = ACTIONS(3024), - [sym___c_single_quote] = ACTIONS(3024), - [sym___r_double_quote] = ACTIONS(3024), - [sym___r_single_quote] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT_EQ] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_RBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_COLON] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3176), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_CARET] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3176), + [anon_sym_LT_LT] = ACTIONS(3176), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3176), + [anon_sym_AMP_CARET] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_PIPE_PIPE] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3176), + [anon_sym_POUND_LBRACK] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3176), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3176), + [sym_rune_literal] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3176), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3176), + [sym___single_quote] = ACTIONS(3176), + [sym___c_double_quote] = ACTIONS(3176), + [sym___c_single_quote] = ACTIONS(3176), + [sym___r_double_quote] = ACTIONS(3176), + [sym___r_single_quote] = ACTIONS(3176), }, [1391] = { - [sym_identifier] = ACTIONS(2962), + [sym_identifier] = ACTIONS(3333), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2962), - [anon_sym_as] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_PIPE] = ACTIONS(2962), - [anon_sym_fn] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_STAR] = ACTIONS(2960), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_PERCENT] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_GT] = ACTIONS(2962), - [anon_sym_EQ_EQ] = ACTIONS(2960), - [anon_sym_BANG_EQ] = ACTIONS(2960), - [anon_sym_LT_EQ] = ACTIONS(2960), - [anon_sym_GT_EQ] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_RBRACK] = ACTIONS(2960), - [anon_sym_struct] = ACTIONS(2962), - [anon_sym_mut] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [anon_sym_QMARK] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_go] = ACTIONS(2962), - [anon_sym_spawn] = ACTIONS(2962), - [anon_sym_json_DOTdecode] = ACTIONS(2960), - [anon_sym_LBRACK2] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_CARET] = ACTIONS(2960), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_LT_DASH] = ACTIONS(2960), - [anon_sym_LT_LT] = ACTIONS(2960), - [anon_sym_GT_GT] = ACTIONS(2962), - [anon_sym_GT_GT_GT] = ACTIONS(2960), - [anon_sym_AMP_CARET] = ACTIONS(2960), - [anon_sym_AMP_AMP] = ACTIONS(2960), - [anon_sym_PIPE_PIPE] = ACTIONS(2960), - [anon_sym_or] = ACTIONS(2962), - [sym_none] = ACTIONS(2962), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_nil] = ACTIONS(2962), - [anon_sym_QMARK_DOT] = ACTIONS(2960), - [anon_sym_POUND_LBRACK] = ACTIONS(2960), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_DOLLARif] = ACTIONS(2962), - [anon_sym_is] = ACTIONS(2962), - [anon_sym_BANGis] = ACTIONS(2960), - [anon_sym_in] = ACTIONS(2962), - [anon_sym_BANGin] = ACTIONS(2960), - [anon_sym_match] = ACTIONS(2962), - [anon_sym_select] = ACTIONS(2962), - [anon_sym_lock] = ACTIONS(2962), - [anon_sym_rlock] = ACTIONS(2962), - [anon_sym_unsafe] = ACTIONS(2962), - [anon_sym_sql] = ACTIONS(2962), - [sym_int_literal] = ACTIONS(2962), - [sym_float_literal] = ACTIONS(2960), - [sym_rune_literal] = ACTIONS(2960), - [anon_sym_AT] = ACTIONS(2962), - [anon_sym_shared] = ACTIONS(2962), - [anon_sym_map_LBRACK] = ACTIONS(2960), - [anon_sym_chan] = ACTIONS(2962), - [anon_sym_thread] = ACTIONS(2962), - [anon_sym_atomic] = ACTIONS(2962), - [sym___double_quote] = ACTIONS(2960), - [sym___single_quote] = ACTIONS(2960), - [sym___c_double_quote] = ACTIONS(2960), - [sym___c_single_quote] = ACTIONS(2960), - [sym___r_double_quote] = ACTIONS(2960), - [sym___r_single_quote] = ACTIONS(2960), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_as] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_COMMA] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3333), + [anon_sym_fn] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3331), + [anon_sym_BANG_EQ] = ACTIONS(3331), + [anon_sym_LT_EQ] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_RBRACK] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_mut] = ACTIONS(3333), + [anon_sym_COLON] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [anon_sym_QMARK] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_go] = ACTIONS(3333), + [anon_sym_spawn] = ACTIONS(3333), + [anon_sym_json_DOTdecode] = ACTIONS(3331), + [anon_sym_LBRACK2] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_CARET] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_LT_DASH] = ACTIONS(3331), + [anon_sym_LT_LT] = ACTIONS(3331), + [anon_sym_GT_GT] = ACTIONS(3333), + [anon_sym_GT_GT_GT] = ACTIONS(3331), + [anon_sym_AMP_CARET] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_PIPE_PIPE] = ACTIONS(3331), + [anon_sym_or] = ACTIONS(3333), + [sym_none] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_nil] = ACTIONS(3333), + [anon_sym_QMARK_DOT] = ACTIONS(3331), + [anon_sym_POUND_LBRACK] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_DOLLARif] = ACTIONS(3333), + [anon_sym_is] = ACTIONS(3333), + [anon_sym_BANGis] = ACTIONS(3331), + [anon_sym_in] = ACTIONS(3333), + [anon_sym_BANGin] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3333), + [anon_sym_select] = ACTIONS(3333), + [anon_sym_lock] = ACTIONS(3333), + [anon_sym_rlock] = ACTIONS(3333), + [anon_sym_unsafe] = ACTIONS(3333), + [anon_sym_sql] = ACTIONS(3333), + [sym_int_literal] = ACTIONS(3333), + [sym_float_literal] = ACTIONS(3331), + [sym_rune_literal] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_shared] = ACTIONS(3333), + [anon_sym_map_LBRACK] = ACTIONS(3331), + [anon_sym_chan] = ACTIONS(3333), + [anon_sym_thread] = ACTIONS(3333), + [anon_sym_atomic] = ACTIONS(3333), + [sym___double_quote] = ACTIONS(3331), + [sym___single_quote] = ACTIONS(3331), + [sym___c_double_quote] = ACTIONS(3331), + [sym___c_single_quote] = ACTIONS(3331), + [sym___r_double_quote] = ACTIONS(3331), + [sym___r_single_quote] = ACTIONS(3331), }, [1392] = { - [sym_identifier] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3277), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3034), - [anon_sym_as] = ACTIONS(3034), - [anon_sym_LBRACE] = ACTIONS(3032), - [anon_sym_COMMA] = ACTIONS(3032), - [anon_sym_LPAREN] = ACTIONS(3032), - [anon_sym_PIPE] = ACTIONS(3034), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_PLUS] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(3034), - [anon_sym_STAR] = ACTIONS(3032), - [anon_sym_SLASH] = ACTIONS(3034), - [anon_sym_PERCENT] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(3034), - [anon_sym_GT] = ACTIONS(3034), - [anon_sym_EQ_EQ] = ACTIONS(3032), - [anon_sym_BANG_EQ] = ACTIONS(3032), - [anon_sym_LT_EQ] = ACTIONS(3032), - [anon_sym_GT_EQ] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_RBRACK] = ACTIONS(3032), - [anon_sym_struct] = ACTIONS(3034), - [anon_sym_mut] = ACTIONS(3034), - [anon_sym_PLUS_PLUS] = ACTIONS(3032), - [anon_sym_DASH_DASH] = ACTIONS(3032), - [anon_sym_QMARK] = ACTIONS(3034), - [anon_sym_BANG] = ACTIONS(3034), - [anon_sym_go] = ACTIONS(3034), - [anon_sym_spawn] = ACTIONS(3034), - [anon_sym_json_DOTdecode] = ACTIONS(3032), - [anon_sym_LBRACK2] = ACTIONS(3034), - [anon_sym_TILDE] = ACTIONS(3032), - [anon_sym_CARET] = ACTIONS(3032), - [anon_sym_AMP] = ACTIONS(3034), - [anon_sym_LT_DASH] = ACTIONS(3032), - [anon_sym_LT_LT] = ACTIONS(3032), - [anon_sym_GT_GT] = ACTIONS(3034), - [anon_sym_GT_GT_GT] = ACTIONS(3032), - [anon_sym_AMP_CARET] = ACTIONS(3032), - [anon_sym_AMP_AMP] = ACTIONS(3032), - [anon_sym_PIPE_PIPE] = ACTIONS(3032), - [anon_sym_or] = ACTIONS(3034), - [sym_none] = ACTIONS(3034), - [sym_true] = ACTIONS(3034), - [sym_false] = ACTIONS(3034), - [sym_nil] = ACTIONS(3034), - [anon_sym_QMARK_DOT] = ACTIONS(3032), - [anon_sym_POUND_LBRACK] = ACTIONS(3032), - [anon_sym_if] = ACTIONS(3034), - [anon_sym_DOLLARif] = ACTIONS(3034), - [anon_sym_is] = ACTIONS(3034), - [anon_sym_BANGis] = ACTIONS(3032), - [anon_sym_in] = ACTIONS(3034), - [anon_sym_BANGin] = ACTIONS(3032), - [anon_sym_match] = ACTIONS(3034), - [anon_sym_select] = ACTIONS(3034), - [anon_sym_lock] = ACTIONS(3034), - [anon_sym_rlock] = ACTIONS(3034), - [anon_sym_unsafe] = ACTIONS(3034), - [anon_sym_sql] = ACTIONS(3034), - [sym_int_literal] = ACTIONS(3034), - [sym_float_literal] = ACTIONS(3032), - [sym_rune_literal] = ACTIONS(3032), - [anon_sym_AT] = ACTIONS(3034), - [anon_sym_shared] = ACTIONS(3034), - [anon_sym_map_LBRACK] = ACTIONS(3032), - [anon_sym_chan] = ACTIONS(3034), - [anon_sym_thread] = ACTIONS(3034), - [anon_sym_atomic] = ACTIONS(3034), - [sym___double_quote] = ACTIONS(3032), - [sym___single_quote] = ACTIONS(3032), - [sym___c_double_quote] = ACTIONS(3032), - [sym___c_single_quote] = ACTIONS(3032), - [sym___r_double_quote] = ACTIONS(3032), - [sym___r_single_quote] = ACTIONS(3032), + [anon_sym_DOT] = ACTIONS(3277), + [anon_sym_as] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_fn] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3277), + [anon_sym_mut] = ACTIONS(3277), + [anon_sym_COLON] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_QMARK] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_go] = ACTIONS(3277), + [anon_sym_spawn] = ACTIONS(3277), + [anon_sym_json_DOTdecode] = ACTIONS(3275), + [anon_sym_LBRACK2] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_LT_DASH] = ACTIONS(3275), + [anon_sym_LT_LT] = ACTIONS(3275), + [anon_sym_GT_GT] = ACTIONS(3277), + [anon_sym_GT_GT_GT] = ACTIONS(3275), + [anon_sym_AMP_CARET] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_or] = ACTIONS(3277), + [sym_none] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_nil] = ACTIONS(3277), + [anon_sym_QMARK_DOT] = ACTIONS(3275), + [anon_sym_POUND_LBRACK] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_DOLLARif] = ACTIONS(3277), + [anon_sym_is] = ACTIONS(3277), + [anon_sym_BANGis] = ACTIONS(3275), + [anon_sym_in] = ACTIONS(3277), + [anon_sym_BANGin] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3277), + [anon_sym_select] = ACTIONS(3277), + [anon_sym_lock] = ACTIONS(3277), + [anon_sym_rlock] = ACTIONS(3277), + [anon_sym_unsafe] = ACTIONS(3277), + [anon_sym_sql] = ACTIONS(3277), + [sym_int_literal] = ACTIONS(3277), + [sym_float_literal] = ACTIONS(3275), + [sym_rune_literal] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_shared] = ACTIONS(3277), + [anon_sym_map_LBRACK] = ACTIONS(3275), + [anon_sym_chan] = ACTIONS(3277), + [anon_sym_thread] = ACTIONS(3277), + [anon_sym_atomic] = ACTIONS(3277), + [sym___double_quote] = ACTIONS(3275), + [sym___single_quote] = ACTIONS(3275), + [sym___c_double_quote] = ACTIONS(3275), + [sym___c_single_quote] = ACTIONS(3275), + [sym___r_double_quote] = ACTIONS(3275), + [sym___r_single_quote] = ACTIONS(3275), }, [1393] = { - [sym_identifier] = ACTIONS(3054), + [sym_identifier] = ACTIONS(3068), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3054), - [anon_sym_as] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_COMMA] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_PIPE] = ACTIONS(3054), - [anon_sym_fn] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_PERCENT] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3054), - [anon_sym_GT] = ACTIONS(3054), - [anon_sym_EQ_EQ] = ACTIONS(3052), - [anon_sym_BANG_EQ] = ACTIONS(3052), - [anon_sym_LT_EQ] = ACTIONS(3052), - [anon_sym_GT_EQ] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_RBRACK] = ACTIONS(3052), - [anon_sym_struct] = ACTIONS(3054), - [anon_sym_mut] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3054), - [anon_sym_go] = ACTIONS(3054), - [anon_sym_spawn] = ACTIONS(3054), - [anon_sym_json_DOTdecode] = ACTIONS(3052), - [anon_sym_LBRACK2] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_CARET] = ACTIONS(3052), - [anon_sym_AMP] = ACTIONS(3054), - [anon_sym_LT_DASH] = ACTIONS(3052), - [anon_sym_LT_LT] = ACTIONS(3052), - [anon_sym_GT_GT] = ACTIONS(3054), - [anon_sym_GT_GT_GT] = ACTIONS(3052), - [anon_sym_AMP_CARET] = ACTIONS(3052), - [anon_sym_AMP_AMP] = ACTIONS(3052), - [anon_sym_PIPE_PIPE] = ACTIONS(3052), - [anon_sym_or] = ACTIONS(3054), - [sym_none] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_nil] = ACTIONS(3054), - [anon_sym_QMARK_DOT] = ACTIONS(3052), - [anon_sym_POUND_LBRACK] = ACTIONS(3052), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_DOLLARif] = ACTIONS(3054), - [anon_sym_is] = ACTIONS(3054), - [anon_sym_BANGis] = ACTIONS(3052), - [anon_sym_in] = ACTIONS(3054), - [anon_sym_BANGin] = ACTIONS(3052), - [anon_sym_match] = ACTIONS(3054), - [anon_sym_select] = ACTIONS(3054), - [anon_sym_lock] = ACTIONS(3054), - [anon_sym_rlock] = ACTIONS(3054), - [anon_sym_unsafe] = ACTIONS(3054), - [anon_sym_sql] = ACTIONS(3054), - [sym_int_literal] = ACTIONS(3054), - [sym_float_literal] = ACTIONS(3052), - [sym_rune_literal] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3054), - [anon_sym_shared] = ACTIONS(3054), - [anon_sym_map_LBRACK] = ACTIONS(3052), - [anon_sym_chan] = ACTIONS(3054), - [anon_sym_thread] = ACTIONS(3054), - [anon_sym_atomic] = ACTIONS(3054), - [sym___double_quote] = ACTIONS(3052), - [sym___single_quote] = ACTIONS(3052), - [sym___c_double_quote] = ACTIONS(3052), - [sym___c_single_quote] = ACTIONS(3052), - [sym___r_double_quote] = ACTIONS(3052), - [sym___r_single_quote] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_as] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(3066), + [anon_sym_COMMA] = ACTIONS(3066), + [anon_sym_RBRACE] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(3066), + [anon_sym_PIPE] = ACTIONS(3068), + [anon_sym_fn] = ACTIONS(3068), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3066), + [anon_sym_SLASH] = ACTIONS(3068), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3068), + [anon_sym_GT] = ACTIONS(3068), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_BANG_EQ] = ACTIONS(3066), + [anon_sym_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_EQ] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_RBRACK] = ACTIONS(3066), + [anon_sym_struct] = ACTIONS(3068), + [anon_sym_mut] = ACTIONS(3068), + [anon_sym_COLON] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3066), + [anon_sym_DASH_DASH] = ACTIONS(3066), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3068), + [anon_sym_spawn] = ACTIONS(3068), + [anon_sym_json_DOTdecode] = ACTIONS(3066), + [anon_sym_LBRACK2] = ACTIONS(3068), + [anon_sym_TILDE] = ACTIONS(3066), + [anon_sym_CARET] = ACTIONS(3066), + [anon_sym_AMP] = ACTIONS(3068), + [anon_sym_LT_DASH] = ACTIONS(3066), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(3068), + [anon_sym_GT_GT_GT] = ACTIONS(3066), + [anon_sym_AMP_CARET] = ACTIONS(3066), + [anon_sym_AMP_AMP] = ACTIONS(3066), + [anon_sym_PIPE_PIPE] = ACTIONS(3066), + [anon_sym_or] = ACTIONS(3068), + [sym_none] = ACTIONS(3068), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_nil] = ACTIONS(3068), + [anon_sym_QMARK_DOT] = ACTIONS(3066), + [anon_sym_POUND_LBRACK] = ACTIONS(3066), + [anon_sym_if] = ACTIONS(3068), + [anon_sym_DOLLARif] = ACTIONS(3068), + [anon_sym_is] = ACTIONS(3068), + [anon_sym_BANGis] = ACTIONS(3066), + [anon_sym_in] = ACTIONS(3068), + [anon_sym_BANGin] = ACTIONS(3066), + [anon_sym_match] = ACTIONS(3068), + [anon_sym_select] = ACTIONS(3068), + [anon_sym_lock] = ACTIONS(3068), + [anon_sym_rlock] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(3068), + [anon_sym_sql] = ACTIONS(3068), + [sym_int_literal] = ACTIONS(3068), + [sym_float_literal] = ACTIONS(3066), + [sym_rune_literal] = ACTIONS(3066), + [anon_sym_AT] = ACTIONS(3068), + [anon_sym_shared] = ACTIONS(3068), + [anon_sym_map_LBRACK] = ACTIONS(3066), + [anon_sym_chan] = ACTIONS(3068), + [anon_sym_thread] = ACTIONS(3068), + [anon_sym_atomic] = ACTIONS(3068), + [sym___double_quote] = ACTIONS(3066), + [sym___single_quote] = ACTIONS(3066), + [sym___c_double_quote] = ACTIONS(3066), + [sym___c_single_quote] = ACTIONS(3066), + [sym___r_double_quote] = ACTIONS(3066), + [sym___r_single_quote] = ACTIONS(3066), }, [1394] = { - [sym_identifier] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3076), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3022), - [anon_sym_as] = ACTIONS(3022), - [anon_sym_LBRACE] = ACTIONS(3020), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3020), - [anon_sym_PIPE] = ACTIONS(3022), - [anon_sym_fn] = ACTIONS(3022), - [anon_sym_PLUS] = ACTIONS(3022), - [anon_sym_DASH] = ACTIONS(3022), - [anon_sym_STAR] = ACTIONS(3020), - [anon_sym_SLASH] = ACTIONS(3022), - [anon_sym_PERCENT] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(3022), - [anon_sym_GT] = ACTIONS(3022), - [anon_sym_EQ_EQ] = ACTIONS(3020), - [anon_sym_BANG_EQ] = ACTIONS(3020), - [anon_sym_LT_EQ] = ACTIONS(3020), - [anon_sym_GT_EQ] = ACTIONS(3020), - [anon_sym_LBRACK] = ACTIONS(3020), - [anon_sym_RBRACK] = ACTIONS(3020), - [anon_sym_struct] = ACTIONS(3022), - [anon_sym_mut] = ACTIONS(3022), - [anon_sym_PLUS_PLUS] = ACTIONS(3020), - [anon_sym_DASH_DASH] = ACTIONS(3020), - [anon_sym_QMARK] = ACTIONS(3022), - [anon_sym_BANG] = ACTIONS(3022), - [anon_sym_go] = ACTIONS(3022), - [anon_sym_spawn] = ACTIONS(3022), - [anon_sym_json_DOTdecode] = ACTIONS(3020), - [anon_sym_LBRACK2] = ACTIONS(3022), - [anon_sym_TILDE] = ACTIONS(3020), - [anon_sym_CARET] = ACTIONS(3020), - [anon_sym_AMP] = ACTIONS(3022), - [anon_sym_LT_DASH] = ACTIONS(3020), - [anon_sym_LT_LT] = ACTIONS(3020), - [anon_sym_GT_GT] = ACTIONS(3022), - [anon_sym_GT_GT_GT] = ACTIONS(3020), - [anon_sym_AMP_CARET] = ACTIONS(3020), - [anon_sym_AMP_AMP] = ACTIONS(3020), - [anon_sym_PIPE_PIPE] = ACTIONS(3020), - [anon_sym_or] = ACTIONS(3022), - [sym_none] = ACTIONS(3022), - [sym_true] = ACTIONS(3022), - [sym_false] = ACTIONS(3022), - [sym_nil] = ACTIONS(3022), - [anon_sym_QMARK_DOT] = ACTIONS(3020), - [anon_sym_POUND_LBRACK] = ACTIONS(3020), - [anon_sym_if] = ACTIONS(3022), - [anon_sym_DOLLARif] = ACTIONS(3022), - [anon_sym_is] = ACTIONS(3022), - [anon_sym_BANGis] = ACTIONS(3020), - [anon_sym_in] = ACTIONS(3022), - [anon_sym_BANGin] = ACTIONS(3020), - [anon_sym_match] = ACTIONS(3022), - [anon_sym_select] = ACTIONS(3022), - [anon_sym_lock] = ACTIONS(3022), - [anon_sym_rlock] = ACTIONS(3022), - [anon_sym_unsafe] = ACTIONS(3022), - [anon_sym_sql] = ACTIONS(3022), - [sym_int_literal] = ACTIONS(3022), - [sym_float_literal] = ACTIONS(3020), - [sym_rune_literal] = ACTIONS(3020), - [anon_sym_AT] = ACTIONS(3022), - [anon_sym_shared] = ACTIONS(3022), - [anon_sym_map_LBRACK] = ACTIONS(3020), - [anon_sym_chan] = ACTIONS(3022), - [anon_sym_thread] = ACTIONS(3022), - [anon_sym_atomic] = ACTIONS(3022), - [sym___double_quote] = ACTIONS(3020), - [sym___single_quote] = ACTIONS(3020), - [sym___c_double_quote] = ACTIONS(3020), - [sym___c_single_quote] = ACTIONS(3020), - [sym___r_double_quote] = ACTIONS(3020), - [sym___r_single_quote] = ACTIONS(3020), + [anon_sym_DOT] = ACTIONS(3076), + [anon_sym_as] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3076), + [anon_sym_fn] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3076), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3076), + [anon_sym_GT] = ACTIONS(3076), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_LT_EQ] = ACTIONS(3074), + [anon_sym_GT_EQ] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_struct] = ACTIONS(3076), + [anon_sym_mut] = ACTIONS(3076), + [anon_sym_COLON] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3076), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_go] = ACTIONS(3076), + [anon_sym_spawn] = ACTIONS(3076), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3076), + [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_LT] = ACTIONS(3074), + [anon_sym_GT_GT] = ACTIONS(3076), + [anon_sym_GT_GT_GT] = ACTIONS(3074), + [anon_sym_AMP_CARET] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_PIPE_PIPE] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3076), + [sym_none] = ACTIONS(3076), + [sym_true] = ACTIONS(3076), + [sym_false] = ACTIONS(3076), + [sym_nil] = ACTIONS(3076), + [anon_sym_QMARK_DOT] = ACTIONS(3074), + [anon_sym_POUND_LBRACK] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_DOLLARif] = ACTIONS(3076), + [anon_sym_is] = ACTIONS(3076), + [anon_sym_BANGis] = ACTIONS(3074), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_BANGin] = ACTIONS(3074), + [anon_sym_match] = ACTIONS(3076), + [anon_sym_select] = ACTIONS(3076), + [anon_sym_lock] = ACTIONS(3076), + [anon_sym_rlock] = ACTIONS(3076), + [anon_sym_unsafe] = ACTIONS(3076), + [anon_sym_sql] = ACTIONS(3076), + [sym_int_literal] = ACTIONS(3076), + [sym_float_literal] = ACTIONS(3074), + [sym_rune_literal] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_shared] = ACTIONS(3076), + [anon_sym_map_LBRACK] = ACTIONS(3074), + [anon_sym_chan] = ACTIONS(3076), + [anon_sym_thread] = ACTIONS(3076), + [anon_sym_atomic] = ACTIONS(3076), + [sym___double_quote] = ACTIONS(3074), + [sym___single_quote] = ACTIONS(3074), + [sym___c_double_quote] = ACTIONS(3074), + [sym___c_single_quote] = ACTIONS(3074), + [sym___r_double_quote] = ACTIONS(3074), + [sym___r_single_quote] = ACTIONS(3074), }, [1395] = { - [sym_identifier] = ACTIONS(3062), + [sym_identifier] = ACTIONS(2976), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_as] = ACTIONS(3062), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_COMMA] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(3060), - [anon_sym_PIPE] = ACTIONS(3062), - [anon_sym_fn] = ACTIONS(3062), - [anon_sym_PLUS] = ACTIONS(3062), - [anon_sym_DASH] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_SLASH] = ACTIONS(3062), - [anon_sym_PERCENT] = ACTIONS(3060), - [anon_sym_LT] = ACTIONS(3062), - [anon_sym_GT] = ACTIONS(3062), - [anon_sym_EQ_EQ] = ACTIONS(3060), - [anon_sym_BANG_EQ] = ACTIONS(3060), - [anon_sym_LT_EQ] = ACTIONS(3060), - [anon_sym_GT_EQ] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3060), - [anon_sym_RBRACK] = ACTIONS(3060), - [anon_sym_struct] = ACTIONS(3062), - [anon_sym_mut] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3060), - [anon_sym_DASH_DASH] = ACTIONS(3060), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_go] = ACTIONS(3062), - [anon_sym_spawn] = ACTIONS(3062), - [anon_sym_json_DOTdecode] = ACTIONS(3060), - [anon_sym_LBRACK2] = ACTIONS(3062), - [anon_sym_TILDE] = ACTIONS(3060), - [anon_sym_CARET] = ACTIONS(3060), - [anon_sym_AMP] = ACTIONS(3062), - [anon_sym_LT_DASH] = ACTIONS(3060), - [anon_sym_LT_LT] = ACTIONS(3060), - [anon_sym_GT_GT] = ACTIONS(3062), - [anon_sym_GT_GT_GT] = ACTIONS(3060), - [anon_sym_AMP_CARET] = ACTIONS(3060), - [anon_sym_AMP_AMP] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3060), - [anon_sym_or] = ACTIONS(3062), - [sym_none] = ACTIONS(3062), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_nil] = ACTIONS(3062), - [anon_sym_QMARK_DOT] = ACTIONS(3060), - [anon_sym_POUND_LBRACK] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3062), - [anon_sym_DOLLARif] = ACTIONS(3062), - [anon_sym_is] = ACTIONS(3062), - [anon_sym_BANGis] = ACTIONS(3060), - [anon_sym_in] = ACTIONS(3062), - [anon_sym_BANGin] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3062), - [anon_sym_select] = ACTIONS(3062), - [anon_sym_lock] = ACTIONS(3062), - [anon_sym_rlock] = ACTIONS(3062), - [anon_sym_unsafe] = ACTIONS(3062), - [anon_sym_sql] = ACTIONS(3062), - [sym_int_literal] = ACTIONS(3062), - [sym_float_literal] = ACTIONS(3060), - [sym_rune_literal] = ACTIONS(3060), - [anon_sym_AT] = ACTIONS(3062), - [anon_sym_shared] = ACTIONS(3062), - [anon_sym_map_LBRACK] = ACTIONS(3060), - [anon_sym_chan] = ACTIONS(3062), - [anon_sym_thread] = ACTIONS(3062), - [anon_sym_atomic] = ACTIONS(3062), - [sym___double_quote] = ACTIONS(3060), - [sym___single_quote] = ACTIONS(3060), - [sym___c_double_quote] = ACTIONS(3060), - [sym___c_single_quote] = ACTIONS(3060), - [sym___r_double_quote] = ACTIONS(3060), - [sym___r_single_quote] = ACTIONS(3060), + [anon_sym_DOT] = ACTIONS(2976), + [anon_sym_as] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_RBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2976), + [anon_sym_fn] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_SLASH] = ACTIONS(2976), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2976), + [anon_sym_GT] = ACTIONS(2976), + [anon_sym_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2974), + [anon_sym_RBRACK] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_mut] = ACTIONS(2976), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_go] = ACTIONS(2976), + [anon_sym_spawn] = ACTIONS(2976), + [anon_sym_json_DOTdecode] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2974), + [anon_sym_CARET] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_LT_LT] = ACTIONS(2974), + [anon_sym_GT_GT] = ACTIONS(2976), + [anon_sym_GT_GT_GT] = ACTIONS(2974), + [anon_sym_AMP_CARET] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_or] = ACTIONS(2976), + [sym_none] = ACTIONS(2976), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [sym_nil] = ACTIONS(2976), + [anon_sym_QMARK_DOT] = ACTIONS(2974), + [anon_sym_POUND_LBRACK] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_DOLLARif] = ACTIONS(2976), + [anon_sym_is] = ACTIONS(2976), + [anon_sym_BANGis] = ACTIONS(2974), + [anon_sym_in] = ACTIONS(2976), + [anon_sym_BANGin] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2976), + [anon_sym_select] = ACTIONS(2976), + [anon_sym_lock] = ACTIONS(2976), + [anon_sym_rlock] = ACTIONS(2976), + [anon_sym_unsafe] = ACTIONS(2976), + [anon_sym_sql] = ACTIONS(2976), + [sym_int_literal] = ACTIONS(2976), + [sym_float_literal] = ACTIONS(2974), + [sym_rune_literal] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2976), + [anon_sym_shared] = ACTIONS(2976), + [anon_sym_map_LBRACK] = ACTIONS(2974), + [anon_sym_chan] = ACTIONS(2976), + [anon_sym_thread] = ACTIONS(2976), + [anon_sym_atomic] = ACTIONS(2976), + [sym___double_quote] = ACTIONS(2974), + [sym___single_quote] = ACTIONS(2974), + [sym___c_double_quote] = ACTIONS(2974), + [sym___c_single_quote] = ACTIONS(2974), + [sym___r_double_quote] = ACTIONS(2974), + [sym___r_single_quote] = ACTIONS(2974), }, [1396] = { - [sym_identifier] = ACTIONS(3070), + [sym_identifier] = ACTIONS(2956), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3070), - [anon_sym_as] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_COMMA] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3070), - [anon_sym_PERCENT] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_EQ_EQ] = ACTIONS(3068), - [anon_sym_BANG_EQ] = ACTIONS(3068), - [anon_sym_LT_EQ] = ACTIONS(3068), - [anon_sym_GT_EQ] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_RBRACK] = ACTIONS(3068), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_mut] = ACTIONS(3070), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_QMARK] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3070), - [anon_sym_go] = ACTIONS(3070), - [anon_sym_spawn] = ACTIONS(3070), - [anon_sym_json_DOTdecode] = ACTIONS(3068), - [anon_sym_LBRACK2] = ACTIONS(3070), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(3068), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_GT_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_CARET] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_or] = ACTIONS(3070), - [sym_none] = ACTIONS(3070), - [sym_true] = ACTIONS(3070), - [sym_false] = ACTIONS(3070), - [sym_nil] = ACTIONS(3070), - [anon_sym_QMARK_DOT] = ACTIONS(3068), - [anon_sym_POUND_LBRACK] = ACTIONS(3068), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_DOLLARif] = ACTIONS(3070), - [anon_sym_is] = ACTIONS(3070), - [anon_sym_BANGis] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_BANGin] = ACTIONS(3068), - [anon_sym_match] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_rlock] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_sql] = ACTIONS(3070), - [sym_int_literal] = ACTIONS(3070), - [sym_float_literal] = ACTIONS(3068), - [sym_rune_literal] = ACTIONS(3068), - [anon_sym_AT] = ACTIONS(3070), - [anon_sym_shared] = ACTIONS(3070), - [anon_sym_map_LBRACK] = ACTIONS(3068), - [anon_sym_chan] = ACTIONS(3070), - [anon_sym_thread] = ACTIONS(3070), - [anon_sym_atomic] = ACTIONS(3070), - [sym___double_quote] = ACTIONS(3068), - [sym___single_quote] = ACTIONS(3068), - [sym___c_double_quote] = ACTIONS(3068), - [sym___c_single_quote] = ACTIONS(3068), - [sym___r_double_quote] = ACTIONS(3068), - [sym___r_single_quote] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(2956), + [anon_sym_as] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_fn] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_EQ_EQ] = ACTIONS(2954), + [anon_sym_BANG_EQ] = ACTIONS(2954), + [anon_sym_LT_EQ] = ACTIONS(2954), + [anon_sym_GT_EQ] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_RBRACK] = ACTIONS(2954), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_mut] = ACTIONS(2956), + [anon_sym_COLON] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_go] = ACTIONS(2956), + [anon_sym_spawn] = ACTIONS(2956), + [anon_sym_json_DOTdecode] = ACTIONS(2954), + [anon_sym_LBRACK2] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_CARET] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2954), + [anon_sym_LT_LT] = ACTIONS(2954), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_GT_GT_GT] = ACTIONS(2954), + [anon_sym_AMP_CARET] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_PIPE_PIPE] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2956), + [sym_none] = ACTIONS(2956), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [sym_nil] = ACTIONS(2956), + [anon_sym_QMARK_DOT] = ACTIONS(2954), + [anon_sym_POUND_LBRACK] = ACTIONS(2954), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_DOLLARif] = ACTIONS(2956), + [anon_sym_is] = ACTIONS(2956), + [anon_sym_BANGis] = ACTIONS(2954), + [anon_sym_in] = ACTIONS(2956), + [anon_sym_BANGin] = ACTIONS(2954), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_select] = ACTIONS(2956), + [anon_sym_lock] = ACTIONS(2956), + [anon_sym_rlock] = ACTIONS(2956), + [anon_sym_unsafe] = ACTIONS(2956), + [anon_sym_sql] = ACTIONS(2956), + [sym_int_literal] = ACTIONS(2956), + [sym_float_literal] = ACTIONS(2954), + [sym_rune_literal] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2956), + [anon_sym_shared] = ACTIONS(2956), + [anon_sym_map_LBRACK] = ACTIONS(2954), + [anon_sym_chan] = ACTIONS(2956), + [anon_sym_thread] = ACTIONS(2956), + [anon_sym_atomic] = ACTIONS(2956), + [sym___double_quote] = ACTIONS(2954), + [sym___single_quote] = ACTIONS(2954), + [sym___c_double_quote] = ACTIONS(2954), + [sym___c_single_quote] = ACTIONS(2954), + [sym___r_double_quote] = ACTIONS(2954), + [sym___r_single_quote] = ACTIONS(2954), }, [1397] = { - [sym_identifier] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3080), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_as] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_COMMA] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_fn] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_PERCENT] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_EQ_EQ] = ACTIONS(3100), - [anon_sym_BANG_EQ] = ACTIONS(3100), - [anon_sym_LT_EQ] = ACTIONS(3100), - [anon_sym_GT_EQ] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_RBRACK] = ACTIONS(3100), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_mut] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_QMARK] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_go] = ACTIONS(3102), - [anon_sym_spawn] = ACTIONS(3102), - [anon_sym_json_DOTdecode] = ACTIONS(3100), - [anon_sym_LBRACK2] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_CARET] = ACTIONS(3100), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_LT_DASH] = ACTIONS(3100), - [anon_sym_LT_LT] = ACTIONS(3100), - [anon_sym_GT_GT] = ACTIONS(3102), - [anon_sym_GT_GT_GT] = ACTIONS(3100), - [anon_sym_AMP_CARET] = ACTIONS(3100), - [anon_sym_AMP_AMP] = ACTIONS(3100), - [anon_sym_PIPE_PIPE] = ACTIONS(3100), - [anon_sym_or] = ACTIONS(3102), - [sym_none] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_nil] = ACTIONS(3102), - [anon_sym_QMARK_DOT] = ACTIONS(3100), - [anon_sym_POUND_LBRACK] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_DOLLARif] = ACTIONS(3102), - [anon_sym_is] = ACTIONS(3102), - [anon_sym_BANGis] = ACTIONS(3100), - [anon_sym_in] = ACTIONS(3102), - [anon_sym_BANGin] = ACTIONS(3100), - [anon_sym_match] = ACTIONS(3102), - [anon_sym_select] = ACTIONS(3102), - [anon_sym_lock] = ACTIONS(3102), - [anon_sym_rlock] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(3102), - [anon_sym_sql] = ACTIONS(3102), - [sym_int_literal] = ACTIONS(3102), - [sym_float_literal] = ACTIONS(3100), - [sym_rune_literal] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_shared] = ACTIONS(3102), - [anon_sym_map_LBRACK] = ACTIONS(3100), - [anon_sym_chan] = ACTIONS(3102), - [anon_sym_thread] = ACTIONS(3102), - [anon_sym_atomic] = ACTIONS(3102), - [sym___double_quote] = ACTIONS(3100), - [sym___single_quote] = ACTIONS(3100), - [sym___c_double_quote] = ACTIONS(3100), - [sym___c_single_quote] = ACTIONS(3100), - [sym___r_double_quote] = ACTIONS(3100), - [sym___r_single_quote] = ACTIONS(3100), + [anon_sym_DOT] = ACTIONS(3080), + [anon_sym_as] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), + [anon_sym_fn] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_SLASH] = ACTIONS(3080), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3080), + [anon_sym_GT] = ACTIONS(3080), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3078), + [anon_sym_GT_EQ] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_struct] = ACTIONS(3080), + [anon_sym_mut] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(3078), + [anon_sym_PLUS_PLUS] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3080), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_go] = ACTIONS(3080), + [anon_sym_spawn] = ACTIONS(3080), + [anon_sym_json_DOTdecode] = ACTIONS(3078), + [anon_sym_LBRACK2] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_CARET] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3080), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3078), + [anon_sym_GT_GT] = ACTIONS(3080), + [anon_sym_GT_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_CARET] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_or] = ACTIONS(3080), + [sym_none] = ACTIONS(3080), + [sym_true] = ACTIONS(3080), + [sym_false] = ACTIONS(3080), + [sym_nil] = ACTIONS(3080), + [anon_sym_QMARK_DOT] = ACTIONS(3078), + [anon_sym_POUND_LBRACK] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_DOLLARif] = ACTIONS(3080), + [anon_sym_is] = ACTIONS(3080), + [anon_sym_BANGis] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3080), + [anon_sym_BANGin] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3080), + [anon_sym_select] = ACTIONS(3080), + [anon_sym_lock] = ACTIONS(3080), + [anon_sym_rlock] = ACTIONS(3080), + [anon_sym_unsafe] = ACTIONS(3080), + [anon_sym_sql] = ACTIONS(3080), + [sym_int_literal] = ACTIONS(3080), + [sym_float_literal] = ACTIONS(3078), + [sym_rune_literal] = ACTIONS(3078), + [anon_sym_AT] = ACTIONS(3080), + [anon_sym_shared] = ACTIONS(3080), + [anon_sym_map_LBRACK] = ACTIONS(3078), + [anon_sym_chan] = ACTIONS(3080), + [anon_sym_thread] = ACTIONS(3080), + [anon_sym_atomic] = ACTIONS(3080), + [sym___double_quote] = ACTIONS(3078), + [sym___single_quote] = ACTIONS(3078), + [sym___c_double_quote] = ACTIONS(3078), + [sym___c_single_quote] = ACTIONS(3078), + [sym___r_double_quote] = ACTIONS(3078), + [sym___r_single_quote] = ACTIONS(3078), }, [1398] = { - [sym_identifier] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3241), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3239), + [anon_sym_BANG_EQ] = ACTIONS(3239), + [anon_sym_LT_EQ] = ACTIONS(3239), + [anon_sym_GT_EQ] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_COLON] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3239), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_CARET] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3239), + [anon_sym_LT_LT] = ACTIONS(3239), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3239), + [anon_sym_AMP_CARET] = ACTIONS(3239), + [anon_sym_AMP_AMP] = ACTIONS(3239), + [anon_sym_PIPE_PIPE] = ACTIONS(3239), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3239), + [anon_sym_POUND_LBRACK] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3239), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3239), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3239), + [sym_rune_literal] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3239), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3239), + [sym___single_quote] = ACTIONS(3239), + [sym___c_double_quote] = ACTIONS(3239), + [sym___c_single_quote] = ACTIONS(3239), + [sym___r_double_quote] = ACTIONS(3239), + [sym___r_single_quote] = ACTIONS(3239), }, [1399] = { - [sym_identifier] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3245), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3191), - [anon_sym_fn] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_mut] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_go] = ACTIONS(3191), - [anon_sym_spawn] = ACTIONS(3191), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3191), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3191), - [sym_none] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_nil] = ACTIONS(3191), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_DOLLARif] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3191), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_rlock] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_sql] = ACTIONS(3191), - [sym_int_literal] = ACTIONS(3191), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_COMMA] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3243), + [anon_sym_BANG_EQ] = ACTIONS(3243), + [anon_sym_LT_EQ] = ACTIONS(3243), + [anon_sym_GT_EQ] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3243), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3243), + [anon_sym_LT_LT] = ACTIONS(3243), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3243), + [anon_sym_AMP_CARET] = ACTIONS(3243), + [anon_sym_AMP_AMP] = ACTIONS(3243), + [anon_sym_PIPE_PIPE] = ACTIONS(3243), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3243), + [anon_sym_POUND_LBRACK] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3243), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3243), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3243), + [sym_rune_literal] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3243), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3243), + [sym___single_quote] = ACTIONS(3243), + [sym___c_double_quote] = ACTIONS(3243), + [sym___c_single_quote] = ACTIONS(3243), + [sym___r_double_quote] = ACTIONS(3243), + [sym___r_single_quote] = ACTIONS(3243), }, [1400] = { - [sym_identifier] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3084), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), + [anon_sym_DOT] = ACTIONS(3084), + [anon_sym_as] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3084), + [anon_sym_fn] = ACTIONS(3084), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3084), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_GT] = ACTIONS(3084), + [anon_sym_EQ_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3082), + [anon_sym_LT_EQ] = ACTIONS(3082), + [anon_sym_GT_EQ] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3084), + [anon_sym_mut] = ACTIONS(3084), + [anon_sym_COLON] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [anon_sym_QMARK] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_go] = ACTIONS(3084), + [anon_sym_spawn] = ACTIONS(3084), + [anon_sym_json_DOTdecode] = ACTIONS(3082), + [anon_sym_LBRACK2] = ACTIONS(3084), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3084), + [anon_sym_LT_DASH] = ACTIONS(3082), + [anon_sym_LT_LT] = ACTIONS(3082), + [anon_sym_GT_GT] = ACTIONS(3084), + [anon_sym_GT_GT_GT] = ACTIONS(3082), + [anon_sym_AMP_CARET] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_PIPE_PIPE] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3084), + [sym_none] = ACTIONS(3084), + [sym_true] = ACTIONS(3084), + [sym_false] = ACTIONS(3084), + [sym_nil] = ACTIONS(3084), + [anon_sym_QMARK_DOT] = ACTIONS(3082), + [anon_sym_POUND_LBRACK] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3084), + [anon_sym_is] = ACTIONS(3084), + [anon_sym_BANGis] = ACTIONS(3082), + [anon_sym_in] = ACTIONS(3084), + [anon_sym_BANGin] = ACTIONS(3082), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_select] = ACTIONS(3084), + [anon_sym_lock] = ACTIONS(3084), + [anon_sym_rlock] = ACTIONS(3084), + [anon_sym_unsafe] = ACTIONS(3084), + [anon_sym_sql] = ACTIONS(3084), + [sym_int_literal] = ACTIONS(3084), + [sym_float_literal] = ACTIONS(3082), + [sym_rune_literal] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3084), + [anon_sym_shared] = ACTIONS(3084), + [anon_sym_map_LBRACK] = ACTIONS(3082), + [anon_sym_chan] = ACTIONS(3084), + [anon_sym_thread] = ACTIONS(3084), + [anon_sym_atomic] = ACTIONS(3084), + [sym___double_quote] = ACTIONS(3082), + [sym___single_quote] = ACTIONS(3082), + [sym___c_double_quote] = ACTIONS(3082), + [sym___c_single_quote] = ACTIONS(3082), + [sym___r_double_quote] = ACTIONS(3082), + [sym___r_single_quote] = ACTIONS(3082), }, [1401] = { - [sym_identifier] = ACTIONS(3203), + [sym_identifier] = ACTIONS(3293), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3201), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3201), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_AMP_CARET] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3201), - [anon_sym_POUND_LBRACK] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3201), - [sym_rune_literal] = ACTIONS(3201), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3201), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3201), - [sym___single_quote] = ACTIONS(3201), - [sym___c_double_quote] = ACTIONS(3201), - [sym___c_single_quote] = ACTIONS(3201), - [sym___r_double_quote] = ACTIONS(3201), - [sym___r_single_quote] = ACTIONS(3201), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_as] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3293), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_RBRACK] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_COLON] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3291), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3291), + [anon_sym_LT_LT] = ACTIONS(3291), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_GT_GT_GT] = ACTIONS(3291), + [anon_sym_AMP_CARET] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3291), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_QMARK_DOT] = ACTIONS(3291), + [anon_sym_POUND_LBRACK] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_is] = ACTIONS(3293), + [anon_sym_BANGis] = ACTIONS(3291), + [anon_sym_in] = ACTIONS(3293), + [anon_sym_BANGin] = ACTIONS(3291), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3291), + [sym_rune_literal] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3291), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [sym___double_quote] = ACTIONS(3291), + [sym___single_quote] = ACTIONS(3291), + [sym___c_double_quote] = ACTIONS(3291), + [sym___c_single_quote] = ACTIONS(3291), + [sym___r_double_quote] = ACTIONS(3291), + [sym___r_single_quote] = ACTIONS(3291), }, [1402] = { - [sym_identifier] = ACTIONS(3114), + [sym_identifier] = ACTIONS(2890), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_PIPE] = ACTIONS(3114), - [anon_sym_fn] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_EQ_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3112), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_struct] = ACTIONS(3114), - [anon_sym_mut] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [anon_sym_QMARK] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_go] = ACTIONS(3114), - [anon_sym_spawn] = ACTIONS(3114), - [anon_sym_json_DOTdecode] = ACTIONS(3112), - [anon_sym_LBRACK2] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_CARET] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_LT_DASH] = ACTIONS(3112), - [anon_sym_LT_LT] = ACTIONS(3112), - [anon_sym_GT_GT] = ACTIONS(3114), - [anon_sym_GT_GT_GT] = ACTIONS(3112), - [anon_sym_AMP_CARET] = ACTIONS(3112), - [anon_sym_AMP_AMP] = ACTIONS(3112), - [anon_sym_PIPE_PIPE] = ACTIONS(3112), - [anon_sym_or] = ACTIONS(3114), - [sym_none] = ACTIONS(3114), - [sym_true] = ACTIONS(3114), - [sym_false] = ACTIONS(3114), - [sym_nil] = ACTIONS(3114), - [anon_sym_QMARK_DOT] = ACTIONS(3112), - [anon_sym_POUND_LBRACK] = ACTIONS(3112), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_DOLLARif] = ACTIONS(3114), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3112), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_BANGin] = ACTIONS(3112), - [anon_sym_match] = ACTIONS(3114), - [anon_sym_select] = ACTIONS(3114), - [anon_sym_lock] = ACTIONS(3114), - [anon_sym_rlock] = ACTIONS(3114), - [anon_sym_unsafe] = ACTIONS(3114), - [anon_sym_sql] = ACTIONS(3114), - [sym_int_literal] = ACTIONS(3114), - [sym_float_literal] = ACTIONS(3112), - [sym_rune_literal] = ACTIONS(3112), - [anon_sym_AT] = ACTIONS(3114), - [anon_sym_shared] = ACTIONS(3114), - [anon_sym_map_LBRACK] = ACTIONS(3112), - [anon_sym_chan] = ACTIONS(3114), - [anon_sym_thread] = ACTIONS(3114), - [anon_sym_atomic] = ACTIONS(3114), - [sym___double_quote] = ACTIONS(3112), - [sym___single_quote] = ACTIONS(3112), - [sym___c_double_quote] = ACTIONS(3112), - [sym___c_single_quote] = ACTIONS(3112), - [sym___r_double_quote] = ACTIONS(3112), - [sym___r_single_quote] = ACTIONS(3112), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2888), + [anon_sym_LT_EQ] = ACTIONS(2888), + [anon_sym_GT_EQ] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_RBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_PLUS_PLUS] = ACTIONS(2888), + [anon_sym_DASH_DASH] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2888), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2888), + [anon_sym_CARET] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_LT_LT] = ACTIONS(2888), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2888), + [anon_sym_AMP_CARET] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2888), + [anon_sym_POUND_LBRACK] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2888), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2888), + [sym_rune_literal] = ACTIONS(2888), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2888), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2888), + [sym___single_quote] = ACTIONS(2888), + [sym___c_double_quote] = ACTIONS(2888), + [sym___c_single_quote] = ACTIONS(2888), + [sym___r_double_quote] = ACTIONS(2888), + [sym___r_single_quote] = ACTIONS(2888), }, [1403] = { - [sym_identifier] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3198), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_COMMA] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_LT_EQ] = ACTIONS(3196), + [anon_sym_GT_EQ] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_RBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_COLON] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3196), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_CARET] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3196), + [anon_sym_LT_LT] = ACTIONS(3196), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3196), + [anon_sym_AMP_CARET] = ACTIONS(3196), + [anon_sym_AMP_AMP] = ACTIONS(3196), + [anon_sym_PIPE_PIPE] = ACTIONS(3196), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3196), + [anon_sym_POUND_LBRACK] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3196), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3196), + [sym_rune_literal] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3196), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3196), + [sym___single_quote] = ACTIONS(3196), + [sym___c_double_quote] = ACTIONS(3196), + [sym___c_single_quote] = ACTIONS(3196), + [sym___r_double_quote] = ACTIONS(3196), + [sym___r_single_quote] = ACTIONS(3196), }, [1404] = { - [sym_identifier] = ACTIONS(2866), + [sym_identifier] = ACTIONS(3186), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_as] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_fn] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_GT] = ACTIONS(2866), - [anon_sym_EQ_EQ] = ACTIONS(2864), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_RBRACK] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2866), - [anon_sym_mut] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_go] = ACTIONS(2866), - [anon_sym_spawn] = ACTIONS(2866), - [anon_sym_json_DOTdecode] = ACTIONS(2864), - [anon_sym_LBRACK2] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2864), - [anon_sym_GT_GT] = ACTIONS(2866), - [anon_sym_GT_GT_GT] = ACTIONS(2864), - [anon_sym_AMP_CARET] = ACTIONS(2864), - [anon_sym_AMP_AMP] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2866), - [sym_none] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_nil] = ACTIONS(2866), - [anon_sym_QMARK_DOT] = ACTIONS(2864), - [anon_sym_POUND_LBRACK] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_DOLLARif] = ACTIONS(2866), - [anon_sym_is] = ACTIONS(2866), - [anon_sym_BANGis] = ACTIONS(2864), - [anon_sym_in] = ACTIONS(2866), - [anon_sym_BANGin] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_select] = ACTIONS(2866), - [anon_sym_lock] = ACTIONS(2866), - [anon_sym_rlock] = ACTIONS(2866), - [anon_sym_unsafe] = ACTIONS(2866), - [anon_sym_sql] = ACTIONS(2866), - [sym_int_literal] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2864), - [sym_rune_literal] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2866), - [anon_sym_shared] = ACTIONS(2866), - [anon_sym_map_LBRACK] = ACTIONS(2864), - [anon_sym_chan] = ACTIONS(2866), - [anon_sym_thread] = ACTIONS(2866), - [anon_sym_atomic] = ACTIONS(2866), - [sym___double_quote] = ACTIONS(2864), - [sym___single_quote] = ACTIONS(2864), - [sym___c_double_quote] = ACTIONS(2864), - [sym___c_single_quote] = ACTIONS(2864), - [sym___r_double_quote] = ACTIONS(2864), - [sym___r_single_quote] = ACTIONS(2864), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3184), + [anon_sym_LT_EQ] = ACTIONS(3184), + [anon_sym_GT_EQ] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_COLON] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3184), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3184), + [anon_sym_LT_LT] = ACTIONS(3184), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3184), + [anon_sym_AMP_CARET] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_PIPE_PIPE] = ACTIONS(3184), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3184), + [anon_sym_POUND_LBRACK] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3184), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3184), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3184), + [sym_rune_literal] = ACTIONS(3184), + [anon_sym_AT] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3184), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3184), + [sym___single_quote] = ACTIONS(3184), + [sym___c_double_quote] = ACTIONS(3184), + [sym___c_single_quote] = ACTIONS(3184), + [sym___r_double_quote] = ACTIONS(3184), + [sym___r_single_quote] = ACTIONS(3184), }, [1405] = { - [sym_identifier] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3202), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_as] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3167), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_GT] = ACTIONS(3167), - [anon_sym_EQ_EQ] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_EQ] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3165), - [anon_sym_GT_GT] = ACTIONS(3167), - [anon_sym_GT_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_CARET] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3167), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(3165), - [anon_sym_POUND_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(3167), - [anon_sym_BANGis] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3167), - [anon_sym_BANGin] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3200), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3200), + [anon_sym_LT_LT] = ACTIONS(3200), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3200), + [anon_sym_AMP_CARET] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3200), + [anon_sym_POUND_LBRACK] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3200), + [sym_rune_literal] = ACTIONS(3200), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3200), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3200), + [sym___single_quote] = ACTIONS(3200), + [sym___c_double_quote] = ACTIONS(3200), + [sym___c_single_quote] = ACTIONS(3200), + [sym___r_double_quote] = ACTIONS(3200), + [sym___r_single_quote] = ACTIONS(3200), }, [1406] = { - [sym_identifier] = ACTIONS(2764), + [sym_identifier] = ACTIONS(3206), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_as] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_COMMA] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2764), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2764), - [anon_sym_GT] = ACTIONS(2764), - [anon_sym_EQ_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_EQ] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_RBRACK] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2762), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2762), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2762), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2762), - [anon_sym_LT_LT] = ACTIONS(2762), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_GT_GT_GT] = ACTIONS(2762), - [anon_sym_AMP_CARET] = ACTIONS(2762), - [anon_sym_AMP_AMP] = ACTIONS(2762), - [anon_sym_PIPE_PIPE] = ACTIONS(2762), - [anon_sym_or] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_QMARK_DOT] = ACTIONS(2762), - [anon_sym_POUND_LBRACK] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_BANGis] = ACTIONS(2762), - [anon_sym_in] = ACTIONS(2764), - [anon_sym_BANGin] = ACTIONS(2762), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2762), - [sym_rune_literal] = ACTIONS(2762), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2762), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2762), - [sym___single_quote] = ACTIONS(2762), - [sym___c_double_quote] = ACTIONS(2762), - [sym___c_single_quote] = ACTIONS(2762), - [sym___r_double_quote] = ACTIONS(2762), - [sym___r_single_quote] = ACTIONS(2762), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_LT_EQ] = ACTIONS(3204), + [anon_sym_GT_EQ] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_RBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3204), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_CARET] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3204), + [anon_sym_LT_LT] = ACTIONS(3204), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3204), + [anon_sym_AMP_CARET] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_PIPE_PIPE] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3204), + [anon_sym_POUND_LBRACK] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3204), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3204), + [sym_rune_literal] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3204), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3204), + [sym___single_quote] = ACTIONS(3204), + [sym___c_double_quote] = ACTIONS(3204), + [sym___c_single_quote] = ACTIONS(3204), + [sym___r_double_quote] = ACTIONS(3204), + [sym___r_single_quote] = ACTIONS(3204), }, [1407] = { - [sym_identifier] = ACTIONS(3159), + [sym_identifier] = ACTIONS(3210), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_COLON] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3208), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3208), + [anon_sym_LT_LT] = ACTIONS(3208), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3208), + [anon_sym_AMP_CARET] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3208), + [anon_sym_POUND_LBRACK] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3208), + [sym_rune_literal] = ACTIONS(3208), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3208), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3208), + [sym___single_quote] = ACTIONS(3208), + [sym___c_double_quote] = ACTIONS(3208), + [sym___c_single_quote] = ACTIONS(3208), + [sym___r_double_quote] = ACTIONS(3208), + [sym___r_single_quote] = ACTIONS(3208), }, [1408] = { - [sym_identifier] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3140), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [anon_sym_AT] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_PIPE] = ACTIONS(3140), + [anon_sym_fn] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3138), + [anon_sym_BANG_EQ] = ACTIONS(3138), + [anon_sym_LT_EQ] = ACTIONS(3138), + [anon_sym_GT_EQ] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3140), + [anon_sym_mut] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_go] = ACTIONS(3140), + [anon_sym_spawn] = ACTIONS(3140), + [anon_sym_json_DOTdecode] = ACTIONS(3138), + [anon_sym_LBRACK2] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_CARET] = ACTIONS(3138), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3138), + [anon_sym_LT_LT] = ACTIONS(3138), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_GT_GT_GT] = ACTIONS(3138), + [anon_sym_AMP_CARET] = ACTIONS(3138), + [anon_sym_AMP_AMP] = ACTIONS(3138), + [anon_sym_PIPE_PIPE] = ACTIONS(3138), + [anon_sym_or] = ACTIONS(3140), + [sym_none] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_nil] = ACTIONS(3140), + [anon_sym_QMARK_DOT] = ACTIONS(3138), + [anon_sym_POUND_LBRACK] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_DOLLARif] = ACTIONS(3140), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3138), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_BANGin] = ACTIONS(3138), + [anon_sym_match] = ACTIONS(3140), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(3140), + [anon_sym_sql] = ACTIONS(3140), + [sym_int_literal] = ACTIONS(3140), + [sym_float_literal] = ACTIONS(3138), + [sym_rune_literal] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_shared] = ACTIONS(3140), + [anon_sym_map_LBRACK] = ACTIONS(3138), + [anon_sym_chan] = ACTIONS(3140), + [anon_sym_thread] = ACTIONS(3140), + [anon_sym_atomic] = ACTIONS(3140), + [sym___double_quote] = ACTIONS(3138), + [sym___single_quote] = ACTIONS(3138), + [sym___c_double_quote] = ACTIONS(3138), + [sym___c_single_quote] = ACTIONS(3138), + [sym___r_double_quote] = ACTIONS(3138), + [sym___r_single_quote] = ACTIONS(3138), }, [1409] = { - [sym_identifier] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3237), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3131), - [anon_sym_AMP_CARET] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_LT_EQ] = ACTIONS(3235), + [anon_sym_GT_EQ] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3235), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_CARET] = ACTIONS(3235), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(3235), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_CARET] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3235), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3235), + [sym_rune_literal] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3235), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3235), + [sym___single_quote] = ACTIONS(3235), + [sym___c_double_quote] = ACTIONS(3235), + [sym___c_single_quote] = ACTIONS(3235), + [sym___r_double_quote] = ACTIONS(3235), + [sym___r_single_quote] = ACTIONS(3235), }, [1410] = { - [sym_identifier] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3152), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3150), + [anon_sym_BANG_EQ] = ACTIONS(3150), + [anon_sym_LT_EQ] = ACTIONS(3150), + [anon_sym_GT_EQ] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_RBRACK] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3152), + [anon_sym_mut] = ACTIONS(3152), + [anon_sym_COLON] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_QMARK] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_go] = ACTIONS(3152), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(3150), + [anon_sym_LBRACK2] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_LT_DASH] = ACTIONS(3150), + [anon_sym_LT_LT] = ACTIONS(3150), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_GT_GT_GT] = ACTIONS(3150), + [anon_sym_AMP_CARET] = ACTIONS(3150), + [anon_sym_AMP_AMP] = ACTIONS(3150), + [anon_sym_PIPE_PIPE] = ACTIONS(3150), + [anon_sym_or] = ACTIONS(3152), + [sym_none] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_nil] = ACTIONS(3152), + [anon_sym_QMARK_DOT] = ACTIONS(3150), + [anon_sym_POUND_LBRACK] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_DOLLARif] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3150), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_BANGin] = ACTIONS(3150), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_select] = ACTIONS(3152), + [anon_sym_lock] = ACTIONS(3152), + [anon_sym_rlock] = ACTIONS(3152), + [anon_sym_unsafe] = ACTIONS(3152), + [anon_sym_sql] = ACTIONS(3152), + [sym_int_literal] = ACTIONS(3152), + [sym_float_literal] = ACTIONS(3150), + [sym_rune_literal] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_shared] = ACTIONS(3152), + [anon_sym_map_LBRACK] = ACTIONS(3150), + [anon_sym_chan] = ACTIONS(3152), + [anon_sym_thread] = ACTIONS(3152), + [anon_sym_atomic] = ACTIONS(3152), + [sym___double_quote] = ACTIONS(3150), + [sym___single_quote] = ACTIONS(3150), + [sym___c_double_quote] = ACTIONS(3150), + [sym___c_single_quote] = ACTIONS(3150), + [sym___r_double_quote] = ACTIONS(3150), + [sym___r_single_quote] = ACTIONS(3150), }, [1411] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(2315), - [sym_plain_type] = STATE(2400), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(2315), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(3708), + [sym_identifier] = ACTIONS(2936), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_RBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3716), - [anon_sym_LBRACK2] = ACTIONS(3718), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(557), - [anon_sym_AMP_CARET] = ACTIONS(557), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_POUND_LBRACK] = ACTIONS(557), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(557), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(557), - [anon_sym_COLON_EQ] = ACTIONS(557), - [anon_sym_shared] = ACTIONS(3722), - [anon_sym_map_LBRACK] = ACTIONS(3724), - [anon_sym_chan] = ACTIONS(3726), - [anon_sym_thread] = ACTIONS(3728), - [anon_sym_atomic] = ACTIONS(3730), - [anon_sym_DOT_DOT] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(2936), + [anon_sym_as] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_fn] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_GT] = ACTIONS(2936), + [anon_sym_EQ_EQ] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2934), + [anon_sym_LT_EQ] = ACTIONS(2934), + [anon_sym_GT_EQ] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_RBRACK] = ACTIONS(2934), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_mut] = ACTIONS(2936), + [anon_sym_COLON] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2936), + [anon_sym_go] = ACTIONS(2936), + [anon_sym_spawn] = ACTIONS(2936), + [anon_sym_json_DOTdecode] = ACTIONS(2934), + [anon_sym_LBRACK2] = ACTIONS(2936), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_LT_LT] = ACTIONS(2934), + [anon_sym_GT_GT] = ACTIONS(2936), + [anon_sym_GT_GT_GT] = ACTIONS(2934), + [anon_sym_AMP_CARET] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_or] = ACTIONS(2936), + [sym_none] = ACTIONS(2936), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_nil] = ACTIONS(2936), + [anon_sym_QMARK_DOT] = ACTIONS(2934), + [anon_sym_POUND_LBRACK] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_DOLLARif] = ACTIONS(2936), + [anon_sym_is] = ACTIONS(2936), + [anon_sym_BANGis] = ACTIONS(2934), + [anon_sym_in] = ACTIONS(2936), + [anon_sym_BANGin] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2936), + [anon_sym_select] = ACTIONS(2936), + [anon_sym_lock] = ACTIONS(2936), + [anon_sym_rlock] = ACTIONS(2936), + [anon_sym_unsafe] = ACTIONS(2936), + [anon_sym_sql] = ACTIONS(2936), + [sym_int_literal] = ACTIONS(2936), + [sym_float_literal] = ACTIONS(2934), + [sym_rune_literal] = ACTIONS(2934), + [anon_sym_AT] = ACTIONS(2936), + [anon_sym_shared] = ACTIONS(2936), + [anon_sym_map_LBRACK] = ACTIONS(2934), + [anon_sym_chan] = ACTIONS(2936), + [anon_sym_thread] = ACTIONS(2936), + [anon_sym_atomic] = ACTIONS(2936), + [sym___double_quote] = ACTIONS(2934), + [sym___single_quote] = ACTIONS(2934), + [sym___c_double_quote] = ACTIONS(2934), + [sym___c_single_quote] = ACTIONS(2934), + [sym___r_double_quote] = ACTIONS(2934), + [sym___r_single_quote] = ACTIONS(2934), }, [1412] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(2315), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(2315), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(3708), + [sym_identifier] = ACTIONS(3265), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3716), - [anon_sym_LBRACK2] = ACTIONS(3718), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3722), - [anon_sym_map_LBRACK] = ACTIONS(3724), - [anon_sym_chan] = ACTIONS(3726), - [anon_sym_thread] = ACTIONS(3728), - [anon_sym_atomic] = ACTIONS(3730), - [anon_sym_DOT_DOT] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3263), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3263), + [anon_sym_BANG_EQ] = ACTIONS(3263), + [anon_sym_LT_EQ] = ACTIONS(3263), + [anon_sym_GT_EQ] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_RBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_COLON] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3263), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3263), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3263), + [anon_sym_CARET] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3263), + [anon_sym_LT_LT] = ACTIONS(3263), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3263), + [anon_sym_AMP_CARET] = ACTIONS(3263), + [anon_sym_AMP_AMP] = ACTIONS(3263), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3263), + [anon_sym_POUND_LBRACK] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3263), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3263), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3263), + [sym_rune_literal] = ACTIONS(3263), + [anon_sym_AT] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3263), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3263), + [sym___single_quote] = ACTIONS(3263), + [sym___c_double_quote] = ACTIONS(3263), + [sym___c_single_quote] = ACTIONS(3263), + [sym___r_double_quote] = ACTIONS(3263), + [sym___r_single_quote] = ACTIONS(3263), }, [1413] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(2315), - [sym_plain_type] = STATE(2330), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(2315), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(3708), + [sym_identifier] = ACTIONS(3028), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(611), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_RBRACE] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3710), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3712), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_RBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(611), - [anon_sym_DASH_DASH] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(3714), - [anon_sym_BANG] = ACTIONS(3716), - [anon_sym_LBRACK2] = ACTIONS(3718), - [anon_sym_CARET] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(3720), - [anon_sym_LT_LT] = ACTIONS(611), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(611), - [anon_sym_AMP_CARET] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_or] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(611), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(611), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(611), - [anon_sym_COLON_EQ] = ACTIONS(611), - [anon_sym_shared] = ACTIONS(3722), - [anon_sym_map_LBRACK] = ACTIONS(3724), - [anon_sym_chan] = ACTIONS(3726), - [anon_sym_thread] = ACTIONS(3728), - [anon_sym_atomic] = ACTIONS(3730), - [anon_sym_DOT_DOT] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(3028), + [anon_sym_as] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3028), + [anon_sym_PERCENT] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3028), + [anon_sym_GT] = ACTIONS(3028), + [anon_sym_EQ_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_RBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_mut] = ACTIONS(3028), + [anon_sym_COLON] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3028), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_go] = ACTIONS(3028), + [anon_sym_spawn] = ACTIONS(3028), + [anon_sym_json_DOTdecode] = ACTIONS(3026), + [anon_sym_LBRACK2] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_CARET] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_LT_DASH] = ACTIONS(3026), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3028), + [anon_sym_GT_GT_GT] = ACTIONS(3026), + [anon_sym_AMP_CARET] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3028), + [sym_none] = ACTIONS(3028), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [sym_nil] = ACTIONS(3028), + [anon_sym_QMARK_DOT] = ACTIONS(3026), + [anon_sym_POUND_LBRACK] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_DOLLARif] = ACTIONS(3028), + [anon_sym_is] = ACTIONS(3028), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_in] = ACTIONS(3028), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3028), + [anon_sym_select] = ACTIONS(3028), + [anon_sym_lock] = ACTIONS(3028), + [anon_sym_rlock] = ACTIONS(3028), + [anon_sym_unsafe] = ACTIONS(3028), + [anon_sym_sql] = ACTIONS(3028), + [sym_int_literal] = ACTIONS(3028), + [sym_float_literal] = ACTIONS(3026), + [sym_rune_literal] = ACTIONS(3026), + [anon_sym_AT] = ACTIONS(3028), + [anon_sym_shared] = ACTIONS(3028), + [anon_sym_map_LBRACK] = ACTIONS(3026), + [anon_sym_chan] = ACTIONS(3028), + [anon_sym_thread] = ACTIONS(3028), + [anon_sym_atomic] = ACTIONS(3028), + [sym___double_quote] = ACTIONS(3026), + [sym___single_quote] = ACTIONS(3026), + [sym___c_double_quote] = ACTIONS(3026), + [sym___c_single_quote] = ACTIONS(3026), + [sym___r_double_quote] = ACTIONS(3026), + [sym___r_single_quote] = ACTIONS(3026), }, [1414] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_CR] = ACTIONS(617), - [anon_sym_CR_LF] = ACTIONS(617), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(617), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [sym_identifier] = ACTIONS(3194), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3192), + [anon_sym_BANG_EQ] = ACTIONS(3192), + [anon_sym_LT_EQ] = ACTIONS(3192), + [anon_sym_GT_EQ] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_RBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3192), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_CARET] = ACTIONS(3192), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3192), + [anon_sym_LT_LT] = ACTIONS(3192), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3192), + [anon_sym_AMP_CARET] = ACTIONS(3192), + [anon_sym_AMP_AMP] = ACTIONS(3192), + [anon_sym_PIPE_PIPE] = ACTIONS(3192), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3192), + [anon_sym_POUND_LBRACK] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3192), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3192), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3192), + [sym_rune_literal] = ACTIONS(3192), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3192), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3192), + [sym___single_quote] = ACTIONS(3192), + [sym___c_double_quote] = ACTIONS(3192), + [sym___c_single_quote] = ACTIONS(3192), + [sym___r_double_quote] = ACTIONS(3192), + [sym___r_single_quote] = ACTIONS(3192), }, [1415] = { - [sym_type_parameters] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym___global] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(3732), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [anon_sym_assert] = ACTIONS(2764), - [anon_sym_defer] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_DOLLARfor] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [anon_sym_asm] = ACTIONS(2764), - [anon_sym_AT_LBRACK] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), + [sym_identifier] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(3148), + [anon_sym_fn] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_EQ_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3148), + [anon_sym_mut] = ACTIONS(3148), + [anon_sym_COLON] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [anon_sym_QMARK] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3148), + [anon_sym_spawn] = ACTIONS(3148), + [anon_sym_json_DOTdecode] = ACTIONS(3146), + [anon_sym_LBRACK2] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_CARET] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_LT_DASH] = ACTIONS(3146), + [anon_sym_LT_LT] = ACTIONS(3146), + [anon_sym_GT_GT] = ACTIONS(3148), + [anon_sym_GT_GT_GT] = ACTIONS(3146), + [anon_sym_AMP_CARET] = ACTIONS(3146), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_or] = ACTIONS(3148), + [sym_none] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nil] = ACTIONS(3148), + [anon_sym_QMARK_DOT] = ACTIONS(3146), + [anon_sym_POUND_LBRACK] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_DOLLARif] = ACTIONS(3148), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3146), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_BANGin] = ACTIONS(3146), + [anon_sym_match] = ACTIONS(3148), + [anon_sym_select] = ACTIONS(3148), + [anon_sym_lock] = ACTIONS(3148), + [anon_sym_rlock] = ACTIONS(3148), + [anon_sym_unsafe] = ACTIONS(3148), + [anon_sym_sql] = ACTIONS(3148), + [sym_int_literal] = ACTIONS(3148), + [sym_float_literal] = ACTIONS(3146), + [sym_rune_literal] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_shared] = ACTIONS(3148), + [anon_sym_map_LBRACK] = ACTIONS(3146), + [anon_sym_chan] = ACTIONS(3148), + [anon_sym_thread] = ACTIONS(3148), + [anon_sym_atomic] = ACTIONS(3148), + [sym___double_quote] = ACTIONS(3146), + [sym___single_quote] = ACTIONS(3146), + [sym___c_double_quote] = ACTIONS(3146), + [sym___c_single_quote] = ACTIONS(3146), + [sym___r_double_quote] = ACTIONS(3146), + [sym___r_single_quote] = ACTIONS(3146), }, [1416] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), + [sym_identifier] = ACTIONS(3257), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_RBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_COMMA] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3255), + [anon_sym_BANG_EQ] = ACTIONS(3255), + [anon_sym_LT_EQ] = ACTIONS(3255), + [anon_sym_GT_EQ] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_RBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_COLON] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3255), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_CARET] = ACTIONS(3255), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3255), + [anon_sym_LT_LT] = ACTIONS(3255), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3255), + [anon_sym_AMP_CARET] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(3255), + [anon_sym_PIPE_PIPE] = ACTIONS(3255), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3255), + [anon_sym_POUND_LBRACK] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3255), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3255), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3255), + [sym_rune_literal] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3255), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3255), + [sym___single_quote] = ACTIONS(3255), + [sym___c_double_quote] = ACTIONS(3255), + [sym___c_single_quote] = ACTIONS(3255), + [sym___r_double_quote] = ACTIONS(3255), + [sym___r_single_quote] = ACTIONS(3255), }, [1417] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(595), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3734), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_AMP_CARET] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(593), - [anon_sym_POUND_LBRACK] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(593), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(543), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [sym_identifier] = ACTIONS(3281), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3281), + [anon_sym_as] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_fn] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT_EQ] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_RBRACK] = ACTIONS(3279), + [anon_sym_struct] = ACTIONS(3281), + [anon_sym_mut] = ACTIONS(3281), + [anon_sym_COLON] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_go] = ACTIONS(3281), + [anon_sym_spawn] = ACTIONS(3281), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3281), + [anon_sym_GT_GT_GT] = ACTIONS(3279), + [anon_sym_AMP_CARET] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_PIPE_PIPE] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3281), + [sym_none] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_nil] = ACTIONS(3281), + [anon_sym_QMARK_DOT] = ACTIONS(3279), + [anon_sym_POUND_LBRACK] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_DOLLARif] = ACTIONS(3281), + [anon_sym_is] = ACTIONS(3281), + [anon_sym_BANGis] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3281), + [anon_sym_BANGin] = ACTIONS(3279), + [anon_sym_match] = ACTIONS(3281), + [anon_sym_select] = ACTIONS(3281), + [anon_sym_lock] = ACTIONS(3281), + [anon_sym_rlock] = ACTIONS(3281), + [anon_sym_unsafe] = ACTIONS(3281), + [anon_sym_sql] = ACTIONS(3281), + [sym_int_literal] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3279), + [sym_rune_literal] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_shared] = ACTIONS(3281), + [anon_sym_map_LBRACK] = ACTIONS(3279), + [anon_sym_chan] = ACTIONS(3281), + [anon_sym_thread] = ACTIONS(3281), + [anon_sym_atomic] = ACTIONS(3281), + [sym___double_quote] = ACTIONS(3279), + [sym___single_quote] = ACTIONS(3279), + [sym___c_double_quote] = ACTIONS(3279), + [sym___c_single_quote] = ACTIONS(3279), + [sym___r_double_quote] = ACTIONS(3279), + [sym___r_single_quote] = ACTIONS(3279), }, [1418] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(3736), - [sym_identifier] = ACTIONS(3738), - [anon_sym_LF] = ACTIONS(3738), - [anon_sym_CR] = ACTIONS(3738), - [anon_sym_CR_LF] = ACTIONS(3738), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym___global] = ACTIONS(3738), - [anon_sym_type] = ACTIONS(3738), - [anon_sym_fn] = ACTIONS(3738), - [anon_sym_PLUS] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3738), - [anon_sym_STAR] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_union] = ACTIONS(3738), - [anon_sym_pub] = ACTIONS(3738), - [anon_sym_mut] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_QMARK] = ACTIONS(3738), - [anon_sym_BANG] = ACTIONS(3738), - [anon_sym_go] = ACTIONS(3738), - [anon_sym_spawn] = ACTIONS(3738), - [anon_sym_json_DOTdecode] = ACTIONS(3738), - [anon_sym_LBRACK2] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(3738), - [anon_sym_CARET] = ACTIONS(3738), - [anon_sym_AMP] = ACTIONS(3738), - [anon_sym_LT_DASH] = ACTIONS(3738), - [sym_none] = ACTIONS(3738), - [sym_true] = ACTIONS(3738), - [sym_false] = ACTIONS(3738), - [sym_nil] = ACTIONS(3738), - [anon_sym_if] = ACTIONS(3738), - [anon_sym_DOLLARif] = ACTIONS(3738), - [anon_sym_match] = ACTIONS(3738), - [anon_sym_select] = ACTIONS(3738), - [anon_sym_lock] = ACTIONS(3738), - [anon_sym_rlock] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_sql] = ACTIONS(3738), - [sym_int_literal] = ACTIONS(3738), - [sym_float_literal] = ACTIONS(3738), - [sym_rune_literal] = ACTIONS(3738), - [anon_sym_AT] = ACTIONS(3738), - [anon_sym_shared] = ACTIONS(3738), - [anon_sym_map_LBRACK] = ACTIONS(3738), - [anon_sym_chan] = ACTIONS(3738), - [anon_sym_thread] = ACTIONS(3738), - [anon_sym_atomic] = ACTIONS(3738), - [anon_sym_assert] = ACTIONS(3738), - [anon_sym_defer] = ACTIONS(3738), - [anon_sym_goto] = ACTIONS(3738), - [anon_sym_break] = ACTIONS(3738), - [anon_sym_continue] = ACTIONS(3738), - [anon_sym_return] = ACTIONS(3738), - [anon_sym_DOLLARfor] = ACTIONS(3738), - [anon_sym_for] = ACTIONS(3738), - [anon_sym_POUND] = ACTIONS(3738), - [anon_sym_asm] = ACTIONS(3738), - [anon_sym_AT_LBRACK] = ACTIONS(3738), - [sym___double_quote] = ACTIONS(3738), - [sym___single_quote] = ACTIONS(3738), - [sym___c_double_quote] = ACTIONS(3738), - [sym___c_single_quote] = ACTIONS(3738), - [sym___r_double_quote] = ACTIONS(3738), - [sym___r_single_quote] = ACTIONS(3738), + [sym_identifier] = ACTIONS(3285), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3285), + [anon_sym_as] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_fn] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3283), + [anon_sym_BANG_EQ] = ACTIONS(3283), + [anon_sym_LT_EQ] = ACTIONS(3283), + [anon_sym_GT_EQ] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_RBRACK] = ACTIONS(3283), + [anon_sym_struct] = ACTIONS(3285), + [anon_sym_mut] = ACTIONS(3285), + [anon_sym_COLON] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_go] = ACTIONS(3285), + [anon_sym_spawn] = ACTIONS(3285), + [anon_sym_json_DOTdecode] = ACTIONS(3283), + [anon_sym_LBRACK2] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_LT_DASH] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(3283), + [anon_sym_GT_GT] = ACTIONS(3285), + [anon_sym_GT_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_CARET] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3285), + [sym_none] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_nil] = ACTIONS(3285), + [anon_sym_QMARK_DOT] = ACTIONS(3283), + [anon_sym_POUND_LBRACK] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_DOLLARif] = ACTIONS(3285), + [anon_sym_is] = ACTIONS(3285), + [anon_sym_BANGis] = ACTIONS(3283), + [anon_sym_in] = ACTIONS(3285), + [anon_sym_BANGin] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3285), + [anon_sym_select] = ACTIONS(3285), + [anon_sym_lock] = ACTIONS(3285), + [anon_sym_rlock] = ACTIONS(3285), + [anon_sym_unsafe] = ACTIONS(3285), + [anon_sym_sql] = ACTIONS(3285), + [sym_int_literal] = ACTIONS(3285), + [sym_float_literal] = ACTIONS(3283), + [sym_rune_literal] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_shared] = ACTIONS(3285), + [anon_sym_map_LBRACK] = ACTIONS(3283), + [anon_sym_chan] = ACTIONS(3285), + [anon_sym_thread] = ACTIONS(3285), + [anon_sym_atomic] = ACTIONS(3285), + [sym___double_quote] = ACTIONS(3283), + [sym___single_quote] = ACTIONS(3283), + [sym___c_double_quote] = ACTIONS(3283), + [sym___c_single_quote] = ACTIONS(3283), + [sym___r_double_quote] = ACTIONS(3283), + [sym___r_single_quote] = ACTIONS(3283), }, [1419] = { - [aux_sym__type_union_list_repeat1] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(3740), - [sym_identifier] = ACTIONS(3742), - [anon_sym_LF] = ACTIONS(3744), - [anon_sym_CR] = ACTIONS(3744), - [anon_sym_CR_LF] = ACTIONS(3744), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym___global] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3747), - [anon_sym_fn] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_STAR] = ACTIONS(3742), - [anon_sym_struct] = ACTIONS(3742), - [anon_sym_union] = ACTIONS(3742), - [anon_sym_pub] = ACTIONS(3742), - [anon_sym_mut] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_go] = ACTIONS(3742), - [anon_sym_spawn] = ACTIONS(3742), - [anon_sym_json_DOTdecode] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_CARET] = ACTIONS(3742), - [anon_sym_AMP] = ACTIONS(3742), - [anon_sym_LT_DASH] = ACTIONS(3742), - [sym_none] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_nil] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_DOLLARif] = ACTIONS(3742), - [anon_sym_match] = ACTIONS(3742), - [anon_sym_select] = ACTIONS(3742), - [anon_sym_lock] = ACTIONS(3742), - [anon_sym_rlock] = ACTIONS(3742), - [anon_sym_unsafe] = ACTIONS(3742), - [anon_sym_sql] = ACTIONS(3742), - [sym_int_literal] = ACTIONS(3742), - [sym_float_literal] = ACTIONS(3742), - [sym_rune_literal] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_shared] = ACTIONS(3742), - [anon_sym_map_LBRACK] = ACTIONS(3742), - [anon_sym_chan] = ACTIONS(3742), - [anon_sym_thread] = ACTIONS(3742), - [anon_sym_atomic] = ACTIONS(3742), - [anon_sym_assert] = ACTIONS(3742), - [anon_sym_defer] = ACTIONS(3742), - [anon_sym_goto] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_DOLLARfor] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_POUND] = ACTIONS(3742), - [anon_sym_asm] = ACTIONS(3742), - [anon_sym_AT_LBRACK] = ACTIONS(3742), - [sym___double_quote] = ACTIONS(3742), - [sym___single_quote] = ACTIONS(3742), - [sym___c_double_quote] = ACTIONS(3742), - [sym___c_single_quote] = ACTIONS(3742), - [sym___r_double_quote] = ACTIONS(3742), - [sym___r_single_quote] = ACTIONS(3742), + [sym_identifier] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_as] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3287), + [anon_sym_BANG_EQ] = ACTIONS(3287), + [anon_sym_LT_EQ] = ACTIONS(3287), + [anon_sym_GT_EQ] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_RBRACK] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3287), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3287), + [anon_sym_LT_LT] = ACTIONS(3287), + [anon_sym_GT_GT] = ACTIONS(3289), + [anon_sym_GT_GT_GT] = ACTIONS(3287), + [anon_sym_AMP_CARET] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_PIPE_PIPE] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_QMARK_DOT] = ACTIONS(3287), + [anon_sym_POUND_LBRACK] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_is] = ACTIONS(3289), + [anon_sym_BANGis] = ACTIONS(3287), + [anon_sym_in] = ACTIONS(3289), + [anon_sym_BANGin] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3287), + [sym_rune_literal] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3287), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [sym___double_quote] = ACTIONS(3287), + [sym___single_quote] = ACTIONS(3287), + [sym___c_double_quote] = ACTIONS(3287), + [sym___c_single_quote] = ACTIONS(3287), + [sym___r_double_quote] = ACTIONS(3287), + [sym___r_single_quote] = ACTIONS(3287), }, [1420] = { - [aux_sym__type_union_list_repeat1] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3750), - [sym_identifier] = ACTIONS(3752), - [anon_sym_LF] = ACTIONS(3754), - [anon_sym_CR] = ACTIONS(3754), - [anon_sym_CR_LF] = ACTIONS(3754), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(3752), - [anon_sym_const] = ACTIONS(3752), - [anon_sym_LPAREN] = ACTIONS(3752), - [anon_sym___global] = ACTIONS(3752), - [anon_sym_type] = ACTIONS(3752), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_fn] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3752), - [anon_sym_struct] = ACTIONS(3752), - [anon_sym_union] = ACTIONS(3752), - [anon_sym_pub] = ACTIONS(3752), - [anon_sym_mut] = ACTIONS(3752), - [anon_sym_enum] = ACTIONS(3752), - [anon_sym_interface] = ACTIONS(3752), - [anon_sym_QMARK] = ACTIONS(3752), - [anon_sym_BANG] = ACTIONS(3752), - [anon_sym_go] = ACTIONS(3752), - [anon_sym_spawn] = ACTIONS(3752), - [anon_sym_json_DOTdecode] = ACTIONS(3752), - [anon_sym_LBRACK2] = ACTIONS(3752), - [anon_sym_TILDE] = ACTIONS(3752), - [anon_sym_CARET] = ACTIONS(3752), - [anon_sym_AMP] = ACTIONS(3752), - [anon_sym_LT_DASH] = ACTIONS(3752), - [sym_none] = ACTIONS(3752), - [sym_true] = ACTIONS(3752), - [sym_false] = ACTIONS(3752), - [sym_nil] = ACTIONS(3752), - [anon_sym_if] = ACTIONS(3752), - [anon_sym_DOLLARif] = ACTIONS(3752), - [anon_sym_match] = ACTIONS(3752), - [anon_sym_select] = ACTIONS(3752), - [anon_sym_lock] = ACTIONS(3752), - [anon_sym_rlock] = ACTIONS(3752), - [anon_sym_unsafe] = ACTIONS(3752), - [anon_sym_sql] = ACTIONS(3752), - [sym_int_literal] = ACTIONS(3752), - [sym_float_literal] = ACTIONS(3752), - [sym_rune_literal] = ACTIONS(3752), - [anon_sym_AT] = ACTIONS(3752), - [anon_sym_shared] = ACTIONS(3752), - [anon_sym_map_LBRACK] = ACTIONS(3752), - [anon_sym_chan] = ACTIONS(3752), - [anon_sym_thread] = ACTIONS(3752), - [anon_sym_atomic] = ACTIONS(3752), - [anon_sym_assert] = ACTIONS(3752), - [anon_sym_defer] = ACTIONS(3752), - [anon_sym_goto] = ACTIONS(3752), - [anon_sym_break] = ACTIONS(3752), - [anon_sym_continue] = ACTIONS(3752), - [anon_sym_return] = ACTIONS(3752), - [anon_sym_DOLLARfor] = ACTIONS(3752), - [anon_sym_for] = ACTIONS(3752), - [anon_sym_POUND] = ACTIONS(3752), - [anon_sym_asm] = ACTIONS(3752), - [anon_sym_AT_LBRACK] = ACTIONS(3752), - [sym___double_quote] = ACTIONS(3752), - [sym___single_quote] = ACTIONS(3752), - [sym___c_double_quote] = ACTIONS(3752), - [sym___c_single_quote] = ACTIONS(3752), - [sym___r_double_quote] = ACTIONS(3752), - [sym___r_single_quote] = ACTIONS(3752), + [sym_identifier] = ACTIONS(3190), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3188), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_CARET] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_LT_LT] = ACTIONS(3188), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3188), + [anon_sym_AMP_CARET] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3188), + [anon_sym_POUND_LBRACK] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3188), + [sym_rune_literal] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3188), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3188), + [sym___single_quote] = ACTIONS(3188), + [sym___c_double_quote] = ACTIONS(3188), + [sym___c_single_quote] = ACTIONS(3188), + [sym___r_double_quote] = ACTIONS(3188), + [sym___r_single_quote] = ACTIONS(3188), }, [1421] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(3759), - [sym_identifier] = ACTIONS(3761), - [anon_sym_LF] = ACTIONS(3761), - [anon_sym_CR] = ACTIONS(3761), - [anon_sym_CR_LF] = ACTIONS(3761), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3761), - [anon_sym_LBRACE] = ACTIONS(3761), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3761), - [anon_sym_LPAREN] = ACTIONS(3761), - [anon_sym___global] = ACTIONS(3761), - [anon_sym_type] = ACTIONS(3761), - [anon_sym_fn] = ACTIONS(3761), - [anon_sym_PLUS] = ACTIONS(3761), - [anon_sym_DASH] = ACTIONS(3761), - [anon_sym_STAR] = ACTIONS(3761), - [anon_sym_struct] = ACTIONS(3761), - [anon_sym_union] = ACTIONS(3761), - [anon_sym_pub] = ACTIONS(3761), - [anon_sym_mut] = ACTIONS(3761), - [anon_sym_enum] = ACTIONS(3761), - [anon_sym_interface] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3761), - [anon_sym_BANG] = ACTIONS(3761), - [anon_sym_go] = ACTIONS(3761), - [anon_sym_spawn] = ACTIONS(3761), - [anon_sym_json_DOTdecode] = ACTIONS(3761), - [anon_sym_LBRACK2] = ACTIONS(3761), - [anon_sym_TILDE] = ACTIONS(3761), - [anon_sym_CARET] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_LT_DASH] = ACTIONS(3761), - [sym_none] = ACTIONS(3761), - [sym_true] = ACTIONS(3761), - [sym_false] = ACTIONS(3761), - [sym_nil] = ACTIONS(3761), - [anon_sym_if] = ACTIONS(3761), - [anon_sym_DOLLARif] = ACTIONS(3761), - [anon_sym_match] = ACTIONS(3761), - [anon_sym_select] = ACTIONS(3761), - [anon_sym_lock] = ACTIONS(3761), - [anon_sym_rlock] = ACTIONS(3761), - [anon_sym_unsafe] = ACTIONS(3761), - [anon_sym_sql] = ACTIONS(3761), - [sym_int_literal] = ACTIONS(3761), - [sym_float_literal] = ACTIONS(3761), - [sym_rune_literal] = ACTIONS(3761), - [anon_sym_AT] = ACTIONS(3761), - [anon_sym_shared] = ACTIONS(3761), - [anon_sym_map_LBRACK] = ACTIONS(3761), - [anon_sym_chan] = ACTIONS(3761), - [anon_sym_thread] = ACTIONS(3761), - [anon_sym_atomic] = ACTIONS(3761), - [anon_sym_assert] = ACTIONS(3761), - [anon_sym_defer] = ACTIONS(3761), - [anon_sym_goto] = ACTIONS(3761), - [anon_sym_break] = ACTIONS(3761), - [anon_sym_continue] = ACTIONS(3761), - [anon_sym_return] = ACTIONS(3761), - [anon_sym_DOLLARfor] = ACTIONS(3761), - [anon_sym_for] = ACTIONS(3761), - [anon_sym_POUND] = ACTIONS(3761), - [anon_sym_asm] = ACTIONS(3761), - [anon_sym_AT_LBRACK] = ACTIONS(3761), - [sym___double_quote] = ACTIONS(3761), - [sym___single_quote] = ACTIONS(3761), - [sym___c_double_quote] = ACTIONS(3761), - [sym___c_single_quote] = ACTIONS(3761), - [sym___r_double_quote] = ACTIONS(3761), - [sym___r_single_quote] = ACTIONS(3761), + [sym_identifier] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3349), + [anon_sym_as] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_COMMA] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_fn] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_PERCENT] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3347), + [anon_sym_BANG_EQ] = ACTIONS(3347), + [anon_sym_LT_EQ] = ACTIONS(3347), + [anon_sym_GT_EQ] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_RBRACK] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3349), + [anon_sym_mut] = ACTIONS(3349), + [anon_sym_COLON] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [anon_sym_QMARK] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_go] = ACTIONS(3349), + [anon_sym_spawn] = ACTIONS(3349), + [anon_sym_json_DOTdecode] = ACTIONS(3347), + [anon_sym_LBRACK2] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_CARET] = ACTIONS(3347), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_LT_DASH] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(3347), + [anon_sym_GT_GT] = ACTIONS(3349), + [anon_sym_GT_GT_GT] = ACTIONS(3347), + [anon_sym_AMP_CARET] = ACTIONS(3347), + [anon_sym_AMP_AMP] = ACTIONS(3347), + [anon_sym_PIPE_PIPE] = ACTIONS(3347), + [anon_sym_or] = ACTIONS(3349), + [sym_none] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_nil] = ACTIONS(3349), + [anon_sym_QMARK_DOT] = ACTIONS(3347), + [anon_sym_POUND_LBRACK] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_DOLLARif] = ACTIONS(3349), + [anon_sym_is] = ACTIONS(3349), + [anon_sym_BANGis] = ACTIONS(3347), + [anon_sym_in] = ACTIONS(3349), + [anon_sym_BANGin] = ACTIONS(3347), + [anon_sym_match] = ACTIONS(3349), + [anon_sym_select] = ACTIONS(3349), + [anon_sym_lock] = ACTIONS(3349), + [anon_sym_rlock] = ACTIONS(3349), + [anon_sym_unsafe] = ACTIONS(3349), + [anon_sym_sql] = ACTIONS(3349), + [sym_int_literal] = ACTIONS(3349), + [sym_float_literal] = ACTIONS(3347), + [sym_rune_literal] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3349), + [anon_sym_shared] = ACTIONS(3349), + [anon_sym_map_LBRACK] = ACTIONS(3347), + [anon_sym_chan] = ACTIONS(3349), + [anon_sym_thread] = ACTIONS(3349), + [anon_sym_atomic] = ACTIONS(3349), + [sym___double_quote] = ACTIONS(3347), + [sym___single_quote] = ACTIONS(3347), + [sym___c_double_quote] = ACTIONS(3347), + [sym___c_single_quote] = ACTIONS(3347), + [sym___r_double_quote] = ACTIONS(3347), + [sym___r_single_quote] = ACTIONS(3347), }, [1422] = { - [sym_reference_expression] = STATE(4490), - [sym_type_reference_expression] = STATE(2453), - [sym_plain_type] = STATE(2542), - [sym__plain_type_without_special] = STATE(2587), - [sym_anon_struct_type] = STATE(2535), - [sym_multi_return_type] = STATE(2587), - [sym_result_type] = STATE(2587), - [sym_option_type] = STATE(2587), - [sym_qualified_type] = STATE(2453), - [sym_fixed_array_type] = STATE(2535), - [sym_array_type] = STATE(2535), - [sym_pointer_type] = STATE(2535), - [sym_wrong_pointer_type] = STATE(2535), - [sym_map_type] = STATE(2535), - [sym_channel_type] = STATE(2535), - [sym_shared_type] = STATE(2535), - [sym_thread_type] = STATE(2535), - [sym_atomic_type] = STATE(2535), - [sym_generic_type] = STATE(2535), - [sym_function_type] = STATE(2535), - [sym_identifier] = ACTIONS(3763), - [anon_sym_LF] = ACTIONS(561), - [anon_sym_CR] = ACTIONS(561), - [anon_sym_CR_LF] = ACTIONS(561), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(3767), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(3769), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_LT_EQ] = ACTIONS(561), - [anon_sym_GT_EQ] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(3771), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_QMARK] = ACTIONS(3773), - [anon_sym_BANG] = ACTIONS(3775), - [anon_sym_LBRACK2] = ACTIONS(3777), - [anon_sym_CARET] = ACTIONS(561), - [anon_sym_AMP] = ACTIONS(3779), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(561), - [anon_sym_AMP_CARET] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(561), - [anon_sym_PIPE_PIPE] = ACTIONS(561), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(561), - [anon_sym_POUND_LBRACK] = ACTIONS(561), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(561), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(561), - [anon_sym_shared] = ACTIONS(3781), - [anon_sym_map_LBRACK] = ACTIONS(3783), - [anon_sym_chan] = ACTIONS(3785), - [anon_sym_thread] = ACTIONS(3787), - [anon_sym_atomic] = ACTIONS(3789), + [sym_identifier] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3180), + [anon_sym_BANG_EQ] = ACTIONS(3180), + [anon_sym_LT_EQ] = ACTIONS(3180), + [anon_sym_GT_EQ] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_COLON] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3180), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_CARET] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3180), + [anon_sym_LT_LT] = ACTIONS(3180), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3180), + [anon_sym_AMP_CARET] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_PIPE_PIPE] = ACTIONS(3180), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3180), + [anon_sym_POUND_LBRACK] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3180), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3180), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3180), + [sym_rune_literal] = ACTIONS(3180), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3180), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3180), + [sym___single_quote] = ACTIONS(3180), + [sym___c_double_quote] = ACTIONS(3180), + [sym___c_single_quote] = ACTIONS(3180), + [sym___r_double_quote] = ACTIONS(3180), + [sym___r_single_quote] = ACTIONS(3180), }, [1423] = { - [aux_sym__type_union_list_repeat1] = STATE(1419), - [ts_builtin_sym_end] = ACTIONS(3791), - [sym_identifier] = ACTIONS(3793), - [anon_sym_LF] = ACTIONS(3795), - [anon_sym_CR] = ACTIONS(3795), - [anon_sym_CR_LF] = ACTIONS(3795), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_LPAREN] = ACTIONS(3793), - [anon_sym___global] = ACTIONS(3793), - [anon_sym_type] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3757), - [anon_sym_fn] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_struct] = ACTIONS(3793), - [anon_sym_union] = ACTIONS(3793), - [anon_sym_pub] = ACTIONS(3793), - [anon_sym_mut] = ACTIONS(3793), - [anon_sym_enum] = ACTIONS(3793), - [anon_sym_interface] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3793), - [anon_sym_go] = ACTIONS(3793), - [anon_sym_spawn] = ACTIONS(3793), - [anon_sym_json_DOTdecode] = ACTIONS(3793), - [anon_sym_LBRACK2] = ACTIONS(3793), - [anon_sym_TILDE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_LT_DASH] = ACTIONS(3793), - [sym_none] = ACTIONS(3793), - [sym_true] = ACTIONS(3793), - [sym_false] = ACTIONS(3793), - [sym_nil] = ACTIONS(3793), - [anon_sym_if] = ACTIONS(3793), - [anon_sym_DOLLARif] = ACTIONS(3793), - [anon_sym_match] = ACTIONS(3793), - [anon_sym_select] = ACTIONS(3793), - [anon_sym_lock] = ACTIONS(3793), - [anon_sym_rlock] = ACTIONS(3793), - [anon_sym_unsafe] = ACTIONS(3793), - [anon_sym_sql] = ACTIONS(3793), - [sym_int_literal] = ACTIONS(3793), - [sym_float_literal] = ACTIONS(3793), - [sym_rune_literal] = ACTIONS(3793), - [anon_sym_AT] = ACTIONS(3793), - [anon_sym_shared] = ACTIONS(3793), - [anon_sym_map_LBRACK] = ACTIONS(3793), - [anon_sym_chan] = ACTIONS(3793), - [anon_sym_thread] = ACTIONS(3793), - [anon_sym_atomic] = ACTIONS(3793), - [anon_sym_assert] = ACTIONS(3793), - [anon_sym_defer] = ACTIONS(3793), - [anon_sym_goto] = ACTIONS(3793), - [anon_sym_break] = ACTIONS(3793), - [anon_sym_continue] = ACTIONS(3793), - [anon_sym_return] = ACTIONS(3793), - [anon_sym_DOLLARfor] = ACTIONS(3793), - [anon_sym_for] = ACTIONS(3793), - [anon_sym_POUND] = ACTIONS(3793), - [anon_sym_asm] = ACTIONS(3793), - [anon_sym_AT_LBRACK] = ACTIONS(3793), - [sym___double_quote] = ACTIONS(3793), - [sym___single_quote] = ACTIONS(3793), - [sym___c_double_quote] = ACTIONS(3793), - [sym___c_single_quote] = ACTIONS(3793), - [sym___r_double_quote] = ACTIONS(3793), - [sym___r_single_quote] = ACTIONS(3793), + [sym_identifier] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3317), + [anon_sym_as] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_COMMA] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3315), + [anon_sym_BANG_EQ] = ACTIONS(3315), + [anon_sym_LT_EQ] = ACTIONS(3315), + [anon_sym_GT_EQ] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_RBRACK] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_mut] = ACTIONS(3317), + [anon_sym_COLON] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [anon_sym_QMARK] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_go] = ACTIONS(3317), + [anon_sym_spawn] = ACTIONS(3317), + [anon_sym_json_DOTdecode] = ACTIONS(3315), + [anon_sym_LBRACK2] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_CARET] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_LT_DASH] = ACTIONS(3315), + [anon_sym_LT_LT] = ACTIONS(3315), + [anon_sym_GT_GT] = ACTIONS(3317), + [anon_sym_GT_GT_GT] = ACTIONS(3315), + [anon_sym_AMP_CARET] = ACTIONS(3315), + [anon_sym_AMP_AMP] = ACTIONS(3315), + [anon_sym_PIPE_PIPE] = ACTIONS(3315), + [anon_sym_or] = ACTIONS(3317), + [sym_none] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_nil] = ACTIONS(3317), + [anon_sym_QMARK_DOT] = ACTIONS(3315), + [anon_sym_POUND_LBRACK] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_DOLLARif] = ACTIONS(3317), + [anon_sym_is] = ACTIONS(3317), + [anon_sym_BANGis] = ACTIONS(3315), + [anon_sym_in] = ACTIONS(3317), + [anon_sym_BANGin] = ACTIONS(3315), + [anon_sym_match] = ACTIONS(3317), + [anon_sym_select] = ACTIONS(3317), + [anon_sym_lock] = ACTIONS(3317), + [anon_sym_rlock] = ACTIONS(3317), + [anon_sym_unsafe] = ACTIONS(3317), + [anon_sym_sql] = ACTIONS(3317), + [sym_int_literal] = ACTIONS(3317), + [sym_float_literal] = ACTIONS(3315), + [sym_rune_literal] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_shared] = ACTIONS(3317), + [anon_sym_map_LBRACK] = ACTIONS(3315), + [anon_sym_chan] = ACTIONS(3317), + [anon_sym_thread] = ACTIONS(3317), + [anon_sym_atomic] = ACTIONS(3317), + [sym___double_quote] = ACTIONS(3315), + [sym___single_quote] = ACTIONS(3315), + [sym___c_double_quote] = ACTIONS(3315), + [sym___c_single_quote] = ACTIONS(3315), + [sym___r_double_quote] = ACTIONS(3315), + [sym___r_single_quote] = ACTIONS(3315), }, [1424] = { - [sym_reference_expression] = STATE(4490), - [sym_type_reference_expression] = STATE(2453), - [sym_plain_type] = STATE(2513), - [sym__plain_type_without_special] = STATE(2587), - [sym_anon_struct_type] = STATE(2535), - [sym_multi_return_type] = STATE(2587), - [sym_result_type] = STATE(2587), - [sym_option_type] = STATE(2587), - [sym_qualified_type] = STATE(2453), - [sym_fixed_array_type] = STATE(2535), - [sym_array_type] = STATE(2535), - [sym_pointer_type] = STATE(2535), - [sym_wrong_pointer_type] = STATE(2535), - [sym_map_type] = STATE(2535), - [sym_channel_type] = STATE(2535), - [sym_shared_type] = STATE(2535), - [sym_thread_type] = STATE(2535), - [sym_atomic_type] = STATE(2535), - [sym_generic_type] = STATE(2535), - [sym_function_type] = STATE(2535), - [sym_identifier] = ACTIONS(3763), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_CR] = ACTIONS(613), - [anon_sym_CR_LF] = ACTIONS(613), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(3767), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(3769), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(3771), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3773), - [anon_sym_BANG] = ACTIONS(3775), - [anon_sym_LBRACK2] = ACTIONS(3777), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3779), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3781), - [anon_sym_map_LBRACK] = ACTIONS(3783), - [anon_sym_chan] = ACTIONS(3785), - [anon_sym_thread] = ACTIONS(3787), - [anon_sym_atomic] = ACTIONS(3789), + [sym_identifier] = ACTIONS(3249), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_RBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_COLON] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3247), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_CARET] = ACTIONS(3247), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3247), + [anon_sym_LT_LT] = ACTIONS(3247), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3247), + [anon_sym_AMP_CARET] = ACTIONS(3247), + [anon_sym_AMP_AMP] = ACTIONS(3247), + [anon_sym_PIPE_PIPE] = ACTIONS(3247), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3247), + [anon_sym_POUND_LBRACK] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3247), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3247), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3247), + [sym_rune_literal] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3247), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3247), + [sym___single_quote] = ACTIONS(3247), + [sym___c_double_quote] = ACTIONS(3247), + [sym___c_single_quote] = ACTIONS(3247), + [sym___r_double_quote] = ACTIONS(3247), + [sym___r_single_quote] = ACTIONS(3247), }, [1425] = { - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2974), - [anon_sym_LF] = ACTIONS(2974), - [anon_sym_CR] = ACTIONS(2974), - [anon_sym_CR_LF] = ACTIONS(2974), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2974), - [anon_sym_LBRACE] = ACTIONS(2974), - [anon_sym_const] = ACTIONS(2974), - [anon_sym_LPAREN] = ACTIONS(2974), - [anon_sym___global] = ACTIONS(2974), - [anon_sym_type] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(2974), - [anon_sym_fn] = ACTIONS(2974), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2972), - [anon_sym_struct] = ACTIONS(2974), - [anon_sym_union] = ACTIONS(2974), - [anon_sym_pub] = ACTIONS(2974), - [anon_sym_mut] = ACTIONS(2974), - [anon_sym_enum] = ACTIONS(2974), - [anon_sym_interface] = ACTIONS(2974), - [anon_sym_QMARK] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_go] = ACTIONS(2974), - [anon_sym_spawn] = ACTIONS(2974), - [anon_sym_json_DOTdecode] = ACTIONS(2974), - [anon_sym_LBRACK2] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2974), - [anon_sym_CARET] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_LT_DASH] = ACTIONS(2974), - [sym_none] = ACTIONS(2974), - [sym_true] = ACTIONS(2974), - [sym_false] = ACTIONS(2974), - [sym_nil] = ACTIONS(2974), - [anon_sym_if] = ACTIONS(2974), - [anon_sym_DOLLARif] = ACTIONS(2974), - [anon_sym_match] = ACTIONS(2974), - [anon_sym_select] = ACTIONS(2974), - [anon_sym_lock] = ACTIONS(2974), - [anon_sym_rlock] = ACTIONS(2974), - [anon_sym_unsafe] = ACTIONS(2974), - [anon_sym_sql] = ACTIONS(2974), - [sym_int_literal] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2974), - [sym_rune_literal] = ACTIONS(2974), - [anon_sym_AT] = ACTIONS(2974), - [anon_sym_shared] = ACTIONS(2974), - [anon_sym_map_LBRACK] = ACTIONS(2974), - [anon_sym_chan] = ACTIONS(2974), - [anon_sym_thread] = ACTIONS(2974), - [anon_sym_atomic] = ACTIONS(2974), - [anon_sym_assert] = ACTIONS(2974), - [anon_sym_defer] = ACTIONS(2974), - [anon_sym_goto] = ACTIONS(2974), - [anon_sym_break] = ACTIONS(2974), - [anon_sym_continue] = ACTIONS(2974), - [anon_sym_return] = ACTIONS(2974), - [anon_sym_DOLLARfor] = ACTIONS(2974), - [anon_sym_for] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [anon_sym_asm] = ACTIONS(2974), - [anon_sym_AT_LBRACK] = ACTIONS(2974), - [sym___double_quote] = ACTIONS(2974), - [sym___single_quote] = ACTIONS(2974), - [sym___c_double_quote] = ACTIONS(2974), - [sym___c_single_quote] = ACTIONS(2974), - [sym___r_double_quote] = ACTIONS(2974), - [sym___r_single_quote] = ACTIONS(2974), + [sym_identifier] = ACTIONS(3174), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3172), + [anon_sym_BANG_EQ] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_RBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_COLON] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3172), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_CARET] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3172), + [anon_sym_LT_LT] = ACTIONS(3172), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3172), + [anon_sym_AMP_CARET] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_PIPE_PIPE] = ACTIONS(3172), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3172), + [anon_sym_POUND_LBRACK] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3172), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3172), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3172), + [sym_rune_literal] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3172), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3172), + [sym___single_quote] = ACTIONS(3172), + [sym___c_double_quote] = ACTIONS(3172), + [sym___c_single_quote] = ACTIONS(3172), + [sym___r_double_quote] = ACTIONS(3172), + [sym___r_single_quote] = ACTIONS(3172), }, [1426] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [sym_identifier] = ACTIONS(3337), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_as] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3335), + [anon_sym_COMMA] = ACTIONS(3335), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3337), + [anon_sym_fn] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3335), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3335), + [anon_sym_BANG_EQ] = ACTIONS(3335), + [anon_sym_LT_EQ] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_RBRACK] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3337), + [anon_sym_mut] = ACTIONS(3337), + [anon_sym_COLON] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3335), + [anon_sym_DASH_DASH] = ACTIONS(3335), + [anon_sym_QMARK] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_go] = ACTIONS(3337), + [anon_sym_spawn] = ACTIONS(3337), + [anon_sym_json_DOTdecode] = ACTIONS(3335), + [anon_sym_LBRACK2] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3335), + [anon_sym_CARET] = ACTIONS(3335), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_LT_DASH] = ACTIONS(3335), + [anon_sym_LT_LT] = ACTIONS(3335), + [anon_sym_GT_GT] = ACTIONS(3337), + [anon_sym_GT_GT_GT] = ACTIONS(3335), + [anon_sym_AMP_CARET] = ACTIONS(3335), + [anon_sym_AMP_AMP] = ACTIONS(3335), + [anon_sym_PIPE_PIPE] = ACTIONS(3335), + [anon_sym_or] = ACTIONS(3337), + [sym_none] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_nil] = ACTIONS(3337), + [anon_sym_QMARK_DOT] = ACTIONS(3335), + [anon_sym_POUND_LBRACK] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_DOLLARif] = ACTIONS(3337), + [anon_sym_is] = ACTIONS(3337), + [anon_sym_BANGis] = ACTIONS(3335), + [anon_sym_in] = ACTIONS(3337), + [anon_sym_BANGin] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3337), + [anon_sym_select] = ACTIONS(3337), + [anon_sym_lock] = ACTIONS(3337), + [anon_sym_rlock] = ACTIONS(3337), + [anon_sym_unsafe] = ACTIONS(3337), + [anon_sym_sql] = ACTIONS(3337), + [sym_int_literal] = ACTIONS(3337), + [sym_float_literal] = ACTIONS(3335), + [sym_rune_literal] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_shared] = ACTIONS(3337), + [anon_sym_map_LBRACK] = ACTIONS(3335), + [anon_sym_chan] = ACTIONS(3337), + [anon_sym_thread] = ACTIONS(3337), + [anon_sym_atomic] = ACTIONS(3337), + [sym___double_quote] = ACTIONS(3335), + [sym___single_quote] = ACTIONS(3335), + [sym___c_double_quote] = ACTIONS(3335), + [sym___c_single_quote] = ACTIONS(3335), + [sym___r_double_quote] = ACTIONS(3335), + [sym___r_single_quote] = ACTIONS(3335), }, [1427] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LF] = ACTIONS(1716), - [anon_sym_CR] = ACTIONS(1716), - [anon_sym_CR_LF] = ACTIONS(1716), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(3798), - [anon_sym_const] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym___global] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1716), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1716), - [anon_sym_union] = ACTIONS(1716), - [anon_sym_pub] = ACTIONS(1716), - [anon_sym_mut] = ACTIONS(1716), - [anon_sym_enum] = ACTIONS(1716), - [anon_sym_interface] = ACTIONS(1716), - [anon_sym_QMARK] = ACTIONS(1716), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_go] = ACTIONS(1716), - [anon_sym_spawn] = ACTIONS(1716), - [anon_sym_json_DOTdecode] = ACTIONS(1716), - [anon_sym_LBRACK2] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_CARET] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT_DASH] = ACTIONS(1716), - [sym_none] = ACTIONS(1716), - [sym_true] = ACTIONS(1716), - [sym_false] = ACTIONS(1716), - [sym_nil] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_DOLLARif] = ACTIONS(1716), - [anon_sym_match] = ACTIONS(1716), - [anon_sym_select] = ACTIONS(1716), - [anon_sym_lock] = ACTIONS(1716), - [anon_sym_rlock] = ACTIONS(1716), - [anon_sym_unsafe] = ACTIONS(1716), - [anon_sym_sql] = ACTIONS(1716), - [sym_int_literal] = ACTIONS(1716), - [sym_float_literal] = ACTIONS(1716), - [sym_rune_literal] = ACTIONS(1716), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_shared] = ACTIONS(1716), - [anon_sym_map_LBRACK] = ACTIONS(1716), - [anon_sym_chan] = ACTIONS(1716), - [anon_sym_thread] = ACTIONS(1716), - [anon_sym_atomic] = ACTIONS(1716), - [anon_sym_assert] = ACTIONS(1716), - [anon_sym_defer] = ACTIONS(1716), - [anon_sym_goto] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_DOLLARfor] = ACTIONS(1716), - [anon_sym_for] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1716), - [anon_sym_asm] = ACTIONS(1716), - [anon_sym_AT_LBRACK] = ACTIONS(1716), - [sym___double_quote] = ACTIONS(1716), - [sym___single_quote] = ACTIONS(1716), - [sym___c_double_quote] = ACTIONS(1716), - [sym___c_single_quote] = ACTIONS(1716), - [sym___r_double_quote] = ACTIONS(1716), - [sym___r_single_quote] = ACTIONS(1716), + [sym_identifier] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3132), + [anon_sym_as] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_COMMA] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_PIPE] = ACTIONS(3132), + [anon_sym_fn] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_PERCENT] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_GT] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_LT_EQ] = ACTIONS(3130), + [anon_sym_GT_EQ] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_mut] = ACTIONS(3132), + [anon_sym_COLON] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_go] = ACTIONS(3132), + [anon_sym_spawn] = ACTIONS(3132), + [anon_sym_json_DOTdecode] = ACTIONS(3130), + [anon_sym_LBRACK2] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_CARET] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3130), + [anon_sym_LT_LT] = ACTIONS(3130), + [anon_sym_GT_GT] = ACTIONS(3132), + [anon_sym_GT_GT_GT] = ACTIONS(3130), + [anon_sym_AMP_CARET] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_PIPE_PIPE] = ACTIONS(3130), + [anon_sym_or] = ACTIONS(3132), + [sym_none] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_nil] = ACTIONS(3132), + [anon_sym_QMARK_DOT] = ACTIONS(3130), + [anon_sym_POUND_LBRACK] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_DOLLARif] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3132), + [anon_sym_BANGis] = ACTIONS(3130), + [anon_sym_in] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3130), + [anon_sym_match] = ACTIONS(3132), + [anon_sym_select] = ACTIONS(3132), + [anon_sym_lock] = ACTIONS(3132), + [anon_sym_rlock] = ACTIONS(3132), + [anon_sym_unsafe] = ACTIONS(3132), + [anon_sym_sql] = ACTIONS(3132), + [sym_int_literal] = ACTIONS(3132), + [sym_float_literal] = ACTIONS(3130), + [sym_rune_literal] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_shared] = ACTIONS(3132), + [anon_sym_map_LBRACK] = ACTIONS(3130), + [anon_sym_chan] = ACTIONS(3132), + [anon_sym_thread] = ACTIONS(3132), + [anon_sym_atomic] = ACTIONS(3132), + [sym___double_quote] = ACTIONS(3130), + [sym___single_quote] = ACTIONS(3130), + [sym___c_double_quote] = ACTIONS(3130), + [sym___c_single_quote] = ACTIONS(3130), + [sym___r_double_quote] = ACTIONS(3130), + [sym___r_single_quote] = ACTIONS(3130), }, [1428] = { - [sym_reference_expression] = STATE(4490), - [sym_type_reference_expression] = STATE(2453), - [sym_plain_type] = STATE(2531), - [sym__plain_type_without_special] = STATE(2587), - [sym_anon_struct_type] = STATE(2535), - [sym_multi_return_type] = STATE(2587), - [sym_result_type] = STATE(2587), - [sym_option_type] = STATE(2587), - [sym_qualified_type] = STATE(2453), - [sym_fixed_array_type] = STATE(2535), - [sym_array_type] = STATE(2535), - [sym_pointer_type] = STATE(2535), - [sym_wrong_pointer_type] = STATE(2535), - [sym_map_type] = STATE(2535), - [sym_channel_type] = STATE(2535), - [sym_shared_type] = STATE(2535), - [sym_thread_type] = STATE(2535), - [sym_atomic_type] = STATE(2535), - [sym_generic_type] = STATE(2535), - [sym_function_type] = STATE(2535), - [sym_identifier] = ACTIONS(3763), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_CR] = ACTIONS(621), - [anon_sym_CR_LF] = ACTIONS(621), - [sym_comment] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(3765), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(3767), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(3769), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(3771), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(3773), - [anon_sym_BANG] = ACTIONS(3775), - [anon_sym_LBRACK2] = ACTIONS(3777), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(3779), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(3781), - [anon_sym_map_LBRACK] = ACTIONS(3783), - [anon_sym_chan] = ACTIONS(3785), - [anon_sym_thread] = ACTIONS(3787), - [anon_sym_atomic] = ACTIONS(3789), - }, - [1429] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LF] = ACTIONS(2846), - [anon_sym_CR] = ACTIONS(2846), - [anon_sym_CR_LF] = ACTIONS(2846), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym___global] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_fn] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2846), - [anon_sym_union] = ACTIONS(2846), - [anon_sym_pub] = ACTIONS(2846), - [anon_sym_mut] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_go] = ACTIONS(2846), - [anon_sym_spawn] = ACTIONS(2846), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_LT_DASH] = ACTIONS(2846), - [sym_none] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_nil] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_DOLLARif] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2846), - [anon_sym_select] = ACTIONS(2846), - [anon_sym_lock] = ACTIONS(2846), - [anon_sym_rlock] = ACTIONS(2846), - [anon_sym_unsafe] = ACTIONS(2846), - [anon_sym_sql] = ACTIONS(2846), - [sym_int_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2846), - [anon_sym_shared] = ACTIONS(2846), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2846), - [anon_sym_thread] = ACTIONS(2846), - [anon_sym_atomic] = ACTIONS(2846), - [anon_sym_assert] = ACTIONS(2846), - [anon_sym_defer] = ACTIONS(2846), - [anon_sym_goto] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_DOLLARfor] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_asm] = ACTIONS(2846), - [anon_sym_AT_LBRACK] = ACTIONS(2846), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), - }, - [1430] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(1780), - [anon_sym_LF] = ACTIONS(1780), - [anon_sym_CR] = ACTIONS(1780), - [anon_sym_CR_LF] = ACTIONS(1780), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym___global] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_struct] = ACTIONS(1780), - [anon_sym_union] = ACTIONS(1780), - [anon_sym_pub] = ACTIONS(1780), - [anon_sym_mut] = ACTIONS(1780), - [anon_sym_enum] = ACTIONS(1780), - [anon_sym_interface] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_go] = ACTIONS(1780), - [anon_sym_spawn] = ACTIONS(1780), - [anon_sym_json_DOTdecode] = ACTIONS(1780), - [anon_sym_LBRACK2] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_LT_DASH] = ACTIONS(1780), - [sym_none] = ACTIONS(1780), - [sym_true] = ACTIONS(1780), - [sym_false] = ACTIONS(1780), - [sym_nil] = ACTIONS(1780), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_DOLLARif] = ACTIONS(1780), - [anon_sym_match] = ACTIONS(1780), - [anon_sym_select] = ACTIONS(1780), - [anon_sym_lock] = ACTIONS(1780), - [anon_sym_rlock] = ACTIONS(1780), - [anon_sym_unsafe] = ACTIONS(1780), - [anon_sym_sql] = ACTIONS(1780), - [sym_int_literal] = ACTIONS(1780), - [sym_float_literal] = ACTIONS(1780), - [sym_rune_literal] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_shared] = ACTIONS(1780), - [anon_sym_map_LBRACK] = ACTIONS(1780), - [anon_sym_chan] = ACTIONS(1780), - [anon_sym_thread] = ACTIONS(1780), - [anon_sym_atomic] = ACTIONS(1780), - [anon_sym_assert] = ACTIONS(1780), - [anon_sym_defer] = ACTIONS(1780), - [anon_sym_goto] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_DOLLARfor] = ACTIONS(1780), - [anon_sym_for] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_asm] = ACTIONS(1780), - [anon_sym_AT_LBRACK] = ACTIONS(1780), - [sym___double_quote] = ACTIONS(1780), - [sym___single_quote] = ACTIONS(1780), - [sym___c_double_quote] = ACTIONS(1780), - [sym___c_single_quote] = ACTIONS(1780), - [sym___r_double_quote] = ACTIONS(1780), - [sym___r_single_quote] = ACTIONS(1780), - }, - [1431] = { - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_identifier] = ACTIONS(2926), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_CR] = ACTIONS(2926), - [anon_sym_CR_LF] = ACTIONS(2926), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_const] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym___global] = ACTIONS(2926), - [anon_sym_type] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_fn] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_struct] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(2926), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_mut] = ACTIONS(2926), - [anon_sym_enum] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_go] = ACTIONS(2926), - [anon_sym_spawn] = ACTIONS(2926), - [anon_sym_json_DOTdecode] = ACTIONS(2926), - [anon_sym_LBRACK2] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_LT_DASH] = ACTIONS(2926), - [sym_none] = ACTIONS(2926), - [sym_true] = ACTIONS(2926), - [sym_false] = ACTIONS(2926), - [sym_nil] = ACTIONS(2926), - [anon_sym_if] = ACTIONS(2926), - [anon_sym_DOLLARif] = ACTIONS(2926), - [anon_sym_match] = ACTIONS(2926), - [anon_sym_select] = ACTIONS(2926), - [anon_sym_lock] = ACTIONS(2926), - [anon_sym_rlock] = ACTIONS(2926), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_sql] = ACTIONS(2926), - [sym_int_literal] = ACTIONS(2926), - [sym_float_literal] = ACTIONS(2926), - [sym_rune_literal] = ACTIONS(2926), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_shared] = ACTIONS(2926), - [anon_sym_map_LBRACK] = ACTIONS(2926), - [anon_sym_chan] = ACTIONS(2926), - [anon_sym_thread] = ACTIONS(2926), - [anon_sym_atomic] = ACTIONS(2926), - [anon_sym_assert] = ACTIONS(2926), - [anon_sym_defer] = ACTIONS(2926), - [anon_sym_goto] = ACTIONS(2926), - [anon_sym_break] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2926), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_DOLLARfor] = ACTIONS(2926), - [anon_sym_for] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_asm] = ACTIONS(2926), - [anon_sym_AT_LBRACK] = ACTIONS(2926), - [sym___double_quote] = ACTIONS(2926), - [sym___single_quote] = ACTIONS(2926), - [sym___c_double_quote] = ACTIONS(2926), - [sym___c_single_quote] = ACTIONS(2926), - [sym___r_double_quote] = ACTIONS(2926), - [sym___r_single_quote] = ACTIONS(2926), - }, - [1432] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LF] = ACTIONS(2910), - [anon_sym_CR] = ACTIONS(2910), - [anon_sym_CR_LF] = ACTIONS(2910), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym___global] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_PIPE] = ACTIONS(2910), - [anon_sym_fn] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_struct] = ACTIONS(2910), - [anon_sym_union] = ACTIONS(2910), - [anon_sym_pub] = ACTIONS(2910), - [anon_sym_mut] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_go] = ACTIONS(2910), - [anon_sym_spawn] = ACTIONS(2910), - [anon_sym_json_DOTdecode] = ACTIONS(2910), - [anon_sym_LBRACK2] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_LT_DASH] = ACTIONS(2910), - [sym_none] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_nil] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_DOLLARif] = ACTIONS(2910), - [anon_sym_match] = ACTIONS(2910), - [anon_sym_select] = ACTIONS(2910), - [anon_sym_lock] = ACTIONS(2910), - [anon_sym_rlock] = ACTIONS(2910), - [anon_sym_unsafe] = ACTIONS(2910), - [anon_sym_sql] = ACTIONS(2910), - [sym_int_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_rune_literal] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2910), - [anon_sym_shared] = ACTIONS(2910), - [anon_sym_map_LBRACK] = ACTIONS(2910), - [anon_sym_chan] = ACTIONS(2910), - [anon_sym_thread] = ACTIONS(2910), - [anon_sym_atomic] = ACTIONS(2910), - [anon_sym_assert] = ACTIONS(2910), - [anon_sym_defer] = ACTIONS(2910), - [anon_sym_goto] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_DOLLARfor] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_asm] = ACTIONS(2910), - [anon_sym_AT_LBRACK] = ACTIONS(2910), - [sym___double_quote] = ACTIONS(2910), - [sym___single_quote] = ACTIONS(2910), - [sym___c_double_quote] = ACTIONS(2910), - [sym___c_single_quote] = ACTIONS(2910), - [sym___r_double_quote] = ACTIONS(2910), - [sym___r_single_quote] = ACTIONS(2910), - }, - [1433] = { - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LF] = ACTIONS(1716), - [anon_sym_CR] = ACTIONS(1716), - [anon_sym_CR_LF] = ACTIONS(1716), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_COMMA] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym___global] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1716), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1716), - [anon_sym_union] = ACTIONS(1716), - [anon_sym_pub] = ACTIONS(1716), - [anon_sym_mut] = ACTIONS(1716), - [anon_sym_enum] = ACTIONS(1716), - [anon_sym_interface] = ACTIONS(1716), - [anon_sym_QMARK] = ACTIONS(1716), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_go] = ACTIONS(1716), - [anon_sym_spawn] = ACTIONS(1716), - [anon_sym_json_DOTdecode] = ACTIONS(1716), - [anon_sym_LBRACK2] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1716), - [anon_sym_CARET] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT_DASH] = ACTIONS(1716), - [sym_none] = ACTIONS(1716), - [sym_true] = ACTIONS(1716), - [sym_false] = ACTIONS(1716), - [sym_nil] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_DOLLARif] = ACTIONS(1716), - [anon_sym_match] = ACTIONS(1716), - [anon_sym_select] = ACTIONS(1716), - [anon_sym_lock] = ACTIONS(1716), - [anon_sym_rlock] = ACTIONS(1716), - [anon_sym_unsafe] = ACTIONS(1716), - [anon_sym_sql] = ACTIONS(1716), - [sym_int_literal] = ACTIONS(1716), - [sym_float_literal] = ACTIONS(1716), - [sym_rune_literal] = ACTIONS(1716), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_shared] = ACTIONS(1716), - [anon_sym_map_LBRACK] = ACTIONS(1716), - [anon_sym_chan] = ACTIONS(1716), - [anon_sym_thread] = ACTIONS(1716), - [anon_sym_atomic] = ACTIONS(1716), - [anon_sym_assert] = ACTIONS(1716), - [anon_sym_defer] = ACTIONS(1716), - [anon_sym_goto] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_DOLLARfor] = ACTIONS(1716), - [anon_sym_for] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1716), - [anon_sym_asm] = ACTIONS(1716), - [anon_sym_AT_LBRACK] = ACTIONS(1716), - [sym___double_quote] = ACTIONS(1716), - [sym___single_quote] = ACTIONS(1716), - [sym___c_double_quote] = ACTIONS(1716), - [sym___c_single_quote] = ACTIONS(1716), - [sym___r_double_quote] = ACTIONS(1716), - [sym___r_single_quote] = ACTIONS(1716), - }, - [1434] = { - [sym_block] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(3801), - [sym_identifier] = ACTIONS(3803), - [anon_sym_LF] = ACTIONS(3803), - [anon_sym_CR] = ACTIONS(3803), - [anon_sym_CR_LF] = ACTIONS(3803), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3803), - [anon_sym_LPAREN] = ACTIONS(3803), - [anon_sym___global] = ACTIONS(3803), - [anon_sym_type] = ACTIONS(3803), - [anon_sym_fn] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_struct] = ACTIONS(3803), - [anon_sym_union] = ACTIONS(3803), - [anon_sym_pub] = ACTIONS(3803), - [anon_sym_mut] = ACTIONS(3803), - [anon_sym_enum] = ACTIONS(3803), - [anon_sym_interface] = ACTIONS(3803), - [anon_sym_QMARK] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3803), - [anon_sym_go] = ACTIONS(3803), - [anon_sym_spawn] = ACTIONS(3803), - [anon_sym_json_DOTdecode] = ACTIONS(3803), - [anon_sym_LBRACK2] = ACTIONS(3803), - [anon_sym_TILDE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_LT_DASH] = ACTIONS(3803), - [sym_none] = ACTIONS(3803), - [sym_true] = ACTIONS(3803), - [sym_false] = ACTIONS(3803), - [sym_nil] = ACTIONS(3803), - [anon_sym_if] = ACTIONS(3803), - [anon_sym_DOLLARif] = ACTIONS(3803), - [anon_sym_match] = ACTIONS(3803), - [anon_sym_select] = ACTIONS(3803), - [anon_sym_lock] = ACTIONS(3803), - [anon_sym_rlock] = ACTIONS(3803), - [anon_sym_unsafe] = ACTIONS(3803), - [anon_sym_sql] = ACTIONS(3803), - [sym_int_literal] = ACTIONS(3803), - [sym_float_literal] = ACTIONS(3803), - [sym_rune_literal] = ACTIONS(3803), - [anon_sym_AT] = ACTIONS(3803), - [anon_sym_shared] = ACTIONS(3803), - [anon_sym_map_LBRACK] = ACTIONS(3803), - [anon_sym_chan] = ACTIONS(3803), - [anon_sym_thread] = ACTIONS(3803), - [anon_sym_atomic] = ACTIONS(3803), - [anon_sym_assert] = ACTIONS(3803), - [anon_sym_defer] = ACTIONS(3803), - [anon_sym_goto] = ACTIONS(3803), - [anon_sym_break] = ACTIONS(3803), - [anon_sym_continue] = ACTIONS(3803), - [anon_sym_return] = ACTIONS(3803), - [anon_sym_DOLLARfor] = ACTIONS(3803), - [anon_sym_for] = ACTIONS(3803), - [anon_sym_POUND] = ACTIONS(3803), - [anon_sym_asm] = ACTIONS(3803), - [anon_sym_AT_LBRACK] = ACTIONS(3803), - [sym___double_quote] = ACTIONS(3803), - [sym___single_quote] = ACTIONS(3803), - [sym___c_double_quote] = ACTIONS(3803), - [sym___c_single_quote] = ACTIONS(3803), - [sym___r_double_quote] = ACTIONS(3803), - [sym___r_single_quote] = ACTIONS(3803), - }, - [1435] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_LF] = ACTIONS(2834), - [anon_sym_CR] = ACTIONS(2834), - [anon_sym_CR_LF] = ACTIONS(2834), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym___global] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_fn] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_pub] = ACTIONS(2834), - [anon_sym_mut] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_interface] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_go] = ACTIONS(2834), - [anon_sym_spawn] = ACTIONS(2834), - [anon_sym_json_DOTdecode] = ACTIONS(2834), - [anon_sym_LBRACK2] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_LT_DASH] = ACTIONS(2834), - [sym_none] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_nil] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_DOLLARif] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2834), - [anon_sym_select] = ACTIONS(2834), - [anon_sym_lock] = ACTIONS(2834), - [anon_sym_rlock] = ACTIONS(2834), - [anon_sym_unsafe] = ACTIONS(2834), - [anon_sym_sql] = ACTIONS(2834), - [sym_int_literal] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2834), - [sym_rune_literal] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2834), - [anon_sym_shared] = ACTIONS(2834), - [anon_sym_map_LBRACK] = ACTIONS(2834), - [anon_sym_chan] = ACTIONS(2834), - [anon_sym_thread] = ACTIONS(2834), - [anon_sym_atomic] = ACTIONS(2834), - [anon_sym_assert] = ACTIONS(2834), - [anon_sym_defer] = ACTIONS(2834), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_DOLLARfor] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_asm] = ACTIONS(2834), - [anon_sym_AT_LBRACK] = ACTIONS(2834), - [sym___double_quote] = ACTIONS(2834), - [sym___single_quote] = ACTIONS(2834), - [sym___c_double_quote] = ACTIONS(2834), - [sym___c_single_quote] = ACTIONS(2834), - [sym___r_double_quote] = ACTIONS(2834), - [sym___r_single_quote] = ACTIONS(2834), - }, - [1436] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LF] = ACTIONS(2978), - [anon_sym_CR] = ACTIONS(2978), - [anon_sym_CR_LF] = ACTIONS(2978), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2978), - [anon_sym_LBRACE] = ACTIONS(2978), - [anon_sym_const] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2978), - [anon_sym___global] = ACTIONS(2978), - [anon_sym_type] = ACTIONS(2978), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_fn] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2978), - [anon_sym_DASH] = ACTIONS(2978), - [anon_sym_STAR] = ACTIONS(2978), - [anon_sym_struct] = ACTIONS(2978), - [anon_sym_union] = ACTIONS(2978), - [anon_sym_pub] = ACTIONS(2978), - [anon_sym_mut] = ACTIONS(2978), - [anon_sym_enum] = ACTIONS(2978), - [anon_sym_interface] = ACTIONS(2978), - [anon_sym_QMARK] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_go] = ACTIONS(2978), - [anon_sym_spawn] = ACTIONS(2978), - [anon_sym_json_DOTdecode] = ACTIONS(2978), - [anon_sym_LBRACK2] = ACTIONS(2978), - [anon_sym_TILDE] = ACTIONS(2978), - [anon_sym_CARET] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_LT_DASH] = ACTIONS(2978), - [sym_none] = ACTIONS(2978), - [sym_true] = ACTIONS(2978), - [sym_false] = ACTIONS(2978), - [sym_nil] = ACTIONS(2978), - [anon_sym_if] = ACTIONS(2978), - [anon_sym_DOLLARif] = ACTIONS(2978), - [anon_sym_match] = ACTIONS(2978), - [anon_sym_select] = ACTIONS(2978), - [anon_sym_lock] = ACTIONS(2978), - [anon_sym_rlock] = ACTIONS(2978), - [anon_sym_unsafe] = ACTIONS(2978), - [anon_sym_sql] = ACTIONS(2978), - [sym_int_literal] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2978), - [sym_rune_literal] = ACTIONS(2978), - [anon_sym_AT] = ACTIONS(2978), - [anon_sym_shared] = ACTIONS(2978), - [anon_sym_map_LBRACK] = ACTIONS(2978), - [anon_sym_chan] = ACTIONS(2978), - [anon_sym_thread] = ACTIONS(2978), - [anon_sym_atomic] = ACTIONS(2978), - [anon_sym_assert] = ACTIONS(2978), - [anon_sym_defer] = ACTIONS(2978), - [anon_sym_goto] = ACTIONS(2978), - [anon_sym_break] = ACTIONS(2978), - [anon_sym_continue] = ACTIONS(2978), - [anon_sym_return] = ACTIONS(2978), - [anon_sym_DOLLARfor] = ACTIONS(2978), - [anon_sym_for] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [anon_sym_asm] = ACTIONS(2978), - [anon_sym_AT_LBRACK] = ACTIONS(2978), - [sym___double_quote] = ACTIONS(2978), - [sym___single_quote] = ACTIONS(2978), - [sym___c_double_quote] = ACTIONS(2978), - [sym___c_single_quote] = ACTIONS(2978), - [sym___r_double_quote] = ACTIONS(2978), - [sym___r_single_quote] = ACTIONS(2978), - }, - [1437] = { - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LF] = ACTIONS(3106), - [anon_sym_CR] = ACTIONS(3106), - [anon_sym_CR_LF] = ACTIONS(3106), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym___global] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_fn] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_struct] = ACTIONS(3106), - [anon_sym_union] = ACTIONS(3106), - [anon_sym_pub] = ACTIONS(3106), - [anon_sym_mut] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_QMARK] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_go] = ACTIONS(3106), - [anon_sym_spawn] = ACTIONS(3106), - [anon_sym_json_DOTdecode] = ACTIONS(3106), - [anon_sym_LBRACK2] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_CARET] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3106), - [anon_sym_LT_DASH] = ACTIONS(3106), - [sym_none] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_nil] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_DOLLARif] = ACTIONS(3106), - [anon_sym_match] = ACTIONS(3106), - [anon_sym_select] = ACTIONS(3106), - [anon_sym_lock] = ACTIONS(3106), - [anon_sym_rlock] = ACTIONS(3106), - [anon_sym_unsafe] = ACTIONS(3106), - [anon_sym_sql] = ACTIONS(3106), - [sym_int_literal] = ACTIONS(3106), - [sym_float_literal] = ACTIONS(3106), - [sym_rune_literal] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_shared] = ACTIONS(3106), - [anon_sym_map_LBRACK] = ACTIONS(3106), - [anon_sym_chan] = ACTIONS(3106), - [anon_sym_thread] = ACTIONS(3106), - [anon_sym_atomic] = ACTIONS(3106), - [anon_sym_assert] = ACTIONS(3106), - [anon_sym_defer] = ACTIONS(3106), - [anon_sym_goto] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_DOLLARfor] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_POUND] = ACTIONS(3106), - [anon_sym_asm] = ACTIONS(3106), - [anon_sym_AT_LBRACK] = ACTIONS(3106), - [sym___double_quote] = ACTIONS(3106), - [sym___single_quote] = ACTIONS(3106), - [sym___c_double_quote] = ACTIONS(3106), - [sym___c_single_quote] = ACTIONS(3106), - [sym___r_double_quote] = ACTIONS(3106), - [sym___r_single_quote] = ACTIONS(3106), - }, - [1438] = { - [sym_label_reference] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(3807), - [sym_identifier] = ACTIONS(3809), - [anon_sym_LF] = ACTIONS(3811), - [anon_sym_CR] = ACTIONS(3811), - [anon_sym_CR_LF] = ACTIONS(3811), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3811), - [anon_sym_const] = ACTIONS(3811), - [anon_sym_LPAREN] = ACTIONS(3811), - [anon_sym___global] = ACTIONS(3811), - [anon_sym_type] = ACTIONS(3811), - [anon_sym_fn] = ACTIONS(3811), - [anon_sym_PLUS] = ACTIONS(3811), - [anon_sym_DASH] = ACTIONS(3811), - [anon_sym_STAR] = ACTIONS(3811), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_union] = ACTIONS(3811), - [anon_sym_pub] = ACTIONS(3811), - [anon_sym_mut] = ACTIONS(3811), - [anon_sym_enum] = ACTIONS(3811), - [anon_sym_interface] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3811), - [anon_sym_go] = ACTIONS(3811), - [anon_sym_spawn] = ACTIONS(3811), - [anon_sym_json_DOTdecode] = ACTIONS(3811), - [anon_sym_LBRACK2] = ACTIONS(3811), - [anon_sym_TILDE] = ACTIONS(3811), - [anon_sym_CARET] = ACTIONS(3811), - [anon_sym_AMP] = ACTIONS(3811), - [anon_sym_LT_DASH] = ACTIONS(3811), - [sym_none] = ACTIONS(3811), - [sym_true] = ACTIONS(3811), - [sym_false] = ACTIONS(3811), - [sym_nil] = ACTIONS(3811), - [anon_sym_if] = ACTIONS(3811), - [anon_sym_DOLLARif] = ACTIONS(3811), - [anon_sym_match] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_lock] = ACTIONS(3811), - [anon_sym_rlock] = ACTIONS(3811), - [anon_sym_unsafe] = ACTIONS(3811), - [anon_sym_sql] = ACTIONS(3811), - [sym_int_literal] = ACTIONS(3811), - [sym_float_literal] = ACTIONS(3811), - [sym_rune_literal] = ACTIONS(3811), - [anon_sym_AT] = ACTIONS(3811), - [anon_sym_shared] = ACTIONS(3811), - [anon_sym_map_LBRACK] = ACTIONS(3811), - [anon_sym_chan] = ACTIONS(3811), - [anon_sym_thread] = ACTIONS(3811), - [anon_sym_atomic] = ACTIONS(3811), - [anon_sym_assert] = ACTIONS(3811), - [anon_sym_defer] = ACTIONS(3811), - [anon_sym_goto] = ACTIONS(3811), - [anon_sym_break] = ACTIONS(3811), - [anon_sym_continue] = ACTIONS(3811), - [anon_sym_return] = ACTIONS(3811), - [anon_sym_DOLLARfor] = ACTIONS(3811), - [anon_sym_for] = ACTIONS(3811), - [anon_sym_POUND] = ACTIONS(3811), - [anon_sym_asm] = ACTIONS(3811), - [anon_sym_AT_LBRACK] = ACTIONS(3811), - [sym___double_quote] = ACTIONS(3811), - [sym___single_quote] = ACTIONS(3811), - [sym___c_double_quote] = ACTIONS(3811), - [sym___c_single_quote] = ACTIONS(3811), - [sym___r_double_quote] = ACTIONS(3811), - [sym___r_single_quote] = ACTIONS(3811), - }, - [1439] = { - [sym_label_reference] = STATE(1503), - [ts_builtin_sym_end] = ACTIONS(3813), - [sym_identifier] = ACTIONS(3809), - [anon_sym_LF] = ACTIONS(3815), - [anon_sym_CR] = ACTIONS(3815), - [anon_sym_CR_LF] = ACTIONS(3815), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_const] = ACTIONS(3815), - [anon_sym_LPAREN] = ACTIONS(3815), - [anon_sym___global] = ACTIONS(3815), - [anon_sym_type] = ACTIONS(3815), - [anon_sym_fn] = ACTIONS(3815), - [anon_sym_PLUS] = ACTIONS(3815), - [anon_sym_DASH] = ACTIONS(3815), - [anon_sym_STAR] = ACTIONS(3815), - [anon_sym_struct] = ACTIONS(3815), - [anon_sym_union] = ACTIONS(3815), - [anon_sym_pub] = ACTIONS(3815), - [anon_sym_mut] = ACTIONS(3815), - [anon_sym_enum] = ACTIONS(3815), - [anon_sym_interface] = ACTIONS(3815), - [anon_sym_QMARK] = ACTIONS(3815), - [anon_sym_BANG] = ACTIONS(3815), - [anon_sym_go] = ACTIONS(3815), - [anon_sym_spawn] = ACTIONS(3815), - [anon_sym_json_DOTdecode] = ACTIONS(3815), - [anon_sym_LBRACK2] = ACTIONS(3815), - [anon_sym_TILDE] = ACTIONS(3815), - [anon_sym_CARET] = ACTIONS(3815), - [anon_sym_AMP] = ACTIONS(3815), - [anon_sym_LT_DASH] = ACTIONS(3815), - [sym_none] = ACTIONS(3815), - [sym_true] = ACTIONS(3815), - [sym_false] = ACTIONS(3815), - [sym_nil] = ACTIONS(3815), - [anon_sym_if] = ACTIONS(3815), - [anon_sym_DOLLARif] = ACTIONS(3815), - [anon_sym_match] = ACTIONS(3815), - [anon_sym_select] = ACTIONS(3815), - [anon_sym_lock] = ACTIONS(3815), - [anon_sym_rlock] = ACTIONS(3815), - [anon_sym_unsafe] = ACTIONS(3815), - [anon_sym_sql] = ACTIONS(3815), - [sym_int_literal] = ACTIONS(3815), - [sym_float_literal] = ACTIONS(3815), - [sym_rune_literal] = ACTIONS(3815), - [anon_sym_AT] = ACTIONS(3815), - [anon_sym_shared] = ACTIONS(3815), - [anon_sym_map_LBRACK] = ACTIONS(3815), - [anon_sym_chan] = ACTIONS(3815), - [anon_sym_thread] = ACTIONS(3815), - [anon_sym_atomic] = ACTIONS(3815), - [anon_sym_assert] = ACTIONS(3815), - [anon_sym_defer] = ACTIONS(3815), - [anon_sym_goto] = ACTIONS(3815), - [anon_sym_break] = ACTIONS(3815), - [anon_sym_continue] = ACTIONS(3815), - [anon_sym_return] = ACTIONS(3815), - [anon_sym_DOLLARfor] = ACTIONS(3815), - [anon_sym_for] = ACTIONS(3815), - [anon_sym_POUND] = ACTIONS(3815), - [anon_sym_asm] = ACTIONS(3815), - [anon_sym_AT_LBRACK] = ACTIONS(3815), - [sym___double_quote] = ACTIONS(3815), - [sym___single_quote] = ACTIONS(3815), - [sym___c_double_quote] = ACTIONS(3815), - [sym___c_single_quote] = ACTIONS(3815), - [sym___r_double_quote] = ACTIONS(3815), - [sym___r_single_quote] = ACTIONS(3815), - }, - [1440] = { - [sym_block] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(3817), - [sym_identifier] = ACTIONS(3819), - [anon_sym_LF] = ACTIONS(3819), - [anon_sym_CR] = ACTIONS(3819), - [anon_sym_CR_LF] = ACTIONS(3819), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3819), - [anon_sym_LPAREN] = ACTIONS(3819), - [anon_sym___global] = ACTIONS(3819), - [anon_sym_type] = ACTIONS(3819), - [anon_sym_fn] = ACTIONS(3819), - [anon_sym_PLUS] = ACTIONS(3819), - [anon_sym_DASH] = ACTIONS(3819), - [anon_sym_STAR] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(3819), - [anon_sym_union] = ACTIONS(3819), - [anon_sym_pub] = ACTIONS(3819), - [anon_sym_mut] = ACTIONS(3819), - [anon_sym_enum] = ACTIONS(3819), - [anon_sym_interface] = ACTIONS(3819), - [anon_sym_QMARK] = ACTIONS(3819), - [anon_sym_BANG] = ACTIONS(3819), - [anon_sym_go] = ACTIONS(3819), - [anon_sym_spawn] = ACTIONS(3819), - [anon_sym_json_DOTdecode] = ACTIONS(3819), - [anon_sym_LBRACK2] = ACTIONS(3819), - [anon_sym_TILDE] = ACTIONS(3819), - [anon_sym_CARET] = ACTIONS(3819), - [anon_sym_AMP] = ACTIONS(3819), - [anon_sym_LT_DASH] = ACTIONS(3819), - [sym_none] = ACTIONS(3819), - [sym_true] = ACTIONS(3819), - [sym_false] = ACTIONS(3819), - [sym_nil] = ACTIONS(3819), - [anon_sym_if] = ACTIONS(3819), - [anon_sym_DOLLARif] = ACTIONS(3819), - [anon_sym_match] = ACTIONS(3819), - [anon_sym_select] = ACTIONS(3819), - [anon_sym_lock] = ACTIONS(3819), - [anon_sym_rlock] = ACTIONS(3819), - [anon_sym_unsafe] = ACTIONS(3819), - [anon_sym_sql] = ACTIONS(3819), - [sym_int_literal] = ACTIONS(3819), - [sym_float_literal] = ACTIONS(3819), - [sym_rune_literal] = ACTIONS(3819), - [anon_sym_AT] = ACTIONS(3819), - [anon_sym_shared] = ACTIONS(3819), - [anon_sym_map_LBRACK] = ACTIONS(3819), - [anon_sym_chan] = ACTIONS(3819), - [anon_sym_thread] = ACTIONS(3819), - [anon_sym_atomic] = ACTIONS(3819), - [anon_sym_assert] = ACTIONS(3819), - [anon_sym_defer] = ACTIONS(3819), - [anon_sym_goto] = ACTIONS(3819), - [anon_sym_break] = ACTIONS(3819), - [anon_sym_continue] = ACTIONS(3819), - [anon_sym_return] = ACTIONS(3819), - [anon_sym_DOLLARfor] = ACTIONS(3819), - [anon_sym_for] = ACTIONS(3819), - [anon_sym_POUND] = ACTIONS(3819), - [anon_sym_asm] = ACTIONS(3819), - [anon_sym_AT_LBRACK] = ACTIONS(3819), - [sym___double_quote] = ACTIONS(3819), - [sym___single_quote] = ACTIONS(3819), - [sym___c_double_quote] = ACTIONS(3819), - [sym___c_single_quote] = ACTIONS(3819), - [sym___r_double_quote] = ACTIONS(3819), - [sym___r_single_quote] = ACTIONS(3819), - }, - [1441] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2842), - [anon_sym_LF] = ACTIONS(2842), - [anon_sym_CR] = ACTIONS(2842), - [anon_sym_CR_LF] = ACTIONS(2842), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym___global] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_fn] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_pub] = ACTIONS(2842), - [anon_sym_mut] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_interface] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_go] = ACTIONS(2842), - [anon_sym_spawn] = ACTIONS(2842), - [anon_sym_json_DOTdecode] = ACTIONS(2842), - [anon_sym_LBRACK2] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_LT_DASH] = ACTIONS(2842), - [sym_none] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_nil] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_DOLLARif] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2842), - [anon_sym_select] = ACTIONS(2842), - [anon_sym_lock] = ACTIONS(2842), - [anon_sym_rlock] = ACTIONS(2842), - [anon_sym_unsafe] = ACTIONS(2842), - [anon_sym_sql] = ACTIONS(2842), - [sym_int_literal] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2842), - [sym_rune_literal] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2842), - [anon_sym_shared] = ACTIONS(2842), - [anon_sym_map_LBRACK] = ACTIONS(2842), - [anon_sym_chan] = ACTIONS(2842), - [anon_sym_thread] = ACTIONS(2842), - [anon_sym_atomic] = ACTIONS(2842), - [anon_sym_assert] = ACTIONS(2842), - [anon_sym_defer] = ACTIONS(2842), - [anon_sym_goto] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_DOLLARfor] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_asm] = ACTIONS(2842), - [anon_sym_AT_LBRACK] = ACTIONS(2842), - [sym___double_quote] = ACTIONS(2842), - [sym___single_quote] = ACTIONS(2842), - [sym___c_double_quote] = ACTIONS(2842), - [sym___c_single_quote] = ACTIONS(2842), - [sym___r_double_quote] = ACTIONS(2842), - [sym___r_single_quote] = ACTIONS(2842), - }, - [1442] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym___global] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_union] = ACTIONS(2854), - [anon_sym_pub] = ACTIONS(2854), - [anon_sym_mut] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_go] = ACTIONS(2854), - [anon_sym_spawn] = ACTIONS(2854), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [sym_none] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_nil] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_DOLLARif] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2854), - [anon_sym_select] = ACTIONS(2854), - [anon_sym_lock] = ACTIONS(2854), - [anon_sym_rlock] = ACTIONS(2854), - [anon_sym_unsafe] = ACTIONS(2854), - [anon_sym_sql] = ACTIONS(2854), - [sym_int_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - [anon_sym_assert] = ACTIONS(2854), - [anon_sym_defer] = ACTIONS(2854), - [anon_sym_goto] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_DOLLARfor] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_asm] = ACTIONS(2854), - [anon_sym_AT_LBRACK] = ACTIONS(2854), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), - }, - [1443] = { - [sym_block] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(3821), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LF] = ACTIONS(3823), - [anon_sym_CR] = ACTIONS(3823), - [anon_sym_CR_LF] = ACTIONS(3823), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym___global] = ACTIONS(3823), - [anon_sym_type] = ACTIONS(3823), - [anon_sym_fn] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3823), - [anon_sym_DASH] = ACTIONS(3823), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_struct] = ACTIONS(3823), - [anon_sym_union] = ACTIONS(3823), - [anon_sym_pub] = ACTIONS(3823), - [anon_sym_mut] = ACTIONS(3823), - [anon_sym_enum] = ACTIONS(3823), - [anon_sym_interface] = ACTIONS(3823), - [anon_sym_QMARK] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(3823), - [anon_sym_spawn] = ACTIONS(3823), - [anon_sym_json_DOTdecode] = ACTIONS(3823), - [anon_sym_LBRACK2] = ACTIONS(3823), - [anon_sym_TILDE] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_AMP] = ACTIONS(3823), - [anon_sym_LT_DASH] = ACTIONS(3823), - [sym_none] = ACTIONS(3823), - [sym_true] = ACTIONS(3823), - [sym_false] = ACTIONS(3823), - [sym_nil] = ACTIONS(3823), - [anon_sym_if] = ACTIONS(3823), - [anon_sym_DOLLARif] = ACTIONS(3823), - [anon_sym_match] = ACTIONS(3823), - [anon_sym_select] = ACTIONS(3823), - [anon_sym_lock] = ACTIONS(3823), - [anon_sym_rlock] = ACTIONS(3823), - [anon_sym_unsafe] = ACTIONS(3823), - [anon_sym_sql] = ACTIONS(3823), - [sym_int_literal] = ACTIONS(3823), - [sym_float_literal] = ACTIONS(3823), - [sym_rune_literal] = ACTIONS(3823), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_shared] = ACTIONS(3823), - [anon_sym_map_LBRACK] = ACTIONS(3823), - [anon_sym_chan] = ACTIONS(3823), - [anon_sym_thread] = ACTIONS(3823), - [anon_sym_atomic] = ACTIONS(3823), - [anon_sym_assert] = ACTIONS(3823), - [anon_sym_defer] = ACTIONS(3823), - [anon_sym_goto] = ACTIONS(3823), - [anon_sym_break] = ACTIONS(3823), - [anon_sym_continue] = ACTIONS(3823), - [anon_sym_return] = ACTIONS(3823), - [anon_sym_DOLLARfor] = ACTIONS(3823), - [anon_sym_for] = ACTIONS(3823), - [anon_sym_POUND] = ACTIONS(3823), - [anon_sym_asm] = ACTIONS(3823), - [anon_sym_AT_LBRACK] = ACTIONS(3823), - [sym___double_quote] = ACTIONS(3823), - [sym___single_quote] = ACTIONS(3823), - [sym___c_double_quote] = ACTIONS(3823), - [sym___c_single_quote] = ACTIONS(3823), - [sym___r_double_quote] = ACTIONS(3823), - [sym___r_single_quote] = ACTIONS(3823), - }, - [1444] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym___global] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_union] = ACTIONS(2858), - [anon_sym_pub] = ACTIONS(2858), - [anon_sym_mut] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_go] = ACTIONS(2858), - [anon_sym_spawn] = ACTIONS(2858), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [sym_none] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_nil] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_DOLLARif] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2858), - [anon_sym_select] = ACTIONS(2858), - [anon_sym_lock] = ACTIONS(2858), - [anon_sym_rlock] = ACTIONS(2858), - [anon_sym_unsafe] = ACTIONS(2858), - [anon_sym_sql] = ACTIONS(2858), - [sym_int_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - [anon_sym_assert] = ACTIONS(2858), - [anon_sym_defer] = ACTIONS(2858), - [anon_sym_goto] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_DOLLARfor] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_asm] = ACTIONS(2858), - [anon_sym_AT_LBRACK] = ACTIONS(2858), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), - }, - [1445] = { - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_identifier] = ACTIONS(3030), - [anon_sym_LF] = ACTIONS(3030), - [anon_sym_CR] = ACTIONS(3030), - [anon_sym_CR_LF] = ACTIONS(3030), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3030), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_const] = ACTIONS(3030), - [anon_sym_LPAREN] = ACTIONS(3030), - [anon_sym___global] = ACTIONS(3030), - [anon_sym_type] = ACTIONS(3030), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_fn] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3030), - [anon_sym_DASH] = ACTIONS(3030), - [anon_sym_STAR] = ACTIONS(3030), - [anon_sym_struct] = ACTIONS(3030), - [anon_sym_union] = ACTIONS(3030), - [anon_sym_pub] = ACTIONS(3030), - [anon_sym_mut] = ACTIONS(3030), - [anon_sym_enum] = ACTIONS(3030), - [anon_sym_interface] = ACTIONS(3030), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_BANG] = ACTIONS(3030), - [anon_sym_go] = ACTIONS(3030), - [anon_sym_spawn] = ACTIONS(3030), - [anon_sym_json_DOTdecode] = ACTIONS(3030), - [anon_sym_LBRACK2] = ACTIONS(3030), - [anon_sym_TILDE] = ACTIONS(3030), - [anon_sym_CARET] = ACTIONS(3030), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT_DASH] = ACTIONS(3030), - [sym_none] = ACTIONS(3030), - [sym_true] = ACTIONS(3030), - [sym_false] = ACTIONS(3030), - [sym_nil] = ACTIONS(3030), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_DOLLARif] = ACTIONS(3030), - [anon_sym_match] = ACTIONS(3030), - [anon_sym_select] = ACTIONS(3030), - [anon_sym_lock] = ACTIONS(3030), - [anon_sym_rlock] = ACTIONS(3030), - [anon_sym_unsafe] = ACTIONS(3030), - [anon_sym_sql] = ACTIONS(3030), - [sym_int_literal] = ACTIONS(3030), - [sym_float_literal] = ACTIONS(3030), - [sym_rune_literal] = ACTIONS(3030), - [anon_sym_AT] = ACTIONS(3030), - [anon_sym_shared] = ACTIONS(3030), - [anon_sym_map_LBRACK] = ACTIONS(3030), - [anon_sym_chan] = ACTIONS(3030), - [anon_sym_thread] = ACTIONS(3030), - [anon_sym_atomic] = ACTIONS(3030), - [anon_sym_assert] = ACTIONS(3030), - [anon_sym_defer] = ACTIONS(3030), - [anon_sym_goto] = ACTIONS(3030), - [anon_sym_break] = ACTIONS(3030), - [anon_sym_continue] = ACTIONS(3030), - [anon_sym_return] = ACTIONS(3030), - [anon_sym_DOLLARfor] = ACTIONS(3030), - [anon_sym_for] = ACTIONS(3030), - [anon_sym_POUND] = ACTIONS(3030), - [anon_sym_asm] = ACTIONS(3030), - [anon_sym_AT_LBRACK] = ACTIONS(3030), - [sym___double_quote] = ACTIONS(3030), - [sym___single_quote] = ACTIONS(3030), - [sym___c_double_quote] = ACTIONS(3030), - [sym___c_single_quote] = ACTIONS(3030), - [sym___r_double_quote] = ACTIONS(3030), - [sym___r_single_quote] = ACTIONS(3030), - }, - [1446] = { - [sym_block] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(3825), - [sym_identifier] = ACTIONS(3827), - [anon_sym_LF] = ACTIONS(3827), - [anon_sym_CR] = ACTIONS(3827), - [anon_sym_CR_LF] = ACTIONS(3827), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3827), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym___global] = ACTIONS(3827), - [anon_sym_type] = ACTIONS(3827), - [anon_sym_fn] = ACTIONS(3827), - [anon_sym_PLUS] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_struct] = ACTIONS(3827), - [anon_sym_union] = ACTIONS(3827), - [anon_sym_pub] = ACTIONS(3827), - [anon_sym_mut] = ACTIONS(3827), - [anon_sym_enum] = ACTIONS(3827), - [anon_sym_interface] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_go] = ACTIONS(3827), - [anon_sym_spawn] = ACTIONS(3827), - [anon_sym_json_DOTdecode] = ACTIONS(3827), - [anon_sym_LBRACK2] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_CARET] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym_LT_DASH] = ACTIONS(3827), - [sym_none] = ACTIONS(3827), - [sym_true] = ACTIONS(3827), - [sym_false] = ACTIONS(3827), - [sym_nil] = ACTIONS(3827), - [anon_sym_if] = ACTIONS(3827), - [anon_sym_DOLLARif] = ACTIONS(3827), - [anon_sym_match] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3827), - [anon_sym_lock] = ACTIONS(3827), - [anon_sym_rlock] = ACTIONS(3827), - [anon_sym_unsafe] = ACTIONS(3827), - [anon_sym_sql] = ACTIONS(3827), - [sym_int_literal] = ACTIONS(3827), - [sym_float_literal] = ACTIONS(3827), - [sym_rune_literal] = ACTIONS(3827), - [anon_sym_AT] = ACTIONS(3827), - [anon_sym_shared] = ACTIONS(3827), - [anon_sym_map_LBRACK] = ACTIONS(3827), - [anon_sym_chan] = ACTIONS(3827), - [anon_sym_thread] = ACTIONS(3827), - [anon_sym_atomic] = ACTIONS(3827), - [anon_sym_assert] = ACTIONS(3827), - [anon_sym_defer] = ACTIONS(3827), - [anon_sym_goto] = ACTIONS(3827), - [anon_sym_break] = ACTIONS(3827), - [anon_sym_continue] = ACTIONS(3827), - [anon_sym_return] = ACTIONS(3827), - [anon_sym_DOLLARfor] = ACTIONS(3827), - [anon_sym_for] = ACTIONS(3827), - [anon_sym_POUND] = ACTIONS(3827), - [anon_sym_asm] = ACTIONS(3827), - [anon_sym_AT_LBRACK] = ACTIONS(3827), - [sym___double_quote] = ACTIONS(3827), - [sym___single_quote] = ACTIONS(3827), - [sym___c_double_quote] = ACTIONS(3827), - [sym___c_single_quote] = ACTIONS(3827), - [sym___r_double_quote] = ACTIONS(3827), - [sym___r_single_quote] = ACTIONS(3827), - }, - [1447] = { - [ts_builtin_sym_end] = ACTIONS(3829), - [sym_identifier] = ACTIONS(3831), - [anon_sym_LF] = ACTIONS(3831), - [anon_sym_CR] = ACTIONS(3831), - [anon_sym_CR_LF] = ACTIONS(3831), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3831), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_LPAREN] = ACTIONS(3831), - [anon_sym___global] = ACTIONS(3831), - [anon_sym_type] = ACTIONS(3831), - [anon_sym_PIPE] = ACTIONS(3831), - [anon_sym_fn] = ACTIONS(3831), - [anon_sym_PLUS] = ACTIONS(3831), - [anon_sym_DASH] = ACTIONS(3831), - [anon_sym_STAR] = ACTIONS(3831), - [anon_sym_struct] = ACTIONS(3831), - [anon_sym_union] = ACTIONS(3831), - [anon_sym_pub] = ACTIONS(3831), - [anon_sym_mut] = ACTIONS(3831), - [anon_sym_enum] = ACTIONS(3831), - [anon_sym_interface] = ACTIONS(3831), - [anon_sym_QMARK] = ACTIONS(3831), - [anon_sym_BANG] = ACTIONS(3831), - [anon_sym_go] = ACTIONS(3831), - [anon_sym_spawn] = ACTIONS(3831), - [anon_sym_json_DOTdecode] = ACTIONS(3831), - [anon_sym_LBRACK2] = ACTIONS(3831), - [anon_sym_TILDE] = ACTIONS(3831), - [anon_sym_CARET] = ACTIONS(3831), - [anon_sym_AMP] = ACTIONS(3831), - [anon_sym_LT_DASH] = ACTIONS(3831), - [sym_none] = ACTIONS(3831), - [sym_true] = ACTIONS(3831), - [sym_false] = ACTIONS(3831), - [sym_nil] = ACTIONS(3831), - [anon_sym_if] = ACTIONS(3831), - [anon_sym_DOLLARif] = ACTIONS(3831), - [anon_sym_match] = ACTIONS(3831), - [anon_sym_select] = ACTIONS(3831), - [anon_sym_lock] = ACTIONS(3831), - [anon_sym_rlock] = ACTIONS(3831), - [anon_sym_unsafe] = ACTIONS(3831), - [anon_sym_sql] = ACTIONS(3831), - [sym_int_literal] = ACTIONS(3831), - [sym_float_literal] = ACTIONS(3831), - [sym_rune_literal] = ACTIONS(3831), - [anon_sym_AT] = ACTIONS(3831), - [anon_sym_shared] = ACTIONS(3831), - [anon_sym_map_LBRACK] = ACTIONS(3831), - [anon_sym_chan] = ACTIONS(3831), - [anon_sym_thread] = ACTIONS(3831), - [anon_sym_atomic] = ACTIONS(3831), - [anon_sym_assert] = ACTIONS(3831), - [anon_sym_defer] = ACTIONS(3831), - [anon_sym_goto] = ACTIONS(3831), - [anon_sym_break] = ACTIONS(3831), - [anon_sym_continue] = ACTIONS(3831), - [anon_sym_return] = ACTIONS(3831), - [anon_sym_DOLLARfor] = ACTIONS(3831), - [anon_sym_for] = ACTIONS(3831), - [anon_sym_POUND] = ACTIONS(3831), - [anon_sym_asm] = ACTIONS(3831), - [anon_sym_AT_LBRACK] = ACTIONS(3831), - [sym___double_quote] = ACTIONS(3831), - [sym___single_quote] = ACTIONS(3831), - [sym___c_double_quote] = ACTIONS(3831), - [sym___c_single_quote] = ACTIONS(3831), - [sym___r_double_quote] = ACTIONS(3831), - [sym___r_single_quote] = ACTIONS(3831), - }, - [1448] = { - [sym_block] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(3833), - [sym_identifier] = ACTIONS(3835), - [anon_sym_LF] = ACTIONS(3835), - [anon_sym_CR] = ACTIONS(3835), - [anon_sym_CR_LF] = ACTIONS(3835), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3835), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(3835), - [anon_sym___global] = ACTIONS(3835), - [anon_sym_type] = ACTIONS(3835), - [anon_sym_fn] = ACTIONS(3835), - [anon_sym_PLUS] = ACTIONS(3835), - [anon_sym_DASH] = ACTIONS(3835), - [anon_sym_STAR] = ACTIONS(3835), - [anon_sym_struct] = ACTIONS(3835), - [anon_sym_union] = ACTIONS(3835), - [anon_sym_pub] = ACTIONS(3835), - [anon_sym_mut] = ACTIONS(3835), - [anon_sym_enum] = ACTIONS(3835), - [anon_sym_interface] = ACTIONS(3835), - [anon_sym_QMARK] = ACTIONS(3835), - [anon_sym_BANG] = ACTIONS(3835), - [anon_sym_go] = ACTIONS(3835), - [anon_sym_spawn] = ACTIONS(3835), - [anon_sym_json_DOTdecode] = ACTIONS(3835), - [anon_sym_LBRACK2] = ACTIONS(3835), - [anon_sym_TILDE] = ACTIONS(3835), - [anon_sym_CARET] = ACTIONS(3835), - [anon_sym_AMP] = ACTIONS(3835), - [anon_sym_LT_DASH] = ACTIONS(3835), - [sym_none] = ACTIONS(3835), - [sym_true] = ACTIONS(3835), - [sym_false] = ACTIONS(3835), - [sym_nil] = ACTIONS(3835), - [anon_sym_if] = ACTIONS(3835), - [anon_sym_DOLLARif] = ACTIONS(3835), - [anon_sym_match] = ACTIONS(3835), - [anon_sym_select] = ACTIONS(3835), - [anon_sym_lock] = ACTIONS(3835), - [anon_sym_rlock] = ACTIONS(3835), - [anon_sym_unsafe] = ACTIONS(3835), - [anon_sym_sql] = ACTIONS(3835), - [sym_int_literal] = ACTIONS(3835), - [sym_float_literal] = ACTIONS(3835), - [sym_rune_literal] = ACTIONS(3835), - [anon_sym_AT] = ACTIONS(3835), - [anon_sym_shared] = ACTIONS(3835), - [anon_sym_map_LBRACK] = ACTIONS(3835), - [anon_sym_chan] = ACTIONS(3835), - [anon_sym_thread] = ACTIONS(3835), - [anon_sym_atomic] = ACTIONS(3835), - [anon_sym_assert] = ACTIONS(3835), - [anon_sym_defer] = ACTIONS(3835), - [anon_sym_goto] = ACTIONS(3835), - [anon_sym_break] = ACTIONS(3835), - [anon_sym_continue] = ACTIONS(3835), - [anon_sym_return] = ACTIONS(3835), - [anon_sym_DOLLARfor] = ACTIONS(3835), - [anon_sym_for] = ACTIONS(3835), - [anon_sym_POUND] = ACTIONS(3835), - [anon_sym_asm] = ACTIONS(3835), - [anon_sym_AT_LBRACK] = ACTIONS(3835), - [sym___double_quote] = ACTIONS(3835), - [sym___single_quote] = ACTIONS(3835), - [sym___c_double_quote] = ACTIONS(3835), - [sym___c_single_quote] = ACTIONS(3835), - [sym___r_double_quote] = ACTIONS(3835), - [sym___r_single_quote] = ACTIONS(3835), - }, - [1449] = { - [ts_builtin_sym_end] = ACTIONS(3040), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LF] = ACTIONS(3042), - [anon_sym_CR] = ACTIONS(3042), - [anon_sym_CR_LF] = ACTIONS(3042), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_as] = ACTIONS(3044), [anon_sym_LBRACE] = ACTIONS(3042), - [anon_sym_const] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), [anon_sym_LPAREN] = ACTIONS(3042), - [anon_sym___global] = ACTIONS(3042), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_fn] = ACTIONS(3042), - [anon_sym_PLUS] = ACTIONS(3042), - [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3044), [anon_sym_STAR] = ACTIONS(3042), - [anon_sym_struct] = ACTIONS(3042), - [anon_sym_union] = ACTIONS(3042), - [anon_sym_pub] = ACTIONS(3042), - [anon_sym_mut] = ACTIONS(3042), - [anon_sym_enum] = ACTIONS(3042), - [anon_sym_interface] = ACTIONS(3042), - [anon_sym_QMARK] = ACTIONS(3042), - [anon_sym_BANG] = ACTIONS(3042), - [anon_sym_go] = ACTIONS(3042), - [anon_sym_spawn] = ACTIONS(3042), + [anon_sym_SLASH] = ACTIONS(3044), + [anon_sym_PERCENT] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3044), + [anon_sym_GT] = ACTIONS(3044), + [anon_sym_EQ_EQ] = ACTIONS(3042), + [anon_sym_BANG_EQ] = ACTIONS(3042), + [anon_sym_LT_EQ] = ACTIONS(3042), + [anon_sym_GT_EQ] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), [anon_sym_json_DOTdecode] = ACTIONS(3042), - [anon_sym_LBRACK2] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3044), [anon_sym_TILDE] = ACTIONS(3042), [anon_sym_CARET] = ACTIONS(3042), - [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3044), [anon_sym_LT_DASH] = ACTIONS(3042), - [sym_none] = ACTIONS(3042), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_nil] = ACTIONS(3042), - [anon_sym_if] = ACTIONS(3042), - [anon_sym_DOLLARif] = ACTIONS(3042), - [anon_sym_match] = ACTIONS(3042), - [anon_sym_select] = ACTIONS(3042), - [anon_sym_lock] = ACTIONS(3042), - [anon_sym_rlock] = ACTIONS(3042), - [anon_sym_unsafe] = ACTIONS(3042), - [anon_sym_sql] = ACTIONS(3042), - [sym_int_literal] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3042), + [anon_sym_GT_GT] = ACTIONS(3044), + [anon_sym_GT_GT_GT] = ACTIONS(3042), + [anon_sym_AMP_CARET] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_PIPE_PIPE] = ACTIONS(3042), + [anon_sym_or] = ACTIONS(3044), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3042), + [anon_sym_POUND_LBRACK] = ACTIONS(3042), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3044), + [anon_sym_BANGis] = ACTIONS(3042), + [anon_sym_in] = ACTIONS(3044), + [anon_sym_BANGin] = ACTIONS(3042), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), [sym_float_literal] = ACTIONS(3042), [sym_rune_literal] = ACTIONS(3042), - [anon_sym_AT] = ACTIONS(3042), - [anon_sym_shared] = ACTIONS(3042), + [anon_sym_AT] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), [anon_sym_map_LBRACK] = ACTIONS(3042), - [anon_sym_chan] = ACTIONS(3042), - [anon_sym_thread] = ACTIONS(3042), - [anon_sym_atomic] = ACTIONS(3042), - [anon_sym_assert] = ACTIONS(3042), - [anon_sym_defer] = ACTIONS(3042), - [anon_sym_goto] = ACTIONS(3042), - [anon_sym_break] = ACTIONS(3042), - [anon_sym_continue] = ACTIONS(3042), - [anon_sym_return] = ACTIONS(3042), - [anon_sym_DOLLARfor] = ACTIONS(3042), - [anon_sym_for] = ACTIONS(3042), - [anon_sym_POUND] = ACTIONS(3042), - [anon_sym_asm] = ACTIONS(3042), - [anon_sym_AT_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), [sym___double_quote] = ACTIONS(3042), [sym___single_quote] = ACTIONS(3042), [sym___c_double_quote] = ACTIONS(3042), @@ -178941,3371 +178636,1877 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3042), [sym___r_single_quote] = ACTIONS(3042), }, - [1450] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), + [1429] = { + [sym_type_parameters] = STATE(4412), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(3762), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_RBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(3837), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(589), - }, - [1451] = { - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2922), - [anon_sym_CR] = ACTIONS(2922), - [anon_sym_CR_LF] = ACTIONS(2922), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym___global] = ACTIONS(2922), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_fn] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2922), - [anon_sym_pub] = ACTIONS(2922), - [anon_sym_mut] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_go] = ACTIONS(2922), - [anon_sym_spawn] = ACTIONS(2922), - [anon_sym_json_DOTdecode] = ACTIONS(2922), - [anon_sym_LBRACK2] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [sym_none] = ACTIONS(2922), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_nil] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_DOLLARif] = ACTIONS(2922), - [anon_sym_match] = ACTIONS(2922), - [anon_sym_select] = ACTIONS(2922), - [anon_sym_lock] = ACTIONS(2922), - [anon_sym_rlock] = ACTIONS(2922), - [anon_sym_unsafe] = ACTIONS(2922), - [anon_sym_sql] = ACTIONS(2922), - [sym_int_literal] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), - [sym_rune_literal] = ACTIONS(2922), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_shared] = ACTIONS(2922), - [anon_sym_map_LBRACK] = ACTIONS(2922), - [anon_sym_chan] = ACTIONS(2922), - [anon_sym_thread] = ACTIONS(2922), - [anon_sym_atomic] = ACTIONS(2922), - [anon_sym_assert] = ACTIONS(2922), - [anon_sym_defer] = ACTIONS(2922), - [anon_sym_goto] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_DOLLARfor] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_asm] = ACTIONS(2922), - [anon_sym_AT_LBRACK] = ACTIONS(2922), - [sym___double_quote] = ACTIONS(2922), - [sym___single_quote] = ACTIONS(2922), - [sym___c_double_quote] = ACTIONS(2922), - [sym___c_single_quote] = ACTIONS(2922), - [sym___r_double_quote] = ACTIONS(2922), - [sym___r_single_quote] = ACTIONS(2922), - }, - [1452] = { - [sym_block] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(3839), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LF] = ACTIONS(3841), - [anon_sym_CR] = ACTIONS(3841), - [anon_sym_CR_LF] = ACTIONS(3841), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3841), - [anon_sym_LPAREN] = ACTIONS(3841), - [anon_sym___global] = ACTIONS(3841), - [anon_sym_type] = ACTIONS(3841), - [anon_sym_fn] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3841), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_struct] = ACTIONS(3841), - [anon_sym_union] = ACTIONS(3841), - [anon_sym_pub] = ACTIONS(3841), - [anon_sym_mut] = ACTIONS(3841), - [anon_sym_enum] = ACTIONS(3841), - [anon_sym_interface] = ACTIONS(3841), - [anon_sym_QMARK] = ACTIONS(3841), - [anon_sym_BANG] = ACTIONS(3841), - [anon_sym_go] = ACTIONS(3841), - [anon_sym_spawn] = ACTIONS(3841), - [anon_sym_json_DOTdecode] = ACTIONS(3841), - [anon_sym_LBRACK2] = ACTIONS(3841), - [anon_sym_TILDE] = ACTIONS(3841), - [anon_sym_CARET] = ACTIONS(3841), - [anon_sym_AMP] = ACTIONS(3841), - [anon_sym_LT_DASH] = ACTIONS(3841), - [sym_none] = ACTIONS(3841), - [sym_true] = ACTIONS(3841), - [sym_false] = ACTIONS(3841), - [sym_nil] = ACTIONS(3841), - [anon_sym_if] = ACTIONS(3841), - [anon_sym_DOLLARif] = ACTIONS(3841), - [anon_sym_match] = ACTIONS(3841), - [anon_sym_select] = ACTIONS(3841), - [anon_sym_lock] = ACTIONS(3841), - [anon_sym_rlock] = ACTIONS(3841), - [anon_sym_unsafe] = ACTIONS(3841), - [anon_sym_sql] = ACTIONS(3841), - [sym_int_literal] = ACTIONS(3841), - [sym_float_literal] = ACTIONS(3841), - [sym_rune_literal] = ACTIONS(3841), - [anon_sym_AT] = ACTIONS(3841), - [anon_sym_shared] = ACTIONS(3841), - [anon_sym_map_LBRACK] = ACTIONS(3841), - [anon_sym_chan] = ACTIONS(3841), - [anon_sym_thread] = ACTIONS(3841), - [anon_sym_atomic] = ACTIONS(3841), - [anon_sym_assert] = ACTIONS(3841), - [anon_sym_defer] = ACTIONS(3841), - [anon_sym_goto] = ACTIONS(3841), - [anon_sym_break] = ACTIONS(3841), - [anon_sym_continue] = ACTIONS(3841), - [anon_sym_return] = ACTIONS(3841), - [anon_sym_DOLLARfor] = ACTIONS(3841), - [anon_sym_for] = ACTIONS(3841), - [anon_sym_POUND] = ACTIONS(3841), - [anon_sym_asm] = ACTIONS(3841), - [anon_sym_AT_LBRACK] = ACTIONS(3841), - [sym___double_quote] = ACTIONS(3841), - [sym___single_quote] = ACTIONS(3841), - [sym___c_double_quote] = ACTIONS(3841), - [sym___c_single_quote] = ACTIONS(3841), - [sym___r_double_quote] = ACTIONS(3841), - [sym___r_single_quote] = ACTIONS(3841), - }, - [1453] = { - [sym_block] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3843), - [sym_identifier] = ACTIONS(3845), - [anon_sym_LF] = ACTIONS(3845), - [anon_sym_CR] = ACTIONS(3845), - [anon_sym_CR_LF] = ACTIONS(3845), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym___global] = ACTIONS(3845), - [anon_sym_type] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_struct] = ACTIONS(3845), - [anon_sym_union] = ACTIONS(3845), - [anon_sym_pub] = ACTIONS(3845), - [anon_sym_mut] = ACTIONS(3845), - [anon_sym_enum] = ACTIONS(3845), - [anon_sym_interface] = ACTIONS(3845), - [anon_sym_QMARK] = ACTIONS(3845), - [anon_sym_BANG] = ACTIONS(3845), - [anon_sym_go] = ACTIONS(3845), - [anon_sym_spawn] = ACTIONS(3845), - [anon_sym_json_DOTdecode] = ACTIONS(3845), - [anon_sym_LBRACK2] = ACTIONS(3845), - [anon_sym_TILDE] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_AMP] = ACTIONS(3845), - [anon_sym_LT_DASH] = ACTIONS(3845), - [sym_none] = ACTIONS(3845), - [sym_true] = ACTIONS(3845), - [sym_false] = ACTIONS(3845), - [sym_nil] = ACTIONS(3845), - [anon_sym_if] = ACTIONS(3845), - [anon_sym_DOLLARif] = ACTIONS(3845), - [anon_sym_match] = ACTIONS(3845), - [anon_sym_select] = ACTIONS(3845), - [anon_sym_lock] = ACTIONS(3845), - [anon_sym_rlock] = ACTIONS(3845), - [anon_sym_unsafe] = ACTIONS(3845), - [anon_sym_sql] = ACTIONS(3845), - [sym_int_literal] = ACTIONS(3845), - [sym_float_literal] = ACTIONS(3845), - [sym_rune_literal] = ACTIONS(3845), - [anon_sym_AT] = ACTIONS(3845), - [anon_sym_shared] = ACTIONS(3845), - [anon_sym_map_LBRACK] = ACTIONS(3845), - [anon_sym_chan] = ACTIONS(3845), - [anon_sym_thread] = ACTIONS(3845), - [anon_sym_atomic] = ACTIONS(3845), - [anon_sym_assert] = ACTIONS(3845), - [anon_sym_defer] = ACTIONS(3845), - [anon_sym_goto] = ACTIONS(3845), - [anon_sym_break] = ACTIONS(3845), - [anon_sym_continue] = ACTIONS(3845), - [anon_sym_return] = ACTIONS(3845), - [anon_sym_DOLLARfor] = ACTIONS(3845), - [anon_sym_for] = ACTIONS(3845), - [anon_sym_POUND] = ACTIONS(3845), - [anon_sym_asm] = ACTIONS(3845), - [anon_sym_AT_LBRACK] = ACTIONS(3845), - [sym___double_quote] = ACTIONS(3845), - [sym___single_quote] = ACTIONS(3845), - [sym___c_double_quote] = ACTIONS(3845), - [sym___c_single_quote] = ACTIONS(3845), - [sym___r_double_quote] = ACTIONS(3845), - [sym___r_single_quote] = ACTIONS(3845), - }, - [1454] = { - [ts_builtin_sym_end] = ACTIONS(3044), - [sym_identifier] = ACTIONS(3046), - [anon_sym_LF] = ACTIONS(3046), - [anon_sym_CR] = ACTIONS(3046), - [anon_sym_CR_LF] = ACTIONS(3046), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_const] = ACTIONS(3046), - [anon_sym_LPAREN] = ACTIONS(3046), - [anon_sym___global] = ACTIONS(3046), - [anon_sym_type] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3046), - [anon_sym_fn] = ACTIONS(3046), - [anon_sym_PLUS] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3046), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_struct] = ACTIONS(3046), - [anon_sym_union] = ACTIONS(3046), - [anon_sym_pub] = ACTIONS(3046), - [anon_sym_mut] = ACTIONS(3046), - [anon_sym_enum] = ACTIONS(3046), - [anon_sym_interface] = ACTIONS(3046), - [anon_sym_QMARK] = ACTIONS(3046), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_go] = ACTIONS(3046), - [anon_sym_spawn] = ACTIONS(3046), - [anon_sym_json_DOTdecode] = ACTIONS(3046), - [anon_sym_LBRACK2] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_CARET] = ACTIONS(3046), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_LT_DASH] = ACTIONS(3046), - [sym_none] = ACTIONS(3046), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_nil] = ACTIONS(3046), - [anon_sym_if] = ACTIONS(3046), - [anon_sym_DOLLARif] = ACTIONS(3046), - [anon_sym_match] = ACTIONS(3046), - [anon_sym_select] = ACTIONS(3046), - [anon_sym_lock] = ACTIONS(3046), - [anon_sym_rlock] = ACTIONS(3046), - [anon_sym_unsafe] = ACTIONS(3046), - [anon_sym_sql] = ACTIONS(3046), - [sym_int_literal] = ACTIONS(3046), - [sym_float_literal] = ACTIONS(3046), - [sym_rune_literal] = ACTIONS(3046), - [anon_sym_AT] = ACTIONS(3046), - [anon_sym_shared] = ACTIONS(3046), - [anon_sym_map_LBRACK] = ACTIONS(3046), - [anon_sym_chan] = ACTIONS(3046), - [anon_sym_thread] = ACTIONS(3046), - [anon_sym_atomic] = ACTIONS(3046), - [anon_sym_assert] = ACTIONS(3046), - [anon_sym_defer] = ACTIONS(3046), - [anon_sym_goto] = ACTIONS(3046), - [anon_sym_break] = ACTIONS(3046), - [anon_sym_continue] = ACTIONS(3046), - [anon_sym_return] = ACTIONS(3046), - [anon_sym_DOLLARfor] = ACTIONS(3046), - [anon_sym_for] = ACTIONS(3046), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_asm] = ACTIONS(3046), - [anon_sym_AT_LBRACK] = ACTIONS(3046), - [sym___double_quote] = ACTIONS(3046), - [sym___single_quote] = ACTIONS(3046), - [sym___c_double_quote] = ACTIONS(3046), - [sym___c_single_quote] = ACTIONS(3046), - [sym___r_double_quote] = ACTIONS(3046), - [sym___r_single_quote] = ACTIONS(3046), - }, - [1455] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_LF] = ACTIONS(2822), - [anon_sym_CR] = ACTIONS(2822), - [anon_sym_CR_LF] = ACTIONS(2822), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym___global] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_fn] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_pub] = ACTIONS(2822), - [anon_sym_mut] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_interface] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_go] = ACTIONS(2822), - [anon_sym_spawn] = ACTIONS(2822), - [anon_sym_json_DOTdecode] = ACTIONS(2822), - [anon_sym_LBRACK2] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_LT_DASH] = ACTIONS(2822), - [sym_none] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_nil] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_DOLLARif] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_select] = ACTIONS(2822), - [anon_sym_lock] = ACTIONS(2822), - [anon_sym_rlock] = ACTIONS(2822), - [anon_sym_unsafe] = ACTIONS(2822), - [anon_sym_sql] = ACTIONS(2822), - [sym_int_literal] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2822), - [sym_rune_literal] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2822), - [anon_sym_shared] = ACTIONS(2822), - [anon_sym_map_LBRACK] = ACTIONS(2822), - [anon_sym_chan] = ACTIONS(2822), - [anon_sym_thread] = ACTIONS(2822), - [anon_sym_atomic] = ACTIONS(2822), - [anon_sym_assert] = ACTIONS(2822), - [anon_sym_defer] = ACTIONS(2822), - [anon_sym_goto] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_DOLLARfor] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_asm] = ACTIONS(2822), - [anon_sym_AT_LBRACK] = ACTIONS(2822), - [sym___double_quote] = ACTIONS(2822), - [sym___single_quote] = ACTIONS(2822), - [sym___c_double_quote] = ACTIONS(2822), - [sym___c_single_quote] = ACTIONS(2822), - [sym___r_double_quote] = ACTIONS(2822), - [sym___r_single_quote] = ACTIONS(2822), - }, - [1456] = { - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_CR] = ACTIONS(3082), - [anon_sym_CR_LF] = ACTIONS(3082), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3082), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_LPAREN] = ACTIONS(3082), - [anon_sym___global] = ACTIONS(3082), - [anon_sym_type] = ACTIONS(3082), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_fn] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [anon_sym_pub] = ACTIONS(3082), - [anon_sym_mut] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_interface] = ACTIONS(3082), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_go] = ACTIONS(3082), - [anon_sym_spawn] = ACTIONS(3082), - [anon_sym_json_DOTdecode] = ACTIONS(3082), - [anon_sym_LBRACK2] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_LT_DASH] = ACTIONS(3082), - [sym_none] = ACTIONS(3082), - [sym_true] = ACTIONS(3082), - [sym_false] = ACTIONS(3082), - [sym_nil] = ACTIONS(3082), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_DOLLARif] = ACTIONS(3082), - [anon_sym_match] = ACTIONS(3082), - [anon_sym_select] = ACTIONS(3082), - [anon_sym_lock] = ACTIONS(3082), - [anon_sym_rlock] = ACTIONS(3082), - [anon_sym_unsafe] = ACTIONS(3082), - [anon_sym_sql] = ACTIONS(3082), - [sym_int_literal] = ACTIONS(3082), - [sym_float_literal] = ACTIONS(3082), - [sym_rune_literal] = ACTIONS(3082), - [anon_sym_AT] = ACTIONS(3082), - [anon_sym_shared] = ACTIONS(3082), - [anon_sym_map_LBRACK] = ACTIONS(3082), - [anon_sym_chan] = ACTIONS(3082), - [anon_sym_thread] = ACTIONS(3082), - [anon_sym_atomic] = ACTIONS(3082), - [anon_sym_assert] = ACTIONS(3082), - [anon_sym_defer] = ACTIONS(3082), - [anon_sym_goto] = ACTIONS(3082), - [anon_sym_break] = ACTIONS(3082), - [anon_sym_continue] = ACTIONS(3082), - [anon_sym_return] = ACTIONS(3082), - [anon_sym_DOLLARfor] = ACTIONS(3082), - [anon_sym_for] = ACTIONS(3082), - [anon_sym_POUND] = ACTIONS(3082), - [anon_sym_asm] = ACTIONS(3082), - [anon_sym_AT_LBRACK] = ACTIONS(3082), - [sym___double_quote] = ACTIONS(3082), - [sym___single_quote] = ACTIONS(3082), - [sym___c_double_quote] = ACTIONS(3082), - [sym___c_single_quote] = ACTIONS(3082), - [sym___r_double_quote] = ACTIONS(3082), - [sym___r_single_quote] = ACTIONS(3082), - }, - [1457] = { - [sym_block] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(3847), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LF] = ACTIONS(3849), - [anon_sym_CR] = ACTIONS(3849), - [anon_sym_CR_LF] = ACTIONS(3849), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym___global] = ACTIONS(3849), - [anon_sym_type] = ACTIONS(3849), - [anon_sym_fn] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3849), - [anon_sym_DASH] = ACTIONS(3849), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_struct] = ACTIONS(3849), - [anon_sym_union] = ACTIONS(3849), - [anon_sym_pub] = ACTIONS(3849), - [anon_sym_mut] = ACTIONS(3849), - [anon_sym_enum] = ACTIONS(3849), - [anon_sym_interface] = ACTIONS(3849), - [anon_sym_QMARK] = ACTIONS(3849), - [anon_sym_BANG] = ACTIONS(3849), - [anon_sym_go] = ACTIONS(3849), - [anon_sym_spawn] = ACTIONS(3849), - [anon_sym_json_DOTdecode] = ACTIONS(3849), - [anon_sym_LBRACK2] = ACTIONS(3849), - [anon_sym_TILDE] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_AMP] = ACTIONS(3849), - [anon_sym_LT_DASH] = ACTIONS(3849), - [sym_none] = ACTIONS(3849), - [sym_true] = ACTIONS(3849), - [sym_false] = ACTIONS(3849), - [sym_nil] = ACTIONS(3849), - [anon_sym_if] = ACTIONS(3849), - [anon_sym_DOLLARif] = ACTIONS(3849), - [anon_sym_match] = ACTIONS(3849), - [anon_sym_select] = ACTIONS(3849), - [anon_sym_lock] = ACTIONS(3849), - [anon_sym_rlock] = ACTIONS(3849), - [anon_sym_unsafe] = ACTIONS(3849), - [anon_sym_sql] = ACTIONS(3849), - [sym_int_literal] = ACTIONS(3849), - [sym_float_literal] = ACTIONS(3849), - [sym_rune_literal] = ACTIONS(3849), - [anon_sym_AT] = ACTIONS(3849), - [anon_sym_shared] = ACTIONS(3849), - [anon_sym_map_LBRACK] = ACTIONS(3849), - [anon_sym_chan] = ACTIONS(3849), - [anon_sym_thread] = ACTIONS(3849), - [anon_sym_atomic] = ACTIONS(3849), - [anon_sym_assert] = ACTIONS(3849), - [anon_sym_defer] = ACTIONS(3849), - [anon_sym_goto] = ACTIONS(3849), - [anon_sym_break] = ACTIONS(3849), - [anon_sym_continue] = ACTIONS(3849), - [anon_sym_return] = ACTIONS(3849), - [anon_sym_DOLLARfor] = ACTIONS(3849), - [anon_sym_for] = ACTIONS(3849), - [anon_sym_POUND] = ACTIONS(3849), - [anon_sym_asm] = ACTIONS(3849), - [anon_sym_AT_LBRACK] = ACTIONS(3849), - [sym___double_quote] = ACTIONS(3849), - [sym___single_quote] = ACTIONS(3849), - [sym___c_double_quote] = ACTIONS(3849), - [sym___c_single_quote] = ACTIONS(3849), - [sym___r_double_quote] = ACTIONS(3849), - [sym___r_single_quote] = ACTIONS(3849), - }, - [1458] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_CR] = ACTIONS(2914), - [anon_sym_CR_LF] = ACTIONS(2914), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2914), - [anon_sym___global] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_PIPE] = ACTIONS(2914), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(2914), - [anon_sym_mut] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_QMARK] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_go] = ACTIONS(2914), - [anon_sym_spawn] = ACTIONS(2914), - [anon_sym_json_DOTdecode] = ACTIONS(2914), - [anon_sym_LBRACK2] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_CARET] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_LT_DASH] = ACTIONS(2914), - [sym_none] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_nil] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_DOLLARif] = ACTIONS(2914), - [anon_sym_match] = ACTIONS(2914), - [anon_sym_select] = ACTIONS(2914), - [anon_sym_lock] = ACTIONS(2914), - [anon_sym_rlock] = ACTIONS(2914), - [anon_sym_unsafe] = ACTIONS(2914), - [anon_sym_sql] = ACTIONS(2914), - [sym_int_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_rune_literal] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2914), - [anon_sym_shared] = ACTIONS(2914), - [anon_sym_map_LBRACK] = ACTIONS(2914), - [anon_sym_chan] = ACTIONS(2914), - [anon_sym_thread] = ACTIONS(2914), - [anon_sym_atomic] = ACTIONS(2914), - [anon_sym_assert] = ACTIONS(2914), - [anon_sym_defer] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_DOLLARfor] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_asm] = ACTIONS(2914), - [anon_sym_AT_LBRACK] = ACTIONS(2914), - [sym___double_quote] = ACTIONS(2914), - [sym___single_quote] = ACTIONS(2914), - [sym___c_double_quote] = ACTIONS(2914), - [sym___c_single_quote] = ACTIONS(2914), - [sym___r_double_quote] = ACTIONS(2914), - [sym___r_single_quote] = ACTIONS(2914), - }, - [1459] = { - [sym_block] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(3851), - [sym_identifier] = ACTIONS(3853), - [anon_sym_LF] = ACTIONS(3853), - [anon_sym_CR] = ACTIONS(3853), - [anon_sym_CR_LF] = ACTIONS(3853), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3853), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3853), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym___global] = ACTIONS(3853), - [anon_sym_type] = ACTIONS(3853), - [anon_sym_fn] = ACTIONS(3853), - [anon_sym_PLUS] = ACTIONS(3853), - [anon_sym_DASH] = ACTIONS(3853), - [anon_sym_STAR] = ACTIONS(3853), - [anon_sym_struct] = ACTIONS(3853), - [anon_sym_union] = ACTIONS(3853), - [anon_sym_pub] = ACTIONS(3853), - [anon_sym_mut] = ACTIONS(3853), - [anon_sym_enum] = ACTIONS(3853), - [anon_sym_interface] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3853), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_go] = ACTIONS(3853), - [anon_sym_spawn] = ACTIONS(3853), - [anon_sym_json_DOTdecode] = ACTIONS(3853), - [anon_sym_LBRACK2] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3853), - [anon_sym_CARET] = ACTIONS(3853), - [anon_sym_AMP] = ACTIONS(3853), - [anon_sym_LT_DASH] = ACTIONS(3853), - [sym_none] = ACTIONS(3853), - [sym_true] = ACTIONS(3853), - [sym_false] = ACTIONS(3853), - [sym_nil] = ACTIONS(3853), - [anon_sym_if] = ACTIONS(3853), - [anon_sym_DOLLARif] = ACTIONS(3853), - [anon_sym_match] = ACTIONS(3853), - [anon_sym_select] = ACTIONS(3853), - [anon_sym_lock] = ACTIONS(3853), - [anon_sym_rlock] = ACTIONS(3853), - [anon_sym_unsafe] = ACTIONS(3853), - [anon_sym_sql] = ACTIONS(3853), - [sym_int_literal] = ACTIONS(3853), - [sym_float_literal] = ACTIONS(3853), - [sym_rune_literal] = ACTIONS(3853), - [anon_sym_AT] = ACTIONS(3853), - [anon_sym_shared] = ACTIONS(3853), - [anon_sym_map_LBRACK] = ACTIONS(3853), - [anon_sym_chan] = ACTIONS(3853), - [anon_sym_thread] = ACTIONS(3853), - [anon_sym_atomic] = ACTIONS(3853), - [anon_sym_assert] = ACTIONS(3853), - [anon_sym_defer] = ACTIONS(3853), - [anon_sym_goto] = ACTIONS(3853), - [anon_sym_break] = ACTIONS(3853), - [anon_sym_continue] = ACTIONS(3853), - [anon_sym_return] = ACTIONS(3853), - [anon_sym_DOLLARfor] = ACTIONS(3853), - [anon_sym_for] = ACTIONS(3853), - [anon_sym_POUND] = ACTIONS(3853), - [anon_sym_asm] = ACTIONS(3853), - [anon_sym_AT_LBRACK] = ACTIONS(3853), - [sym___double_quote] = ACTIONS(3853), - [sym___single_quote] = ACTIONS(3853), - [sym___c_double_quote] = ACTIONS(3853), - [sym___c_single_quote] = ACTIONS(3853), - [sym___r_double_quote] = ACTIONS(3853), - [sym___r_single_quote] = ACTIONS(3853), - }, - [1460] = { - [sym_block] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(3855), - [sym_identifier] = ACTIONS(3857), - [anon_sym_LF] = ACTIONS(3857), - [anon_sym_CR] = ACTIONS(3857), - [anon_sym_CR_LF] = ACTIONS(3857), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3857), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym___global] = ACTIONS(3857), - [anon_sym_type] = ACTIONS(3857), - [anon_sym_fn] = ACTIONS(3857), - [anon_sym_PLUS] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3857), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_struct] = ACTIONS(3857), - [anon_sym_union] = ACTIONS(3857), - [anon_sym_pub] = ACTIONS(3857), - [anon_sym_mut] = ACTIONS(3857), - [anon_sym_enum] = ACTIONS(3857), - [anon_sym_interface] = ACTIONS(3857), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_go] = ACTIONS(3857), - [anon_sym_spawn] = ACTIONS(3857), - [anon_sym_json_DOTdecode] = ACTIONS(3857), - [anon_sym_LBRACK2] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_CARET] = ACTIONS(3857), - [anon_sym_AMP] = ACTIONS(3857), - [anon_sym_LT_DASH] = ACTIONS(3857), - [sym_none] = ACTIONS(3857), - [sym_true] = ACTIONS(3857), - [sym_false] = ACTIONS(3857), - [sym_nil] = ACTIONS(3857), - [anon_sym_if] = ACTIONS(3857), - [anon_sym_DOLLARif] = ACTIONS(3857), - [anon_sym_match] = ACTIONS(3857), - [anon_sym_select] = ACTIONS(3857), - [anon_sym_lock] = ACTIONS(3857), - [anon_sym_rlock] = ACTIONS(3857), - [anon_sym_unsafe] = ACTIONS(3857), - [anon_sym_sql] = ACTIONS(3857), - [sym_int_literal] = ACTIONS(3857), - [sym_float_literal] = ACTIONS(3857), - [sym_rune_literal] = ACTIONS(3857), - [anon_sym_AT] = ACTIONS(3857), - [anon_sym_shared] = ACTIONS(3857), - [anon_sym_map_LBRACK] = ACTIONS(3857), - [anon_sym_chan] = ACTIONS(3857), - [anon_sym_thread] = ACTIONS(3857), - [anon_sym_atomic] = ACTIONS(3857), - [anon_sym_assert] = ACTIONS(3857), - [anon_sym_defer] = ACTIONS(3857), - [anon_sym_goto] = ACTIONS(3857), - [anon_sym_break] = ACTIONS(3857), - [anon_sym_continue] = ACTIONS(3857), - [anon_sym_return] = ACTIONS(3857), - [anon_sym_DOLLARfor] = ACTIONS(3857), - [anon_sym_for] = ACTIONS(3857), - [anon_sym_POUND] = ACTIONS(3857), - [anon_sym_asm] = ACTIONS(3857), - [anon_sym_AT_LBRACK] = ACTIONS(3857), - [sym___double_quote] = ACTIONS(3857), - [sym___single_quote] = ACTIONS(3857), - [sym___c_double_quote] = ACTIONS(3857), - [sym___c_single_quote] = ACTIONS(3857), - [sym___r_double_quote] = ACTIONS(3857), - [sym___r_single_quote] = ACTIONS(3857), - }, - [1461] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_LF] = ACTIONS(2894), - [anon_sym_CR] = ACTIONS(2894), - [anon_sym_CR_LF] = ACTIONS(2894), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym___global] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_fn] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_struct] = ACTIONS(2894), - [anon_sym_union] = ACTIONS(2894), - [anon_sym_pub] = ACTIONS(2894), - [anon_sym_mut] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_go] = ACTIONS(2894), - [anon_sym_spawn] = ACTIONS(2894), - [anon_sym_json_DOTdecode] = ACTIONS(2894), - [anon_sym_LBRACK2] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_CARET] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT_DASH] = ACTIONS(2894), - [sym_none] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_nil] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_DOLLARif] = ACTIONS(2894), - [anon_sym_match] = ACTIONS(2894), - [anon_sym_select] = ACTIONS(2894), - [anon_sym_lock] = ACTIONS(2894), - [anon_sym_rlock] = ACTIONS(2894), - [anon_sym_unsafe] = ACTIONS(2894), - [anon_sym_sql] = ACTIONS(2894), - [sym_int_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_rune_literal] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2894), - [anon_sym_shared] = ACTIONS(2894), - [anon_sym_map_LBRACK] = ACTIONS(2894), - [anon_sym_chan] = ACTIONS(2894), - [anon_sym_thread] = ACTIONS(2894), - [anon_sym_atomic] = ACTIONS(2894), - [anon_sym_assert] = ACTIONS(2894), - [anon_sym_defer] = ACTIONS(2894), - [anon_sym_goto] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_DOLLARfor] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_asm] = ACTIONS(2894), - [anon_sym_AT_LBRACK] = ACTIONS(2894), - [sym___double_quote] = ACTIONS(2894), - [sym___single_quote] = ACTIONS(2894), - [sym___c_double_quote] = ACTIONS(2894), - [sym___c_single_quote] = ACTIONS(2894), - [sym___r_double_quote] = ACTIONS(2894), - [sym___r_single_quote] = ACTIONS(2894), - }, - [1462] = { - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2814), - [anon_sym_LF] = ACTIONS(2814), - [anon_sym_CR] = ACTIONS(2814), - [anon_sym_CR_LF] = ACTIONS(2814), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym___global] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_pub] = ACTIONS(2814), - [anon_sym_mut] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_interface] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_go] = ACTIONS(2814), - [anon_sym_spawn] = ACTIONS(2814), - [anon_sym_json_DOTdecode] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [sym_none] = ACTIONS(2814), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_nil] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_DOLLARif] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2814), - [anon_sym_select] = ACTIONS(2814), - [anon_sym_lock] = ACTIONS(2814), - [anon_sym_rlock] = ACTIONS(2814), - [anon_sym_unsafe] = ACTIONS(2814), - [anon_sym_sql] = ACTIONS(2814), - [sym_int_literal] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2814), - [sym_rune_literal] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2814), - [anon_sym_shared] = ACTIONS(2814), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2814), - [anon_sym_thread] = ACTIONS(2814), - [anon_sym_atomic] = ACTIONS(2814), - [anon_sym_assert] = ACTIONS(2814), - [anon_sym_defer] = ACTIONS(2814), - [anon_sym_goto] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_DOLLARfor] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_asm] = ACTIONS(2814), - [anon_sym_AT_LBRACK] = ACTIONS(2814), - [sym___double_quote] = ACTIONS(2814), - [sym___single_quote] = ACTIONS(2814), - [sym___c_double_quote] = ACTIONS(2814), - [sym___c_single_quote] = ACTIONS(2814), - [sym___r_double_quote] = ACTIONS(2814), - [sym___r_single_quote] = ACTIONS(2814), - }, - [1463] = { - [sym_block] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(3859), - [sym_identifier] = ACTIONS(3861), - [anon_sym_LF] = ACTIONS(3861), - [anon_sym_CR] = ACTIONS(3861), - [anon_sym_CR_LF] = ACTIONS(3861), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3861), - [anon_sym_LPAREN] = ACTIONS(3861), - [anon_sym___global] = ACTIONS(3861), - [anon_sym_type] = ACTIONS(3861), - [anon_sym_fn] = ACTIONS(3861), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_struct] = ACTIONS(3861), - [anon_sym_union] = ACTIONS(3861), - [anon_sym_pub] = ACTIONS(3861), - [anon_sym_mut] = ACTIONS(3861), - [anon_sym_enum] = ACTIONS(3861), - [anon_sym_interface] = ACTIONS(3861), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_go] = ACTIONS(3861), - [anon_sym_spawn] = ACTIONS(3861), - [anon_sym_json_DOTdecode] = ACTIONS(3861), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(3861), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_DASH] = ACTIONS(3861), - [sym_none] = ACTIONS(3861), - [sym_true] = ACTIONS(3861), - [sym_false] = ACTIONS(3861), - [sym_nil] = ACTIONS(3861), - [anon_sym_if] = ACTIONS(3861), - [anon_sym_DOLLARif] = ACTIONS(3861), - [anon_sym_match] = ACTIONS(3861), - [anon_sym_select] = ACTIONS(3861), - [anon_sym_lock] = ACTIONS(3861), - [anon_sym_rlock] = ACTIONS(3861), - [anon_sym_unsafe] = ACTIONS(3861), - [anon_sym_sql] = ACTIONS(3861), - [sym_int_literal] = ACTIONS(3861), - [sym_float_literal] = ACTIONS(3861), - [sym_rune_literal] = ACTIONS(3861), - [anon_sym_AT] = ACTIONS(3861), - [anon_sym_shared] = ACTIONS(3861), - [anon_sym_map_LBRACK] = ACTIONS(3861), - [anon_sym_chan] = ACTIONS(3861), - [anon_sym_thread] = ACTIONS(3861), - [anon_sym_atomic] = ACTIONS(3861), - [anon_sym_assert] = ACTIONS(3861), - [anon_sym_defer] = ACTIONS(3861), - [anon_sym_goto] = ACTIONS(3861), - [anon_sym_break] = ACTIONS(3861), - [anon_sym_continue] = ACTIONS(3861), - [anon_sym_return] = ACTIONS(3861), - [anon_sym_DOLLARfor] = ACTIONS(3861), - [anon_sym_for] = ACTIONS(3861), - [anon_sym_POUND] = ACTIONS(3861), - [anon_sym_asm] = ACTIONS(3861), - [anon_sym_AT_LBRACK] = ACTIONS(3861), - [sym___double_quote] = ACTIONS(3861), - [sym___single_quote] = ACTIONS(3861), - [sym___c_double_quote] = ACTIONS(3861), - [sym___c_single_quote] = ACTIONS(3861), - [sym___r_double_quote] = ACTIONS(3861), - [sym___r_single_quote] = ACTIONS(3861), - }, - [1464] = { - [sym_block] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3863), - [sym_identifier] = ACTIONS(3865), - [anon_sym_LF] = ACTIONS(3865), - [anon_sym_CR] = ACTIONS(3865), - [anon_sym_CR_LF] = ACTIONS(3865), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3865), - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym___global] = ACTIONS(3865), - [anon_sym_type] = ACTIONS(3865), - [anon_sym_fn] = ACTIONS(3865), - [anon_sym_PLUS] = ACTIONS(3865), - [anon_sym_DASH] = ACTIONS(3865), - [anon_sym_STAR] = ACTIONS(3865), - [anon_sym_struct] = ACTIONS(3865), - [anon_sym_union] = ACTIONS(3865), - [anon_sym_pub] = ACTIONS(3865), - [anon_sym_mut] = ACTIONS(3865), - [anon_sym_enum] = ACTIONS(3865), - [anon_sym_interface] = ACTIONS(3865), - [anon_sym_QMARK] = ACTIONS(3865), - [anon_sym_BANG] = ACTIONS(3865), - [anon_sym_go] = ACTIONS(3865), - [anon_sym_spawn] = ACTIONS(3865), - [anon_sym_json_DOTdecode] = ACTIONS(3865), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(3865), - [anon_sym_CARET] = ACTIONS(3865), - [anon_sym_AMP] = ACTIONS(3865), - [anon_sym_LT_DASH] = ACTIONS(3865), - [sym_none] = ACTIONS(3865), - [sym_true] = ACTIONS(3865), - [sym_false] = ACTIONS(3865), - [sym_nil] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(3865), - [anon_sym_DOLLARif] = ACTIONS(3865), - [anon_sym_match] = ACTIONS(3865), - [anon_sym_select] = ACTIONS(3865), - [anon_sym_lock] = ACTIONS(3865), - [anon_sym_rlock] = ACTIONS(3865), - [anon_sym_unsafe] = ACTIONS(3865), - [anon_sym_sql] = ACTIONS(3865), - [sym_int_literal] = ACTIONS(3865), - [sym_float_literal] = ACTIONS(3865), - [sym_rune_literal] = ACTIONS(3865), - [anon_sym_AT] = ACTIONS(3865), - [anon_sym_shared] = ACTIONS(3865), - [anon_sym_map_LBRACK] = ACTIONS(3865), - [anon_sym_chan] = ACTIONS(3865), - [anon_sym_thread] = ACTIONS(3865), - [anon_sym_atomic] = ACTIONS(3865), - [anon_sym_assert] = ACTIONS(3865), - [anon_sym_defer] = ACTIONS(3865), - [anon_sym_goto] = ACTIONS(3865), - [anon_sym_break] = ACTIONS(3865), - [anon_sym_continue] = ACTIONS(3865), - [anon_sym_return] = ACTIONS(3865), - [anon_sym_DOLLARfor] = ACTIONS(3865), - [anon_sym_for] = ACTIONS(3865), - [anon_sym_POUND] = ACTIONS(3865), - [anon_sym_asm] = ACTIONS(3865), - [anon_sym_AT_LBRACK] = ACTIONS(3865), - [sym___double_quote] = ACTIONS(3865), - [sym___single_quote] = ACTIONS(3865), - [sym___c_double_quote] = ACTIONS(3865), - [sym___c_single_quote] = ACTIONS(3865), - [sym___r_double_quote] = ACTIONS(3865), - [sym___r_single_quote] = ACTIONS(3865), - }, - [1465] = { - [sym_block] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(3867), - [sym_identifier] = ACTIONS(3869), - [anon_sym_LF] = ACTIONS(3869), - [anon_sym_CR] = ACTIONS(3869), - [anon_sym_CR_LF] = ACTIONS(3869), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3869), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3869), - [anon_sym_LPAREN] = ACTIONS(3869), - [anon_sym___global] = ACTIONS(3869), - [anon_sym_type] = ACTIONS(3869), - [anon_sym_fn] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3869), - [anon_sym_DASH] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3869), - [anon_sym_struct] = ACTIONS(3869), - [anon_sym_union] = ACTIONS(3869), - [anon_sym_pub] = ACTIONS(3869), - [anon_sym_mut] = ACTIONS(3869), - [anon_sym_enum] = ACTIONS(3869), - [anon_sym_interface] = ACTIONS(3869), - [anon_sym_QMARK] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3869), - [anon_sym_go] = ACTIONS(3869), - [anon_sym_spawn] = ACTIONS(3869), - [anon_sym_json_DOTdecode] = ACTIONS(3869), - [anon_sym_LBRACK2] = ACTIONS(3869), - [anon_sym_TILDE] = ACTIONS(3869), - [anon_sym_CARET] = ACTIONS(3869), - [anon_sym_AMP] = ACTIONS(3869), - [anon_sym_LT_DASH] = ACTIONS(3869), - [sym_none] = ACTIONS(3869), - [sym_true] = ACTIONS(3869), - [sym_false] = ACTIONS(3869), - [sym_nil] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(3869), - [anon_sym_DOLLARif] = ACTIONS(3869), - [anon_sym_match] = ACTIONS(3869), - [anon_sym_select] = ACTIONS(3869), - [anon_sym_lock] = ACTIONS(3869), - [anon_sym_rlock] = ACTIONS(3869), - [anon_sym_unsafe] = ACTIONS(3869), - [anon_sym_sql] = ACTIONS(3869), - [sym_int_literal] = ACTIONS(3869), - [sym_float_literal] = ACTIONS(3869), - [sym_rune_literal] = ACTIONS(3869), - [anon_sym_AT] = ACTIONS(3869), - [anon_sym_shared] = ACTIONS(3869), - [anon_sym_map_LBRACK] = ACTIONS(3869), - [anon_sym_chan] = ACTIONS(3869), - [anon_sym_thread] = ACTIONS(3869), - [anon_sym_atomic] = ACTIONS(3869), - [anon_sym_assert] = ACTIONS(3869), - [anon_sym_defer] = ACTIONS(3869), - [anon_sym_goto] = ACTIONS(3869), - [anon_sym_break] = ACTIONS(3869), - [anon_sym_continue] = ACTIONS(3869), - [anon_sym_return] = ACTIONS(3869), - [anon_sym_DOLLARfor] = ACTIONS(3869), - [anon_sym_for] = ACTIONS(3869), - [anon_sym_POUND] = ACTIONS(3869), - [anon_sym_asm] = ACTIONS(3869), - [anon_sym_AT_LBRACK] = ACTIONS(3869), - [sym___double_quote] = ACTIONS(3869), - [sym___single_quote] = ACTIONS(3869), - [sym___c_double_quote] = ACTIONS(3869), - [sym___c_single_quote] = ACTIONS(3869), - [sym___r_double_quote] = ACTIONS(3869), - [sym___r_single_quote] = ACTIONS(3869), + [anon_sym_DOT] = ACTIONS(3740), + [anon_sym_as] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3768), + [anon_sym_fn] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3768), + [anon_sym_STAR] = ACTIONS(3770), + [anon_sym_SLASH] = ACTIONS(3772), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_LT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3774), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_mut] = ACTIONS(3762), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_DASH_DASH] = ACTIONS(3782), + [anon_sym_QMARK] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_go] = ACTIONS(3762), + [anon_sym_spawn] = ACTIONS(3762), + [anon_sym_json_DOTdecode] = ACTIONS(3766), + [anon_sym_LBRACK2] = ACTIONS(3750), + [anon_sym_TILDE] = ACTIONS(3766), + [anon_sym_CARET] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3772), + [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_LT_LT] = ACTIONS(3770), + [anon_sym_GT_GT] = ACTIONS(3772), + [anon_sym_GT_GT_GT] = ACTIONS(3770), + [anon_sym_AMP_CARET] = ACTIONS(3770), + [anon_sym_AMP_AMP] = ACTIONS(3786), + [anon_sym_PIPE_PIPE] = ACTIONS(3788), + [anon_sym_or] = ACTIONS(3790), + [sym_none] = ACTIONS(3762), + [sym_true] = ACTIONS(3762), + [sym_false] = ACTIONS(3762), + [sym_nil] = ACTIONS(3762), + [anon_sym_QMARK_DOT] = ACTIONS(3752), + [anon_sym_POUND_LBRACK] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_DOLLARif] = ACTIONS(3762), + [anon_sym_is] = ACTIONS(3792), + [anon_sym_BANGis] = ACTIONS(3794), + [anon_sym_in] = ACTIONS(3796), + [anon_sym_BANGin] = ACTIONS(3798), + [anon_sym_match] = ACTIONS(3762), + [anon_sym_select] = ACTIONS(3762), + [anon_sym_lock] = ACTIONS(3762), + [anon_sym_rlock] = ACTIONS(3762), + [anon_sym_unsafe] = ACTIONS(3762), + [anon_sym_sql] = ACTIONS(3762), + [sym_int_literal] = ACTIONS(3762), + [sym_float_literal] = ACTIONS(3766), + [sym_rune_literal] = ACTIONS(3766), + [anon_sym_AT] = ACTIONS(3762), + [anon_sym_shared] = ACTIONS(3762), + [anon_sym_map_LBRACK] = ACTIONS(3766), + [anon_sym_chan] = ACTIONS(3762), + [anon_sym_thread] = ACTIONS(3762), + [anon_sym_atomic] = ACTIONS(3762), + [sym___double_quote] = ACTIONS(3766), + [sym___single_quote] = ACTIONS(3766), + [sym___c_double_quote] = ACTIONS(3766), + [sym___c_single_quote] = ACTIONS(3766), + [sym___r_double_quote] = ACTIONS(3766), + [sym___r_single_quote] = ACTIONS(3766), }, - [1466] = { - [sym_block] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(3871), - [sym_identifier] = ACTIONS(3873), - [anon_sym_LF] = ACTIONS(3873), - [anon_sym_CR] = ACTIONS(3873), - [anon_sym_CR_LF] = ACTIONS(3873), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3873), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3873), - [anon_sym_LPAREN] = ACTIONS(3873), - [anon_sym___global] = ACTIONS(3873), - [anon_sym_type] = ACTIONS(3873), - [anon_sym_fn] = ACTIONS(3873), - [anon_sym_PLUS] = ACTIONS(3873), - [anon_sym_DASH] = ACTIONS(3873), - [anon_sym_STAR] = ACTIONS(3873), - [anon_sym_struct] = ACTIONS(3873), - [anon_sym_union] = ACTIONS(3873), - [anon_sym_pub] = ACTIONS(3873), - [anon_sym_mut] = ACTIONS(3873), - [anon_sym_enum] = ACTIONS(3873), - [anon_sym_interface] = ACTIONS(3873), - [anon_sym_QMARK] = ACTIONS(3873), - [anon_sym_BANG] = ACTIONS(3873), - [anon_sym_go] = ACTIONS(3873), - [anon_sym_spawn] = ACTIONS(3873), - [anon_sym_json_DOTdecode] = ACTIONS(3873), - [anon_sym_LBRACK2] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_CARET] = ACTIONS(3873), - [anon_sym_AMP] = ACTIONS(3873), - [anon_sym_LT_DASH] = ACTIONS(3873), - [sym_none] = ACTIONS(3873), - [sym_true] = ACTIONS(3873), - [sym_false] = ACTIONS(3873), - [sym_nil] = ACTIONS(3873), - [anon_sym_if] = ACTIONS(3873), - [anon_sym_DOLLARif] = ACTIONS(3873), - [anon_sym_match] = ACTIONS(3873), - [anon_sym_select] = ACTIONS(3873), - [anon_sym_lock] = ACTIONS(3873), - [anon_sym_rlock] = ACTIONS(3873), - [anon_sym_unsafe] = ACTIONS(3873), - [anon_sym_sql] = ACTIONS(3873), - [sym_int_literal] = ACTIONS(3873), - [sym_float_literal] = ACTIONS(3873), - [sym_rune_literal] = ACTIONS(3873), - [anon_sym_AT] = ACTIONS(3873), - [anon_sym_shared] = ACTIONS(3873), - [anon_sym_map_LBRACK] = ACTIONS(3873), - [anon_sym_chan] = ACTIONS(3873), - [anon_sym_thread] = ACTIONS(3873), - [anon_sym_atomic] = ACTIONS(3873), - [anon_sym_assert] = ACTIONS(3873), - [anon_sym_defer] = ACTIONS(3873), - [anon_sym_goto] = ACTIONS(3873), - [anon_sym_break] = ACTIONS(3873), - [anon_sym_continue] = ACTIONS(3873), - [anon_sym_return] = ACTIONS(3873), - [anon_sym_DOLLARfor] = ACTIONS(3873), - [anon_sym_for] = ACTIONS(3873), - [anon_sym_POUND] = ACTIONS(3873), - [anon_sym_asm] = ACTIONS(3873), - [anon_sym_AT_LBRACK] = ACTIONS(3873), - [sym___double_quote] = ACTIONS(3873), - [sym___single_quote] = ACTIONS(3873), - [sym___c_double_quote] = ACTIONS(3873), - [sym___c_single_quote] = ACTIONS(3873), - [sym___r_double_quote] = ACTIONS(3873), - [sym___r_single_quote] = ACTIONS(3873), + [1430] = { + [sym_identifier] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3168), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3168), + [anon_sym_BANG_EQ] = ACTIONS(3168), + [anon_sym_LT_EQ] = ACTIONS(3168), + [anon_sym_GT_EQ] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_RBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_COLON] = ACTIONS(3168), + [anon_sym_PLUS_PLUS] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3168), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3168), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3168), + [anon_sym_CARET] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3168), + [anon_sym_LT_LT] = ACTIONS(3168), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3168), + [anon_sym_AMP_CARET] = ACTIONS(3168), + [anon_sym_AMP_AMP] = ACTIONS(3168), + [anon_sym_PIPE_PIPE] = ACTIONS(3168), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3168), + [anon_sym_POUND_LBRACK] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3168), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3168), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3168), + [sym_rune_literal] = ACTIONS(3168), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3168), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3168), + [sym___single_quote] = ACTIONS(3168), + [sym___c_double_quote] = ACTIONS(3168), + [sym___c_single_quote] = ACTIONS(3168), + [sym___r_double_quote] = ACTIONS(3168), + [sym___r_single_quote] = ACTIONS(3168), }, - [1467] = { - [sym_block] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(3875), - [sym_identifier] = ACTIONS(3877), - [anon_sym_LF] = ACTIONS(3877), - [anon_sym_CR] = ACTIONS(3877), - [anon_sym_CR_LF] = ACTIONS(3877), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3877), - [anon_sym___global] = ACTIONS(3877), - [anon_sym_type] = ACTIONS(3877), - [anon_sym_fn] = ACTIONS(3877), - [anon_sym_PLUS] = ACTIONS(3877), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_struct] = ACTIONS(3877), - [anon_sym_union] = ACTIONS(3877), - [anon_sym_pub] = ACTIONS(3877), - [anon_sym_mut] = ACTIONS(3877), - [anon_sym_enum] = ACTIONS(3877), - [anon_sym_interface] = ACTIONS(3877), - [anon_sym_QMARK] = ACTIONS(3877), - [anon_sym_BANG] = ACTIONS(3877), - [anon_sym_go] = ACTIONS(3877), - [anon_sym_spawn] = ACTIONS(3877), - [anon_sym_json_DOTdecode] = ACTIONS(3877), - [anon_sym_LBRACK2] = ACTIONS(3877), - [anon_sym_TILDE] = ACTIONS(3877), - [anon_sym_CARET] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3877), - [anon_sym_LT_DASH] = ACTIONS(3877), - [sym_none] = ACTIONS(3877), - [sym_true] = ACTIONS(3877), - [sym_false] = ACTIONS(3877), - [sym_nil] = ACTIONS(3877), - [anon_sym_if] = ACTIONS(3877), - [anon_sym_DOLLARif] = ACTIONS(3877), - [anon_sym_match] = ACTIONS(3877), - [anon_sym_select] = ACTIONS(3877), - [anon_sym_lock] = ACTIONS(3877), - [anon_sym_rlock] = ACTIONS(3877), - [anon_sym_unsafe] = ACTIONS(3877), - [anon_sym_sql] = ACTIONS(3877), - [sym_int_literal] = ACTIONS(3877), - [sym_float_literal] = ACTIONS(3877), - [sym_rune_literal] = ACTIONS(3877), - [anon_sym_AT] = ACTIONS(3877), - [anon_sym_shared] = ACTIONS(3877), - [anon_sym_map_LBRACK] = ACTIONS(3877), - [anon_sym_chan] = ACTIONS(3877), - [anon_sym_thread] = ACTIONS(3877), - [anon_sym_atomic] = ACTIONS(3877), - [anon_sym_assert] = ACTIONS(3877), - [anon_sym_defer] = ACTIONS(3877), - [anon_sym_goto] = ACTIONS(3877), - [anon_sym_break] = ACTIONS(3877), - [anon_sym_continue] = ACTIONS(3877), - [anon_sym_return] = ACTIONS(3877), - [anon_sym_DOLLARfor] = ACTIONS(3877), - [anon_sym_for] = ACTIONS(3877), - [anon_sym_POUND] = ACTIONS(3877), - [anon_sym_asm] = ACTIONS(3877), - [anon_sym_AT_LBRACK] = ACTIONS(3877), - [sym___double_quote] = ACTIONS(3877), - [sym___single_quote] = ACTIONS(3877), - [sym___c_double_quote] = ACTIONS(3877), - [sym___c_single_quote] = ACTIONS(3877), - [sym___r_double_quote] = ACTIONS(3877), - [sym___r_single_quote] = ACTIONS(3877), + [1431] = { + [sym_identifier] = ACTIONS(3144), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_as] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3144), + [anon_sym_fn] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_STAR] = ACTIONS(3142), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_PERCENT] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_GT] = ACTIONS(3144), + [anon_sym_EQ_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_struct] = ACTIONS(3144), + [anon_sym_mut] = ACTIONS(3144), + [anon_sym_COLON] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_go] = ACTIONS(3144), + [anon_sym_spawn] = ACTIONS(3144), + [anon_sym_json_DOTdecode] = ACTIONS(3142), + [anon_sym_LBRACK2] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3142), + [anon_sym_CARET] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT_DASH] = ACTIONS(3142), + [anon_sym_LT_LT] = ACTIONS(3142), + [anon_sym_GT_GT] = ACTIONS(3144), + [anon_sym_GT_GT_GT] = ACTIONS(3142), + [anon_sym_AMP_CARET] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_or] = ACTIONS(3144), + [sym_none] = ACTIONS(3144), + [sym_true] = ACTIONS(3144), + [sym_false] = ACTIONS(3144), + [sym_nil] = ACTIONS(3144), + [anon_sym_QMARK_DOT] = ACTIONS(3142), + [anon_sym_POUND_LBRACK] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_DOLLARif] = ACTIONS(3144), + [anon_sym_is] = ACTIONS(3144), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_in] = ACTIONS(3144), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_match] = ACTIONS(3144), + [anon_sym_select] = ACTIONS(3144), + [anon_sym_lock] = ACTIONS(3144), + [anon_sym_rlock] = ACTIONS(3144), + [anon_sym_unsafe] = ACTIONS(3144), + [anon_sym_sql] = ACTIONS(3144), + [sym_int_literal] = ACTIONS(3144), + [sym_float_literal] = ACTIONS(3142), + [sym_rune_literal] = ACTIONS(3142), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_shared] = ACTIONS(3144), + [anon_sym_map_LBRACK] = ACTIONS(3142), + [anon_sym_chan] = ACTIONS(3144), + [anon_sym_thread] = ACTIONS(3144), + [anon_sym_atomic] = ACTIONS(3144), + [sym___double_quote] = ACTIONS(3142), + [sym___single_quote] = ACTIONS(3142), + [sym___c_double_quote] = ACTIONS(3142), + [sym___c_single_quote] = ACTIONS(3142), + [sym___r_double_quote] = ACTIONS(3142), + [sym___r_single_quote] = ACTIONS(3142), }, - [1468] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LF] = ACTIONS(2886), - [anon_sym_CR] = ACTIONS(2886), - [anon_sym_CR_LF] = ACTIONS(2886), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym___global] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_fn] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_struct] = ACTIONS(2886), - [anon_sym_union] = ACTIONS(2886), - [anon_sym_pub] = ACTIONS(2886), - [anon_sym_mut] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_QMARK] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_go] = ACTIONS(2886), - [anon_sym_spawn] = ACTIONS(2886), - [anon_sym_json_DOTdecode] = ACTIONS(2886), - [anon_sym_LBRACK2] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_CARET] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_LT_DASH] = ACTIONS(2886), - [sym_none] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_nil] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_DOLLARif] = ACTIONS(2886), - [anon_sym_match] = ACTIONS(2886), - [anon_sym_select] = ACTIONS(2886), - [anon_sym_lock] = ACTIONS(2886), - [anon_sym_rlock] = ACTIONS(2886), - [anon_sym_unsafe] = ACTIONS(2886), - [anon_sym_sql] = ACTIONS(2886), - [sym_int_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_rune_literal] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(2886), - [anon_sym_shared] = ACTIONS(2886), - [anon_sym_map_LBRACK] = ACTIONS(2886), - [anon_sym_chan] = ACTIONS(2886), - [anon_sym_thread] = ACTIONS(2886), - [anon_sym_atomic] = ACTIONS(2886), - [anon_sym_assert] = ACTIONS(2886), - [anon_sym_defer] = ACTIONS(2886), - [anon_sym_goto] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_DOLLARfor] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_asm] = ACTIONS(2886), - [anon_sym_AT_LBRACK] = ACTIONS(2886), - [sym___double_quote] = ACTIONS(2886), - [sym___single_quote] = ACTIONS(2886), - [sym___c_double_quote] = ACTIONS(2886), - [sym___c_single_quote] = ACTIONS(2886), - [sym___r_double_quote] = ACTIONS(2886), - [sym___r_single_quote] = ACTIONS(2886), + [1432] = { + [sym_identifier] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3116), + [anon_sym_POUND_LBRACK] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3116), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, - [1469] = { - [sym_block] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(3879), - [sym_identifier] = ACTIONS(3881), - [anon_sym_LF] = ACTIONS(3881), - [anon_sym_CR] = ACTIONS(3881), - [anon_sym_CR_LF] = ACTIONS(3881), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3881), - [anon_sym_LPAREN] = ACTIONS(3881), - [anon_sym___global] = ACTIONS(3881), - [anon_sym_type] = ACTIONS(3881), - [anon_sym_fn] = ACTIONS(3881), - [anon_sym_PLUS] = ACTIONS(3881), - [anon_sym_DASH] = ACTIONS(3881), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_struct] = ACTIONS(3881), - [anon_sym_union] = ACTIONS(3881), - [anon_sym_pub] = ACTIONS(3881), - [anon_sym_mut] = ACTIONS(3881), - [anon_sym_enum] = ACTIONS(3881), - [anon_sym_interface] = ACTIONS(3881), - [anon_sym_QMARK] = ACTIONS(3881), - [anon_sym_BANG] = ACTIONS(3881), - [anon_sym_go] = ACTIONS(3881), - [anon_sym_spawn] = ACTIONS(3881), - [anon_sym_json_DOTdecode] = ACTIONS(3881), - [anon_sym_LBRACK2] = ACTIONS(3881), - [anon_sym_TILDE] = ACTIONS(3881), - [anon_sym_CARET] = ACTIONS(3881), - [anon_sym_AMP] = ACTIONS(3881), - [anon_sym_LT_DASH] = ACTIONS(3881), - [sym_none] = ACTIONS(3881), - [sym_true] = ACTIONS(3881), - [sym_false] = ACTIONS(3881), - [sym_nil] = ACTIONS(3881), - [anon_sym_if] = ACTIONS(3881), - [anon_sym_DOLLARif] = ACTIONS(3881), - [anon_sym_match] = ACTIONS(3881), - [anon_sym_select] = ACTIONS(3881), - [anon_sym_lock] = ACTIONS(3881), - [anon_sym_rlock] = ACTIONS(3881), - [anon_sym_unsafe] = ACTIONS(3881), - [anon_sym_sql] = ACTIONS(3881), - [sym_int_literal] = ACTIONS(3881), - [sym_float_literal] = ACTIONS(3881), - [sym_rune_literal] = ACTIONS(3881), - [anon_sym_AT] = ACTIONS(3881), - [anon_sym_shared] = ACTIONS(3881), - [anon_sym_map_LBRACK] = ACTIONS(3881), - [anon_sym_chan] = ACTIONS(3881), - [anon_sym_thread] = ACTIONS(3881), - [anon_sym_atomic] = ACTIONS(3881), - [anon_sym_assert] = ACTIONS(3881), - [anon_sym_defer] = ACTIONS(3881), - [anon_sym_goto] = ACTIONS(3881), - [anon_sym_break] = ACTIONS(3881), - [anon_sym_continue] = ACTIONS(3881), - [anon_sym_return] = ACTIONS(3881), - [anon_sym_DOLLARfor] = ACTIONS(3881), - [anon_sym_for] = ACTIONS(3881), - [anon_sym_POUND] = ACTIONS(3881), - [anon_sym_asm] = ACTIONS(3881), - [anon_sym_AT_LBRACK] = ACTIONS(3881), - [sym___double_quote] = ACTIONS(3881), - [sym___single_quote] = ACTIONS(3881), - [sym___c_double_quote] = ACTIONS(3881), - [sym___c_single_quote] = ACTIONS(3881), - [sym___r_double_quote] = ACTIONS(3881), - [sym___r_single_quote] = ACTIONS(3881), + [1433] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(619), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym___global] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_AT_LBRACK] = ACTIONS(619), }, - [1470] = { - [sym_block] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(3883), - [sym_identifier] = ACTIONS(3885), - [anon_sym_LF] = ACTIONS(3885), - [anon_sym_CR] = ACTIONS(3885), - [anon_sym_CR_LF] = ACTIONS(3885), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3885), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(3885), - [anon_sym___global] = ACTIONS(3885), - [anon_sym_type] = ACTIONS(3885), - [anon_sym_fn] = ACTIONS(3885), - [anon_sym_PLUS] = ACTIONS(3885), - [anon_sym_DASH] = ACTIONS(3885), - [anon_sym_STAR] = ACTIONS(3885), - [anon_sym_struct] = ACTIONS(3885), - [anon_sym_union] = ACTIONS(3885), - [anon_sym_pub] = ACTIONS(3885), - [anon_sym_mut] = ACTIONS(3885), - [anon_sym_enum] = ACTIONS(3885), - [anon_sym_interface] = ACTIONS(3885), - [anon_sym_QMARK] = ACTIONS(3885), - [anon_sym_BANG] = ACTIONS(3885), - [anon_sym_go] = ACTIONS(3885), - [anon_sym_spawn] = ACTIONS(3885), - [anon_sym_json_DOTdecode] = ACTIONS(3885), - [anon_sym_LBRACK2] = ACTIONS(3885), - [anon_sym_TILDE] = ACTIONS(3885), - [anon_sym_CARET] = ACTIONS(3885), - [anon_sym_AMP] = ACTIONS(3885), - [anon_sym_LT_DASH] = ACTIONS(3885), - [sym_none] = ACTIONS(3885), - [sym_true] = ACTIONS(3885), - [sym_false] = ACTIONS(3885), - [sym_nil] = ACTIONS(3885), - [anon_sym_if] = ACTIONS(3885), - [anon_sym_DOLLARif] = ACTIONS(3885), - [anon_sym_match] = ACTIONS(3885), - [anon_sym_select] = ACTIONS(3885), - [anon_sym_lock] = ACTIONS(3885), - [anon_sym_rlock] = ACTIONS(3885), - [anon_sym_unsafe] = ACTIONS(3885), - [anon_sym_sql] = ACTIONS(3885), - [sym_int_literal] = ACTIONS(3885), - [sym_float_literal] = ACTIONS(3885), - [sym_rune_literal] = ACTIONS(3885), - [anon_sym_AT] = ACTIONS(3885), - [anon_sym_shared] = ACTIONS(3885), - [anon_sym_map_LBRACK] = ACTIONS(3885), - [anon_sym_chan] = ACTIONS(3885), - [anon_sym_thread] = ACTIONS(3885), - [anon_sym_atomic] = ACTIONS(3885), - [anon_sym_assert] = ACTIONS(3885), - [anon_sym_defer] = ACTIONS(3885), - [anon_sym_goto] = ACTIONS(3885), - [anon_sym_break] = ACTIONS(3885), - [anon_sym_continue] = ACTIONS(3885), - [anon_sym_return] = ACTIONS(3885), - [anon_sym_DOLLARfor] = ACTIONS(3885), - [anon_sym_for] = ACTIONS(3885), - [anon_sym_POUND] = ACTIONS(3885), - [anon_sym_asm] = ACTIONS(3885), - [anon_sym_AT_LBRACK] = ACTIONS(3885), - [sym___double_quote] = ACTIONS(3885), - [sym___single_quote] = ACTIONS(3885), - [sym___c_double_quote] = ACTIONS(3885), - [sym___c_single_quote] = ACTIONS(3885), - [sym___r_double_quote] = ACTIONS(3885), - [sym___r_single_quote] = ACTIONS(3885), + [1434] = { + [sym_identifier] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_COMMA] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2746), + [anon_sym_BANG_EQ] = ACTIONS(2746), + [anon_sym_LT_EQ] = ACTIONS(2746), + [anon_sym_GT_EQ] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_COLON] = ACTIONS(2746), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2746), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_CARET] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2746), + [anon_sym_POUND_LBRACK] = ACTIONS(2746), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2746), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2746), + [sym_rune_literal] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2746), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2746), + [sym___single_quote] = ACTIONS(2746), + [sym___c_double_quote] = ACTIONS(2746), + [sym___c_single_quote] = ACTIONS(2746), + [sym___r_double_quote] = ACTIONS(2746), + [sym___r_single_quote] = ACTIONS(2746), }, - [1471] = { - [sym_block] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(3887), - [sym_identifier] = ACTIONS(3889), - [anon_sym_LF] = ACTIONS(3889), - [anon_sym_CR] = ACTIONS(3889), - [anon_sym_CR_LF] = ACTIONS(3889), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3889), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym___global] = ACTIONS(3889), - [anon_sym_type] = ACTIONS(3889), - [anon_sym_fn] = ACTIONS(3889), - [anon_sym_PLUS] = ACTIONS(3889), - [anon_sym_DASH] = ACTIONS(3889), - [anon_sym_STAR] = ACTIONS(3889), - [anon_sym_struct] = ACTIONS(3889), - [anon_sym_union] = ACTIONS(3889), - [anon_sym_pub] = ACTIONS(3889), - [anon_sym_mut] = ACTIONS(3889), - [anon_sym_enum] = ACTIONS(3889), - [anon_sym_interface] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3889), - [anon_sym_BANG] = ACTIONS(3889), - [anon_sym_go] = ACTIONS(3889), - [anon_sym_spawn] = ACTIONS(3889), - [anon_sym_json_DOTdecode] = ACTIONS(3889), - [anon_sym_LBRACK2] = ACTIONS(3889), - [anon_sym_TILDE] = ACTIONS(3889), - [anon_sym_CARET] = ACTIONS(3889), - [anon_sym_AMP] = ACTIONS(3889), - [anon_sym_LT_DASH] = ACTIONS(3889), - [sym_none] = ACTIONS(3889), - [sym_true] = ACTIONS(3889), - [sym_false] = ACTIONS(3889), - [sym_nil] = ACTIONS(3889), - [anon_sym_if] = ACTIONS(3889), - [anon_sym_DOLLARif] = ACTIONS(3889), - [anon_sym_match] = ACTIONS(3889), - [anon_sym_select] = ACTIONS(3889), - [anon_sym_lock] = ACTIONS(3889), - [anon_sym_rlock] = ACTIONS(3889), - [anon_sym_unsafe] = ACTIONS(3889), - [anon_sym_sql] = ACTIONS(3889), - [sym_int_literal] = ACTIONS(3889), - [sym_float_literal] = ACTIONS(3889), - [sym_rune_literal] = ACTIONS(3889), - [anon_sym_AT] = ACTIONS(3889), - [anon_sym_shared] = ACTIONS(3889), - [anon_sym_map_LBRACK] = ACTIONS(3889), - [anon_sym_chan] = ACTIONS(3889), - [anon_sym_thread] = ACTIONS(3889), - [anon_sym_atomic] = ACTIONS(3889), - [anon_sym_assert] = ACTIONS(3889), - [anon_sym_defer] = ACTIONS(3889), - [anon_sym_goto] = ACTIONS(3889), - [anon_sym_break] = ACTIONS(3889), - [anon_sym_continue] = ACTIONS(3889), - [anon_sym_return] = ACTIONS(3889), - [anon_sym_DOLLARfor] = ACTIONS(3889), - [anon_sym_for] = ACTIONS(3889), - [anon_sym_POUND] = ACTIONS(3889), - [anon_sym_asm] = ACTIONS(3889), - [anon_sym_AT_LBRACK] = ACTIONS(3889), - [sym___double_quote] = ACTIONS(3889), - [sym___single_quote] = ACTIONS(3889), - [sym___c_double_quote] = ACTIONS(3889), - [sym___c_single_quote] = ACTIONS(3889), - [sym___r_double_quote] = ACTIONS(3889), - [sym___r_single_quote] = ACTIONS(3889), + [1435] = { + [sym_identifier] = ACTIONS(3838), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3840), + [anon_sym_DOT] = ACTIONS(3838), + [anon_sym_as] = ACTIONS(3838), + [anon_sym_LBRACE] = ACTIONS(3842), + [anon_sym_COMMA] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3842), + [anon_sym_PIPE] = ACTIONS(3838), + [anon_sym_fn] = ACTIONS(3838), + [anon_sym_PLUS] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [anon_sym_STAR] = ACTIONS(3842), + [anon_sym_SLASH] = ACTIONS(3838), + [anon_sym_PERCENT] = ACTIONS(3842), + [anon_sym_LT] = ACTIONS(3838), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_EQ_EQ] = ACTIONS(3842), + [anon_sym_BANG_EQ] = ACTIONS(3842), + [anon_sym_LT_EQ] = ACTIONS(3842), + [anon_sym_GT_EQ] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_RBRACK] = ACTIONS(3840), + [anon_sym_struct] = ACTIONS(3838), + [anon_sym_mut] = ACTIONS(3838), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_QMARK] = ACTIONS(3838), + [anon_sym_BANG] = ACTIONS(3838), + [anon_sym_go] = ACTIONS(3838), + [anon_sym_spawn] = ACTIONS(3838), + [anon_sym_json_DOTdecode] = ACTIONS(3842), + [anon_sym_LBRACK2] = ACTIONS(3838), + [anon_sym_TILDE] = ACTIONS(3842), + [anon_sym_CARET] = ACTIONS(3842), + [anon_sym_AMP] = ACTIONS(3838), + [anon_sym_LT_DASH] = ACTIONS(3842), + [anon_sym_LT_LT] = ACTIONS(3842), + [anon_sym_GT_GT] = ACTIONS(3838), + [anon_sym_GT_GT_GT] = ACTIONS(3842), + [anon_sym_AMP_CARET] = ACTIONS(3842), + [anon_sym_AMP_AMP] = ACTIONS(3842), + [anon_sym_PIPE_PIPE] = ACTIONS(3842), + [anon_sym_or] = ACTIONS(3838), + [sym_none] = ACTIONS(3838), + [sym_true] = ACTIONS(3838), + [sym_false] = ACTIONS(3838), + [sym_nil] = ACTIONS(3838), + [anon_sym_QMARK_DOT] = ACTIONS(3842), + [anon_sym_POUND_LBRACK] = ACTIONS(3842), + [anon_sym_if] = ACTIONS(3838), + [anon_sym_DOLLARif] = ACTIONS(3838), + [anon_sym_is] = ACTIONS(3838), + [anon_sym_BANGis] = ACTIONS(3842), + [anon_sym_in] = ACTIONS(3838), + [anon_sym_BANGin] = ACTIONS(3842), + [anon_sym_match] = ACTIONS(3838), + [anon_sym_select] = ACTIONS(3838), + [anon_sym_lock] = ACTIONS(3838), + [anon_sym_rlock] = ACTIONS(3838), + [anon_sym_unsafe] = ACTIONS(3838), + [anon_sym_sql] = ACTIONS(3838), + [sym_int_literal] = ACTIONS(3838), + [sym_float_literal] = ACTIONS(3842), + [sym_rune_literal] = ACTIONS(3842), + [anon_sym_AT] = ACTIONS(3838), + [anon_sym_shared] = ACTIONS(3838), + [anon_sym_map_LBRACK] = ACTIONS(3842), + [anon_sym_chan] = ACTIONS(3838), + [anon_sym_thread] = ACTIONS(3838), + [anon_sym_atomic] = ACTIONS(3838), + [sym___double_quote] = ACTIONS(3842), + [sym___single_quote] = ACTIONS(3842), + [sym___c_double_quote] = ACTIONS(3842), + [sym___c_single_quote] = ACTIONS(3842), + [sym___r_double_quote] = ACTIONS(3842), + [sym___r_single_quote] = ACTIONS(3842), }, - [1472] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LF] = ACTIONS(2958), - [anon_sym_CR] = ACTIONS(2958), - [anon_sym_CR_LF] = ACTIONS(2958), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2958), - [anon_sym___global] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_fn] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_struct] = ACTIONS(2958), - [anon_sym_union] = ACTIONS(2958), - [anon_sym_pub] = ACTIONS(2958), - [anon_sym_mut] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_QMARK] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_go] = ACTIONS(2958), - [anon_sym_spawn] = ACTIONS(2958), - [anon_sym_json_DOTdecode] = ACTIONS(2958), - [anon_sym_LBRACK2] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_LT_DASH] = ACTIONS(2958), - [sym_none] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_nil] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_DOLLARif] = ACTIONS(2958), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_select] = ACTIONS(2958), - [anon_sym_lock] = ACTIONS(2958), - [anon_sym_rlock] = ACTIONS(2958), - [anon_sym_unsafe] = ACTIONS(2958), - [anon_sym_sql] = ACTIONS(2958), - [sym_int_literal] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2958), - [sym_rune_literal] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2958), - [anon_sym_shared] = ACTIONS(2958), - [anon_sym_map_LBRACK] = ACTIONS(2958), - [anon_sym_chan] = ACTIONS(2958), - [anon_sym_thread] = ACTIONS(2958), - [anon_sym_atomic] = ACTIONS(2958), - [anon_sym_assert] = ACTIONS(2958), - [anon_sym_defer] = ACTIONS(2958), - [anon_sym_goto] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_DOLLARfor] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [anon_sym_asm] = ACTIONS(2958), - [anon_sym_AT_LBRACK] = ACTIONS(2958), - [sym___double_quote] = ACTIONS(2958), - [sym___single_quote] = ACTIONS(2958), - [sym___c_double_quote] = ACTIONS(2958), - [sym___c_single_quote] = ACTIONS(2958), - [sym___r_double_quote] = ACTIONS(2958), - [sym___r_single_quote] = ACTIONS(2958), + [1436] = { + [sym_identifier] = ACTIONS(3269), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3267), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_RBRACK] = ACTIONS(3844), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3267), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3267), + [anon_sym_AMP_CARET] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3267), + [anon_sym_POUND_LBRACK] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3267), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3267), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3267), + [sym_rune_literal] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3267), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3267), + [sym___single_quote] = ACTIONS(3267), + [sym___c_double_quote] = ACTIONS(3267), + [sym___c_single_quote] = ACTIONS(3267), + [sym___r_double_quote] = ACTIONS(3267), + [sym___r_single_quote] = ACTIONS(3267), }, - [1473] = { - [sym_block] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(3891), - [sym_identifier] = ACTIONS(3893), - [anon_sym_LF] = ACTIONS(3893), - [anon_sym_CR] = ACTIONS(3893), - [anon_sym_CR_LF] = ACTIONS(3893), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3893), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym___global] = ACTIONS(3893), - [anon_sym_type] = ACTIONS(3893), - [anon_sym_fn] = ACTIONS(3893), - [anon_sym_PLUS] = ACTIONS(3893), - [anon_sym_DASH] = ACTIONS(3893), - [anon_sym_STAR] = ACTIONS(3893), - [anon_sym_struct] = ACTIONS(3893), - [anon_sym_union] = ACTIONS(3893), - [anon_sym_pub] = ACTIONS(3893), - [anon_sym_mut] = ACTIONS(3893), - [anon_sym_enum] = ACTIONS(3893), - [anon_sym_interface] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3893), - [anon_sym_BANG] = ACTIONS(3893), - [anon_sym_go] = ACTIONS(3893), - [anon_sym_spawn] = ACTIONS(3893), - [anon_sym_json_DOTdecode] = ACTIONS(3893), - [anon_sym_LBRACK2] = ACTIONS(3893), - [anon_sym_TILDE] = ACTIONS(3893), - [anon_sym_CARET] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3893), - [anon_sym_LT_DASH] = ACTIONS(3893), - [sym_none] = ACTIONS(3893), - [sym_true] = ACTIONS(3893), - [sym_false] = ACTIONS(3893), - [sym_nil] = ACTIONS(3893), - [anon_sym_if] = ACTIONS(3893), - [anon_sym_DOLLARif] = ACTIONS(3893), - [anon_sym_match] = ACTIONS(3893), - [anon_sym_select] = ACTIONS(3893), - [anon_sym_lock] = ACTIONS(3893), - [anon_sym_rlock] = ACTIONS(3893), - [anon_sym_unsafe] = ACTIONS(3893), - [anon_sym_sql] = ACTIONS(3893), - [sym_int_literal] = ACTIONS(3893), - [sym_float_literal] = ACTIONS(3893), - [sym_rune_literal] = ACTIONS(3893), - [anon_sym_AT] = ACTIONS(3893), - [anon_sym_shared] = ACTIONS(3893), - [anon_sym_map_LBRACK] = ACTIONS(3893), - [anon_sym_chan] = ACTIONS(3893), - [anon_sym_thread] = ACTIONS(3893), - [anon_sym_atomic] = ACTIONS(3893), - [anon_sym_assert] = ACTIONS(3893), - [anon_sym_defer] = ACTIONS(3893), - [anon_sym_goto] = ACTIONS(3893), - [anon_sym_break] = ACTIONS(3893), - [anon_sym_continue] = ACTIONS(3893), - [anon_sym_return] = ACTIONS(3893), - [anon_sym_DOLLARfor] = ACTIONS(3893), - [anon_sym_for] = ACTIONS(3893), - [anon_sym_POUND] = ACTIONS(3893), - [anon_sym_asm] = ACTIONS(3893), - [anon_sym_AT_LBRACK] = ACTIONS(3893), - [sym___double_quote] = ACTIONS(3893), - [sym___single_quote] = ACTIONS(3893), - [sym___c_double_quote] = ACTIONS(3893), - [sym___c_single_quote] = ACTIONS(3893), - [sym___r_double_quote] = ACTIONS(3893), - [sym___r_single_quote] = ACTIONS(3893), + [1437] = { + [sym_identifier] = ACTIONS(3230), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3232), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_LT_EQ] = ACTIONS(3228), + [anon_sym_GT_EQ] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_RBRACK] = ACTIONS(3847), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3228), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_CARET] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_LT_LT] = ACTIONS(3228), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3228), + [anon_sym_AMP_CARET] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3228), + [anon_sym_POUND_LBRACK] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3228), + [sym_rune_literal] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3228), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3228), + [sym___single_quote] = ACTIONS(3228), + [sym___c_double_quote] = ACTIONS(3228), + [sym___c_single_quote] = ACTIONS(3228), + [sym___r_double_quote] = ACTIONS(3228), + [sym___r_single_quote] = ACTIONS(3228), }, - [1474] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LF] = ACTIONS(2882), - [anon_sym_CR] = ACTIONS(2882), - [anon_sym_CR_LF] = ACTIONS(2882), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym___global] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_fn] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2882), - [anon_sym_union] = ACTIONS(2882), - [anon_sym_pub] = ACTIONS(2882), - [anon_sym_mut] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_go] = ACTIONS(2882), - [anon_sym_spawn] = ACTIONS(2882), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_LT_DASH] = ACTIONS(2882), - [sym_none] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_nil] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_DOLLARif] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2882), - [anon_sym_select] = ACTIONS(2882), - [anon_sym_lock] = ACTIONS(2882), - [anon_sym_rlock] = ACTIONS(2882), - [anon_sym_unsafe] = ACTIONS(2882), - [anon_sym_sql] = ACTIONS(2882), - [sym_int_literal] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2882), - [anon_sym_shared] = ACTIONS(2882), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2882), - [anon_sym_thread] = ACTIONS(2882), - [anon_sym_atomic] = ACTIONS(2882), - [anon_sym_assert] = ACTIONS(2882), - [anon_sym_defer] = ACTIONS(2882), - [anon_sym_goto] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_DOLLARfor] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_asm] = ACTIONS(2882), - [anon_sym_AT_LBRACK] = ACTIONS(2882), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), + [1438] = { + [sym_identifier] = ACTIONS(2748), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_as] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_COMMA] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_PERCENT] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_GT] = ACTIONS(2748), + [anon_sym_EQ_EQ] = ACTIONS(2746), + [anon_sym_BANG_EQ] = ACTIONS(2746), + [anon_sym_LT_EQ] = ACTIONS(2746), + [anon_sym_GT_EQ] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_RBRACK] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2746), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_CARET] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2746), + [anon_sym_LT_LT] = ACTIONS(2746), + [anon_sym_GT_GT] = ACTIONS(2748), + [anon_sym_GT_GT_GT] = ACTIONS(2746), + [anon_sym_AMP_CARET] = ACTIONS(2746), + [anon_sym_AMP_AMP] = ACTIONS(2746), + [anon_sym_PIPE_PIPE] = ACTIONS(2746), + [anon_sym_or] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_QMARK_DOT] = ACTIONS(2746), + [anon_sym_POUND_LBRACK] = ACTIONS(2746), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_is] = ACTIONS(2748), + [anon_sym_BANGis] = ACTIONS(2746), + [anon_sym_in] = ACTIONS(2748), + [anon_sym_BANGin] = ACTIONS(2746), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2746), + [sym_rune_literal] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2746), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2746), + [sym___single_quote] = ACTIONS(2746), + [sym___c_double_quote] = ACTIONS(2746), + [sym___c_single_quote] = ACTIONS(2746), + [sym___r_double_quote] = ACTIONS(2746), + [sym___r_single_quote] = ACTIONS(2746), }, - [1475] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_LF] = ACTIONS(2874), - [anon_sym_CR] = ACTIONS(2874), - [anon_sym_CR_LF] = ACTIONS(2874), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym___global] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_fn] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2874), - [anon_sym_union] = ACTIONS(2874), - [anon_sym_pub] = ACTIONS(2874), - [anon_sym_mut] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_go] = ACTIONS(2874), - [anon_sym_spawn] = ACTIONS(2874), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_LT_DASH] = ACTIONS(2874), - [sym_none] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_nil] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_DOLLARif] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2874), - [anon_sym_select] = ACTIONS(2874), - [anon_sym_lock] = ACTIONS(2874), - [anon_sym_rlock] = ACTIONS(2874), - [anon_sym_unsafe] = ACTIONS(2874), - [anon_sym_sql] = ACTIONS(2874), - [sym_int_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2874), - [anon_sym_shared] = ACTIONS(2874), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2874), - [anon_sym_thread] = ACTIONS(2874), - [anon_sym_atomic] = ACTIONS(2874), - [anon_sym_assert] = ACTIONS(2874), - [anon_sym_defer] = ACTIONS(2874), - [anon_sym_goto] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_DOLLARfor] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_asm] = ACTIONS(2874), - [anon_sym_AT_LBRACK] = ACTIONS(2874), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), + [1439] = { + [sym_reference_expression] = STATE(4581), + [sym_type_reference_expression] = STATE(2201), + [sym_plain_type] = STATE(2255), + [sym__plain_type_without_special] = STATE(2208), + [sym_anon_struct_type] = STATE(2209), + [sym_multi_return_type] = STATE(2208), + [sym_result_type] = STATE(2208), + [sym_option_type] = STATE(2208), + [sym_qualified_type] = STATE(2201), + [sym_fixed_array_type] = STATE(2209), + [sym_array_type] = STATE(2209), + [sym_pointer_type] = STATE(2209), + [sym_wrong_pointer_type] = STATE(2209), + [sym_map_type] = STATE(2209), + [sym_channel_type] = STATE(2209), + [sym_shared_type] = STATE(2209), + [sym_thread_type] = STATE(2209), + [sym_atomic_type] = STATE(2209), + [sym_generic_type] = STATE(2209), + [sym_function_type] = STATE(2209), + [sym_identifier] = ACTIONS(3850), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(3852), + [anon_sym___global] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3854), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3862), + [anon_sym_LBRACK2] = ACTIONS(3864), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3866), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(3868), + [anon_sym_map_LBRACK] = ACTIONS(3870), + [anon_sym_chan] = ACTIONS(3872), + [anon_sym_thread] = ACTIONS(3874), + [anon_sym_atomic] = ACTIONS(3876), + [anon_sym_AT_LBRACK] = ACTIONS(615), }, - [1476] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_LF] = ACTIONS(2866), - [anon_sym_CR] = ACTIONS(2866), - [anon_sym_CR_LF] = ACTIONS(2866), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_const] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym___global] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_fn] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2866), - [anon_sym_union] = ACTIONS(2866), - [anon_sym_pub] = ACTIONS(2866), - [anon_sym_mut] = ACTIONS(2866), - [anon_sym_enum] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_go] = ACTIONS(2866), - [anon_sym_spawn] = ACTIONS(2866), - [anon_sym_json_DOTdecode] = ACTIONS(2866), - [anon_sym_LBRACK2] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_LT_DASH] = ACTIONS(2866), - [sym_none] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_nil] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_DOLLARif] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2866), - [anon_sym_select] = ACTIONS(2866), - [anon_sym_lock] = ACTIONS(2866), - [anon_sym_rlock] = ACTIONS(2866), - [anon_sym_unsafe] = ACTIONS(2866), - [anon_sym_sql] = ACTIONS(2866), - [sym_int_literal] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), - [sym_rune_literal] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2866), - [anon_sym_shared] = ACTIONS(2866), - [anon_sym_map_LBRACK] = ACTIONS(2866), - [anon_sym_chan] = ACTIONS(2866), - [anon_sym_thread] = ACTIONS(2866), - [anon_sym_atomic] = ACTIONS(2866), - [anon_sym_assert] = ACTIONS(2866), - [anon_sym_defer] = ACTIONS(2866), - [anon_sym_goto] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_DOLLARfor] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_asm] = ACTIONS(2866), - [anon_sym_AT_LBRACK] = ACTIONS(2866), - [sym___double_quote] = ACTIONS(2866), - [sym___single_quote] = ACTIONS(2866), - [sym___c_double_quote] = ACTIONS(2866), - [sym___c_single_quote] = ACTIONS(2866), - [sym___r_double_quote] = ACTIONS(2866), - [sym___r_single_quote] = ACTIONS(2866), + [1440] = { + [sym_identifier] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3116), + [anon_sym_POUND_LBRACK] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3116), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, - [1477] = { - [ts_builtin_sym_end] = ACTIONS(3740), - [sym_identifier] = ACTIONS(3742), - [anon_sym_LF] = ACTIONS(3742), - [anon_sym_CR] = ACTIONS(3742), - [anon_sym_CR_LF] = ACTIONS(3742), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym___global] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_PIPE] = ACTIONS(3742), - [anon_sym_fn] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_STAR] = ACTIONS(3742), - [anon_sym_struct] = ACTIONS(3742), - [anon_sym_union] = ACTIONS(3742), - [anon_sym_pub] = ACTIONS(3742), - [anon_sym_mut] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_QMARK] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_go] = ACTIONS(3742), - [anon_sym_spawn] = ACTIONS(3742), - [anon_sym_json_DOTdecode] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_CARET] = ACTIONS(3742), - [anon_sym_AMP] = ACTIONS(3742), - [anon_sym_LT_DASH] = ACTIONS(3742), - [sym_none] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_nil] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_DOLLARif] = ACTIONS(3742), - [anon_sym_match] = ACTIONS(3742), - [anon_sym_select] = ACTIONS(3742), - [anon_sym_lock] = ACTIONS(3742), - [anon_sym_rlock] = ACTIONS(3742), - [anon_sym_unsafe] = ACTIONS(3742), - [anon_sym_sql] = ACTIONS(3742), - [sym_int_literal] = ACTIONS(3742), - [sym_float_literal] = ACTIONS(3742), - [sym_rune_literal] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_shared] = ACTIONS(3742), - [anon_sym_map_LBRACK] = ACTIONS(3742), - [anon_sym_chan] = ACTIONS(3742), - [anon_sym_thread] = ACTIONS(3742), - [anon_sym_atomic] = ACTIONS(3742), - [anon_sym_assert] = ACTIONS(3742), - [anon_sym_defer] = ACTIONS(3742), - [anon_sym_goto] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_DOLLARfor] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_POUND] = ACTIONS(3742), - [anon_sym_asm] = ACTIONS(3742), - [anon_sym_AT_LBRACK] = ACTIONS(3742), - [sym___double_quote] = ACTIONS(3742), - [sym___single_quote] = ACTIONS(3742), - [sym___c_double_quote] = ACTIONS(3742), - [sym___c_single_quote] = ACTIONS(3742), - [sym___r_double_quote] = ACTIONS(3742), - [sym___r_single_quote] = ACTIONS(3742), + [1441] = { + [sym_reference_expression] = STATE(4581), + [sym_type_reference_expression] = STATE(2201), + [sym_plain_type] = STATE(2220), + [sym__plain_type_without_special] = STATE(2208), + [sym_anon_struct_type] = STATE(2209), + [sym_multi_return_type] = STATE(2208), + [sym_result_type] = STATE(2208), + [sym_option_type] = STATE(2208), + [sym_qualified_type] = STATE(2201), + [sym_fixed_array_type] = STATE(2209), + [sym_array_type] = STATE(2209), + [sym_pointer_type] = STATE(2209), + [sym_wrong_pointer_type] = STATE(2209), + [sym_map_type] = STATE(2209), + [sym_channel_type] = STATE(2209), + [sym_shared_type] = STATE(2209), + [sym_thread_type] = STATE(2209), + [sym_atomic_type] = STATE(2209), + [sym_generic_type] = STATE(2209), + [sym_function_type] = STATE(2209), + [sym_identifier] = ACTIONS(3850), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3852), + [anon_sym___global] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3854), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3862), + [anon_sym_LBRACK2] = ACTIONS(3864), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3866), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3868), + [anon_sym_map_LBRACK] = ACTIONS(3870), + [anon_sym_chan] = ACTIONS(3872), + [anon_sym_thread] = ACTIONS(3874), + [anon_sym_atomic] = ACTIONS(3876), + [anon_sym_AT_LBRACK] = ACTIONS(623), }, - [1478] = { - [sym_block] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(3895), - [sym_identifier] = ACTIONS(3897), - [anon_sym_LF] = ACTIONS(3897), - [anon_sym_CR] = ACTIONS(3897), - [anon_sym_CR_LF] = ACTIONS(3897), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3897), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym___global] = ACTIONS(3897), - [anon_sym_type] = ACTIONS(3897), - [anon_sym_fn] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3897), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_struct] = ACTIONS(3897), - [anon_sym_union] = ACTIONS(3897), - [anon_sym_pub] = ACTIONS(3897), - [anon_sym_mut] = ACTIONS(3897), - [anon_sym_enum] = ACTIONS(3897), - [anon_sym_interface] = ACTIONS(3897), - [anon_sym_QMARK] = ACTIONS(3897), - [anon_sym_BANG] = ACTIONS(3897), - [anon_sym_go] = ACTIONS(3897), - [anon_sym_spawn] = ACTIONS(3897), - [anon_sym_json_DOTdecode] = ACTIONS(3897), - [anon_sym_LBRACK2] = ACTIONS(3897), - [anon_sym_TILDE] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_AMP] = ACTIONS(3897), - [anon_sym_LT_DASH] = ACTIONS(3897), - [sym_none] = ACTIONS(3897), - [sym_true] = ACTIONS(3897), - [sym_false] = ACTIONS(3897), - [sym_nil] = ACTIONS(3897), - [anon_sym_if] = ACTIONS(3897), - [anon_sym_DOLLARif] = ACTIONS(3897), - [anon_sym_match] = ACTIONS(3897), - [anon_sym_select] = ACTIONS(3897), - [anon_sym_lock] = ACTIONS(3897), - [anon_sym_rlock] = ACTIONS(3897), - [anon_sym_unsafe] = ACTIONS(3897), - [anon_sym_sql] = ACTIONS(3897), - [sym_int_literal] = ACTIONS(3897), - [sym_float_literal] = ACTIONS(3897), - [sym_rune_literal] = ACTIONS(3897), - [anon_sym_AT] = ACTIONS(3897), - [anon_sym_shared] = ACTIONS(3897), - [anon_sym_map_LBRACK] = ACTIONS(3897), - [anon_sym_chan] = ACTIONS(3897), - [anon_sym_thread] = ACTIONS(3897), - [anon_sym_atomic] = ACTIONS(3897), - [anon_sym_assert] = ACTIONS(3897), - [anon_sym_defer] = ACTIONS(3897), - [anon_sym_goto] = ACTIONS(3897), - [anon_sym_break] = ACTIONS(3897), - [anon_sym_continue] = ACTIONS(3897), - [anon_sym_return] = ACTIONS(3897), - [anon_sym_DOLLARfor] = ACTIONS(3897), - [anon_sym_for] = ACTIONS(3897), - [anon_sym_POUND] = ACTIONS(3897), - [anon_sym_asm] = ACTIONS(3897), - [anon_sym_AT_LBRACK] = ACTIONS(3897), - [sym___double_quote] = ACTIONS(3897), - [sym___single_quote] = ACTIONS(3897), - [sym___c_double_quote] = ACTIONS(3897), - [sym___c_single_quote] = ACTIONS(3897), - [sym___r_double_quote] = ACTIONS(3897), - [sym___r_single_quote] = ACTIONS(3897), + [1442] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_CR] = ACTIONS(563), + [anon_sym_CR_LF] = ACTIONS(563), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym___global] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_pub] = ACTIONS(563), + [anon_sym_mut] = ACTIONS(563), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3878), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_AT_LBRACK] = ACTIONS(563), }, - [1479] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), + [1443] = { + [sym_identifier] = ACTIONS(3230), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_LT_EQ] = ACTIONS(3228), + [anon_sym_GT_EQ] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_RBRACK] = ACTIONS(3847), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3228), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_CARET] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_LT_LT] = ACTIONS(3228), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3228), + [anon_sym_AMP_CARET] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3228), + [anon_sym_POUND_LBRACK] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3228), + [sym_rune_literal] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3228), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3228), + [sym___single_quote] = ACTIONS(3228), + [sym___c_double_quote] = ACTIONS(3228), + [sym___c_single_quote] = ACTIONS(3228), + [sym___r_double_quote] = ACTIONS(3228), + [sym___r_single_quote] = ACTIONS(3228), }, - [1480] = { - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym___global] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_pub] = ACTIONS(2810), - [anon_sym_mut] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_go] = ACTIONS(2810), - [anon_sym_spawn] = ACTIONS(2810), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [sym_none] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_nil] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_DOLLARif] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2810), - [anon_sym_select] = ACTIONS(2810), - [anon_sym_lock] = ACTIONS(2810), - [anon_sym_rlock] = ACTIONS(2810), - [anon_sym_unsafe] = ACTIONS(2810), - [anon_sym_sql] = ACTIONS(2810), - [sym_int_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - [anon_sym_assert] = ACTIONS(2810), - [anon_sym_defer] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_DOLLARfor] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_asm] = ACTIONS(2810), - [anon_sym_AT_LBRACK] = ACTIONS(2810), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), + [1444] = { + [sym_reference_expression] = STATE(4581), + [sym_type_reference_expression] = STATE(2201), + [sym_plain_type] = STATE(2251), + [sym__plain_type_without_special] = STATE(2208), + [sym_anon_struct_type] = STATE(2209), + [sym_multi_return_type] = STATE(2208), + [sym_result_type] = STATE(2208), + [sym_option_type] = STATE(2208), + [sym_qualified_type] = STATE(2201), + [sym_fixed_array_type] = STATE(2209), + [sym_array_type] = STATE(2209), + [sym_pointer_type] = STATE(2209), + [sym_wrong_pointer_type] = STATE(2209), + [sym_map_type] = STATE(2209), + [sym_channel_type] = STATE(2209), + [sym_shared_type] = STATE(2209), + [sym_thread_type] = STATE(2209), + [sym_atomic_type] = STATE(2209), + [sym_generic_type] = STATE(2209), + [sym_function_type] = STATE(2209), + [sym_identifier] = ACTIONS(3850), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3852), + [anon_sym___global] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3854), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3862), + [anon_sym_LBRACK2] = ACTIONS(3864), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3866), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3868), + [anon_sym_map_LBRACK] = ACTIONS(3870), + [anon_sym_chan] = ACTIONS(3872), + [anon_sym_thread] = ACTIONS(3874), + [anon_sym_atomic] = ACTIONS(3876), + [anon_sym_AT_LBRACK] = ACTIONS(585), }, - [1481] = { - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_LF] = ACTIONS(2764), - [anon_sym_CR] = ACTIONS(2764), - [anon_sym_CR_LF] = ACTIONS(2764), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym___global] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2764), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_mut] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_interface] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_go] = ACTIONS(2764), - [anon_sym_spawn] = ACTIONS(2764), - [anon_sym_json_DOTdecode] = ACTIONS(2764), - [anon_sym_LBRACK2] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_LT_DASH] = ACTIONS(2764), - [sym_none] = ACTIONS(2764), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_nil] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_DOLLARif] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_select] = ACTIONS(2764), - [anon_sym_lock] = ACTIONS(2764), - [anon_sym_rlock] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_sql] = ACTIONS(2764), - [sym_int_literal] = ACTIONS(2764), - [sym_float_literal] = ACTIONS(2764), - [sym_rune_literal] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_shared] = ACTIONS(2764), - [anon_sym_map_LBRACK] = ACTIONS(2764), - [anon_sym_chan] = ACTIONS(2764), - [anon_sym_thread] = ACTIONS(2764), - [anon_sym_atomic] = ACTIONS(2764), - [anon_sym_assert] = ACTIONS(2764), - [anon_sym_defer] = ACTIONS(2764), - [anon_sym_goto] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_DOLLARfor] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_POUND] = ACTIONS(2764), - [anon_sym_asm] = ACTIONS(2764), - [anon_sym_AT_LBRACK] = ACTIONS(2764), - [sym___double_quote] = ACTIONS(2764), - [sym___single_quote] = ACTIONS(2764), - [sym___c_double_quote] = ACTIONS(2764), - [sym___c_single_quote] = ACTIONS(2764), - [sym___r_double_quote] = ACTIONS(2764), - [sym___r_single_quote] = ACTIONS(2764), + [1445] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(2367), + [sym_plain_type] = STATE(2472), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(2367), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3882), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_LBRACK2] = ACTIONS(3890), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3892), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(581), + [anon_sym_AMP_CARET] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_COLON_EQ] = ACTIONS(581), + [anon_sym_shared] = ACTIONS(3894), + [anon_sym_map_LBRACK] = ACTIONS(3896), + [anon_sym_chan] = ACTIONS(3898), + [anon_sym_thread] = ACTIONS(3900), + [anon_sym_atomic] = ACTIONS(3902), + [anon_sym_DOT_DOT] = ACTIONS(581), }, - [1482] = { - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_identifier] = ACTIONS(3086), - [anon_sym_LF] = ACTIONS(3086), - [anon_sym_CR] = ACTIONS(3086), - [anon_sym_CR_LF] = ACTIONS(3086), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3086), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_const] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym___global] = ACTIONS(3086), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3086), - [anon_sym_fn] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3086), - [anon_sym_DASH] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_struct] = ACTIONS(3086), - [anon_sym_union] = ACTIONS(3086), - [anon_sym_pub] = ACTIONS(3086), - [anon_sym_mut] = ACTIONS(3086), - [anon_sym_enum] = ACTIONS(3086), - [anon_sym_interface] = ACTIONS(3086), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_go] = ACTIONS(3086), - [anon_sym_spawn] = ACTIONS(3086), - [anon_sym_json_DOTdecode] = ACTIONS(3086), - [anon_sym_LBRACK2] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_CARET] = ACTIONS(3086), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_LT_DASH] = ACTIONS(3086), - [sym_none] = ACTIONS(3086), - [sym_true] = ACTIONS(3086), - [sym_false] = ACTIONS(3086), - [sym_nil] = ACTIONS(3086), - [anon_sym_if] = ACTIONS(3086), - [anon_sym_DOLLARif] = ACTIONS(3086), - [anon_sym_match] = ACTIONS(3086), - [anon_sym_select] = ACTIONS(3086), - [anon_sym_lock] = ACTIONS(3086), - [anon_sym_rlock] = ACTIONS(3086), - [anon_sym_unsafe] = ACTIONS(3086), - [anon_sym_sql] = ACTIONS(3086), - [sym_int_literal] = ACTIONS(3086), - [sym_float_literal] = ACTIONS(3086), - [sym_rune_literal] = ACTIONS(3086), - [anon_sym_AT] = ACTIONS(3086), - [anon_sym_shared] = ACTIONS(3086), - [anon_sym_map_LBRACK] = ACTIONS(3086), - [anon_sym_chan] = ACTIONS(3086), - [anon_sym_thread] = ACTIONS(3086), - [anon_sym_atomic] = ACTIONS(3086), - [anon_sym_assert] = ACTIONS(3086), - [anon_sym_defer] = ACTIONS(3086), - [anon_sym_goto] = ACTIONS(3086), - [anon_sym_break] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(3086), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_DOLLARfor] = ACTIONS(3086), - [anon_sym_for] = ACTIONS(3086), - [anon_sym_POUND] = ACTIONS(3086), - [anon_sym_asm] = ACTIONS(3086), - [anon_sym_AT_LBRACK] = ACTIONS(3086), - [sym___double_quote] = ACTIONS(3086), - [sym___single_quote] = ACTIONS(3086), - [sym___c_double_quote] = ACTIONS(3086), - [sym___c_single_quote] = ACTIONS(3086), - [sym___r_double_quote] = ACTIONS(3086), - [sym___r_single_quote] = ACTIONS(3086), + [1446] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(2367), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(2367), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3882), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_RBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_LBRACK2] = ACTIONS(3890), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3892), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(3894), + [anon_sym_map_LBRACK] = ACTIONS(3896), + [anon_sym_chan] = ACTIONS(3898), + [anon_sym_thread] = ACTIONS(3900), + [anon_sym_atomic] = ACTIONS(3902), + [anon_sym_DOT_DOT] = ACTIONS(613), }, - [1483] = { - [sym_block] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(3899), - [sym_identifier] = ACTIONS(3901), - [anon_sym_LF] = ACTIONS(3901), - [anon_sym_CR] = ACTIONS(3901), - [anon_sym_CR_LF] = ACTIONS(3901), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3901), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3901), - [anon_sym_LPAREN] = ACTIONS(3901), - [anon_sym___global] = ACTIONS(3901), - [anon_sym_type] = ACTIONS(3901), - [anon_sym_fn] = ACTIONS(3901), - [anon_sym_PLUS] = ACTIONS(3901), - [anon_sym_DASH] = ACTIONS(3901), - [anon_sym_STAR] = ACTIONS(3901), - [anon_sym_struct] = ACTIONS(3901), - [anon_sym_union] = ACTIONS(3901), - [anon_sym_pub] = ACTIONS(3901), - [anon_sym_mut] = ACTIONS(3901), - [anon_sym_enum] = ACTIONS(3901), - [anon_sym_interface] = ACTIONS(3901), - [anon_sym_QMARK] = ACTIONS(3901), - [anon_sym_BANG] = ACTIONS(3901), - [anon_sym_go] = ACTIONS(3901), - [anon_sym_spawn] = ACTIONS(3901), - [anon_sym_json_DOTdecode] = ACTIONS(3901), - [anon_sym_LBRACK2] = ACTIONS(3901), - [anon_sym_TILDE] = ACTIONS(3901), - [anon_sym_CARET] = ACTIONS(3901), - [anon_sym_AMP] = ACTIONS(3901), - [anon_sym_LT_DASH] = ACTIONS(3901), - [sym_none] = ACTIONS(3901), - [sym_true] = ACTIONS(3901), - [sym_false] = ACTIONS(3901), - [sym_nil] = ACTIONS(3901), - [anon_sym_if] = ACTIONS(3901), - [anon_sym_DOLLARif] = ACTIONS(3901), - [anon_sym_match] = ACTIONS(3901), - [anon_sym_select] = ACTIONS(3901), - [anon_sym_lock] = ACTIONS(3901), - [anon_sym_rlock] = ACTIONS(3901), - [anon_sym_unsafe] = ACTIONS(3901), - [anon_sym_sql] = ACTIONS(3901), - [sym_int_literal] = ACTIONS(3901), - [sym_float_literal] = ACTIONS(3901), - [sym_rune_literal] = ACTIONS(3901), - [anon_sym_AT] = ACTIONS(3901), - [anon_sym_shared] = ACTIONS(3901), - [anon_sym_map_LBRACK] = ACTIONS(3901), - [anon_sym_chan] = ACTIONS(3901), - [anon_sym_thread] = ACTIONS(3901), - [anon_sym_atomic] = ACTIONS(3901), - [anon_sym_assert] = ACTIONS(3901), - [anon_sym_defer] = ACTIONS(3901), - [anon_sym_goto] = ACTIONS(3901), - [anon_sym_break] = ACTIONS(3901), - [anon_sym_continue] = ACTIONS(3901), - [anon_sym_return] = ACTIONS(3901), - [anon_sym_DOLLARfor] = ACTIONS(3901), - [anon_sym_for] = ACTIONS(3901), - [anon_sym_POUND] = ACTIONS(3901), - [anon_sym_asm] = ACTIONS(3901), - [anon_sym_AT_LBRACK] = ACTIONS(3901), - [sym___double_quote] = ACTIONS(3901), - [sym___single_quote] = ACTIONS(3901), - [sym___c_double_quote] = ACTIONS(3901), - [sym___c_single_quote] = ACTIONS(3901), - [sym___r_double_quote] = ACTIONS(3901), - [sym___r_single_quote] = ACTIONS(3901), + [1447] = { + [sym_type_parameters] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(3904), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, - [1484] = { - [ts_builtin_sym_end] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3038), - [anon_sym_LF] = ACTIONS(3038), - [anon_sym_CR] = ACTIONS(3038), - [anon_sym_CR_LF] = ACTIONS(3038), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3038), - [anon_sym_LBRACE] = ACTIONS(3038), - [anon_sym_const] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(3038), - [anon_sym___global] = ACTIONS(3038), - [anon_sym_type] = ACTIONS(3038), - [anon_sym_PIPE] = ACTIONS(3038), - [anon_sym_fn] = ACTIONS(3038), - [anon_sym_PLUS] = ACTIONS(3038), - [anon_sym_DASH] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(3038), - [anon_sym_struct] = ACTIONS(3038), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_pub] = ACTIONS(3038), - [anon_sym_mut] = ACTIONS(3038), - [anon_sym_enum] = ACTIONS(3038), - [anon_sym_interface] = ACTIONS(3038), - [anon_sym_QMARK] = ACTIONS(3038), - [anon_sym_BANG] = ACTIONS(3038), - [anon_sym_go] = ACTIONS(3038), - [anon_sym_spawn] = ACTIONS(3038), - [anon_sym_json_DOTdecode] = ACTIONS(3038), - [anon_sym_LBRACK2] = ACTIONS(3038), - [anon_sym_TILDE] = ACTIONS(3038), - [anon_sym_CARET] = ACTIONS(3038), - [anon_sym_AMP] = ACTIONS(3038), - [anon_sym_LT_DASH] = ACTIONS(3038), - [sym_none] = ACTIONS(3038), - [sym_true] = ACTIONS(3038), - [sym_false] = ACTIONS(3038), - [sym_nil] = ACTIONS(3038), - [anon_sym_if] = ACTIONS(3038), - [anon_sym_DOLLARif] = ACTIONS(3038), - [anon_sym_match] = ACTIONS(3038), - [anon_sym_select] = ACTIONS(3038), - [anon_sym_lock] = ACTIONS(3038), - [anon_sym_rlock] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(3038), - [anon_sym_sql] = ACTIONS(3038), - [sym_int_literal] = ACTIONS(3038), - [sym_float_literal] = ACTIONS(3038), - [sym_rune_literal] = ACTIONS(3038), - [anon_sym_AT] = ACTIONS(3038), - [anon_sym_shared] = ACTIONS(3038), - [anon_sym_map_LBRACK] = ACTIONS(3038), - [anon_sym_chan] = ACTIONS(3038), - [anon_sym_thread] = ACTIONS(3038), - [anon_sym_atomic] = ACTIONS(3038), - [anon_sym_assert] = ACTIONS(3038), - [anon_sym_defer] = ACTIONS(3038), - [anon_sym_goto] = ACTIONS(3038), - [anon_sym_break] = ACTIONS(3038), - [anon_sym_continue] = ACTIONS(3038), - [anon_sym_return] = ACTIONS(3038), - [anon_sym_DOLLARfor] = ACTIONS(3038), - [anon_sym_for] = ACTIONS(3038), - [anon_sym_POUND] = ACTIONS(3038), - [anon_sym_asm] = ACTIONS(3038), - [anon_sym_AT_LBRACK] = ACTIONS(3038), - [sym___double_quote] = ACTIONS(3038), - [sym___single_quote] = ACTIONS(3038), - [sym___c_double_quote] = ACTIONS(3038), - [sym___c_single_quote] = ACTIONS(3038), - [sym___r_double_quote] = ACTIONS(3038), - [sym___r_single_quote] = ACTIONS(3038), + [1448] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1485] = { - [ts_builtin_sym_end] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LF] = ACTIONS(3002), - [anon_sym_CR] = ACTIONS(3002), - [anon_sym_CR_LF] = ACTIONS(3002), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3002), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_const] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym___global] = ACTIONS(3002), - [anon_sym_type] = ACTIONS(3002), - [anon_sym_PIPE] = ACTIONS(3002), - [anon_sym_fn] = ACTIONS(3002), - [anon_sym_PLUS] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3002), - [anon_sym_STAR] = ACTIONS(3002), - [anon_sym_struct] = ACTIONS(3002), - [anon_sym_union] = ACTIONS(3002), - [anon_sym_pub] = ACTIONS(3002), - [anon_sym_mut] = ACTIONS(3002), - [anon_sym_enum] = ACTIONS(3002), - [anon_sym_interface] = ACTIONS(3002), - [anon_sym_QMARK] = ACTIONS(3002), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_go] = ACTIONS(3002), - [anon_sym_spawn] = ACTIONS(3002), - [anon_sym_json_DOTdecode] = ACTIONS(3002), - [anon_sym_LBRACK2] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_CARET] = ACTIONS(3002), - [anon_sym_AMP] = ACTIONS(3002), - [anon_sym_LT_DASH] = ACTIONS(3002), - [sym_none] = ACTIONS(3002), - [sym_true] = ACTIONS(3002), - [sym_false] = ACTIONS(3002), - [sym_nil] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_DOLLARif] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_select] = ACTIONS(3002), - [anon_sym_lock] = ACTIONS(3002), - [anon_sym_rlock] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_sql] = ACTIONS(3002), - [sym_int_literal] = ACTIONS(3002), - [sym_float_literal] = ACTIONS(3002), - [sym_rune_literal] = ACTIONS(3002), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_shared] = ACTIONS(3002), - [anon_sym_map_LBRACK] = ACTIONS(3002), - [anon_sym_chan] = ACTIONS(3002), - [anon_sym_thread] = ACTIONS(3002), - [anon_sym_atomic] = ACTIONS(3002), - [anon_sym_assert] = ACTIONS(3002), - [anon_sym_defer] = ACTIONS(3002), - [anon_sym_goto] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_DOLLARfor] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3002), - [anon_sym_asm] = ACTIONS(3002), - [anon_sym_AT_LBRACK] = ACTIONS(3002), - [sym___double_quote] = ACTIONS(3002), - [sym___single_quote] = ACTIONS(3002), - [sym___c_double_quote] = ACTIONS(3002), - [sym___c_single_quote] = ACTIONS(3002), - [sym___r_double_quote] = ACTIONS(3002), - [sym___r_single_quote] = ACTIONS(3002), + [1449] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(2367), + [sym_plain_type] = STATE(2405), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(2367), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3882), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3886), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_LBRACK2] = ACTIONS(3890), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3892), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_COLON_EQ] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3894), + [anon_sym_map_LBRACK] = ACTIONS(3896), + [anon_sym_chan] = ACTIONS(3898), + [anon_sym_thread] = ACTIONS(3900), + [anon_sym_atomic] = ACTIONS(3902), + [anon_sym_DOT_DOT] = ACTIONS(621), }, - [1486] = { - [sym_block] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3903), - [sym_identifier] = ACTIONS(3905), - [anon_sym_LF] = ACTIONS(3905), - [anon_sym_CR] = ACTIONS(3905), - [anon_sym_CR_LF] = ACTIONS(3905), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3905), - [anon_sym_LPAREN] = ACTIONS(3905), - [anon_sym___global] = ACTIONS(3905), - [anon_sym_type] = ACTIONS(3905), - [anon_sym_fn] = ACTIONS(3905), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3905), - [anon_sym_struct] = ACTIONS(3905), - [anon_sym_union] = ACTIONS(3905), - [anon_sym_pub] = ACTIONS(3905), - [anon_sym_mut] = ACTIONS(3905), - [anon_sym_enum] = ACTIONS(3905), - [anon_sym_interface] = ACTIONS(3905), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_go] = ACTIONS(3905), - [anon_sym_spawn] = ACTIONS(3905), - [anon_sym_json_DOTdecode] = ACTIONS(3905), - [anon_sym_LBRACK2] = ACTIONS(3905), - [anon_sym_TILDE] = ACTIONS(3905), - [anon_sym_CARET] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_DASH] = ACTIONS(3905), - [sym_none] = ACTIONS(3905), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_nil] = ACTIONS(3905), - [anon_sym_if] = ACTIONS(3905), - [anon_sym_DOLLARif] = ACTIONS(3905), - [anon_sym_match] = ACTIONS(3905), - [anon_sym_select] = ACTIONS(3905), - [anon_sym_lock] = ACTIONS(3905), - [anon_sym_rlock] = ACTIONS(3905), - [anon_sym_unsafe] = ACTIONS(3905), - [anon_sym_sql] = ACTIONS(3905), - [sym_int_literal] = ACTIONS(3905), - [sym_float_literal] = ACTIONS(3905), - [sym_rune_literal] = ACTIONS(3905), - [anon_sym_AT] = ACTIONS(3905), - [anon_sym_shared] = ACTIONS(3905), - [anon_sym_map_LBRACK] = ACTIONS(3905), - [anon_sym_chan] = ACTIONS(3905), - [anon_sym_thread] = ACTIONS(3905), - [anon_sym_atomic] = ACTIONS(3905), - [anon_sym_assert] = ACTIONS(3905), - [anon_sym_defer] = ACTIONS(3905), - [anon_sym_goto] = ACTIONS(3905), - [anon_sym_break] = ACTIONS(3905), - [anon_sym_continue] = ACTIONS(3905), - [anon_sym_return] = ACTIONS(3905), - [anon_sym_DOLLARfor] = ACTIONS(3905), - [anon_sym_for] = ACTIONS(3905), - [anon_sym_POUND] = ACTIONS(3905), - [anon_sym_asm] = ACTIONS(3905), - [anon_sym_AT_LBRACK] = ACTIONS(3905), - [sym___double_quote] = ACTIONS(3905), - [sym___single_quote] = ACTIONS(3905), - [sym___c_double_quote] = ACTIONS(3905), - [sym___c_single_quote] = ACTIONS(3905), - [sym___r_double_quote] = ACTIONS(3905), - [sym___r_single_quote] = ACTIONS(3905), + [1450] = { + [aux_sym_strictly_expression_list_repeat1] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_CR] = ACTIONS(1930), + [anon_sym_CR_LF] = ACTIONS(1930), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_COMMA] = ACTIONS(3906), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym___global] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_mut] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_interface] = ACTIONS(1930), + [anon_sym_QMARK] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_go] = ACTIONS(1930), + [anon_sym_spawn] = ACTIONS(1930), + [anon_sym_json_DOTdecode] = ACTIONS(1930), + [anon_sym_LBRACK2] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_LT_DASH] = ACTIONS(1930), + [sym_none] = ACTIONS(1930), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_nil] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_DOLLARif] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_select] = ACTIONS(1930), + [anon_sym_lock] = ACTIONS(1930), + [anon_sym_rlock] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_sql] = ACTIONS(1930), + [sym_int_literal] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), + [sym_rune_literal] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [anon_sym_shared] = ACTIONS(1930), + [anon_sym_map_LBRACK] = ACTIONS(1930), + [anon_sym_chan] = ACTIONS(1930), + [anon_sym_thread] = ACTIONS(1930), + [anon_sym_atomic] = ACTIONS(1930), + [anon_sym_assert] = ACTIONS(1930), + [anon_sym_defer] = ACTIONS(1930), + [anon_sym_goto] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_DOLLARfor] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_asm] = ACTIONS(1930), + [anon_sym_AT_LBRACK] = ACTIONS(1930), + [sym___double_quote] = ACTIONS(1930), + [sym___single_quote] = ACTIONS(1930), + [sym___c_double_quote] = ACTIONS(1930), + [sym___c_single_quote] = ACTIONS(1930), + [sym___r_double_quote] = ACTIONS(1930), + [sym___r_single_quote] = ACTIONS(1930), }, - [1487] = { - [sym_block] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(3907), - [sym_identifier] = ACTIONS(3909), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_CR] = ACTIONS(3909), - [anon_sym_CR_LF] = ACTIONS(3909), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3909), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3909), - [anon_sym_LPAREN] = ACTIONS(3909), - [anon_sym___global] = ACTIONS(3909), - [anon_sym_type] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(3909), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3909), - [anon_sym_struct] = ACTIONS(3909), - [anon_sym_union] = ACTIONS(3909), - [anon_sym_pub] = ACTIONS(3909), - [anon_sym_mut] = ACTIONS(3909), - [anon_sym_enum] = ACTIONS(3909), - [anon_sym_interface] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3909), + [1451] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(563), + [anon_sym_CR] = ACTIONS(563), + [anon_sym_CR_LF] = ACTIONS(563), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(511), [anon_sym_BANG] = ACTIONS(3909), - [anon_sym_go] = ACTIONS(3909), - [anon_sym_spawn] = ACTIONS(3909), - [anon_sym_json_DOTdecode] = ACTIONS(3909), - [anon_sym_LBRACK2] = ACTIONS(3909), - [anon_sym_TILDE] = ACTIONS(3909), - [anon_sym_CARET] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3909), - [anon_sym_LT_DASH] = ACTIONS(3909), - [sym_none] = ACTIONS(3909), - [sym_true] = ACTIONS(3909), - [sym_false] = ACTIONS(3909), - [sym_nil] = ACTIONS(3909), - [anon_sym_if] = ACTIONS(3909), - [anon_sym_DOLLARif] = ACTIONS(3909), - [anon_sym_match] = ACTIONS(3909), - [anon_sym_select] = ACTIONS(3909), - [anon_sym_lock] = ACTIONS(3909), - [anon_sym_rlock] = ACTIONS(3909), - [anon_sym_unsafe] = ACTIONS(3909), - [anon_sym_sql] = ACTIONS(3909), - [sym_int_literal] = ACTIONS(3909), - [sym_float_literal] = ACTIONS(3909), - [sym_rune_literal] = ACTIONS(3909), - [anon_sym_AT] = ACTIONS(3909), - [anon_sym_shared] = ACTIONS(3909), - [anon_sym_map_LBRACK] = ACTIONS(3909), - [anon_sym_chan] = ACTIONS(3909), - [anon_sym_thread] = ACTIONS(3909), - [anon_sym_atomic] = ACTIONS(3909), - [anon_sym_assert] = ACTIONS(3909), - [anon_sym_defer] = ACTIONS(3909), - [anon_sym_goto] = ACTIONS(3909), - [anon_sym_break] = ACTIONS(3909), - [anon_sym_continue] = ACTIONS(3909), - [anon_sym_return] = ACTIONS(3909), - [anon_sym_DOLLARfor] = ACTIONS(3909), - [anon_sym_for] = ACTIONS(3909), - [anon_sym_POUND] = ACTIONS(3909), - [anon_sym_asm] = ACTIONS(3909), - [anon_sym_AT_LBRACK] = ACTIONS(3909), - [sym___double_quote] = ACTIONS(3909), - [sym___single_quote] = ACTIONS(3909), - [sym___c_double_quote] = ACTIONS(3909), - [sym___c_single_quote] = ACTIONS(3909), - [sym___r_double_quote] = ACTIONS(3909), - [sym___r_single_quote] = ACTIONS(3909), - }, - [1488] = { - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_LF] = ACTIONS(2806), - [anon_sym_CR] = ACTIONS(2806), - [anon_sym_CR_LF] = ACTIONS(2806), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym___global] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_fn] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_pub] = ACTIONS(2806), - [anon_sym_mut] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_go] = ACTIONS(2806), - [anon_sym_spawn] = ACTIONS(2806), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_LT_DASH] = ACTIONS(2806), - [sym_none] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_nil] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_DOLLARif] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2806), - [anon_sym_select] = ACTIONS(2806), - [anon_sym_lock] = ACTIONS(2806), - [anon_sym_rlock] = ACTIONS(2806), - [anon_sym_unsafe] = ACTIONS(2806), - [anon_sym_sql] = ACTIONS(2806), - [sym_int_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2806), - [anon_sym_shared] = ACTIONS(2806), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2806), - [anon_sym_thread] = ACTIONS(2806), - [anon_sym_atomic] = ACTIONS(2806), - [anon_sym_assert] = ACTIONS(2806), - [anon_sym_defer] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_DOLLARfor] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_asm] = ACTIONS(2806), - [anon_sym_AT_LBRACK] = ACTIONS(2806), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1489] = { - [sym_block] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(3911), - [sym_identifier] = ACTIONS(3913), - [anon_sym_LF] = ACTIONS(3913), - [anon_sym_CR] = ACTIONS(3913), - [anon_sym_CR_LF] = ACTIONS(3913), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3913), + [1452] = { + [sym_reference_expression] = STATE(4501), + [sym_type_reference_expression] = STATE(2393), + [sym_plain_type] = STATE(2568), + [sym__plain_type_without_special] = STATE(2620), + [sym_anon_struct_type] = STATE(2621), + [sym_multi_return_type] = STATE(2620), + [sym_result_type] = STATE(2620), + [sym_option_type] = STATE(2620), + [sym_qualified_type] = STATE(2393), + [sym_fixed_array_type] = STATE(2621), + [sym_array_type] = STATE(2621), + [sym_pointer_type] = STATE(2621), + [sym_wrong_pointer_type] = STATE(2621), + [sym_map_type] = STATE(2621), + [sym_channel_type] = STATE(2621), + [sym_shared_type] = STATE(2621), + [sym_thread_type] = STATE(2621), + [sym_atomic_type] = STATE(2621), + [sym_generic_type] = STATE(2621), + [sym_function_type] = STATE(2621), + [sym_identifier] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), [anon_sym_LPAREN] = ACTIONS(3913), - [anon_sym___global] = ACTIONS(3913), - [anon_sym_type] = ACTIONS(3913), - [anon_sym_fn] = ACTIONS(3913), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_struct] = ACTIONS(3913), - [anon_sym_union] = ACTIONS(3913), - [anon_sym_pub] = ACTIONS(3913), - [anon_sym_mut] = ACTIONS(3913), - [anon_sym_enum] = ACTIONS(3913), - [anon_sym_interface] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_go] = ACTIONS(3913), - [anon_sym_spawn] = ACTIONS(3913), - [anon_sym_json_DOTdecode] = ACTIONS(3913), - [anon_sym_LBRACK2] = ACTIONS(3913), - [anon_sym_TILDE] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(3913), - [sym_none] = ACTIONS(3913), - [sym_true] = ACTIONS(3913), - [sym_false] = ACTIONS(3913), - [sym_nil] = ACTIONS(3913), - [anon_sym_if] = ACTIONS(3913), - [anon_sym_DOLLARif] = ACTIONS(3913), - [anon_sym_match] = ACTIONS(3913), - [anon_sym_select] = ACTIONS(3913), - [anon_sym_lock] = ACTIONS(3913), - [anon_sym_rlock] = ACTIONS(3913), - [anon_sym_unsafe] = ACTIONS(3913), - [anon_sym_sql] = ACTIONS(3913), - [sym_int_literal] = ACTIONS(3913), - [sym_float_literal] = ACTIONS(3913), - [sym_rune_literal] = ACTIONS(3913), - [anon_sym_AT] = ACTIONS(3913), - [anon_sym_shared] = ACTIONS(3913), - [anon_sym_map_LBRACK] = ACTIONS(3913), - [anon_sym_chan] = ACTIONS(3913), - [anon_sym_thread] = ACTIONS(3913), - [anon_sym_atomic] = ACTIONS(3913), - [anon_sym_assert] = ACTIONS(3913), - [anon_sym_defer] = ACTIONS(3913), - [anon_sym_goto] = ACTIONS(3913), - [anon_sym_break] = ACTIONS(3913), - [anon_sym_continue] = ACTIONS(3913), - [anon_sym_return] = ACTIONS(3913), - [anon_sym_DOLLARfor] = ACTIONS(3913), - [anon_sym_for] = ACTIONS(3913), - [anon_sym_POUND] = ACTIONS(3913), - [anon_sym_asm] = ACTIONS(3913), - [anon_sym_AT_LBRACK] = ACTIONS(3913), - [sym___double_quote] = ACTIONS(3913), - [sym___single_quote] = ACTIONS(3913), - [sym___c_double_quote] = ACTIONS(3913), - [sym___c_single_quote] = ACTIONS(3913), - [sym___r_double_quote] = ACTIONS(3913), - [sym___r_single_quote] = ACTIONS(3913), - }, - [1490] = { - [ts_builtin_sym_end] = ACTIONS(3915), - [sym_identifier] = ACTIONS(3917), - [anon_sym_LF] = ACTIONS(3917), - [anon_sym_CR] = ACTIONS(3917), - [anon_sym_CR_LF] = ACTIONS(3917), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3917), - [anon_sym_LBRACE] = ACTIONS(3917), - [anon_sym_const] = ACTIONS(3917), - [anon_sym_LPAREN] = ACTIONS(3917), - [anon_sym___global] = ACTIONS(3917), - [anon_sym_type] = ACTIONS(3917), - [anon_sym_fn] = ACTIONS(3917), - [anon_sym_PLUS] = ACTIONS(3917), - [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), [anon_sym_STAR] = ACTIONS(3917), - [anon_sym_struct] = ACTIONS(3917), - [anon_sym_union] = ACTIONS(3917), - [anon_sym_pub] = ACTIONS(3917), - [anon_sym_mut] = ACTIONS(3917), - [anon_sym_enum] = ACTIONS(3917), - [anon_sym_interface] = ACTIONS(3917), - [anon_sym_QMARK] = ACTIONS(3917), - [anon_sym_BANG] = ACTIONS(3917), - [anon_sym_go] = ACTIONS(3917), - [anon_sym_spawn] = ACTIONS(3917), - [anon_sym_json_DOTdecode] = ACTIONS(3917), - [anon_sym_LBRACK2] = ACTIONS(3917), - [anon_sym_TILDE] = ACTIONS(3917), - [anon_sym_CARET] = ACTIONS(3917), - [anon_sym_AMP] = ACTIONS(3917), - [anon_sym_LT_DASH] = ACTIONS(3917), - [sym_none] = ACTIONS(3917), - [sym_true] = ACTIONS(3917), - [sym_false] = ACTIONS(3917), - [sym_nil] = ACTIONS(3917), - [anon_sym_if] = ACTIONS(3917), - [anon_sym_DOLLARif] = ACTIONS(3917), - [anon_sym_match] = ACTIONS(3917), - [anon_sym_select] = ACTIONS(3917), - [anon_sym_lock] = ACTIONS(3917), - [anon_sym_rlock] = ACTIONS(3917), - [anon_sym_unsafe] = ACTIONS(3917), - [anon_sym_sql] = ACTIONS(3917), - [sym_int_literal] = ACTIONS(3917), - [sym_float_literal] = ACTIONS(3917), - [sym_rune_literal] = ACTIONS(3917), - [anon_sym_AT] = ACTIONS(3917), - [anon_sym_shared] = ACTIONS(3917), - [anon_sym_map_LBRACK] = ACTIONS(3917), - [anon_sym_chan] = ACTIONS(3917), - [anon_sym_thread] = ACTIONS(3917), - [anon_sym_atomic] = ACTIONS(3917), - [anon_sym_assert] = ACTIONS(3917), - [anon_sym_defer] = ACTIONS(3917), - [anon_sym_goto] = ACTIONS(3917), - [anon_sym_break] = ACTIONS(3917), - [anon_sym_continue] = ACTIONS(3917), - [anon_sym_return] = ACTIONS(3917), - [anon_sym_DOLLARfor] = ACTIONS(3917), - [anon_sym_for] = ACTIONS(3917), - [anon_sym_POUND] = ACTIONS(3917), - [anon_sym_asm] = ACTIONS(3917), - [anon_sym_AT_LBRACK] = ACTIONS(3917), - [sym___double_quote] = ACTIONS(3917), - [sym___single_quote] = ACTIONS(3917), - [sym___c_double_quote] = ACTIONS(3917), - [sym___c_single_quote] = ACTIONS(3917), - [sym___r_double_quote] = ACTIONS(3917), - [sym___r_single_quote] = ACTIONS(3917), - }, - [1491] = { - [ts_builtin_sym_end] = ACTIONS(3919), - [sym_identifier] = ACTIONS(3921), - [anon_sym_LF] = ACTIONS(3921), - [anon_sym_CR] = ACTIONS(3921), - [anon_sym_CR_LF] = ACTIONS(3921), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_LPAREN] = ACTIONS(3921), - [anon_sym___global] = ACTIONS(3921), - [anon_sym_type] = ACTIONS(3921), - [anon_sym_fn] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3921), - [anon_sym_struct] = ACTIONS(3921), - [anon_sym_union] = ACTIONS(3921), - [anon_sym_pub] = ACTIONS(3921), - [anon_sym_mut] = ACTIONS(3921), - [anon_sym_enum] = ACTIONS(3921), - [anon_sym_interface] = ACTIONS(3921), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), [anon_sym_QMARK] = ACTIONS(3921), - [anon_sym_BANG] = ACTIONS(3921), - [anon_sym_go] = ACTIONS(3921), - [anon_sym_spawn] = ACTIONS(3921), - [anon_sym_json_DOTdecode] = ACTIONS(3921), - [anon_sym_LBRACK2] = ACTIONS(3921), - [anon_sym_TILDE] = ACTIONS(3921), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3921), - [anon_sym_LT_DASH] = ACTIONS(3921), - [sym_none] = ACTIONS(3921), - [sym_true] = ACTIONS(3921), - [sym_false] = ACTIONS(3921), - [sym_nil] = ACTIONS(3921), - [anon_sym_if] = ACTIONS(3921), - [anon_sym_DOLLARif] = ACTIONS(3921), - [anon_sym_match] = ACTIONS(3921), - [anon_sym_select] = ACTIONS(3921), - [anon_sym_lock] = ACTIONS(3921), - [anon_sym_rlock] = ACTIONS(3921), - [anon_sym_unsafe] = ACTIONS(3921), - [anon_sym_sql] = ACTIONS(3921), - [sym_int_literal] = ACTIONS(3921), - [sym_float_literal] = ACTIONS(3921), - [sym_rune_literal] = ACTIONS(3921), - [anon_sym_AT] = ACTIONS(3921), - [anon_sym_shared] = ACTIONS(3921), - [anon_sym_map_LBRACK] = ACTIONS(3921), - [anon_sym_chan] = ACTIONS(3921), - [anon_sym_thread] = ACTIONS(3921), - [anon_sym_atomic] = ACTIONS(3921), - [anon_sym_assert] = ACTIONS(3921), - [anon_sym_defer] = ACTIONS(3921), - [anon_sym_goto] = ACTIONS(3921), - [anon_sym_break] = ACTIONS(3921), - [anon_sym_continue] = ACTIONS(3921), - [anon_sym_return] = ACTIONS(3921), - [anon_sym_DOLLARfor] = ACTIONS(3921), - [anon_sym_for] = ACTIONS(3921), - [anon_sym_POUND] = ACTIONS(3921), - [anon_sym_asm] = ACTIONS(3921), - [anon_sym_AT_LBRACK] = ACTIONS(3921), - [sym___double_quote] = ACTIONS(3921), - [sym___single_quote] = ACTIONS(3921), - [sym___c_double_quote] = ACTIONS(3921), - [sym___c_single_quote] = ACTIONS(3921), - [sym___r_double_quote] = ACTIONS(3921), - [sym___r_single_quote] = ACTIONS(3921), - }, - [1492] = { - [ts_builtin_sym_end] = ACTIONS(3923), - [sym_identifier] = ACTIONS(3925), - [anon_sym_LF] = ACTIONS(3925), - [anon_sym_CR] = ACTIONS(3925), - [anon_sym_CR_LF] = ACTIONS(3925), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3925), - [anon_sym_const] = ACTIONS(3925), - [anon_sym_LPAREN] = ACTIONS(3925), - [anon_sym___global] = ACTIONS(3925), - [anon_sym_type] = ACTIONS(3925), - [anon_sym_fn] = ACTIONS(3925), - [anon_sym_PLUS] = ACTIONS(3925), - [anon_sym_DASH] = ACTIONS(3925), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_struct] = ACTIONS(3925), - [anon_sym_union] = ACTIONS(3925), - [anon_sym_pub] = ACTIONS(3925), - [anon_sym_mut] = ACTIONS(3925), - [anon_sym_enum] = ACTIONS(3925), - [anon_sym_interface] = ACTIONS(3925), - [anon_sym_QMARK] = ACTIONS(3925), - [anon_sym_BANG] = ACTIONS(3925), - [anon_sym_go] = ACTIONS(3925), - [anon_sym_spawn] = ACTIONS(3925), - [anon_sym_json_DOTdecode] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3923), [anon_sym_LBRACK2] = ACTIONS(3925), - [anon_sym_TILDE] = ACTIONS(3925), - [anon_sym_CARET] = ACTIONS(3925), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_LT_DASH] = ACTIONS(3925), - [sym_none] = ACTIONS(3925), - [sym_true] = ACTIONS(3925), - [sym_false] = ACTIONS(3925), - [sym_nil] = ACTIONS(3925), - [anon_sym_if] = ACTIONS(3925), - [anon_sym_DOLLARif] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(3925), - [anon_sym_select] = ACTIONS(3925), - [anon_sym_lock] = ACTIONS(3925), - [anon_sym_rlock] = ACTIONS(3925), - [anon_sym_unsafe] = ACTIONS(3925), - [anon_sym_sql] = ACTIONS(3925), - [sym_int_literal] = ACTIONS(3925), - [sym_float_literal] = ACTIONS(3925), - [sym_rune_literal] = ACTIONS(3925), - [anon_sym_AT] = ACTIONS(3925), - [anon_sym_shared] = ACTIONS(3925), - [anon_sym_map_LBRACK] = ACTIONS(3925), - [anon_sym_chan] = ACTIONS(3925), - [anon_sym_thread] = ACTIONS(3925), - [anon_sym_atomic] = ACTIONS(3925), - [anon_sym_assert] = ACTIONS(3925), - [anon_sym_defer] = ACTIONS(3925), - [anon_sym_goto] = ACTIONS(3925), - [anon_sym_break] = ACTIONS(3925), - [anon_sym_continue] = ACTIONS(3925), - [anon_sym_return] = ACTIONS(3925), - [anon_sym_DOLLARfor] = ACTIONS(3925), - [anon_sym_for] = ACTIONS(3925), - [anon_sym_POUND] = ACTIONS(3925), - [anon_sym_asm] = ACTIONS(3925), - [anon_sym_AT_LBRACK] = ACTIONS(3925), - [sym___double_quote] = ACTIONS(3925), - [sym___single_quote] = ACTIONS(3925), - [sym___c_double_quote] = ACTIONS(3925), - [sym___c_single_quote] = ACTIONS(3925), - [sym___r_double_quote] = ACTIONS(3925), - [sym___r_single_quote] = ACTIONS(3925), - }, - [1493] = { - [ts_builtin_sym_end] = ACTIONS(3927), - [sym_identifier] = ACTIONS(3929), - [anon_sym_LF] = ACTIONS(3929), - [anon_sym_CR] = ACTIONS(3929), - [anon_sym_CR_LF] = ACTIONS(3929), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3929), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3929), - [anon_sym_LPAREN] = ACTIONS(3929), - [anon_sym___global] = ACTIONS(3929), - [anon_sym_type] = ACTIONS(3929), - [anon_sym_fn] = ACTIONS(3929), - [anon_sym_PLUS] = ACTIONS(3929), - [anon_sym_DASH] = ACTIONS(3929), - [anon_sym_STAR] = ACTIONS(3929), - [anon_sym_struct] = ACTIONS(3929), - [anon_sym_union] = ACTIONS(3929), - [anon_sym_pub] = ACTIONS(3929), - [anon_sym_mut] = ACTIONS(3929), - [anon_sym_enum] = ACTIONS(3929), - [anon_sym_interface] = ACTIONS(3929), - [anon_sym_QMARK] = ACTIONS(3929), - [anon_sym_BANG] = ACTIONS(3929), - [anon_sym_go] = ACTIONS(3929), - [anon_sym_spawn] = ACTIONS(3929), - [anon_sym_json_DOTdecode] = ACTIONS(3929), - [anon_sym_LBRACK2] = ACTIONS(3929), - [anon_sym_TILDE] = ACTIONS(3929), - [anon_sym_CARET] = ACTIONS(3929), - [anon_sym_AMP] = ACTIONS(3929), - [anon_sym_LT_DASH] = ACTIONS(3929), - [sym_none] = ACTIONS(3929), - [sym_true] = ACTIONS(3929), - [sym_false] = ACTIONS(3929), - [sym_nil] = ACTIONS(3929), - [anon_sym_if] = ACTIONS(3929), - [anon_sym_DOLLARif] = ACTIONS(3929), - [anon_sym_match] = ACTIONS(3929), - [anon_sym_select] = ACTIONS(3929), - [anon_sym_lock] = ACTIONS(3929), - [anon_sym_rlock] = ACTIONS(3929), - [anon_sym_unsafe] = ACTIONS(3929), - [anon_sym_sql] = ACTIONS(3929), - [sym_int_literal] = ACTIONS(3929), - [sym_float_literal] = ACTIONS(3929), - [sym_rune_literal] = ACTIONS(3929), - [anon_sym_AT] = ACTIONS(3929), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(3927), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), [anon_sym_shared] = ACTIONS(3929), - [anon_sym_map_LBRACK] = ACTIONS(3929), - [anon_sym_chan] = ACTIONS(3929), - [anon_sym_thread] = ACTIONS(3929), - [anon_sym_atomic] = ACTIONS(3929), - [anon_sym_assert] = ACTIONS(3929), - [anon_sym_defer] = ACTIONS(3929), - [anon_sym_goto] = ACTIONS(3929), - [anon_sym_break] = ACTIONS(3929), - [anon_sym_continue] = ACTIONS(3929), - [anon_sym_return] = ACTIONS(3929), - [anon_sym_DOLLARfor] = ACTIONS(3929), - [anon_sym_for] = ACTIONS(3929), - [anon_sym_POUND] = ACTIONS(3929), - [anon_sym_asm] = ACTIONS(3929), - [anon_sym_AT_LBRACK] = ACTIONS(3929), - [sym___double_quote] = ACTIONS(3929), - [sym___single_quote] = ACTIONS(3929), - [sym___c_double_quote] = ACTIONS(3929), - [sym___c_single_quote] = ACTIONS(3929), - [sym___r_double_quote] = ACTIONS(3929), - [sym___r_single_quote] = ACTIONS(3929), - }, - [1494] = { - [ts_builtin_sym_end] = ACTIONS(3931), - [sym_identifier] = ACTIONS(3933), - [anon_sym_LF] = ACTIONS(3933), - [anon_sym_CR] = ACTIONS(3933), - [anon_sym_CR_LF] = ACTIONS(3933), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3933), - [anon_sym_LBRACE] = ACTIONS(3933), - [anon_sym_const] = ACTIONS(3933), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym___global] = ACTIONS(3933), - [anon_sym_type] = ACTIONS(3933), - [anon_sym_fn] = ACTIONS(3933), - [anon_sym_PLUS] = ACTIONS(3933), - [anon_sym_DASH] = ACTIONS(3933), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_struct] = ACTIONS(3933), - [anon_sym_union] = ACTIONS(3933), - [anon_sym_pub] = ACTIONS(3933), - [anon_sym_mut] = ACTIONS(3933), - [anon_sym_enum] = ACTIONS(3933), - [anon_sym_interface] = ACTIONS(3933), - [anon_sym_QMARK] = ACTIONS(3933), - [anon_sym_BANG] = ACTIONS(3933), - [anon_sym_go] = ACTIONS(3933), - [anon_sym_spawn] = ACTIONS(3933), - [anon_sym_json_DOTdecode] = ACTIONS(3933), - [anon_sym_LBRACK2] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_CARET] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3933), - [anon_sym_LT_DASH] = ACTIONS(3933), - [sym_none] = ACTIONS(3933), - [sym_true] = ACTIONS(3933), - [sym_false] = ACTIONS(3933), - [sym_nil] = ACTIONS(3933), - [anon_sym_if] = ACTIONS(3933), - [anon_sym_DOLLARif] = ACTIONS(3933), - [anon_sym_match] = ACTIONS(3933), - [anon_sym_select] = ACTIONS(3933), - [anon_sym_lock] = ACTIONS(3933), - [anon_sym_rlock] = ACTIONS(3933), - [anon_sym_unsafe] = ACTIONS(3933), - [anon_sym_sql] = ACTIONS(3933), - [sym_int_literal] = ACTIONS(3933), - [sym_float_literal] = ACTIONS(3933), - [sym_rune_literal] = ACTIONS(3933), - [anon_sym_AT] = ACTIONS(3933), - [anon_sym_shared] = ACTIONS(3933), - [anon_sym_map_LBRACK] = ACTIONS(3933), + [anon_sym_map_LBRACK] = ACTIONS(3931), [anon_sym_chan] = ACTIONS(3933), - [anon_sym_thread] = ACTIONS(3933), - [anon_sym_atomic] = ACTIONS(3933), - [anon_sym_assert] = ACTIONS(3933), - [anon_sym_defer] = ACTIONS(3933), - [anon_sym_goto] = ACTIONS(3933), - [anon_sym_break] = ACTIONS(3933), - [anon_sym_continue] = ACTIONS(3933), - [anon_sym_return] = ACTIONS(3933), - [anon_sym_DOLLARfor] = ACTIONS(3933), - [anon_sym_for] = ACTIONS(3933), - [anon_sym_POUND] = ACTIONS(3933), - [anon_sym_asm] = ACTIONS(3933), - [anon_sym_AT_LBRACK] = ACTIONS(3933), - [sym___double_quote] = ACTIONS(3933), - [sym___single_quote] = ACTIONS(3933), - [sym___c_double_quote] = ACTIONS(3933), - [sym___c_single_quote] = ACTIONS(3933), - [sym___r_double_quote] = ACTIONS(3933), - [sym___r_single_quote] = ACTIONS(3933), - }, - [1495] = { - [ts_builtin_sym_end] = ACTIONS(3935), - [sym_identifier] = ACTIONS(3937), - [anon_sym_LF] = ACTIONS(3937), - [anon_sym_CR] = ACTIONS(3937), - [anon_sym_CR_LF] = ACTIONS(3937), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3937), - [anon_sym_LBRACE] = ACTIONS(3937), - [anon_sym_const] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3937), - [anon_sym___global] = ACTIONS(3937), - [anon_sym_type] = ACTIONS(3937), - [anon_sym_fn] = ACTIONS(3937), - [anon_sym_PLUS] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3937), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_struct] = ACTIONS(3937), - [anon_sym_union] = ACTIONS(3937), - [anon_sym_pub] = ACTIONS(3937), - [anon_sym_mut] = ACTIONS(3937), - [anon_sym_enum] = ACTIONS(3937), - [anon_sym_interface] = ACTIONS(3937), - [anon_sym_QMARK] = ACTIONS(3937), - [anon_sym_BANG] = ACTIONS(3937), - [anon_sym_go] = ACTIONS(3937), - [anon_sym_spawn] = ACTIONS(3937), - [anon_sym_json_DOTdecode] = ACTIONS(3937), - [anon_sym_LBRACK2] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_CARET] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3937), - [anon_sym_LT_DASH] = ACTIONS(3937), - [sym_none] = ACTIONS(3937), - [sym_true] = ACTIONS(3937), - [sym_false] = ACTIONS(3937), - [sym_nil] = ACTIONS(3937), - [anon_sym_if] = ACTIONS(3937), - [anon_sym_DOLLARif] = ACTIONS(3937), - [anon_sym_match] = ACTIONS(3937), - [anon_sym_select] = ACTIONS(3937), - [anon_sym_lock] = ACTIONS(3937), - [anon_sym_rlock] = ACTIONS(3937), - [anon_sym_unsafe] = ACTIONS(3937), - [anon_sym_sql] = ACTIONS(3937), - [sym_int_literal] = ACTIONS(3937), - [sym_float_literal] = ACTIONS(3937), - [sym_rune_literal] = ACTIONS(3937), - [anon_sym_AT] = ACTIONS(3937), - [anon_sym_shared] = ACTIONS(3937), - [anon_sym_map_LBRACK] = ACTIONS(3937), - [anon_sym_chan] = ACTIONS(3937), - [anon_sym_thread] = ACTIONS(3937), + [anon_sym_thread] = ACTIONS(3935), [anon_sym_atomic] = ACTIONS(3937), - [anon_sym_assert] = ACTIONS(3937), - [anon_sym_defer] = ACTIONS(3937), - [anon_sym_goto] = ACTIONS(3937), - [anon_sym_break] = ACTIONS(3937), - [anon_sym_continue] = ACTIONS(3937), - [anon_sym_return] = ACTIONS(3937), - [anon_sym_DOLLARfor] = ACTIONS(3937), - [anon_sym_for] = ACTIONS(3937), - [anon_sym_POUND] = ACTIONS(3937), - [anon_sym_asm] = ACTIONS(3937), - [anon_sym_AT_LBRACK] = ACTIONS(3937), - [sym___double_quote] = ACTIONS(3937), - [sym___single_quote] = ACTIONS(3937), - [sym___c_double_quote] = ACTIONS(3937), - [sym___c_single_quote] = ACTIONS(3937), - [sym___r_double_quote] = ACTIONS(3937), - [sym___r_single_quote] = ACTIONS(3937), }, - [1496] = { + [1453] = { + [aux_sym__type_union_list_repeat1] = STATE(1453), [ts_builtin_sym_end] = ACTIONS(3939), [sym_identifier] = ACTIONS(3941), - [anon_sym_LF] = ACTIONS(3941), - [anon_sym_CR] = ACTIONS(3941), - [anon_sym_CR_LF] = ACTIONS(3941), - [sym_comment] = ACTIONS(493), + [anon_sym_LF] = ACTIONS(3943), + [anon_sym_CR] = ACTIONS(3943), + [anon_sym_CR_LF] = ACTIONS(3943), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(3941), [anon_sym_LBRACE] = ACTIONS(3941), [anon_sym_const] = ACTIONS(3941), [anon_sym_LPAREN] = ACTIONS(3941), [anon_sym___global] = ACTIONS(3941), [anon_sym_type] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3946), [anon_sym_fn] = ACTIONS(3941), [anon_sym_PLUS] = ACTIONS(3941), [anon_sym_DASH] = ACTIONS(3941), @@ -182365,214 +180566,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3941), [sym___r_single_quote] = ACTIONS(3941), }, - [1497] = { - [ts_builtin_sym_end] = ACTIONS(3943), - [sym_identifier] = ACTIONS(3945), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_CR] = ACTIONS(3945), - [anon_sym_CR_LF] = ACTIONS(3945), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3945), - [anon_sym_LBRACE] = ACTIONS(3945), - [anon_sym_const] = ACTIONS(3945), - [anon_sym_LPAREN] = ACTIONS(3945), - [anon_sym___global] = ACTIONS(3945), - [anon_sym_type] = ACTIONS(3945), - [anon_sym_fn] = ACTIONS(3945), - [anon_sym_PLUS] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3945), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_struct] = ACTIONS(3945), - [anon_sym_union] = ACTIONS(3945), - [anon_sym_pub] = ACTIONS(3945), - [anon_sym_mut] = ACTIONS(3945), - [anon_sym_enum] = ACTIONS(3945), - [anon_sym_interface] = ACTIONS(3945), - [anon_sym_QMARK] = ACTIONS(3945), - [anon_sym_BANG] = ACTIONS(3945), - [anon_sym_go] = ACTIONS(3945), - [anon_sym_spawn] = ACTIONS(3945), - [anon_sym_json_DOTdecode] = ACTIONS(3945), - [anon_sym_LBRACK2] = ACTIONS(3945), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_CARET] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3945), - [anon_sym_LT_DASH] = ACTIONS(3945), - [sym_none] = ACTIONS(3945), - [sym_true] = ACTIONS(3945), - [sym_false] = ACTIONS(3945), - [sym_nil] = ACTIONS(3945), - [anon_sym_if] = ACTIONS(3945), - [anon_sym_DOLLARif] = ACTIONS(3945), - [anon_sym_match] = ACTIONS(3945), - [anon_sym_select] = ACTIONS(3945), - [anon_sym_lock] = ACTIONS(3945), - [anon_sym_rlock] = ACTIONS(3945), - [anon_sym_unsafe] = ACTIONS(3945), - [anon_sym_sql] = ACTIONS(3945), - [sym_int_literal] = ACTIONS(3945), - [sym_float_literal] = ACTIONS(3945), - [sym_rune_literal] = ACTIONS(3945), - [anon_sym_AT] = ACTIONS(3945), - [anon_sym_shared] = ACTIONS(3945), - [anon_sym_map_LBRACK] = ACTIONS(3945), - [anon_sym_chan] = ACTIONS(3945), - [anon_sym_thread] = ACTIONS(3945), - [anon_sym_atomic] = ACTIONS(3945), - [anon_sym_assert] = ACTIONS(3945), - [anon_sym_defer] = ACTIONS(3945), - [anon_sym_goto] = ACTIONS(3945), - [anon_sym_break] = ACTIONS(3945), - [anon_sym_continue] = ACTIONS(3945), - [anon_sym_return] = ACTIONS(3945), - [anon_sym_DOLLARfor] = ACTIONS(3945), - [anon_sym_for] = ACTIONS(3945), - [anon_sym_POUND] = ACTIONS(3945), - [anon_sym_asm] = ACTIONS(3945), - [anon_sym_AT_LBRACK] = ACTIONS(3945), - [sym___double_quote] = ACTIONS(3945), - [sym___single_quote] = ACTIONS(3945), - [sym___c_double_quote] = ACTIONS(3945), - [sym___c_single_quote] = ACTIONS(3945), - [sym___r_double_quote] = ACTIONS(3945), - [sym___r_single_quote] = ACTIONS(3945), - }, - [1498] = { - [ts_builtin_sym_end] = ACTIONS(3947), - [sym_identifier] = ACTIONS(3949), - [anon_sym_LF] = ACTIONS(3949), - [anon_sym_CR] = ACTIONS(3949), - [anon_sym_CR_LF] = ACTIONS(3949), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3949), - [anon_sym_LBRACE] = ACTIONS(3949), - [anon_sym_const] = ACTIONS(3949), - [anon_sym_LPAREN] = ACTIONS(3949), - [anon_sym___global] = ACTIONS(3949), - [anon_sym_type] = ACTIONS(3949), - [anon_sym_fn] = ACTIONS(3949), - [anon_sym_PLUS] = ACTIONS(3949), - [anon_sym_DASH] = ACTIONS(3949), - [anon_sym_STAR] = ACTIONS(3949), - [anon_sym_struct] = ACTIONS(3949), - [anon_sym_union] = ACTIONS(3949), - [anon_sym_pub] = ACTIONS(3949), - [anon_sym_mut] = ACTIONS(3949), - [anon_sym_enum] = ACTIONS(3949), - [anon_sym_interface] = ACTIONS(3949), - [anon_sym_QMARK] = ACTIONS(3949), - [anon_sym_BANG] = ACTIONS(3949), - [anon_sym_go] = ACTIONS(3949), - [anon_sym_spawn] = ACTIONS(3949), - [anon_sym_json_DOTdecode] = ACTIONS(3949), - [anon_sym_LBRACK2] = ACTIONS(3949), - [anon_sym_TILDE] = ACTIONS(3949), - [anon_sym_CARET] = ACTIONS(3949), - [anon_sym_AMP] = ACTIONS(3949), - [anon_sym_LT_DASH] = ACTIONS(3949), - [sym_none] = ACTIONS(3949), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_nil] = ACTIONS(3949), - [anon_sym_if] = ACTIONS(3949), - [anon_sym_DOLLARif] = ACTIONS(3949), - [anon_sym_match] = ACTIONS(3949), - [anon_sym_select] = ACTIONS(3949), - [anon_sym_lock] = ACTIONS(3949), - [anon_sym_rlock] = ACTIONS(3949), - [anon_sym_unsafe] = ACTIONS(3949), - [anon_sym_sql] = ACTIONS(3949), - [sym_int_literal] = ACTIONS(3949), - [sym_float_literal] = ACTIONS(3949), - [sym_rune_literal] = ACTIONS(3949), - [anon_sym_AT] = ACTIONS(3949), - [anon_sym_shared] = ACTIONS(3949), - [anon_sym_map_LBRACK] = ACTIONS(3949), - [anon_sym_chan] = ACTIONS(3949), - [anon_sym_thread] = ACTIONS(3949), - [anon_sym_atomic] = ACTIONS(3949), - [anon_sym_assert] = ACTIONS(3949), - [anon_sym_defer] = ACTIONS(3949), - [anon_sym_goto] = ACTIONS(3949), - [anon_sym_break] = ACTIONS(3949), - [anon_sym_continue] = ACTIONS(3949), - [anon_sym_return] = ACTIONS(3949), - [anon_sym_DOLLARfor] = ACTIONS(3949), - [anon_sym_for] = ACTIONS(3949), - [anon_sym_POUND] = ACTIONS(3949), - [anon_sym_asm] = ACTIONS(3949), - [anon_sym_AT_LBRACK] = ACTIONS(3949), - [sym___double_quote] = ACTIONS(3949), - [sym___single_quote] = ACTIONS(3949), - [sym___c_double_quote] = ACTIONS(3949), - [sym___c_single_quote] = ACTIONS(3949), - [sym___r_double_quote] = ACTIONS(3949), - [sym___r_single_quote] = ACTIONS(3949), + [1454] = { + [sym_reference_expression] = STATE(4501), + [sym_type_reference_expression] = STATE(2393), + [sym_plain_type] = STATE(2577), + [sym__plain_type_without_special] = STATE(2620), + [sym_anon_struct_type] = STATE(2621), + [sym_multi_return_type] = STATE(2620), + [sym_result_type] = STATE(2620), + [sym_option_type] = STATE(2620), + [sym_qualified_type] = STATE(2393), + [sym_fixed_array_type] = STATE(2621), + [sym_array_type] = STATE(2621), + [sym_pointer_type] = STATE(2621), + [sym_wrong_pointer_type] = STATE(2621), + [sym_map_type] = STATE(2621), + [sym_channel_type] = STATE(2621), + [sym_shared_type] = STATE(2621), + [sym_thread_type] = STATE(2621), + [sym_atomic_type] = STATE(2621), + [sym_generic_type] = STATE(2621), + [sym_function_type] = STATE(2621), + [sym_identifier] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3913), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_LBRACK2] = ACTIONS(3925), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3927), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3929), + [anon_sym_map_LBRACK] = ACTIONS(3931), + [anon_sym_chan] = ACTIONS(3933), + [anon_sym_thread] = ACTIONS(3935), + [anon_sym_atomic] = ACTIONS(3937), }, - [1499] = { - [sym_import_declaration] = STATE(1499), - [aux_sym_import_list_repeat1] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(3951), - [sym_identifier] = ACTIONS(3953), + [1455] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(3955), - [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(617), + }, + [1456] = { + [aux_sym_strictly_expression_list_repeat1] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(3949), + [sym_identifier] = ACTIONS(3951), + [anon_sym_LF] = ACTIONS(3951), + [anon_sym_CR] = ACTIONS(3951), + [anon_sym_CR_LF] = ACTIONS(3951), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3951), [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_const] = ACTIONS(3953), + [anon_sym_COMMA] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3951), [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym___global] = ACTIONS(3953), - [anon_sym_type] = ACTIONS(3953), - [anon_sym_fn] = ACTIONS(3953), + [anon_sym___global] = ACTIONS(3951), + [anon_sym_type] = ACTIONS(3951), + [anon_sym_fn] = ACTIONS(3951), [anon_sym_PLUS] = ACTIONS(3951), [anon_sym_DASH] = ACTIONS(3951), [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_struct] = ACTIONS(3953), - [anon_sym_union] = ACTIONS(3953), - [anon_sym_pub] = ACTIONS(3953), - [anon_sym_mut] = ACTIONS(3953), - [anon_sym_enum] = ACTIONS(3953), - [anon_sym_interface] = ACTIONS(3953), + [anon_sym_struct] = ACTIONS(3951), + [anon_sym_union] = ACTIONS(3951), + [anon_sym_pub] = ACTIONS(3951), + [anon_sym_mut] = ACTIONS(3951), + [anon_sym_enum] = ACTIONS(3951), + [anon_sym_interface] = ACTIONS(3951), [anon_sym_QMARK] = ACTIONS(3951), [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_go] = ACTIONS(3953), - [anon_sym_spawn] = ACTIONS(3953), + [anon_sym_go] = ACTIONS(3951), + [anon_sym_spawn] = ACTIONS(3951), [anon_sym_json_DOTdecode] = ACTIONS(3951), [anon_sym_LBRACK2] = ACTIONS(3951), [anon_sym_TILDE] = ACTIONS(3951), [anon_sym_CARET] = ACTIONS(3951), [anon_sym_AMP] = ACTIONS(3951), [anon_sym_LT_DASH] = ACTIONS(3951), - [sym_none] = ACTIONS(3953), - [sym_true] = ACTIONS(3953), - [sym_false] = ACTIONS(3953), - [sym_nil] = ACTIONS(3953), - [anon_sym_if] = ACTIONS(3953), - [anon_sym_DOLLARif] = ACTIONS(3953), - [anon_sym_match] = ACTIONS(3953), - [anon_sym_select] = ACTIONS(3953), - [anon_sym_lock] = ACTIONS(3953), - [anon_sym_rlock] = ACTIONS(3953), - [anon_sym_unsafe] = ACTIONS(3953), - [anon_sym_sql] = ACTIONS(3953), - [sym_int_literal] = ACTIONS(3953), + [sym_none] = ACTIONS(3951), + [sym_true] = ACTIONS(3951), + [sym_false] = ACTIONS(3951), + [sym_nil] = ACTIONS(3951), + [anon_sym_if] = ACTIONS(3951), + [anon_sym_DOLLARif] = ACTIONS(3951), + [anon_sym_match] = ACTIONS(3951), + [anon_sym_select] = ACTIONS(3951), + [anon_sym_lock] = ACTIONS(3951), + [anon_sym_rlock] = ACTIONS(3951), + [anon_sym_unsafe] = ACTIONS(3951), + [anon_sym_sql] = ACTIONS(3951), + [sym_int_literal] = ACTIONS(3951), [sym_float_literal] = ACTIONS(3951), [sym_rune_literal] = ACTIONS(3951), - [anon_sym_AT] = ACTIONS(3953), - [anon_sym_shared] = ACTIONS(3953), + [anon_sym_AT] = ACTIONS(3951), + [anon_sym_shared] = ACTIONS(3951), [anon_sym_map_LBRACK] = ACTIONS(3951), - [anon_sym_chan] = ACTIONS(3953), - [anon_sym_thread] = ACTIONS(3953), - [anon_sym_atomic] = ACTIONS(3953), - [anon_sym_assert] = ACTIONS(3953), - [anon_sym_defer] = ACTIONS(3953), - [anon_sym_goto] = ACTIONS(3953), - [anon_sym_break] = ACTIONS(3953), - [anon_sym_continue] = ACTIONS(3953), - [anon_sym_return] = ACTIONS(3953), - [anon_sym_DOLLARfor] = ACTIONS(3953), - [anon_sym_for] = ACTIONS(3953), + [anon_sym_chan] = ACTIONS(3951), + [anon_sym_thread] = ACTIONS(3951), + [anon_sym_atomic] = ACTIONS(3951), + [anon_sym_assert] = ACTIONS(3951), + [anon_sym_defer] = ACTIONS(3951), + [anon_sym_goto] = ACTIONS(3951), + [anon_sym_break] = ACTIONS(3951), + [anon_sym_continue] = ACTIONS(3951), + [anon_sym_return] = ACTIONS(3951), + [anon_sym_DOLLARfor] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3951), [anon_sym_POUND] = ACTIONS(3951), - [anon_sym_asm] = ACTIONS(3953), + [anon_sym_asm] = ACTIONS(3951), [anon_sym_AT_LBRACK] = ACTIONS(3951), [sym___double_quote] = ACTIONS(3951), [sym___single_quote] = ACTIONS(3951), @@ -182581,163 +180788,539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3951), [sym___r_single_quote] = ACTIONS(3951), }, - [1500] = { - [ts_builtin_sym_end] = ACTIONS(3958), - [sym_identifier] = ACTIONS(3960), - [anon_sym_LF] = ACTIONS(3960), - [anon_sym_CR] = ACTIONS(3960), - [anon_sym_CR_LF] = ACTIONS(3960), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3960), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_const] = ACTIONS(3960), - [anon_sym_LPAREN] = ACTIONS(3960), - [anon_sym___global] = ACTIONS(3960), - [anon_sym_type] = ACTIONS(3960), - [anon_sym_fn] = ACTIONS(3960), - [anon_sym_PLUS] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_struct] = ACTIONS(3960), - [anon_sym_union] = ACTIONS(3960), - [anon_sym_pub] = ACTIONS(3960), - [anon_sym_mut] = ACTIONS(3960), - [anon_sym_enum] = ACTIONS(3960), - [anon_sym_interface] = ACTIONS(3960), - [anon_sym_QMARK] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_go] = ACTIONS(3960), - [anon_sym_spawn] = ACTIONS(3960), - [anon_sym_json_DOTdecode] = ACTIONS(3960), - [anon_sym_LBRACK2] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_CARET] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3960), - [anon_sym_LT_DASH] = ACTIONS(3960), - [sym_none] = ACTIONS(3960), - [sym_true] = ACTIONS(3960), - [sym_false] = ACTIONS(3960), - [sym_nil] = ACTIONS(3960), - [anon_sym_if] = ACTIONS(3960), - [anon_sym_DOLLARif] = ACTIONS(3960), - [anon_sym_match] = ACTIONS(3960), - [anon_sym_select] = ACTIONS(3960), - [anon_sym_lock] = ACTIONS(3960), - [anon_sym_rlock] = ACTIONS(3960), - [anon_sym_unsafe] = ACTIONS(3960), - [anon_sym_sql] = ACTIONS(3960), - [sym_int_literal] = ACTIONS(3960), - [sym_float_literal] = ACTIONS(3960), - [sym_rune_literal] = ACTIONS(3960), - [anon_sym_AT] = ACTIONS(3960), - [anon_sym_shared] = ACTIONS(3960), - [anon_sym_map_LBRACK] = ACTIONS(3960), - [anon_sym_chan] = ACTIONS(3960), - [anon_sym_thread] = ACTIONS(3960), - [anon_sym_atomic] = ACTIONS(3960), - [anon_sym_assert] = ACTIONS(3960), - [anon_sym_defer] = ACTIONS(3960), - [anon_sym_goto] = ACTIONS(3960), - [anon_sym_break] = ACTIONS(3960), - [anon_sym_continue] = ACTIONS(3960), - [anon_sym_return] = ACTIONS(3960), - [anon_sym_DOLLARfor] = ACTIONS(3960), - [anon_sym_for] = ACTIONS(3960), - [anon_sym_POUND] = ACTIONS(3960), - [anon_sym_asm] = ACTIONS(3960), - [anon_sym_AT_LBRACK] = ACTIONS(3960), - [sym___double_quote] = ACTIONS(3960), - [sym___single_quote] = ACTIONS(3960), - [sym___c_double_quote] = ACTIONS(3960), - [sym___c_single_quote] = ACTIONS(3960), - [sym___r_double_quote] = ACTIONS(3960), - [sym___r_single_quote] = ACTIONS(3960), + [1457] = { + [aux_sym_strictly_expression_list_repeat1] = STATE(1458), + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1868), + [anon_sym_CR] = ACTIONS(1868), + [anon_sym_CR_LF] = ACTIONS(1868), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_COMMA] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym___global] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_fn] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_pub] = ACTIONS(1868), + [anon_sym_mut] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_QMARK] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_go] = ACTIONS(1868), + [anon_sym_spawn] = ACTIONS(1868), + [anon_sym_json_DOTdecode] = ACTIONS(1868), + [anon_sym_LBRACK2] = ACTIONS(1868), + [anon_sym_TILDE] = ACTIONS(1868), + [anon_sym_CARET] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_LT_DASH] = ACTIONS(1868), + [sym_none] = ACTIONS(1868), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_DOLLARif] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_select] = ACTIONS(1868), + [anon_sym_lock] = ACTIONS(1868), + [anon_sym_rlock] = ACTIONS(1868), + [anon_sym_unsafe] = ACTIONS(1868), + [anon_sym_sql] = ACTIONS(1868), + [sym_int_literal] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), + [sym_rune_literal] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1868), + [anon_sym_shared] = ACTIONS(1868), + [anon_sym_map_LBRACK] = ACTIONS(1868), + [anon_sym_chan] = ACTIONS(1868), + [anon_sym_thread] = ACTIONS(1868), + [anon_sym_atomic] = ACTIONS(1868), + [anon_sym_assert] = ACTIONS(1868), + [anon_sym_defer] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_DOLLARfor] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_asm] = ACTIONS(1868), + [anon_sym_AT_LBRACK] = ACTIONS(1868), + [sym___double_quote] = ACTIONS(1868), + [sym___single_quote] = ACTIONS(1868), + [sym___c_double_quote] = ACTIONS(1868), + [sym___c_single_quote] = ACTIONS(1868), + [sym___r_double_quote] = ACTIONS(1868), + [sym___r_single_quote] = ACTIONS(1868), }, - [1501] = { - [ts_builtin_sym_end] = ACTIONS(3962), - [sym_identifier] = ACTIONS(3964), - [anon_sym_LF] = ACTIONS(3964), - [anon_sym_CR] = ACTIONS(3964), - [anon_sym_CR_LF] = ACTIONS(3964), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_const] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym___global] = ACTIONS(3964), - [anon_sym_type] = ACTIONS(3964), - [anon_sym_fn] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3964), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_struct] = ACTIONS(3964), - [anon_sym_union] = ACTIONS(3964), - [anon_sym_pub] = ACTIONS(3964), - [anon_sym_mut] = ACTIONS(3964), - [anon_sym_enum] = ACTIONS(3964), - [anon_sym_interface] = ACTIONS(3964), - [anon_sym_QMARK] = ACTIONS(3964), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_go] = ACTIONS(3964), - [anon_sym_spawn] = ACTIONS(3964), - [anon_sym_json_DOTdecode] = ACTIONS(3964), - [anon_sym_LBRACK2] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3964), - [anon_sym_LT_DASH] = ACTIONS(3964), - [sym_none] = ACTIONS(3964), - [sym_true] = ACTIONS(3964), - [sym_false] = ACTIONS(3964), - [sym_nil] = ACTIONS(3964), - [anon_sym_if] = ACTIONS(3964), - [anon_sym_DOLLARif] = ACTIONS(3964), - [anon_sym_match] = ACTIONS(3964), - [anon_sym_select] = ACTIONS(3964), - [anon_sym_lock] = ACTIONS(3964), - [anon_sym_rlock] = ACTIONS(3964), - [anon_sym_unsafe] = ACTIONS(3964), - [anon_sym_sql] = ACTIONS(3964), - [sym_int_literal] = ACTIONS(3964), - [sym_float_literal] = ACTIONS(3964), - [sym_rune_literal] = ACTIONS(3964), - [anon_sym_AT] = ACTIONS(3964), - [anon_sym_shared] = ACTIONS(3964), - [anon_sym_map_LBRACK] = ACTIONS(3964), - [anon_sym_chan] = ACTIONS(3964), - [anon_sym_thread] = ACTIONS(3964), - [anon_sym_atomic] = ACTIONS(3964), - [anon_sym_assert] = ACTIONS(3964), - [anon_sym_defer] = ACTIONS(3964), - [anon_sym_goto] = ACTIONS(3964), - [anon_sym_break] = ACTIONS(3964), - [anon_sym_continue] = ACTIONS(3964), - [anon_sym_return] = ACTIONS(3964), - [anon_sym_DOLLARfor] = ACTIONS(3964), - [anon_sym_for] = ACTIONS(3964), - [anon_sym_POUND] = ACTIONS(3964), - [anon_sym_asm] = ACTIONS(3964), - [anon_sym_AT_LBRACK] = ACTIONS(3964), - [sym___double_quote] = ACTIONS(3964), - [sym___single_quote] = ACTIONS(3964), - [sym___c_double_quote] = ACTIONS(3964), - [sym___c_single_quote] = ACTIONS(3964), - [sym___r_double_quote] = ACTIONS(3964), - [sym___r_single_quote] = ACTIONS(3964), + [1458] = { + [aux_sym_strictly_expression_list_repeat1] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(3953), + [sym_identifier] = ACTIONS(3955), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_CR] = ACTIONS(3955), + [anon_sym_CR_LF] = ACTIONS(3955), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3955), + [anon_sym_LBRACE] = ACTIONS(3955), + [anon_sym_COMMA] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3955), + [anon_sym___global] = ACTIONS(3955), + [anon_sym_type] = ACTIONS(3955), + [anon_sym_fn] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(3955), + [anon_sym_DASH] = ACTIONS(3955), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_struct] = ACTIONS(3955), + [anon_sym_union] = ACTIONS(3955), + [anon_sym_pub] = ACTIONS(3955), + [anon_sym_mut] = ACTIONS(3955), + [anon_sym_enum] = ACTIONS(3955), + [anon_sym_interface] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3955), + [anon_sym_go] = ACTIONS(3955), + [anon_sym_spawn] = ACTIONS(3955), + [anon_sym_json_DOTdecode] = ACTIONS(3955), + [anon_sym_LBRACK2] = ACTIONS(3955), + [anon_sym_TILDE] = ACTIONS(3955), + [anon_sym_CARET] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3955), + [anon_sym_LT_DASH] = ACTIONS(3955), + [sym_none] = ACTIONS(3955), + [sym_true] = ACTIONS(3955), + [sym_false] = ACTIONS(3955), + [sym_nil] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_DOLLARif] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_select] = ACTIONS(3955), + [anon_sym_lock] = ACTIONS(3955), + [anon_sym_rlock] = ACTIONS(3955), + [anon_sym_unsafe] = ACTIONS(3955), + [anon_sym_sql] = ACTIONS(3955), + [sym_int_literal] = ACTIONS(3955), + [sym_float_literal] = ACTIONS(3955), + [sym_rune_literal] = ACTIONS(3955), + [anon_sym_AT] = ACTIONS(3955), + [anon_sym_shared] = ACTIONS(3955), + [anon_sym_map_LBRACK] = ACTIONS(3955), + [anon_sym_chan] = ACTIONS(3955), + [anon_sym_thread] = ACTIONS(3955), + [anon_sym_atomic] = ACTIONS(3955), + [anon_sym_assert] = ACTIONS(3955), + [anon_sym_defer] = ACTIONS(3955), + [anon_sym_goto] = ACTIONS(3955), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_DOLLARfor] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_POUND] = ACTIONS(3955), + [anon_sym_asm] = ACTIONS(3955), + [anon_sym_AT_LBRACK] = ACTIONS(3955), + [sym___double_quote] = ACTIONS(3955), + [sym___single_quote] = ACTIONS(3955), + [sym___c_double_quote] = ACTIONS(3955), + [sym___c_single_quote] = ACTIONS(3955), + [sym___r_double_quote] = ACTIONS(3955), + [sym___r_single_quote] = ACTIONS(3955), }, - [1502] = { + [1459] = { + [ts_builtin_sym_end] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3329), + [anon_sym_LF] = ACTIONS(3329), + [anon_sym_CR] = ACTIONS(3329), + [anon_sym_CR_LF] = ACTIONS(3329), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym___global] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_fn] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [anon_sym_pub] = ACTIONS(3329), + [anon_sym_mut] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_QMARK] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_go] = ACTIONS(3329), + [anon_sym_spawn] = ACTIONS(3329), + [anon_sym_json_DOTdecode] = ACTIONS(3329), + [anon_sym_LBRACK2] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_LT_DASH] = ACTIONS(3329), + [sym_none] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_nil] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_DOLLARif] = ACTIONS(3329), + [anon_sym_match] = ACTIONS(3329), + [anon_sym_select] = ACTIONS(3329), + [anon_sym_lock] = ACTIONS(3329), + [anon_sym_rlock] = ACTIONS(3329), + [anon_sym_unsafe] = ACTIONS(3329), + [anon_sym_sql] = ACTIONS(3329), + [sym_int_literal] = ACTIONS(3329), + [sym_float_literal] = ACTIONS(3329), + [sym_rune_literal] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_shared] = ACTIONS(3329), + [anon_sym_map_LBRACK] = ACTIONS(3329), + [anon_sym_chan] = ACTIONS(3329), + [anon_sym_thread] = ACTIONS(3329), + [anon_sym_atomic] = ACTIONS(3329), + [anon_sym_assert] = ACTIONS(3329), + [anon_sym_defer] = ACTIONS(3329), + [anon_sym_goto] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_DOLLARfor] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_asm] = ACTIONS(3329), + [anon_sym_AT_LBRACK] = ACTIONS(3329), + [sym___double_quote] = ACTIONS(3329), + [sym___single_quote] = ACTIONS(3329), + [sym___c_double_quote] = ACTIONS(3329), + [sym___c_single_quote] = ACTIONS(3329), + [sym___r_double_quote] = ACTIONS(3329), + [sym___r_single_quote] = ACTIONS(3329), + }, + [1460] = { + [sym_reference_expression] = STATE(4501), + [sym_type_reference_expression] = STATE(2393), + [sym_plain_type] = STATE(2617), + [sym__plain_type_without_special] = STATE(2620), + [sym_anon_struct_type] = STATE(2621), + [sym_multi_return_type] = STATE(2620), + [sym_result_type] = STATE(2620), + [sym_option_type] = STATE(2620), + [sym_qualified_type] = STATE(2393), + [sym_fixed_array_type] = STATE(2621), + [sym_array_type] = STATE(2621), + [sym_pointer_type] = STATE(2621), + [sym_wrong_pointer_type] = STATE(2621), + [sym_map_type] = STATE(2621), + [sym_channel_type] = STATE(2621), + [sym_shared_type] = STATE(2621), + [sym_thread_type] = STATE(2621), + [sym_atomic_type] = STATE(2621), + [sym_generic_type] = STATE(2621), + [sym_function_type] = STATE(2621), + [sym_identifier] = ACTIONS(3911), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3913), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_LBRACK2] = ACTIONS(3925), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3927), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3929), + [anon_sym_map_LBRACK] = ACTIONS(3931), + [anon_sym_chan] = ACTIONS(3933), + [anon_sym_thread] = ACTIONS(3935), + [anon_sym_atomic] = ACTIONS(3937), + }, + [1461] = { + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym___global] = ACTIONS(3072), + [anon_sym_type] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_union] = ACTIONS(3072), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_enum] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_defer] = ACTIONS(3072), + [anon_sym_goto] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_DOLLARfor] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_asm] = ACTIONS(3072), + [anon_sym_AT_LBRACK] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), + }, + [1462] = { + [aux_sym__type_union_list_repeat1] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3957), + [sym_identifier] = ACTIONS(3959), + [anon_sym_LF] = ACTIONS(3961), + [anon_sym_CR] = ACTIONS(3961), + [anon_sym_CR_LF] = ACTIONS(3961), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3959), + [anon_sym___global] = ACTIONS(3959), + [anon_sym_type] = ACTIONS(3959), + [anon_sym_PIPE] = ACTIONS(3964), + [anon_sym_fn] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_DASH] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_pub] = ACTIONS(3959), + [anon_sym_mut] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_interface] = ACTIONS(3959), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3959), + [anon_sym_go] = ACTIONS(3959), + [anon_sym_spawn] = ACTIONS(3959), + [anon_sym_json_DOTdecode] = ACTIONS(3959), + [anon_sym_LBRACK2] = ACTIONS(3959), + [anon_sym_TILDE] = ACTIONS(3959), + [anon_sym_CARET] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_LT_DASH] = ACTIONS(3959), + [sym_none] = ACTIONS(3959), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [sym_nil] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_DOLLARif] = ACTIONS(3959), + [anon_sym_match] = ACTIONS(3959), + [anon_sym_select] = ACTIONS(3959), + [anon_sym_lock] = ACTIONS(3959), + [anon_sym_rlock] = ACTIONS(3959), + [anon_sym_unsafe] = ACTIONS(3959), + [anon_sym_sql] = ACTIONS(3959), + [sym_int_literal] = ACTIONS(3959), + [sym_float_literal] = ACTIONS(3959), + [sym_rune_literal] = ACTIONS(3959), + [anon_sym_AT] = ACTIONS(3959), + [anon_sym_shared] = ACTIONS(3959), + [anon_sym_map_LBRACK] = ACTIONS(3959), + [anon_sym_chan] = ACTIONS(3959), + [anon_sym_thread] = ACTIONS(3959), + [anon_sym_atomic] = ACTIONS(3959), + [anon_sym_assert] = ACTIONS(3959), + [anon_sym_defer] = ACTIONS(3959), + [anon_sym_goto] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_DOLLARfor] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_POUND] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym_AT_LBRACK] = ACTIONS(3959), + [sym___double_quote] = ACTIONS(3959), + [sym___single_quote] = ACTIONS(3959), + [sym___c_double_quote] = ACTIONS(3959), + [sym___c_single_quote] = ACTIONS(3959), + [sym___r_double_quote] = ACTIONS(3959), + [sym___r_single_quote] = ACTIONS(3959), + }, + [1463] = { + [ts_builtin_sym_end] = ACTIONS(3070), + [sym_identifier] = ACTIONS(3072), + [anon_sym_LF] = ACTIONS(3072), + [anon_sym_CR] = ACTIONS(3072), + [anon_sym_CR_LF] = ACTIONS(3072), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_const] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym___global] = ACTIONS(3072), + [anon_sym_type] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3072), + [anon_sym_fn] = ACTIONS(3072), + [anon_sym_PLUS] = ACTIONS(3072), + [anon_sym_DASH] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_struct] = ACTIONS(3072), + [anon_sym_union] = ACTIONS(3072), + [anon_sym_pub] = ACTIONS(3072), + [anon_sym_mut] = ACTIONS(3072), + [anon_sym_enum] = ACTIONS(3072), + [anon_sym_interface] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3072), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_go] = ACTIONS(3072), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3072), + [anon_sym_LT_DASH] = ACTIONS(3072), + [sym_none] = ACTIONS(3072), + [sym_true] = ACTIONS(3072), + [sym_false] = ACTIONS(3072), + [sym_nil] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_DOLLARif] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3072), + [anon_sym_select] = ACTIONS(3072), + [anon_sym_lock] = ACTIONS(3072), + [anon_sym_rlock] = ACTIONS(3072), + [anon_sym_unsafe] = ACTIONS(3072), + [anon_sym_sql] = ACTIONS(3072), + [sym_int_literal] = ACTIONS(3072), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_shared] = ACTIONS(3072), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3072), + [anon_sym_thread] = ACTIONS(3072), + [anon_sym_atomic] = ACTIONS(3072), + [anon_sym_assert] = ACTIONS(3072), + [anon_sym_defer] = ACTIONS(3072), + [anon_sym_goto] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_DOLLARfor] = ACTIONS(3072), + [anon_sym_for] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(3072), + [anon_sym_asm] = ACTIONS(3072), + [anon_sym_AT_LBRACK] = ACTIONS(3072), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), + }, + [1464] = { + [aux_sym__type_union_list_repeat1] = STATE(1462), [ts_builtin_sym_end] = ACTIONS(3966), [sym_identifier] = ACTIONS(3968), - [anon_sym_LF] = ACTIONS(3968), - [anon_sym_CR] = ACTIONS(3968), - [anon_sym_CR_LF] = ACTIONS(3968), - [sym_comment] = ACTIONS(493), + [anon_sym_LF] = ACTIONS(3970), + [anon_sym_CR] = ACTIONS(3970), + [anon_sym_CR_LF] = ACTIONS(3970), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(3968), [anon_sym_LBRACE] = ACTIONS(3968), [anon_sym_const] = ACTIONS(3968), [anon_sym_LPAREN] = ACTIONS(3968), [anon_sym___global] = ACTIONS(3968), [anon_sym_type] = ACTIONS(3968), + [anon_sym_PIPE] = ACTIONS(3964), [anon_sym_fn] = ACTIONS(3968), [anon_sym_PLUS] = ACTIONS(3968), [anon_sym_DASH] = ACTIONS(3968), @@ -182797,6746 +181380,11988 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3968), [sym___r_single_quote] = ACTIONS(3968), }, + [1465] = { + [sym_block] = STATE(1590), + [ts_builtin_sym_end] = ACTIONS(3973), + [sym_identifier] = ACTIONS(3975), + [anon_sym_LF] = ACTIONS(3975), + [anon_sym_CR] = ACTIONS(3975), + [anon_sym_CR_LF] = ACTIONS(3975), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3975), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3975), + [anon_sym___global] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(3975), + [anon_sym_fn] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_struct] = ACTIONS(3975), + [anon_sym_union] = ACTIONS(3975), + [anon_sym_pub] = ACTIONS(3975), + [anon_sym_mut] = ACTIONS(3975), + [anon_sym_enum] = ACTIONS(3975), + [anon_sym_interface] = ACTIONS(3975), + [anon_sym_QMARK] = ACTIONS(3975), + [anon_sym_BANG] = ACTIONS(3975), + [anon_sym_go] = ACTIONS(3975), + [anon_sym_spawn] = ACTIONS(3975), + [anon_sym_json_DOTdecode] = ACTIONS(3975), + [anon_sym_LBRACK2] = ACTIONS(3975), + [anon_sym_TILDE] = ACTIONS(3975), + [anon_sym_CARET] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3975), + [anon_sym_LT_DASH] = ACTIONS(3975), + [sym_none] = ACTIONS(3975), + [sym_true] = ACTIONS(3975), + [sym_false] = ACTIONS(3975), + [sym_nil] = ACTIONS(3975), + [anon_sym_if] = ACTIONS(3975), + [anon_sym_DOLLARif] = ACTIONS(3975), + [anon_sym_match] = ACTIONS(3975), + [anon_sym_select] = ACTIONS(3975), + [anon_sym_lock] = ACTIONS(3975), + [anon_sym_rlock] = ACTIONS(3975), + [anon_sym_unsafe] = ACTIONS(3975), + [anon_sym_sql] = ACTIONS(3975), + [sym_int_literal] = ACTIONS(3975), + [sym_float_literal] = ACTIONS(3975), + [sym_rune_literal] = ACTIONS(3975), + [anon_sym_AT] = ACTIONS(3975), + [anon_sym_shared] = ACTIONS(3975), + [anon_sym_map_LBRACK] = ACTIONS(3975), + [anon_sym_chan] = ACTIONS(3975), + [anon_sym_thread] = ACTIONS(3975), + [anon_sym_atomic] = ACTIONS(3975), + [anon_sym_assert] = ACTIONS(3975), + [anon_sym_defer] = ACTIONS(3975), + [anon_sym_goto] = ACTIONS(3975), + [anon_sym_break] = ACTIONS(3975), + [anon_sym_continue] = ACTIONS(3975), + [anon_sym_return] = ACTIONS(3975), + [anon_sym_DOLLARfor] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3975), + [anon_sym_POUND] = ACTIONS(3975), + [anon_sym_asm] = ACTIONS(3975), + [anon_sym_AT_LBRACK] = ACTIONS(3975), + [sym___double_quote] = ACTIONS(3975), + [sym___single_quote] = ACTIONS(3975), + [sym___c_double_quote] = ACTIONS(3975), + [sym___c_single_quote] = ACTIONS(3975), + [sym___r_double_quote] = ACTIONS(3975), + [sym___r_single_quote] = ACTIONS(3975), + }, + [1466] = { + [sym_block] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(3979), + [sym_identifier] = ACTIONS(3981), + [anon_sym_LF] = ACTIONS(3981), + [anon_sym_CR] = ACTIONS(3981), + [anon_sym_CR_LF] = ACTIONS(3981), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_LPAREN] = ACTIONS(3981), + [anon_sym___global] = ACTIONS(3981), + [anon_sym_type] = ACTIONS(3981), + [anon_sym_fn] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_pub] = ACTIONS(3981), + [anon_sym_mut] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_interface] = ACTIONS(3981), + [anon_sym_QMARK] = ACTIONS(3981), + [anon_sym_BANG] = ACTIONS(3981), + [anon_sym_go] = ACTIONS(3981), + [anon_sym_spawn] = ACTIONS(3981), + [anon_sym_json_DOTdecode] = ACTIONS(3981), + [anon_sym_LBRACK2] = ACTIONS(3981), + [anon_sym_TILDE] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(3981), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_LT_DASH] = ACTIONS(3981), + [sym_none] = ACTIONS(3981), + [sym_true] = ACTIONS(3981), + [sym_false] = ACTIONS(3981), + [sym_nil] = ACTIONS(3981), + [anon_sym_if] = ACTIONS(3981), + [anon_sym_DOLLARif] = ACTIONS(3981), + [anon_sym_match] = ACTIONS(3981), + [anon_sym_select] = ACTIONS(3981), + [anon_sym_lock] = ACTIONS(3981), + [anon_sym_rlock] = ACTIONS(3981), + [anon_sym_unsafe] = ACTIONS(3981), + [anon_sym_sql] = ACTIONS(3981), + [sym_int_literal] = ACTIONS(3981), + [sym_float_literal] = ACTIONS(3981), + [sym_rune_literal] = ACTIONS(3981), + [anon_sym_AT] = ACTIONS(3981), + [anon_sym_shared] = ACTIONS(3981), + [anon_sym_map_LBRACK] = ACTIONS(3981), + [anon_sym_chan] = ACTIONS(3981), + [anon_sym_thread] = ACTIONS(3981), + [anon_sym_atomic] = ACTIONS(3981), + [anon_sym_assert] = ACTIONS(3981), + [anon_sym_defer] = ACTIONS(3981), + [anon_sym_goto] = ACTIONS(3981), + [anon_sym_break] = ACTIONS(3981), + [anon_sym_continue] = ACTIONS(3981), + [anon_sym_return] = ACTIONS(3981), + [anon_sym_DOLLARfor] = ACTIONS(3981), + [anon_sym_for] = ACTIONS(3981), + [anon_sym_POUND] = ACTIONS(3981), + [anon_sym_asm] = ACTIONS(3981), + [anon_sym_AT_LBRACK] = ACTIONS(3981), + [sym___double_quote] = ACTIONS(3981), + [sym___single_quote] = ACTIONS(3981), + [sym___c_double_quote] = ACTIONS(3981), + [sym___c_single_quote] = ACTIONS(3981), + [sym___r_double_quote] = ACTIONS(3981), + [sym___r_single_quote] = ACTIONS(3981), + }, + [1467] = { + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LF] = ACTIONS(3222), + [anon_sym_CR] = ACTIONS(3222), + [anon_sym_CR_LF] = ACTIONS(3222), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym___global] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_union] = ACTIONS(3222), + [anon_sym_pub] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3222), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3222), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [anon_sym_assert] = ACTIONS(3222), + [anon_sym_defer] = ACTIONS(3222), + [anon_sym_goto] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_DOLLARfor] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3222), + [anon_sym_AT_LBRACK] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3222), + [sym___single_quote] = ACTIONS(3222), + [sym___c_double_quote] = ACTIONS(3222), + [sym___c_single_quote] = ACTIONS(3222), + [sym___r_double_quote] = ACTIONS(3222), + [sym___r_single_quote] = ACTIONS(3222), + }, + [1468] = { + [ts_builtin_sym_end] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3100), + [anon_sym_LF] = ACTIONS(3100), + [anon_sym_CR] = ACTIONS(3100), + [anon_sym_CR_LF] = ACTIONS(3100), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym___global] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_PIPE] = ACTIONS(3100), + [anon_sym_fn] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_pub] = ACTIONS(3100), + [anon_sym_mut] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_QMARK] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_go] = ACTIONS(3100), + [anon_sym_spawn] = ACTIONS(3100), + [anon_sym_json_DOTdecode] = ACTIONS(3100), + [anon_sym_LBRACK2] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_CARET] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3100), + [anon_sym_LT_DASH] = ACTIONS(3100), + [sym_none] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_nil] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_DOLLARif] = ACTIONS(3100), + [anon_sym_match] = ACTIONS(3100), + [anon_sym_select] = ACTIONS(3100), + [anon_sym_lock] = ACTIONS(3100), + [anon_sym_rlock] = ACTIONS(3100), + [anon_sym_unsafe] = ACTIONS(3100), + [anon_sym_sql] = ACTIONS(3100), + [sym_int_literal] = ACTIONS(3100), + [sym_float_literal] = ACTIONS(3100), + [sym_rune_literal] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(3100), + [anon_sym_map_LBRACK] = ACTIONS(3100), + [anon_sym_chan] = ACTIONS(3100), + [anon_sym_thread] = ACTIONS(3100), + [anon_sym_atomic] = ACTIONS(3100), + [anon_sym_assert] = ACTIONS(3100), + [anon_sym_defer] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_DOLLARfor] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_POUND] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(3100), + [anon_sym_AT_LBRACK] = ACTIONS(3100), + [sym___double_quote] = ACTIONS(3100), + [sym___single_quote] = ACTIONS(3100), + [sym___c_double_quote] = ACTIONS(3100), + [sym___c_single_quote] = ACTIONS(3100), + [sym___r_double_quote] = ACTIONS(3100), + [sym___r_single_quote] = ACTIONS(3100), + }, + [1469] = { + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), + }, + [1470] = { + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LF] = ACTIONS(3096), + [anon_sym_CR] = ACTIONS(3096), + [anon_sym_CR_LF] = ACTIONS(3096), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_const] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym___global] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3096), + [anon_sym_fn] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_struct] = ACTIONS(3096), + [anon_sym_union] = ACTIONS(3096), + [anon_sym_pub] = ACTIONS(3096), + [anon_sym_mut] = ACTIONS(3096), + [anon_sym_enum] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_go] = ACTIONS(3096), + [anon_sym_spawn] = ACTIONS(3096), + [anon_sym_json_DOTdecode] = ACTIONS(3096), + [anon_sym_LBRACK2] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3096), + [anon_sym_LT_DASH] = ACTIONS(3096), + [sym_none] = ACTIONS(3096), + [sym_true] = ACTIONS(3096), + [sym_false] = ACTIONS(3096), + [sym_nil] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_DOLLARif] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3096), + [anon_sym_select] = ACTIONS(3096), + [anon_sym_lock] = ACTIONS(3096), + [anon_sym_rlock] = ACTIONS(3096), + [anon_sym_unsafe] = ACTIONS(3096), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3096), + [sym_float_literal] = ACTIONS(3096), + [sym_rune_literal] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3096), + [anon_sym_shared] = ACTIONS(3096), + [anon_sym_map_LBRACK] = ACTIONS(3096), + [anon_sym_chan] = ACTIONS(3096), + [anon_sym_thread] = ACTIONS(3096), + [anon_sym_atomic] = ACTIONS(3096), + [anon_sym_assert] = ACTIONS(3096), + [anon_sym_defer] = ACTIONS(3096), + [anon_sym_goto] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_DOLLARfor] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_POUND] = ACTIONS(3096), + [anon_sym_asm] = ACTIONS(3096), + [anon_sym_AT_LBRACK] = ACTIONS(3096), + [sym___double_quote] = ACTIONS(3096), + [sym___single_quote] = ACTIONS(3096), + [sym___c_double_quote] = ACTIONS(3096), + [sym___c_single_quote] = ACTIONS(3096), + [sym___r_double_quote] = ACTIONS(3096), + [sym___r_single_quote] = ACTIONS(3096), + }, + [1471] = { + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym___global] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_pub] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [anon_sym_assert] = ACTIONS(3198), + [anon_sym_defer] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_DOLLARfor] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym_AT_LBRACK] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), + }, + [1472] = { + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LF] = ACTIONS(3092), + [anon_sym_CR] = ACTIONS(3092), + [anon_sym_CR_LF] = ACTIONS(3092), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_const] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym___global] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_fn] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(3092), + [anon_sym_union] = ACTIONS(3092), + [anon_sym_pub] = ACTIONS(3092), + [anon_sym_mut] = ACTIONS(3092), + [anon_sym_enum] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3092), + [anon_sym_go] = ACTIONS(3092), + [anon_sym_spawn] = ACTIONS(3092), + [anon_sym_json_DOTdecode] = ACTIONS(3092), + [anon_sym_LBRACK2] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_CARET] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3092), + [anon_sym_LT_DASH] = ACTIONS(3092), + [sym_none] = ACTIONS(3092), + [sym_true] = ACTIONS(3092), + [sym_false] = ACTIONS(3092), + [sym_nil] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_DOLLARif] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3092), + [anon_sym_select] = ACTIONS(3092), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3092), + [anon_sym_sql] = ACTIONS(3092), + [sym_int_literal] = ACTIONS(3092), + [sym_float_literal] = ACTIONS(3092), + [sym_rune_literal] = ACTIONS(3092), + [anon_sym_AT] = ACTIONS(3092), + [anon_sym_shared] = ACTIONS(3092), + [anon_sym_map_LBRACK] = ACTIONS(3092), + [anon_sym_chan] = ACTIONS(3092), + [anon_sym_thread] = ACTIONS(3092), + [anon_sym_atomic] = ACTIONS(3092), + [anon_sym_assert] = ACTIONS(3092), + [anon_sym_defer] = ACTIONS(3092), + [anon_sym_goto] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_DOLLARfor] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_POUND] = ACTIONS(3092), + [anon_sym_asm] = ACTIONS(3092), + [anon_sym_AT_LBRACK] = ACTIONS(3092), + [sym___double_quote] = ACTIONS(3092), + [sym___single_quote] = ACTIONS(3092), + [sym___c_double_quote] = ACTIONS(3092), + [sym___c_single_quote] = ACTIONS(3092), + [sym___r_double_quote] = ACTIONS(3092), + [sym___r_single_quote] = ACTIONS(3092), + }, + [1473] = { + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym___global] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_union] = ACTIONS(3261), + [anon_sym_pub] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [anon_sym_AT] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_defer] = ACTIONS(3261), + [anon_sym_goto] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_DOLLARfor] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_asm] = ACTIONS(3261), + [anon_sym_AT_LBRACK] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), + }, + [1474] = { + [ts_builtin_sym_end] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3088), + [anon_sym_LF] = ACTIONS(3088), + [anon_sym_CR] = ACTIONS(3088), + [anon_sym_CR_LF] = ACTIONS(3088), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3088), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_const] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym___global] = ACTIONS(3088), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_fn] = ACTIONS(3088), + [anon_sym_PLUS] = ACTIONS(3088), + [anon_sym_DASH] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_union] = ACTIONS(3088), + [anon_sym_pub] = ACTIONS(3088), + [anon_sym_mut] = ACTIONS(3088), + [anon_sym_enum] = ACTIONS(3088), + [anon_sym_interface] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3088), + [anon_sym_go] = ACTIONS(3088), + [anon_sym_spawn] = ACTIONS(3088), + [anon_sym_json_DOTdecode] = ACTIONS(3088), + [anon_sym_LBRACK2] = ACTIONS(3088), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_CARET] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3088), + [anon_sym_LT_DASH] = ACTIONS(3088), + [sym_none] = ACTIONS(3088), + [sym_true] = ACTIONS(3088), + [sym_false] = ACTIONS(3088), + [sym_nil] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_DOLLARif] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3088), + [anon_sym_lock] = ACTIONS(3088), + [anon_sym_rlock] = ACTIONS(3088), + [anon_sym_unsafe] = ACTIONS(3088), + [anon_sym_sql] = ACTIONS(3088), + [sym_int_literal] = ACTIONS(3088), + [sym_float_literal] = ACTIONS(3088), + [sym_rune_literal] = ACTIONS(3088), + [anon_sym_AT] = ACTIONS(3088), + [anon_sym_shared] = ACTIONS(3088), + [anon_sym_map_LBRACK] = ACTIONS(3088), + [anon_sym_chan] = ACTIONS(3088), + [anon_sym_thread] = ACTIONS(3088), + [anon_sym_atomic] = ACTIONS(3088), + [anon_sym_assert] = ACTIONS(3088), + [anon_sym_defer] = ACTIONS(3088), + [anon_sym_goto] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_DOLLARfor] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_POUND] = ACTIONS(3088), + [anon_sym_asm] = ACTIONS(3088), + [anon_sym_AT_LBRACK] = ACTIONS(3088), + [sym___double_quote] = ACTIONS(3088), + [sym___single_quote] = ACTIONS(3088), + [sym___c_double_quote] = ACTIONS(3088), + [sym___c_single_quote] = ACTIONS(3088), + [sym___r_double_quote] = ACTIONS(3088), + [sym___r_single_quote] = ACTIONS(3088), + }, + [1475] = { + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_identifier] = ACTIONS(3297), + [anon_sym_LF] = ACTIONS(3297), + [anon_sym_CR] = ACTIONS(3297), + [anon_sym_CR_LF] = ACTIONS(3297), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym___global] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_fn] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_struct] = ACTIONS(3297), + [anon_sym_union] = ACTIONS(3297), + [anon_sym_pub] = ACTIONS(3297), + [anon_sym_mut] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_go] = ACTIONS(3297), + [anon_sym_spawn] = ACTIONS(3297), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_LT_DASH] = ACTIONS(3297), + [sym_none] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_nil] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_DOLLARif] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3297), + [anon_sym_select] = ACTIONS(3297), + [anon_sym_lock] = ACTIONS(3297), + [anon_sym_rlock] = ACTIONS(3297), + [anon_sym_unsafe] = ACTIONS(3297), + [anon_sym_sql] = ACTIONS(3297), + [sym_int_literal] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_shared] = ACTIONS(3297), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3297), + [anon_sym_atomic] = ACTIONS(3297), + [anon_sym_assert] = ACTIONS(3297), + [anon_sym_defer] = ACTIONS(3297), + [anon_sym_goto] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_DOLLARfor] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_asm] = ACTIONS(3297), + [anon_sym_AT_LBRACK] = ACTIONS(3297), + [sym___double_quote] = ACTIONS(3297), + [sym___single_quote] = ACTIONS(3297), + [sym___c_double_quote] = ACTIONS(3297), + [sym___c_single_quote] = ACTIONS(3297), + [sym___r_double_quote] = ACTIONS(3297), + [sym___r_single_quote] = ACTIONS(3297), + }, + [1476] = { + [sym_block] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(3983), + [sym_identifier] = ACTIONS(3985), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_CR] = ACTIONS(3985), + [anon_sym_CR_LF] = ACTIONS(3985), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym___global] = ACTIONS(3985), + [anon_sym_type] = ACTIONS(3985), + [anon_sym_fn] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_STAR] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_pub] = ACTIONS(3985), + [anon_sym_mut] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_interface] = ACTIONS(3985), + [anon_sym_QMARK] = ACTIONS(3985), + [anon_sym_BANG] = ACTIONS(3985), + [anon_sym_go] = ACTIONS(3985), + [anon_sym_spawn] = ACTIONS(3985), + [anon_sym_json_DOTdecode] = ACTIONS(3985), + [anon_sym_LBRACK2] = ACTIONS(3985), + [anon_sym_TILDE] = ACTIONS(3985), + [anon_sym_CARET] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_LT_DASH] = ACTIONS(3985), + [sym_none] = ACTIONS(3985), + [sym_true] = ACTIONS(3985), + [sym_false] = ACTIONS(3985), + [sym_nil] = ACTIONS(3985), + [anon_sym_if] = ACTIONS(3985), + [anon_sym_DOLLARif] = ACTIONS(3985), + [anon_sym_match] = ACTIONS(3985), + [anon_sym_select] = ACTIONS(3985), + [anon_sym_lock] = ACTIONS(3985), + [anon_sym_rlock] = ACTIONS(3985), + [anon_sym_unsafe] = ACTIONS(3985), + [anon_sym_sql] = ACTIONS(3985), + [sym_int_literal] = ACTIONS(3985), + [sym_float_literal] = ACTIONS(3985), + [sym_rune_literal] = ACTIONS(3985), + [anon_sym_AT] = ACTIONS(3985), + [anon_sym_shared] = ACTIONS(3985), + [anon_sym_map_LBRACK] = ACTIONS(3985), + [anon_sym_chan] = ACTIONS(3985), + [anon_sym_thread] = ACTIONS(3985), + [anon_sym_atomic] = ACTIONS(3985), + [anon_sym_assert] = ACTIONS(3985), + [anon_sym_defer] = ACTIONS(3985), + [anon_sym_goto] = ACTIONS(3985), + [anon_sym_break] = ACTIONS(3985), + [anon_sym_continue] = ACTIONS(3985), + [anon_sym_return] = ACTIONS(3985), + [anon_sym_DOLLARfor] = ACTIONS(3985), + [anon_sym_for] = ACTIONS(3985), + [anon_sym_POUND] = ACTIONS(3985), + [anon_sym_asm] = ACTIONS(3985), + [anon_sym_AT_LBRACK] = ACTIONS(3985), + [sym___double_quote] = ACTIONS(3985), + [sym___single_quote] = ACTIONS(3985), + [sym___c_double_quote] = ACTIONS(3985), + [sym___c_single_quote] = ACTIONS(3985), + [sym___r_double_quote] = ACTIONS(3985), + [sym___r_single_quote] = ACTIONS(3985), + }, + [1477] = { + [sym_block] = STATE(1583), + [ts_builtin_sym_end] = ACTIONS(3987), + [sym_identifier] = ACTIONS(3989), + [anon_sym_LF] = ACTIONS(3989), + [anon_sym_CR] = ACTIONS(3989), + [anon_sym_CR_LF] = ACTIONS(3989), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym___global] = ACTIONS(3989), + [anon_sym_type] = ACTIONS(3989), + [anon_sym_fn] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3989), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_STAR] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_pub] = ACTIONS(3989), + [anon_sym_mut] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_interface] = ACTIONS(3989), + [anon_sym_QMARK] = ACTIONS(3989), + [anon_sym_BANG] = ACTIONS(3989), + [anon_sym_go] = ACTIONS(3989), + [anon_sym_spawn] = ACTIONS(3989), + [anon_sym_json_DOTdecode] = ACTIONS(3989), + [anon_sym_LBRACK2] = ACTIONS(3989), + [anon_sym_TILDE] = ACTIONS(3989), + [anon_sym_CARET] = ACTIONS(3989), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_LT_DASH] = ACTIONS(3989), + [sym_none] = ACTIONS(3989), + [sym_true] = ACTIONS(3989), + [sym_false] = ACTIONS(3989), + [sym_nil] = ACTIONS(3989), + [anon_sym_if] = ACTIONS(3989), + [anon_sym_DOLLARif] = ACTIONS(3989), + [anon_sym_match] = ACTIONS(3989), + [anon_sym_select] = ACTIONS(3989), + [anon_sym_lock] = ACTIONS(3989), + [anon_sym_rlock] = ACTIONS(3989), + [anon_sym_unsafe] = ACTIONS(3989), + [anon_sym_sql] = ACTIONS(3989), + [sym_int_literal] = ACTIONS(3989), + [sym_float_literal] = ACTIONS(3989), + [sym_rune_literal] = ACTIONS(3989), + [anon_sym_AT] = ACTIONS(3989), + [anon_sym_shared] = ACTIONS(3989), + [anon_sym_map_LBRACK] = ACTIONS(3989), + [anon_sym_chan] = ACTIONS(3989), + [anon_sym_thread] = ACTIONS(3989), + [anon_sym_atomic] = ACTIONS(3989), + [anon_sym_assert] = ACTIONS(3989), + [anon_sym_defer] = ACTIONS(3989), + [anon_sym_goto] = ACTIONS(3989), + [anon_sym_break] = ACTIONS(3989), + [anon_sym_continue] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3989), + [anon_sym_DOLLARfor] = ACTIONS(3989), + [anon_sym_for] = ACTIONS(3989), + [anon_sym_POUND] = ACTIONS(3989), + [anon_sym_asm] = ACTIONS(3989), + [anon_sym_AT_LBRACK] = ACTIONS(3989), + [sym___double_quote] = ACTIONS(3989), + [sym___single_quote] = ACTIONS(3989), + [sym___c_double_quote] = ACTIONS(3989), + [sym___c_single_quote] = ACTIONS(3989), + [sym___r_double_quote] = ACTIONS(3989), + [sym___r_single_quote] = ACTIONS(3989), + }, + [1478] = { + [ts_builtin_sym_end] = ACTIONS(3335), + [sym_identifier] = ACTIONS(3337), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_CR] = ACTIONS(3337), + [anon_sym_CR_LF] = ACTIONS(3337), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_const] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym___global] = ACTIONS(3337), + [anon_sym_type] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3337), + [anon_sym_fn] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_struct] = ACTIONS(3337), + [anon_sym_union] = ACTIONS(3337), + [anon_sym_pub] = ACTIONS(3337), + [anon_sym_mut] = ACTIONS(3337), + [anon_sym_enum] = ACTIONS(3337), + [anon_sym_interface] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_go] = ACTIONS(3337), + [anon_sym_spawn] = ACTIONS(3337), + [anon_sym_json_DOTdecode] = ACTIONS(3337), + [anon_sym_LBRACK2] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_LT_DASH] = ACTIONS(3337), + [sym_none] = ACTIONS(3337), + [sym_true] = ACTIONS(3337), + [sym_false] = ACTIONS(3337), + [sym_nil] = ACTIONS(3337), + [anon_sym_if] = ACTIONS(3337), + [anon_sym_DOLLARif] = ACTIONS(3337), + [anon_sym_match] = ACTIONS(3337), + [anon_sym_select] = ACTIONS(3337), + [anon_sym_lock] = ACTIONS(3337), + [anon_sym_rlock] = ACTIONS(3337), + [anon_sym_unsafe] = ACTIONS(3337), + [anon_sym_sql] = ACTIONS(3337), + [sym_int_literal] = ACTIONS(3337), + [sym_float_literal] = ACTIONS(3337), + [sym_rune_literal] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_shared] = ACTIONS(3337), + [anon_sym_map_LBRACK] = ACTIONS(3337), + [anon_sym_chan] = ACTIONS(3337), + [anon_sym_thread] = ACTIONS(3337), + [anon_sym_atomic] = ACTIONS(3337), + [anon_sym_assert] = ACTIONS(3337), + [anon_sym_defer] = ACTIONS(3337), + [anon_sym_goto] = ACTIONS(3337), + [anon_sym_break] = ACTIONS(3337), + [anon_sym_continue] = ACTIONS(3337), + [anon_sym_return] = ACTIONS(3337), + [anon_sym_DOLLARfor] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3337), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_asm] = ACTIONS(3337), + [anon_sym_AT_LBRACK] = ACTIONS(3337), + [sym___double_quote] = ACTIONS(3337), + [sym___single_quote] = ACTIONS(3337), + [sym___c_double_quote] = ACTIONS(3337), + [sym___c_single_quote] = ACTIONS(3337), + [sym___r_double_quote] = ACTIONS(3337), + [sym___r_single_quote] = ACTIONS(3337), + }, + [1479] = { + [sym_block] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(3991), + [sym_identifier] = ACTIONS(3993), + [anon_sym_LF] = ACTIONS(3993), + [anon_sym_CR] = ACTIONS(3993), + [anon_sym_CR_LF] = ACTIONS(3993), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym___global] = ACTIONS(3993), + [anon_sym_type] = ACTIONS(3993), + [anon_sym_fn] = ACTIONS(3993), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_STAR] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_pub] = ACTIONS(3993), + [anon_sym_mut] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_interface] = ACTIONS(3993), + [anon_sym_QMARK] = ACTIONS(3993), + [anon_sym_BANG] = ACTIONS(3993), + [anon_sym_go] = ACTIONS(3993), + [anon_sym_spawn] = ACTIONS(3993), + [anon_sym_json_DOTdecode] = ACTIONS(3993), + [anon_sym_LBRACK2] = ACTIONS(3993), + [anon_sym_TILDE] = ACTIONS(3993), + [anon_sym_CARET] = ACTIONS(3993), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_LT_DASH] = ACTIONS(3993), + [sym_none] = ACTIONS(3993), + [sym_true] = ACTIONS(3993), + [sym_false] = ACTIONS(3993), + [sym_nil] = ACTIONS(3993), + [anon_sym_if] = ACTIONS(3993), + [anon_sym_DOLLARif] = ACTIONS(3993), + [anon_sym_match] = ACTIONS(3993), + [anon_sym_select] = ACTIONS(3993), + [anon_sym_lock] = ACTIONS(3993), + [anon_sym_rlock] = ACTIONS(3993), + [anon_sym_unsafe] = ACTIONS(3993), + [anon_sym_sql] = ACTIONS(3993), + [sym_int_literal] = ACTIONS(3993), + [sym_float_literal] = ACTIONS(3993), + [sym_rune_literal] = ACTIONS(3993), + [anon_sym_AT] = ACTIONS(3993), + [anon_sym_shared] = ACTIONS(3993), + [anon_sym_map_LBRACK] = ACTIONS(3993), + [anon_sym_chan] = ACTIONS(3993), + [anon_sym_thread] = ACTIONS(3993), + [anon_sym_atomic] = ACTIONS(3993), + [anon_sym_assert] = ACTIONS(3993), + [anon_sym_defer] = ACTIONS(3993), + [anon_sym_goto] = ACTIONS(3993), + [anon_sym_break] = ACTIONS(3993), + [anon_sym_continue] = ACTIONS(3993), + [anon_sym_return] = ACTIONS(3993), + [anon_sym_DOLLARfor] = ACTIONS(3993), + [anon_sym_for] = ACTIONS(3993), + [anon_sym_POUND] = ACTIONS(3993), + [anon_sym_asm] = ACTIONS(3993), + [anon_sym_AT_LBRACK] = ACTIONS(3993), + [sym___double_quote] = ACTIONS(3993), + [sym___single_quote] = ACTIONS(3993), + [sym___c_double_quote] = ACTIONS(3993), + [sym___c_single_quote] = ACTIONS(3993), + [sym___r_double_quote] = ACTIONS(3993), + [sym___r_single_quote] = ACTIONS(3993), + }, + [1480] = { + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_identifier] = ACTIONS(3305), + [anon_sym_LF] = ACTIONS(3305), + [anon_sym_CR] = ACTIONS(3305), + [anon_sym_CR_LF] = ACTIONS(3305), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym___global] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_fn] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3305), + [anon_sym_union] = ACTIONS(3305), + [anon_sym_pub] = ACTIONS(3305), + [anon_sym_mut] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_go] = ACTIONS(3305), + [anon_sym_spawn] = ACTIONS(3305), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_LT_DASH] = ACTIONS(3305), + [sym_none] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_nil] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_DOLLARif] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3305), + [anon_sym_select] = ACTIONS(3305), + [anon_sym_lock] = ACTIONS(3305), + [anon_sym_rlock] = ACTIONS(3305), + [anon_sym_unsafe] = ACTIONS(3305), + [anon_sym_sql] = ACTIONS(3305), + [sym_int_literal] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_shared] = ACTIONS(3305), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3305), + [anon_sym_thread] = ACTIONS(3305), + [anon_sym_atomic] = ACTIONS(3305), + [anon_sym_assert] = ACTIONS(3305), + [anon_sym_defer] = ACTIONS(3305), + [anon_sym_goto] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_DOLLARfor] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_asm] = ACTIONS(3305), + [anon_sym_AT_LBRACK] = ACTIONS(3305), + [sym___double_quote] = ACTIONS(3305), + [sym___single_quote] = ACTIONS(3305), + [sym___c_double_quote] = ACTIONS(3305), + [sym___c_single_quote] = ACTIONS(3305), + [sym___r_double_quote] = ACTIONS(3305), + [sym___r_single_quote] = ACTIONS(3305), + }, + [1481] = { + [sym_block] = STATE(1534), + [ts_builtin_sym_end] = ACTIONS(3995), + [sym_identifier] = ACTIONS(3997), + [anon_sym_LF] = ACTIONS(3997), + [anon_sym_CR] = ACTIONS(3997), + [anon_sym_CR_LF] = ACTIONS(3997), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym___global] = ACTIONS(3997), + [anon_sym_type] = ACTIONS(3997), + [anon_sym_fn] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_pub] = ACTIONS(3997), + [anon_sym_mut] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_interface] = ACTIONS(3997), + [anon_sym_QMARK] = ACTIONS(3997), + [anon_sym_BANG] = ACTIONS(3997), + [anon_sym_go] = ACTIONS(3997), + [anon_sym_spawn] = ACTIONS(3997), + [anon_sym_json_DOTdecode] = ACTIONS(3997), + [anon_sym_LBRACK2] = ACTIONS(3997), + [anon_sym_TILDE] = ACTIONS(3997), + [anon_sym_CARET] = ACTIONS(3997), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_LT_DASH] = ACTIONS(3997), + [sym_none] = ACTIONS(3997), + [sym_true] = ACTIONS(3997), + [sym_false] = ACTIONS(3997), + [sym_nil] = ACTIONS(3997), + [anon_sym_if] = ACTIONS(3997), + [anon_sym_DOLLARif] = ACTIONS(3997), + [anon_sym_match] = ACTIONS(3997), + [anon_sym_select] = ACTIONS(3997), + [anon_sym_lock] = ACTIONS(3997), + [anon_sym_rlock] = ACTIONS(3997), + [anon_sym_unsafe] = ACTIONS(3997), + [anon_sym_sql] = ACTIONS(3997), + [sym_int_literal] = ACTIONS(3997), + [sym_float_literal] = ACTIONS(3997), + [sym_rune_literal] = ACTIONS(3997), + [anon_sym_AT] = ACTIONS(3997), + [anon_sym_shared] = ACTIONS(3997), + [anon_sym_map_LBRACK] = ACTIONS(3997), + [anon_sym_chan] = ACTIONS(3997), + [anon_sym_thread] = ACTIONS(3997), + [anon_sym_atomic] = ACTIONS(3997), + [anon_sym_assert] = ACTIONS(3997), + [anon_sym_defer] = ACTIONS(3997), + [anon_sym_goto] = ACTIONS(3997), + [anon_sym_break] = ACTIONS(3997), + [anon_sym_continue] = ACTIONS(3997), + [anon_sym_return] = ACTIONS(3997), + [anon_sym_DOLLARfor] = ACTIONS(3997), + [anon_sym_for] = ACTIONS(3997), + [anon_sym_POUND] = ACTIONS(3997), + [anon_sym_asm] = ACTIONS(3997), + [anon_sym_AT_LBRACK] = ACTIONS(3997), + [sym___double_quote] = ACTIONS(3997), + [sym___single_quote] = ACTIONS(3997), + [sym___c_double_quote] = ACTIONS(3997), + [sym___c_single_quote] = ACTIONS(3997), + [sym___r_double_quote] = ACTIONS(3997), + [sym___r_single_quote] = ACTIONS(3997), + }, + [1482] = { + [sym_block] = STATE(1595), + [ts_builtin_sym_end] = ACTIONS(3999), + [sym_identifier] = ACTIONS(4001), + [anon_sym_LF] = ACTIONS(4001), + [anon_sym_CR] = ACTIONS(4001), + [anon_sym_CR_LF] = ACTIONS(4001), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4001), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym___global] = ACTIONS(4001), + [anon_sym_type] = ACTIONS(4001), + [anon_sym_fn] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_struct] = ACTIONS(4001), + [anon_sym_union] = ACTIONS(4001), + [anon_sym_pub] = ACTIONS(4001), + [anon_sym_mut] = ACTIONS(4001), + [anon_sym_enum] = ACTIONS(4001), + [anon_sym_interface] = ACTIONS(4001), + [anon_sym_QMARK] = ACTIONS(4001), + [anon_sym_BANG] = ACTIONS(4001), + [anon_sym_go] = ACTIONS(4001), + [anon_sym_spawn] = ACTIONS(4001), + [anon_sym_json_DOTdecode] = ACTIONS(4001), + [anon_sym_LBRACK2] = ACTIONS(4001), + [anon_sym_TILDE] = ACTIONS(4001), + [anon_sym_CARET] = ACTIONS(4001), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_LT_DASH] = ACTIONS(4001), + [sym_none] = ACTIONS(4001), + [sym_true] = ACTIONS(4001), + [sym_false] = ACTIONS(4001), + [sym_nil] = ACTIONS(4001), + [anon_sym_if] = ACTIONS(4001), + [anon_sym_DOLLARif] = ACTIONS(4001), + [anon_sym_match] = ACTIONS(4001), + [anon_sym_select] = ACTIONS(4001), + [anon_sym_lock] = ACTIONS(4001), + [anon_sym_rlock] = ACTIONS(4001), + [anon_sym_unsafe] = ACTIONS(4001), + [anon_sym_sql] = ACTIONS(4001), + [sym_int_literal] = ACTIONS(4001), + [sym_float_literal] = ACTIONS(4001), + [sym_rune_literal] = ACTIONS(4001), + [anon_sym_AT] = ACTIONS(4001), + [anon_sym_shared] = ACTIONS(4001), + [anon_sym_map_LBRACK] = ACTIONS(4001), + [anon_sym_chan] = ACTIONS(4001), + [anon_sym_thread] = ACTIONS(4001), + [anon_sym_atomic] = ACTIONS(4001), + [anon_sym_assert] = ACTIONS(4001), + [anon_sym_defer] = ACTIONS(4001), + [anon_sym_goto] = ACTIONS(4001), + [anon_sym_break] = ACTIONS(4001), + [anon_sym_continue] = ACTIONS(4001), + [anon_sym_return] = ACTIONS(4001), + [anon_sym_DOLLARfor] = ACTIONS(4001), + [anon_sym_for] = ACTIONS(4001), + [anon_sym_POUND] = ACTIONS(4001), + [anon_sym_asm] = ACTIONS(4001), + [anon_sym_AT_LBRACK] = ACTIONS(4001), + [sym___double_quote] = ACTIONS(4001), + [sym___single_quote] = ACTIONS(4001), + [sym___c_double_quote] = ACTIONS(4001), + [sym___c_single_quote] = ACTIONS(4001), + [sym___r_double_quote] = ACTIONS(4001), + [sym___r_single_quote] = ACTIONS(4001), + }, + [1483] = { + [sym_block] = STATE(1588), + [ts_builtin_sym_end] = ACTIONS(4003), + [sym_identifier] = ACTIONS(4005), + [anon_sym_LF] = ACTIONS(4005), + [anon_sym_CR] = ACTIONS(4005), + [anon_sym_CR_LF] = ACTIONS(4005), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_LPAREN] = ACTIONS(4005), + [anon_sym___global] = ACTIONS(4005), + [anon_sym_type] = ACTIONS(4005), + [anon_sym_fn] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_pub] = ACTIONS(4005), + [anon_sym_mut] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_interface] = ACTIONS(4005), + [anon_sym_QMARK] = ACTIONS(4005), + [anon_sym_BANG] = ACTIONS(4005), + [anon_sym_go] = ACTIONS(4005), + [anon_sym_spawn] = ACTIONS(4005), + [anon_sym_json_DOTdecode] = ACTIONS(4005), + [anon_sym_LBRACK2] = ACTIONS(4005), + [anon_sym_TILDE] = ACTIONS(4005), + [anon_sym_CARET] = ACTIONS(4005), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_LT_DASH] = ACTIONS(4005), + [sym_none] = ACTIONS(4005), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [sym_nil] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_DOLLARif] = ACTIONS(4005), + [anon_sym_match] = ACTIONS(4005), + [anon_sym_select] = ACTIONS(4005), + [anon_sym_lock] = ACTIONS(4005), + [anon_sym_rlock] = ACTIONS(4005), + [anon_sym_unsafe] = ACTIONS(4005), + [anon_sym_sql] = ACTIONS(4005), + [sym_int_literal] = ACTIONS(4005), + [sym_float_literal] = ACTIONS(4005), + [sym_rune_literal] = ACTIONS(4005), + [anon_sym_AT] = ACTIONS(4005), + [anon_sym_shared] = ACTIONS(4005), + [anon_sym_map_LBRACK] = ACTIONS(4005), + [anon_sym_chan] = ACTIONS(4005), + [anon_sym_thread] = ACTIONS(4005), + [anon_sym_atomic] = ACTIONS(4005), + [anon_sym_assert] = ACTIONS(4005), + [anon_sym_defer] = ACTIONS(4005), + [anon_sym_goto] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_DOLLARfor] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_POUND] = ACTIONS(4005), + [anon_sym_asm] = ACTIONS(4005), + [anon_sym_AT_LBRACK] = ACTIONS(4005), + [sym___double_quote] = ACTIONS(4005), + [sym___single_quote] = ACTIONS(4005), + [sym___c_double_quote] = ACTIONS(4005), + [sym___c_single_quote] = ACTIONS(4005), + [sym___r_double_quote] = ACTIONS(4005), + [sym___r_single_quote] = ACTIONS(4005), + }, + [1484] = { + [sym_block] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(4007), + [sym_identifier] = ACTIONS(4009), + [anon_sym_LF] = ACTIONS(4009), + [anon_sym_CR] = ACTIONS(4009), + [anon_sym_CR_LF] = ACTIONS(4009), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym___global] = ACTIONS(4009), + [anon_sym_type] = ACTIONS(4009), + [anon_sym_fn] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_pub] = ACTIONS(4009), + [anon_sym_mut] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_interface] = ACTIONS(4009), + [anon_sym_QMARK] = ACTIONS(4009), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_go] = ACTIONS(4009), + [anon_sym_spawn] = ACTIONS(4009), + [anon_sym_json_DOTdecode] = ACTIONS(4009), + [anon_sym_LBRACK2] = ACTIONS(4009), + [anon_sym_TILDE] = ACTIONS(4009), + [anon_sym_CARET] = ACTIONS(4009), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_LT_DASH] = ACTIONS(4009), + [sym_none] = ACTIONS(4009), + [sym_true] = ACTIONS(4009), + [sym_false] = ACTIONS(4009), + [sym_nil] = ACTIONS(4009), + [anon_sym_if] = ACTIONS(4009), + [anon_sym_DOLLARif] = ACTIONS(4009), + [anon_sym_match] = ACTIONS(4009), + [anon_sym_select] = ACTIONS(4009), + [anon_sym_lock] = ACTIONS(4009), + [anon_sym_rlock] = ACTIONS(4009), + [anon_sym_unsafe] = ACTIONS(4009), + [anon_sym_sql] = ACTIONS(4009), + [sym_int_literal] = ACTIONS(4009), + [sym_float_literal] = ACTIONS(4009), + [sym_rune_literal] = ACTIONS(4009), + [anon_sym_AT] = ACTIONS(4009), + [anon_sym_shared] = ACTIONS(4009), + [anon_sym_map_LBRACK] = ACTIONS(4009), + [anon_sym_chan] = ACTIONS(4009), + [anon_sym_thread] = ACTIONS(4009), + [anon_sym_atomic] = ACTIONS(4009), + [anon_sym_assert] = ACTIONS(4009), + [anon_sym_defer] = ACTIONS(4009), + [anon_sym_goto] = ACTIONS(4009), + [anon_sym_break] = ACTIONS(4009), + [anon_sym_continue] = ACTIONS(4009), + [anon_sym_return] = ACTIONS(4009), + [anon_sym_DOLLARfor] = ACTIONS(4009), + [anon_sym_for] = ACTIONS(4009), + [anon_sym_POUND] = ACTIONS(4009), + [anon_sym_asm] = ACTIONS(4009), + [anon_sym_AT_LBRACK] = ACTIONS(4009), + [sym___double_quote] = ACTIONS(4009), + [sym___single_quote] = ACTIONS(4009), + [sym___c_double_quote] = ACTIONS(4009), + [sym___c_single_quote] = ACTIONS(4009), + [sym___r_double_quote] = ACTIONS(4009), + [sym___r_single_quote] = ACTIONS(4009), + }, + [1485] = { + [ts_builtin_sym_end] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3156), + [anon_sym_LF] = ACTIONS(3156), + [anon_sym_CR] = ACTIONS(3156), + [anon_sym_CR_LF] = ACTIONS(3156), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym___global] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_PIPE] = ACTIONS(3156), + [anon_sym_fn] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_pub] = ACTIONS(3156), + [anon_sym_mut] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_go] = ACTIONS(3156), + [anon_sym_spawn] = ACTIONS(3156), + [anon_sym_json_DOTdecode] = ACTIONS(3156), + [anon_sym_LBRACK2] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_CARET] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_LT_DASH] = ACTIONS(3156), + [sym_none] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_nil] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_DOLLARif] = ACTIONS(3156), + [anon_sym_match] = ACTIONS(3156), + [anon_sym_select] = ACTIONS(3156), + [anon_sym_lock] = ACTIONS(3156), + [anon_sym_rlock] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(3156), + [anon_sym_sql] = ACTIONS(3156), + [sym_int_literal] = ACTIONS(3156), + [sym_float_literal] = ACTIONS(3156), + [sym_rune_literal] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_shared] = ACTIONS(3156), + [anon_sym_map_LBRACK] = ACTIONS(3156), + [anon_sym_chan] = ACTIONS(3156), + [anon_sym_thread] = ACTIONS(3156), + [anon_sym_atomic] = ACTIONS(3156), + [anon_sym_assert] = ACTIONS(3156), + [anon_sym_defer] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_DOLLARfor] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_POUND] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym_AT_LBRACK] = ACTIONS(3156), + [sym___double_quote] = ACTIONS(3156), + [sym___single_quote] = ACTIONS(3156), + [sym___c_double_quote] = ACTIONS(3156), + [sym___c_single_quote] = ACTIONS(3156), + [sym___r_double_quote] = ACTIONS(3156), + [sym___r_single_quote] = ACTIONS(3156), + }, + [1486] = { + [sym_block] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(4011), + [sym_identifier] = ACTIONS(4013), + [anon_sym_LF] = ACTIONS(4013), + [anon_sym_CR] = ACTIONS(4013), + [anon_sym_CR_LF] = ACTIONS(4013), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym___global] = ACTIONS(4013), + [anon_sym_type] = ACTIONS(4013), + [anon_sym_fn] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4013), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_pub] = ACTIONS(4013), + [anon_sym_mut] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_interface] = ACTIONS(4013), + [anon_sym_QMARK] = ACTIONS(4013), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_go] = ACTIONS(4013), + [anon_sym_spawn] = ACTIONS(4013), + [anon_sym_json_DOTdecode] = ACTIONS(4013), + [anon_sym_LBRACK2] = ACTIONS(4013), + [anon_sym_TILDE] = ACTIONS(4013), + [anon_sym_CARET] = ACTIONS(4013), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_LT_DASH] = ACTIONS(4013), + [sym_none] = ACTIONS(4013), + [sym_true] = ACTIONS(4013), + [sym_false] = ACTIONS(4013), + [sym_nil] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_DOLLARif] = ACTIONS(4013), + [anon_sym_match] = ACTIONS(4013), + [anon_sym_select] = ACTIONS(4013), + [anon_sym_lock] = ACTIONS(4013), + [anon_sym_rlock] = ACTIONS(4013), + [anon_sym_unsafe] = ACTIONS(4013), + [anon_sym_sql] = ACTIONS(4013), + [sym_int_literal] = ACTIONS(4013), + [sym_float_literal] = ACTIONS(4013), + [sym_rune_literal] = ACTIONS(4013), + [anon_sym_AT] = ACTIONS(4013), + [anon_sym_shared] = ACTIONS(4013), + [anon_sym_map_LBRACK] = ACTIONS(4013), + [anon_sym_chan] = ACTIONS(4013), + [anon_sym_thread] = ACTIONS(4013), + [anon_sym_atomic] = ACTIONS(4013), + [anon_sym_assert] = ACTIONS(4013), + [anon_sym_defer] = ACTIONS(4013), + [anon_sym_goto] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_DOLLARfor] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_POUND] = ACTIONS(4013), + [anon_sym_asm] = ACTIONS(4013), + [anon_sym_AT_LBRACK] = ACTIONS(4013), + [sym___double_quote] = ACTIONS(4013), + [sym___single_quote] = ACTIONS(4013), + [sym___c_double_quote] = ACTIONS(4013), + [sym___c_single_quote] = ACTIONS(4013), + [sym___r_double_quote] = ACTIONS(4013), + [sym___r_single_quote] = ACTIONS(4013), + }, + [1487] = { + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LF] = ACTIONS(3178), + [anon_sym_CR] = ACTIONS(3178), + [anon_sym_CR_LF] = ACTIONS(3178), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym___global] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_pub] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3178), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + [sym_rune_literal] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3178), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_defer] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_DOLLARfor] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym_AT_LBRACK] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3178), + [sym___single_quote] = ACTIONS(3178), + [sym___c_double_quote] = ACTIONS(3178), + [sym___c_single_quote] = ACTIONS(3178), + [sym___r_double_quote] = ACTIONS(3178), + [sym___r_single_quote] = ACTIONS(3178), + }, + [1488] = { + [ts_builtin_sym_end] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3317), + [anon_sym_LF] = ACTIONS(3317), + [anon_sym_CR] = ACTIONS(3317), + [anon_sym_CR_LF] = ACTIONS(3317), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym___global] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_union] = ACTIONS(3317), + [anon_sym_pub] = ACTIONS(3317), + [anon_sym_mut] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_QMARK] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_go] = ACTIONS(3317), + [anon_sym_spawn] = ACTIONS(3317), + [anon_sym_json_DOTdecode] = ACTIONS(3317), + [anon_sym_LBRACK2] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_LT_DASH] = ACTIONS(3317), + [sym_none] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_nil] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_DOLLARif] = ACTIONS(3317), + [anon_sym_match] = ACTIONS(3317), + [anon_sym_select] = ACTIONS(3317), + [anon_sym_lock] = ACTIONS(3317), + [anon_sym_rlock] = ACTIONS(3317), + [anon_sym_unsafe] = ACTIONS(3317), + [anon_sym_sql] = ACTIONS(3317), + [sym_int_literal] = ACTIONS(3317), + [sym_float_literal] = ACTIONS(3317), + [sym_rune_literal] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_shared] = ACTIONS(3317), + [anon_sym_map_LBRACK] = ACTIONS(3317), + [anon_sym_chan] = ACTIONS(3317), + [anon_sym_thread] = ACTIONS(3317), + [anon_sym_atomic] = ACTIONS(3317), + [anon_sym_assert] = ACTIONS(3317), + [anon_sym_defer] = ACTIONS(3317), + [anon_sym_goto] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_DOLLARfor] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_asm] = ACTIONS(3317), + [anon_sym_AT_LBRACK] = ACTIONS(3317), + [sym___double_quote] = ACTIONS(3317), + [sym___single_quote] = ACTIONS(3317), + [sym___c_double_quote] = ACTIONS(3317), + [sym___c_single_quote] = ACTIONS(3317), + [sym___r_double_quote] = ACTIONS(3317), + [sym___r_single_quote] = ACTIONS(3317), + }, + [1489] = { + [sym_label_reference] = STATE(1576), + [ts_builtin_sym_end] = ACTIONS(4015), + [sym_identifier] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4019), + [anon_sym_CR] = ACTIONS(4019), + [anon_sym_CR_LF] = ACTIONS(4019), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4019), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_const] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4019), + [anon_sym___global] = ACTIONS(4019), + [anon_sym_type] = ACTIONS(4019), + [anon_sym_fn] = ACTIONS(4019), + [anon_sym_PLUS] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4019), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_struct] = ACTIONS(4019), + [anon_sym_union] = ACTIONS(4019), + [anon_sym_pub] = ACTIONS(4019), + [anon_sym_mut] = ACTIONS(4019), + [anon_sym_enum] = ACTIONS(4019), + [anon_sym_interface] = ACTIONS(4019), + [anon_sym_QMARK] = ACTIONS(4019), + [anon_sym_BANG] = ACTIONS(4019), + [anon_sym_go] = ACTIONS(4019), + [anon_sym_spawn] = ACTIONS(4019), + [anon_sym_json_DOTdecode] = ACTIONS(4019), + [anon_sym_LBRACK2] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_CARET] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4019), + [anon_sym_LT_DASH] = ACTIONS(4019), + [sym_none] = ACTIONS(4019), + [sym_true] = ACTIONS(4019), + [sym_false] = ACTIONS(4019), + [sym_nil] = ACTIONS(4019), + [anon_sym_if] = ACTIONS(4019), + [anon_sym_DOLLARif] = ACTIONS(4019), + [anon_sym_match] = ACTIONS(4019), + [anon_sym_select] = ACTIONS(4019), + [anon_sym_lock] = ACTIONS(4019), + [anon_sym_rlock] = ACTIONS(4019), + [anon_sym_unsafe] = ACTIONS(4019), + [anon_sym_sql] = ACTIONS(4019), + [sym_int_literal] = ACTIONS(4019), + [sym_float_literal] = ACTIONS(4019), + [sym_rune_literal] = ACTIONS(4019), + [anon_sym_AT] = ACTIONS(4019), + [anon_sym_shared] = ACTIONS(4019), + [anon_sym_map_LBRACK] = ACTIONS(4019), + [anon_sym_chan] = ACTIONS(4019), + [anon_sym_thread] = ACTIONS(4019), + [anon_sym_atomic] = ACTIONS(4019), + [anon_sym_assert] = ACTIONS(4019), + [anon_sym_defer] = ACTIONS(4019), + [anon_sym_goto] = ACTIONS(4019), + [anon_sym_break] = ACTIONS(4019), + [anon_sym_continue] = ACTIONS(4019), + [anon_sym_return] = ACTIONS(4019), + [anon_sym_DOLLARfor] = ACTIONS(4019), + [anon_sym_for] = ACTIONS(4019), + [anon_sym_POUND] = ACTIONS(4019), + [anon_sym_asm] = ACTIONS(4019), + [anon_sym_AT_LBRACK] = ACTIONS(4019), + [sym___double_quote] = ACTIONS(4019), + [sym___single_quote] = ACTIONS(4019), + [sym___c_double_quote] = ACTIONS(4019), + [sym___c_single_quote] = ACTIONS(4019), + [sym___r_double_quote] = ACTIONS(4019), + [sym___r_single_quote] = ACTIONS(4019), + }, + [1490] = { + [sym_block] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(4021), + [sym_identifier] = ACTIONS(4023), + [anon_sym_LF] = ACTIONS(4023), + [anon_sym_CR] = ACTIONS(4023), + [anon_sym_CR_LF] = ACTIONS(4023), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4023), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4023), + [anon_sym_LPAREN] = ACTIONS(4023), + [anon_sym___global] = ACTIONS(4023), + [anon_sym_type] = ACTIONS(4023), + [anon_sym_fn] = ACTIONS(4023), + [anon_sym_PLUS] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_struct] = ACTIONS(4023), + [anon_sym_union] = ACTIONS(4023), + [anon_sym_pub] = ACTIONS(4023), + [anon_sym_mut] = ACTIONS(4023), + [anon_sym_enum] = ACTIONS(4023), + [anon_sym_interface] = ACTIONS(4023), + [anon_sym_QMARK] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4023), + [anon_sym_go] = ACTIONS(4023), + [anon_sym_spawn] = ACTIONS(4023), + [anon_sym_json_DOTdecode] = ACTIONS(4023), + [anon_sym_LBRACK2] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_CARET] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4023), + [anon_sym_LT_DASH] = ACTIONS(4023), + [sym_none] = ACTIONS(4023), + [sym_true] = ACTIONS(4023), + [sym_false] = ACTIONS(4023), + [sym_nil] = ACTIONS(4023), + [anon_sym_if] = ACTIONS(4023), + [anon_sym_DOLLARif] = ACTIONS(4023), + [anon_sym_match] = ACTIONS(4023), + [anon_sym_select] = ACTIONS(4023), + [anon_sym_lock] = ACTIONS(4023), + [anon_sym_rlock] = ACTIONS(4023), + [anon_sym_unsafe] = ACTIONS(4023), + [anon_sym_sql] = ACTIONS(4023), + [sym_int_literal] = ACTIONS(4023), + [sym_float_literal] = ACTIONS(4023), + [sym_rune_literal] = ACTIONS(4023), + [anon_sym_AT] = ACTIONS(4023), + [anon_sym_shared] = ACTIONS(4023), + [anon_sym_map_LBRACK] = ACTIONS(4023), + [anon_sym_chan] = ACTIONS(4023), + [anon_sym_thread] = ACTIONS(4023), + [anon_sym_atomic] = ACTIONS(4023), + [anon_sym_assert] = ACTIONS(4023), + [anon_sym_defer] = ACTIONS(4023), + [anon_sym_goto] = ACTIONS(4023), + [anon_sym_break] = ACTIONS(4023), + [anon_sym_continue] = ACTIONS(4023), + [anon_sym_return] = ACTIONS(4023), + [anon_sym_DOLLARfor] = ACTIONS(4023), + [anon_sym_for] = ACTIONS(4023), + [anon_sym_POUND] = ACTIONS(4023), + [anon_sym_asm] = ACTIONS(4023), + [anon_sym_AT_LBRACK] = ACTIONS(4023), + [sym___double_quote] = ACTIONS(4023), + [sym___single_quote] = ACTIONS(4023), + [sym___c_double_quote] = ACTIONS(4023), + [sym___c_single_quote] = ACTIONS(4023), + [sym___r_double_quote] = ACTIONS(4023), + [sym___r_single_quote] = ACTIONS(4023), + }, + [1491] = { + [sym_block] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(4025), + [sym_identifier] = ACTIONS(4027), + [anon_sym_LF] = ACTIONS(4027), + [anon_sym_CR] = ACTIONS(4027), + [anon_sym_CR_LF] = ACTIONS(4027), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4027), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4027), + [anon_sym___global] = ACTIONS(4027), + [anon_sym_type] = ACTIONS(4027), + [anon_sym_fn] = ACTIONS(4027), + [anon_sym_PLUS] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4027), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_struct] = ACTIONS(4027), + [anon_sym_union] = ACTIONS(4027), + [anon_sym_pub] = ACTIONS(4027), + [anon_sym_mut] = ACTIONS(4027), + [anon_sym_enum] = ACTIONS(4027), + [anon_sym_interface] = ACTIONS(4027), + [anon_sym_QMARK] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4027), + [anon_sym_go] = ACTIONS(4027), + [anon_sym_spawn] = ACTIONS(4027), + [anon_sym_json_DOTdecode] = ACTIONS(4027), + [anon_sym_LBRACK2] = ACTIONS(4027), + [anon_sym_TILDE] = ACTIONS(4027), + [anon_sym_CARET] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4027), + [anon_sym_LT_DASH] = ACTIONS(4027), + [sym_none] = ACTIONS(4027), + [sym_true] = ACTIONS(4027), + [sym_false] = ACTIONS(4027), + [sym_nil] = ACTIONS(4027), + [anon_sym_if] = ACTIONS(4027), + [anon_sym_DOLLARif] = ACTIONS(4027), + [anon_sym_match] = ACTIONS(4027), + [anon_sym_select] = ACTIONS(4027), + [anon_sym_lock] = ACTIONS(4027), + [anon_sym_rlock] = ACTIONS(4027), + [anon_sym_unsafe] = ACTIONS(4027), + [anon_sym_sql] = ACTIONS(4027), + [sym_int_literal] = ACTIONS(4027), + [sym_float_literal] = ACTIONS(4027), + [sym_rune_literal] = ACTIONS(4027), + [anon_sym_AT] = ACTIONS(4027), + [anon_sym_shared] = ACTIONS(4027), + [anon_sym_map_LBRACK] = ACTIONS(4027), + [anon_sym_chan] = ACTIONS(4027), + [anon_sym_thread] = ACTIONS(4027), + [anon_sym_atomic] = ACTIONS(4027), + [anon_sym_assert] = ACTIONS(4027), + [anon_sym_defer] = ACTIONS(4027), + [anon_sym_goto] = ACTIONS(4027), + [anon_sym_break] = ACTIONS(4027), + [anon_sym_continue] = ACTIONS(4027), + [anon_sym_return] = ACTIONS(4027), + [anon_sym_DOLLARfor] = ACTIONS(4027), + [anon_sym_for] = ACTIONS(4027), + [anon_sym_POUND] = ACTIONS(4027), + [anon_sym_asm] = ACTIONS(4027), + [anon_sym_AT_LBRACK] = ACTIONS(4027), + [sym___double_quote] = ACTIONS(4027), + [sym___single_quote] = ACTIONS(4027), + [sym___c_double_quote] = ACTIONS(4027), + [sym___c_single_quote] = ACTIONS(4027), + [sym___r_double_quote] = ACTIONS(4027), + [sym___r_single_quote] = ACTIONS(4027), + }, + [1492] = { + [sym_block] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(4029), + [sym_identifier] = ACTIONS(4031), + [anon_sym_LF] = ACTIONS(4031), + [anon_sym_CR] = ACTIONS(4031), + [anon_sym_CR_LF] = ACTIONS(4031), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4031), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym___global] = ACTIONS(4031), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_fn] = ACTIONS(4031), + [anon_sym_PLUS] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(4031), + [anon_sym_STAR] = ACTIONS(4031), + [anon_sym_struct] = ACTIONS(4031), + [anon_sym_union] = ACTIONS(4031), + [anon_sym_pub] = ACTIONS(4031), + [anon_sym_mut] = ACTIONS(4031), + [anon_sym_enum] = ACTIONS(4031), + [anon_sym_interface] = ACTIONS(4031), + [anon_sym_QMARK] = ACTIONS(4031), + [anon_sym_BANG] = ACTIONS(4031), + [anon_sym_go] = ACTIONS(4031), + [anon_sym_spawn] = ACTIONS(4031), + [anon_sym_json_DOTdecode] = ACTIONS(4031), + [anon_sym_LBRACK2] = ACTIONS(4031), + [anon_sym_TILDE] = ACTIONS(4031), + [anon_sym_CARET] = ACTIONS(4031), + [anon_sym_AMP] = ACTIONS(4031), + [anon_sym_LT_DASH] = ACTIONS(4031), + [sym_none] = ACTIONS(4031), + [sym_true] = ACTIONS(4031), + [sym_false] = ACTIONS(4031), + [sym_nil] = ACTIONS(4031), + [anon_sym_if] = ACTIONS(4031), + [anon_sym_DOLLARif] = ACTIONS(4031), + [anon_sym_match] = ACTIONS(4031), + [anon_sym_select] = ACTIONS(4031), + [anon_sym_lock] = ACTIONS(4031), + [anon_sym_rlock] = ACTIONS(4031), + [anon_sym_unsafe] = ACTIONS(4031), + [anon_sym_sql] = ACTIONS(4031), + [sym_int_literal] = ACTIONS(4031), + [sym_float_literal] = ACTIONS(4031), + [sym_rune_literal] = ACTIONS(4031), + [anon_sym_AT] = ACTIONS(4031), + [anon_sym_shared] = ACTIONS(4031), + [anon_sym_map_LBRACK] = ACTIONS(4031), + [anon_sym_chan] = ACTIONS(4031), + [anon_sym_thread] = ACTIONS(4031), + [anon_sym_atomic] = ACTIONS(4031), + [anon_sym_assert] = ACTIONS(4031), + [anon_sym_defer] = ACTIONS(4031), + [anon_sym_goto] = ACTIONS(4031), + [anon_sym_break] = ACTIONS(4031), + [anon_sym_continue] = ACTIONS(4031), + [anon_sym_return] = ACTIONS(4031), + [anon_sym_DOLLARfor] = ACTIONS(4031), + [anon_sym_for] = ACTIONS(4031), + [anon_sym_POUND] = ACTIONS(4031), + [anon_sym_asm] = ACTIONS(4031), + [anon_sym_AT_LBRACK] = ACTIONS(4031), + [sym___double_quote] = ACTIONS(4031), + [sym___single_quote] = ACTIONS(4031), + [sym___c_double_quote] = ACTIONS(4031), + [sym___c_single_quote] = ACTIONS(4031), + [sym___r_double_quote] = ACTIONS(4031), + [sym___r_single_quote] = ACTIONS(4031), + }, + [1493] = { + [ts_builtin_sym_end] = ACTIONS(3058), + [sym_identifier] = ACTIONS(3060), + [anon_sym_LF] = ACTIONS(3060), + [anon_sym_CR] = ACTIONS(3060), + [anon_sym_CR_LF] = ACTIONS(3060), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym___global] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3060), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(3060), + [anon_sym_struct] = ACTIONS(3060), + [anon_sym_union] = ACTIONS(3060), + [anon_sym_pub] = ACTIONS(3060), + [anon_sym_mut] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_QMARK] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_go] = ACTIONS(3060), + [anon_sym_spawn] = ACTIONS(3060), + [anon_sym_json_DOTdecode] = ACTIONS(3060), + [anon_sym_LBRACK2] = ACTIONS(3060), + [anon_sym_TILDE] = ACTIONS(3060), + [anon_sym_CARET] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT_DASH] = ACTIONS(3060), + [sym_none] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_nil] = ACTIONS(3060), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_DOLLARif] = ACTIONS(3060), + [anon_sym_match] = ACTIONS(3060), + [anon_sym_select] = ACTIONS(3060), + [anon_sym_lock] = ACTIONS(3060), + [anon_sym_rlock] = ACTIONS(3060), + [anon_sym_unsafe] = ACTIONS(3060), + [anon_sym_sql] = ACTIONS(3060), + [sym_int_literal] = ACTIONS(3060), + [sym_float_literal] = ACTIONS(3060), + [sym_rune_literal] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3060), + [anon_sym_shared] = ACTIONS(3060), + [anon_sym_map_LBRACK] = ACTIONS(3060), + [anon_sym_chan] = ACTIONS(3060), + [anon_sym_thread] = ACTIONS(3060), + [anon_sym_atomic] = ACTIONS(3060), + [anon_sym_assert] = ACTIONS(3060), + [anon_sym_defer] = ACTIONS(3060), + [anon_sym_goto] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_DOLLARfor] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_POUND] = ACTIONS(3060), + [anon_sym_asm] = ACTIONS(3060), + [anon_sym_AT_LBRACK] = ACTIONS(3060), + [sym___double_quote] = ACTIONS(3060), + [sym___single_quote] = ACTIONS(3060), + [sym___c_double_quote] = ACTIONS(3060), + [sym___c_single_quote] = ACTIONS(3060), + [sym___r_double_quote] = ACTIONS(3060), + [sym___r_single_quote] = ACTIONS(3060), + }, + [1494] = { + [ts_builtin_sym_end] = ACTIONS(3311), + [sym_identifier] = ACTIONS(3313), + [anon_sym_LF] = ACTIONS(3313), + [anon_sym_CR] = ACTIONS(3313), + [anon_sym_CR_LF] = ACTIONS(3313), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_const] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym___global] = ACTIONS(3313), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_PIPE] = ACTIONS(3313), + [anon_sym_fn] = ACTIONS(3313), + [anon_sym_PLUS] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_struct] = ACTIONS(3313), + [anon_sym_union] = ACTIONS(3313), + [anon_sym_pub] = ACTIONS(3313), + [anon_sym_mut] = ACTIONS(3313), + [anon_sym_enum] = ACTIONS(3313), + [anon_sym_interface] = ACTIONS(3313), + [anon_sym_QMARK] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_go] = ACTIONS(3313), + [anon_sym_spawn] = ACTIONS(3313), + [anon_sym_json_DOTdecode] = ACTIONS(3313), + [anon_sym_LBRACK2] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_LT_DASH] = ACTIONS(3313), + [sym_none] = ACTIONS(3313), + [sym_true] = ACTIONS(3313), + [sym_false] = ACTIONS(3313), + [sym_nil] = ACTIONS(3313), + [anon_sym_if] = ACTIONS(3313), + [anon_sym_DOLLARif] = ACTIONS(3313), + [anon_sym_match] = ACTIONS(3313), + [anon_sym_select] = ACTIONS(3313), + [anon_sym_lock] = ACTIONS(3313), + [anon_sym_rlock] = ACTIONS(3313), + [anon_sym_unsafe] = ACTIONS(3313), + [anon_sym_sql] = ACTIONS(3313), + [sym_int_literal] = ACTIONS(3313), + [sym_float_literal] = ACTIONS(3313), + [sym_rune_literal] = ACTIONS(3313), + [anon_sym_AT] = ACTIONS(3313), + [anon_sym_shared] = ACTIONS(3313), + [anon_sym_map_LBRACK] = ACTIONS(3313), + [anon_sym_chan] = ACTIONS(3313), + [anon_sym_thread] = ACTIONS(3313), + [anon_sym_atomic] = ACTIONS(3313), + [anon_sym_assert] = ACTIONS(3313), + [anon_sym_defer] = ACTIONS(3313), + [anon_sym_goto] = ACTIONS(3313), + [anon_sym_break] = ACTIONS(3313), + [anon_sym_continue] = ACTIONS(3313), + [anon_sym_return] = ACTIONS(3313), + [anon_sym_DOLLARfor] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(3313), + [anon_sym_asm] = ACTIONS(3313), + [anon_sym_AT_LBRACK] = ACTIONS(3313), + [sym___double_quote] = ACTIONS(3313), + [sym___single_quote] = ACTIONS(3313), + [sym___c_double_quote] = ACTIONS(3313), + [sym___c_single_quote] = ACTIONS(3313), + [sym___r_double_quote] = ACTIONS(3313), + [sym___r_single_quote] = ACTIONS(3313), + }, + [1495] = { + [sym_block] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(4033), + [sym_identifier] = ACTIONS(4035), + [anon_sym_LF] = ACTIONS(4035), + [anon_sym_CR] = ACTIONS(4035), + [anon_sym_CR_LF] = ACTIONS(4035), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4035), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4035), + [anon_sym___global] = ACTIONS(4035), + [anon_sym_type] = ACTIONS(4035), + [anon_sym_fn] = ACTIONS(4035), + [anon_sym_PLUS] = ACTIONS(4035), + [anon_sym_DASH] = ACTIONS(4035), + [anon_sym_STAR] = ACTIONS(4035), + [anon_sym_struct] = ACTIONS(4035), + [anon_sym_union] = ACTIONS(4035), + [anon_sym_pub] = ACTIONS(4035), + [anon_sym_mut] = ACTIONS(4035), + [anon_sym_enum] = ACTIONS(4035), + [anon_sym_interface] = ACTIONS(4035), + [anon_sym_QMARK] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4035), + [anon_sym_go] = ACTIONS(4035), + [anon_sym_spawn] = ACTIONS(4035), + [anon_sym_json_DOTdecode] = ACTIONS(4035), + [anon_sym_LBRACK2] = ACTIONS(4035), + [anon_sym_TILDE] = ACTIONS(4035), + [anon_sym_CARET] = ACTIONS(4035), + [anon_sym_AMP] = ACTIONS(4035), + [anon_sym_LT_DASH] = ACTIONS(4035), + [sym_none] = ACTIONS(4035), + [sym_true] = ACTIONS(4035), + [sym_false] = ACTIONS(4035), + [sym_nil] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_DOLLARif] = ACTIONS(4035), + [anon_sym_match] = ACTIONS(4035), + [anon_sym_select] = ACTIONS(4035), + [anon_sym_lock] = ACTIONS(4035), + [anon_sym_rlock] = ACTIONS(4035), + [anon_sym_unsafe] = ACTIONS(4035), + [anon_sym_sql] = ACTIONS(4035), + [sym_int_literal] = ACTIONS(4035), + [sym_float_literal] = ACTIONS(4035), + [sym_rune_literal] = ACTIONS(4035), + [anon_sym_AT] = ACTIONS(4035), + [anon_sym_shared] = ACTIONS(4035), + [anon_sym_map_LBRACK] = ACTIONS(4035), + [anon_sym_chan] = ACTIONS(4035), + [anon_sym_thread] = ACTIONS(4035), + [anon_sym_atomic] = ACTIONS(4035), + [anon_sym_assert] = ACTIONS(4035), + [anon_sym_defer] = ACTIONS(4035), + [anon_sym_goto] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_DOLLARfor] = ACTIONS(4035), + [anon_sym_for] = ACTIONS(4035), + [anon_sym_POUND] = ACTIONS(4035), + [anon_sym_asm] = ACTIONS(4035), + [anon_sym_AT_LBRACK] = ACTIONS(4035), + [sym___double_quote] = ACTIONS(4035), + [sym___single_quote] = ACTIONS(4035), + [sym___c_double_quote] = ACTIONS(4035), + [sym___c_single_quote] = ACTIONS(4035), + [sym___r_double_quote] = ACTIONS(4035), + [sym___r_single_quote] = ACTIONS(4035), + }, + [1496] = { + [sym_block] = STATE(1606), + [ts_builtin_sym_end] = ACTIONS(4037), + [sym_identifier] = ACTIONS(4039), + [anon_sym_LF] = ACTIONS(4039), + [anon_sym_CR] = ACTIONS(4039), + [anon_sym_CR_LF] = ACTIONS(4039), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4039), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4039), + [anon_sym_LPAREN] = ACTIONS(4039), + [anon_sym___global] = ACTIONS(4039), + [anon_sym_type] = ACTIONS(4039), + [anon_sym_fn] = ACTIONS(4039), + [anon_sym_PLUS] = ACTIONS(4039), + [anon_sym_DASH] = ACTIONS(4039), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_struct] = ACTIONS(4039), + [anon_sym_union] = ACTIONS(4039), + [anon_sym_pub] = ACTIONS(4039), + [anon_sym_mut] = ACTIONS(4039), + [anon_sym_enum] = ACTIONS(4039), + [anon_sym_interface] = ACTIONS(4039), + [anon_sym_QMARK] = ACTIONS(4039), + [anon_sym_BANG] = ACTIONS(4039), + [anon_sym_go] = ACTIONS(4039), + [anon_sym_spawn] = ACTIONS(4039), + [anon_sym_json_DOTdecode] = ACTIONS(4039), + [anon_sym_LBRACK2] = ACTIONS(4039), + [anon_sym_TILDE] = ACTIONS(4039), + [anon_sym_CARET] = ACTIONS(4039), + [anon_sym_AMP] = ACTIONS(4039), + [anon_sym_LT_DASH] = ACTIONS(4039), + [sym_none] = ACTIONS(4039), + [sym_true] = ACTIONS(4039), + [sym_false] = ACTIONS(4039), + [sym_nil] = ACTIONS(4039), + [anon_sym_if] = ACTIONS(4039), + [anon_sym_DOLLARif] = ACTIONS(4039), + [anon_sym_match] = ACTIONS(4039), + [anon_sym_select] = ACTIONS(4039), + [anon_sym_lock] = ACTIONS(4039), + [anon_sym_rlock] = ACTIONS(4039), + [anon_sym_unsafe] = ACTIONS(4039), + [anon_sym_sql] = ACTIONS(4039), + [sym_int_literal] = ACTIONS(4039), + [sym_float_literal] = ACTIONS(4039), + [sym_rune_literal] = ACTIONS(4039), + [anon_sym_AT] = ACTIONS(4039), + [anon_sym_shared] = ACTIONS(4039), + [anon_sym_map_LBRACK] = ACTIONS(4039), + [anon_sym_chan] = ACTIONS(4039), + [anon_sym_thread] = ACTIONS(4039), + [anon_sym_atomic] = ACTIONS(4039), + [anon_sym_assert] = ACTIONS(4039), + [anon_sym_defer] = ACTIONS(4039), + [anon_sym_goto] = ACTIONS(4039), + [anon_sym_break] = ACTIONS(4039), + [anon_sym_continue] = ACTIONS(4039), + [anon_sym_return] = ACTIONS(4039), + [anon_sym_DOLLARfor] = ACTIONS(4039), + [anon_sym_for] = ACTIONS(4039), + [anon_sym_POUND] = ACTIONS(4039), + [anon_sym_asm] = ACTIONS(4039), + [anon_sym_AT_LBRACK] = ACTIONS(4039), + [sym___double_quote] = ACTIONS(4039), + [sym___single_quote] = ACTIONS(4039), + [sym___c_double_quote] = ACTIONS(4039), + [sym___c_single_quote] = ACTIONS(4039), + [sym___r_double_quote] = ACTIONS(4039), + [sym___r_single_quote] = ACTIONS(4039), + }, + [1497] = { + [ts_builtin_sym_end] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LF] = ACTIONS(3136), + [anon_sym_CR] = ACTIONS(3136), + [anon_sym_CR_LF] = ACTIONS(3136), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym___global] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_PIPE] = ACTIONS(3136), + [anon_sym_fn] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3136), + [anon_sym_struct] = ACTIONS(3136), + [anon_sym_union] = ACTIONS(3136), + [anon_sym_pub] = ACTIONS(3136), + [anon_sym_mut] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_QMARK] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_go] = ACTIONS(3136), + [anon_sym_spawn] = ACTIONS(3136), + [anon_sym_json_DOTdecode] = ACTIONS(3136), + [anon_sym_LBRACK2] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_CARET] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(3136), + [anon_sym_LT_DASH] = ACTIONS(3136), + [sym_none] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_nil] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_DOLLARif] = ACTIONS(3136), + [anon_sym_match] = ACTIONS(3136), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3136), + [anon_sym_rlock] = ACTIONS(3136), + [anon_sym_unsafe] = ACTIONS(3136), + [anon_sym_sql] = ACTIONS(3136), + [sym_int_literal] = ACTIONS(3136), + [sym_float_literal] = ACTIONS(3136), + [sym_rune_literal] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_shared] = ACTIONS(3136), + [anon_sym_map_LBRACK] = ACTIONS(3136), + [anon_sym_chan] = ACTIONS(3136), + [anon_sym_thread] = ACTIONS(3136), + [anon_sym_atomic] = ACTIONS(3136), + [anon_sym_assert] = ACTIONS(3136), + [anon_sym_defer] = ACTIONS(3136), + [anon_sym_goto] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_DOLLARfor] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_POUND] = ACTIONS(3136), + [anon_sym_asm] = ACTIONS(3136), + [anon_sym_AT_LBRACK] = ACTIONS(3136), + [sym___double_quote] = ACTIONS(3136), + [sym___single_quote] = ACTIONS(3136), + [sym___c_double_quote] = ACTIONS(3136), + [sym___c_single_quote] = ACTIONS(3136), + [sym___r_double_quote] = ACTIONS(3136), + [sym___r_single_quote] = ACTIONS(3136), + }, + [1498] = { + [sym_block] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(4041), + [sym_identifier] = ACTIONS(4043), + [anon_sym_LF] = ACTIONS(4043), + [anon_sym_CR] = ACTIONS(4043), + [anon_sym_CR_LF] = ACTIONS(4043), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4043), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4043), + [anon_sym_LPAREN] = ACTIONS(4043), + [anon_sym___global] = ACTIONS(4043), + [anon_sym_type] = ACTIONS(4043), + [anon_sym_fn] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(4043), + [anon_sym_DASH] = ACTIONS(4043), + [anon_sym_STAR] = ACTIONS(4043), + [anon_sym_struct] = ACTIONS(4043), + [anon_sym_union] = ACTIONS(4043), + [anon_sym_pub] = ACTIONS(4043), + [anon_sym_mut] = ACTIONS(4043), + [anon_sym_enum] = ACTIONS(4043), + [anon_sym_interface] = ACTIONS(4043), + [anon_sym_QMARK] = ACTIONS(4043), + [anon_sym_BANG] = ACTIONS(4043), + [anon_sym_go] = ACTIONS(4043), + [anon_sym_spawn] = ACTIONS(4043), + [anon_sym_json_DOTdecode] = ACTIONS(4043), + [anon_sym_LBRACK2] = ACTIONS(4043), + [anon_sym_TILDE] = ACTIONS(4043), + [anon_sym_CARET] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4043), + [anon_sym_LT_DASH] = ACTIONS(4043), + [sym_none] = ACTIONS(4043), + [sym_true] = ACTIONS(4043), + [sym_false] = ACTIONS(4043), + [sym_nil] = ACTIONS(4043), + [anon_sym_if] = ACTIONS(4043), + [anon_sym_DOLLARif] = ACTIONS(4043), + [anon_sym_match] = ACTIONS(4043), + [anon_sym_select] = ACTIONS(4043), + [anon_sym_lock] = ACTIONS(4043), + [anon_sym_rlock] = ACTIONS(4043), + [anon_sym_unsafe] = ACTIONS(4043), + [anon_sym_sql] = ACTIONS(4043), + [sym_int_literal] = ACTIONS(4043), + [sym_float_literal] = ACTIONS(4043), + [sym_rune_literal] = ACTIONS(4043), + [anon_sym_AT] = ACTIONS(4043), + [anon_sym_shared] = ACTIONS(4043), + [anon_sym_map_LBRACK] = ACTIONS(4043), + [anon_sym_chan] = ACTIONS(4043), + [anon_sym_thread] = ACTIONS(4043), + [anon_sym_atomic] = ACTIONS(4043), + [anon_sym_assert] = ACTIONS(4043), + [anon_sym_defer] = ACTIONS(4043), + [anon_sym_goto] = ACTIONS(4043), + [anon_sym_break] = ACTIONS(4043), + [anon_sym_continue] = ACTIONS(4043), + [anon_sym_return] = ACTIONS(4043), + [anon_sym_DOLLARfor] = ACTIONS(4043), + [anon_sym_for] = ACTIONS(4043), + [anon_sym_POUND] = ACTIONS(4043), + [anon_sym_asm] = ACTIONS(4043), + [anon_sym_AT_LBRACK] = ACTIONS(4043), + [sym___double_quote] = ACTIONS(4043), + [sym___single_quote] = ACTIONS(4043), + [sym___c_double_quote] = ACTIONS(4043), + [sym___c_single_quote] = ACTIONS(4043), + [sym___r_double_quote] = ACTIONS(4043), + [sym___r_single_quote] = ACTIONS(4043), + }, + [1499] = { + [ts_builtin_sym_end] = ACTIONS(4045), + [sym_identifier] = ACTIONS(4047), + [anon_sym_LF] = ACTIONS(4047), + [anon_sym_CR] = ACTIONS(4047), + [anon_sym_CR_LF] = ACTIONS(4047), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4047), + [anon_sym_LBRACE] = ACTIONS(4047), + [anon_sym_const] = ACTIONS(4047), + [anon_sym_LPAREN] = ACTIONS(4047), + [anon_sym___global] = ACTIONS(4047), + [anon_sym_type] = ACTIONS(4047), + [anon_sym_PIPE] = ACTIONS(4047), + [anon_sym_fn] = ACTIONS(4047), + [anon_sym_PLUS] = ACTIONS(4047), + [anon_sym_DASH] = ACTIONS(4047), + [anon_sym_STAR] = ACTIONS(4047), + [anon_sym_struct] = ACTIONS(4047), + [anon_sym_union] = ACTIONS(4047), + [anon_sym_pub] = ACTIONS(4047), + [anon_sym_mut] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(4047), + [anon_sym_interface] = ACTIONS(4047), + [anon_sym_QMARK] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_go] = ACTIONS(4047), + [anon_sym_spawn] = ACTIONS(4047), + [anon_sym_json_DOTdecode] = ACTIONS(4047), + [anon_sym_LBRACK2] = ACTIONS(4047), + [anon_sym_TILDE] = ACTIONS(4047), + [anon_sym_CARET] = ACTIONS(4047), + [anon_sym_AMP] = ACTIONS(4047), + [anon_sym_LT_DASH] = ACTIONS(4047), + [sym_none] = ACTIONS(4047), + [sym_true] = ACTIONS(4047), + [sym_false] = ACTIONS(4047), + [sym_nil] = ACTIONS(4047), + [anon_sym_if] = ACTIONS(4047), + [anon_sym_DOLLARif] = ACTIONS(4047), + [anon_sym_match] = ACTIONS(4047), + [anon_sym_select] = ACTIONS(4047), + [anon_sym_lock] = ACTIONS(4047), + [anon_sym_rlock] = ACTIONS(4047), + [anon_sym_unsafe] = ACTIONS(4047), + [anon_sym_sql] = ACTIONS(4047), + [sym_int_literal] = ACTIONS(4047), + [sym_float_literal] = ACTIONS(4047), + [sym_rune_literal] = ACTIONS(4047), + [anon_sym_AT] = ACTIONS(4047), + [anon_sym_shared] = ACTIONS(4047), + [anon_sym_map_LBRACK] = ACTIONS(4047), + [anon_sym_chan] = ACTIONS(4047), + [anon_sym_thread] = ACTIONS(4047), + [anon_sym_atomic] = ACTIONS(4047), + [anon_sym_assert] = ACTIONS(4047), + [anon_sym_defer] = ACTIONS(4047), + [anon_sym_goto] = ACTIONS(4047), + [anon_sym_break] = ACTIONS(4047), + [anon_sym_continue] = ACTIONS(4047), + [anon_sym_return] = ACTIONS(4047), + [anon_sym_DOLLARfor] = ACTIONS(4047), + [anon_sym_for] = ACTIONS(4047), + [anon_sym_POUND] = ACTIONS(4047), + [anon_sym_asm] = ACTIONS(4047), + [anon_sym_AT_LBRACK] = ACTIONS(4047), + [sym___double_quote] = ACTIONS(4047), + [sym___single_quote] = ACTIONS(4047), + [sym___c_double_quote] = ACTIONS(4047), + [sym___c_single_quote] = ACTIONS(4047), + [sym___r_double_quote] = ACTIONS(4047), + [sym___r_single_quote] = ACTIONS(4047), + }, + [1500] = { + [sym_block] = STATE(1535), + [ts_builtin_sym_end] = ACTIONS(4049), + [sym_identifier] = ACTIONS(4051), + [anon_sym_LF] = ACTIONS(4051), + [anon_sym_CR] = ACTIONS(4051), + [anon_sym_CR_LF] = ACTIONS(4051), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4051), + [anon_sym_LPAREN] = ACTIONS(4051), + [anon_sym___global] = ACTIONS(4051), + [anon_sym_type] = ACTIONS(4051), + [anon_sym_fn] = ACTIONS(4051), + [anon_sym_PLUS] = ACTIONS(4051), + [anon_sym_DASH] = ACTIONS(4051), + [anon_sym_STAR] = ACTIONS(4051), + [anon_sym_struct] = ACTIONS(4051), + [anon_sym_union] = ACTIONS(4051), + [anon_sym_pub] = ACTIONS(4051), + [anon_sym_mut] = ACTIONS(4051), + [anon_sym_enum] = ACTIONS(4051), + [anon_sym_interface] = ACTIONS(4051), + [anon_sym_QMARK] = ACTIONS(4051), + [anon_sym_BANG] = ACTIONS(4051), + [anon_sym_go] = ACTIONS(4051), + [anon_sym_spawn] = ACTIONS(4051), + [anon_sym_json_DOTdecode] = ACTIONS(4051), + [anon_sym_LBRACK2] = ACTIONS(4051), + [anon_sym_TILDE] = ACTIONS(4051), + [anon_sym_CARET] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4051), + [anon_sym_LT_DASH] = ACTIONS(4051), + [sym_none] = ACTIONS(4051), + [sym_true] = ACTIONS(4051), + [sym_false] = ACTIONS(4051), + [sym_nil] = ACTIONS(4051), + [anon_sym_if] = ACTIONS(4051), + [anon_sym_DOLLARif] = ACTIONS(4051), + [anon_sym_match] = ACTIONS(4051), + [anon_sym_select] = ACTIONS(4051), + [anon_sym_lock] = ACTIONS(4051), + [anon_sym_rlock] = ACTIONS(4051), + [anon_sym_unsafe] = ACTIONS(4051), + [anon_sym_sql] = ACTIONS(4051), + [sym_int_literal] = ACTIONS(4051), + [sym_float_literal] = ACTIONS(4051), + [sym_rune_literal] = ACTIONS(4051), + [anon_sym_AT] = ACTIONS(4051), + [anon_sym_shared] = ACTIONS(4051), + [anon_sym_map_LBRACK] = ACTIONS(4051), + [anon_sym_chan] = ACTIONS(4051), + [anon_sym_thread] = ACTIONS(4051), + [anon_sym_atomic] = ACTIONS(4051), + [anon_sym_assert] = ACTIONS(4051), + [anon_sym_defer] = ACTIONS(4051), + [anon_sym_goto] = ACTIONS(4051), + [anon_sym_break] = ACTIONS(4051), + [anon_sym_continue] = ACTIONS(4051), + [anon_sym_return] = ACTIONS(4051), + [anon_sym_DOLLARfor] = ACTIONS(4051), + [anon_sym_for] = ACTIONS(4051), + [anon_sym_POUND] = ACTIONS(4051), + [anon_sym_asm] = ACTIONS(4051), + [anon_sym_AT_LBRACK] = ACTIONS(4051), + [sym___double_quote] = ACTIONS(4051), + [sym___single_quote] = ACTIONS(4051), + [sym___c_double_quote] = ACTIONS(4051), + [sym___c_single_quote] = ACTIONS(4051), + [sym___r_double_quote] = ACTIONS(4051), + [sym___r_single_quote] = ACTIONS(4051), + }, + [1501] = { + [ts_builtin_sym_end] = ACTIONS(3150), + [sym_identifier] = ACTIONS(3152), + [anon_sym_LF] = ACTIONS(3152), + [anon_sym_CR] = ACTIONS(3152), + [anon_sym_CR_LF] = ACTIONS(3152), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym___global] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(3152), + [anon_sym_union] = ACTIONS(3152), + [anon_sym_pub] = ACTIONS(3152), + [anon_sym_mut] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_go] = ACTIONS(3152), + [anon_sym_spawn] = ACTIONS(3152), + [anon_sym_json_DOTdecode] = ACTIONS(3152), + [anon_sym_LBRACK2] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_LT_DASH] = ACTIONS(3152), + [sym_none] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_nil] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_DOLLARif] = ACTIONS(3152), + [anon_sym_match] = ACTIONS(3152), + [anon_sym_select] = ACTIONS(3152), + [anon_sym_lock] = ACTIONS(3152), + [anon_sym_rlock] = ACTIONS(3152), + [anon_sym_unsafe] = ACTIONS(3152), + [anon_sym_sql] = ACTIONS(3152), + [sym_int_literal] = ACTIONS(3152), + [sym_float_literal] = ACTIONS(3152), + [sym_rune_literal] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_shared] = ACTIONS(3152), + [anon_sym_map_LBRACK] = ACTIONS(3152), + [anon_sym_chan] = ACTIONS(3152), + [anon_sym_thread] = ACTIONS(3152), + [anon_sym_atomic] = ACTIONS(3152), + [anon_sym_assert] = ACTIONS(3152), + [anon_sym_defer] = ACTIONS(3152), + [anon_sym_goto] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_DOLLARfor] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(3152), + [anon_sym_asm] = ACTIONS(3152), + [anon_sym_AT_LBRACK] = ACTIONS(3152), + [sym___double_quote] = ACTIONS(3152), + [sym___single_quote] = ACTIONS(3152), + [sym___c_double_quote] = ACTIONS(3152), + [sym___c_single_quote] = ACTIONS(3152), + [sym___r_double_quote] = ACTIONS(3152), + [sym___r_single_quote] = ACTIONS(3152), + }, + [1502] = { + [sym_block] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4055), + [anon_sym_LF] = ACTIONS(4055), + [anon_sym_CR] = ACTIONS(4055), + [anon_sym_CR_LF] = ACTIONS(4055), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4055), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4055), + [anon_sym_LPAREN] = ACTIONS(4055), + [anon_sym___global] = ACTIONS(4055), + [anon_sym_type] = ACTIONS(4055), + [anon_sym_fn] = ACTIONS(4055), + [anon_sym_PLUS] = ACTIONS(4055), + [anon_sym_DASH] = ACTIONS(4055), + [anon_sym_STAR] = ACTIONS(4055), + [anon_sym_struct] = ACTIONS(4055), + [anon_sym_union] = ACTIONS(4055), + [anon_sym_pub] = ACTIONS(4055), + [anon_sym_mut] = ACTIONS(4055), + [anon_sym_enum] = ACTIONS(4055), + [anon_sym_interface] = ACTIONS(4055), + [anon_sym_QMARK] = ACTIONS(4055), + [anon_sym_BANG] = ACTIONS(4055), + [anon_sym_go] = ACTIONS(4055), + [anon_sym_spawn] = ACTIONS(4055), + [anon_sym_json_DOTdecode] = ACTIONS(4055), + [anon_sym_LBRACK2] = ACTIONS(4055), + [anon_sym_TILDE] = ACTIONS(4055), + [anon_sym_CARET] = ACTIONS(4055), + [anon_sym_AMP] = ACTIONS(4055), + [anon_sym_LT_DASH] = ACTIONS(4055), + [sym_none] = ACTIONS(4055), + [sym_true] = ACTIONS(4055), + [sym_false] = ACTIONS(4055), + [sym_nil] = ACTIONS(4055), + [anon_sym_if] = ACTIONS(4055), + [anon_sym_DOLLARif] = ACTIONS(4055), + [anon_sym_match] = ACTIONS(4055), + [anon_sym_select] = ACTIONS(4055), + [anon_sym_lock] = ACTIONS(4055), + [anon_sym_rlock] = ACTIONS(4055), + [anon_sym_unsafe] = ACTIONS(4055), + [anon_sym_sql] = ACTIONS(4055), + [sym_int_literal] = ACTIONS(4055), + [sym_float_literal] = ACTIONS(4055), + [sym_rune_literal] = ACTIONS(4055), + [anon_sym_AT] = ACTIONS(4055), + [anon_sym_shared] = ACTIONS(4055), + [anon_sym_map_LBRACK] = ACTIONS(4055), + [anon_sym_chan] = ACTIONS(4055), + [anon_sym_thread] = ACTIONS(4055), + [anon_sym_atomic] = ACTIONS(4055), + [anon_sym_assert] = ACTIONS(4055), + [anon_sym_defer] = ACTIONS(4055), + [anon_sym_goto] = ACTIONS(4055), + [anon_sym_break] = ACTIONS(4055), + [anon_sym_continue] = ACTIONS(4055), + [anon_sym_return] = ACTIONS(4055), + [anon_sym_DOLLARfor] = ACTIONS(4055), + [anon_sym_for] = ACTIONS(4055), + [anon_sym_POUND] = ACTIONS(4055), + [anon_sym_asm] = ACTIONS(4055), + [anon_sym_AT_LBRACK] = ACTIONS(4055), + [sym___double_quote] = ACTIONS(4055), + [sym___single_quote] = ACTIONS(4055), + [sym___c_double_quote] = ACTIONS(4055), + [sym___c_single_quote] = ACTIONS(4055), + [sym___r_double_quote] = ACTIONS(4055), + [sym___r_single_quote] = ACTIONS(4055), + }, [1503] = { - [ts_builtin_sym_end] = ACTIONS(3970), - [sym_identifier] = ACTIONS(3972), - [anon_sym_LF] = ACTIONS(3972), - [anon_sym_CR] = ACTIONS(3972), - [anon_sym_CR_LF] = ACTIONS(3972), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_LBRACE] = ACTIONS(3972), - [anon_sym_const] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3972), - [anon_sym___global] = ACTIONS(3972), - [anon_sym_type] = ACTIONS(3972), - [anon_sym_fn] = ACTIONS(3972), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_struct] = ACTIONS(3972), - [anon_sym_union] = ACTIONS(3972), - [anon_sym_pub] = ACTIONS(3972), - [anon_sym_mut] = ACTIONS(3972), - [anon_sym_enum] = ACTIONS(3972), - [anon_sym_interface] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_go] = ACTIONS(3972), - [anon_sym_spawn] = ACTIONS(3972), - [anon_sym_json_DOTdecode] = ACTIONS(3972), - [anon_sym_LBRACK2] = ACTIONS(3972), - [anon_sym_TILDE] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_DASH] = ACTIONS(3972), - [sym_none] = ACTIONS(3972), - [sym_true] = ACTIONS(3972), - [sym_false] = ACTIONS(3972), - [sym_nil] = ACTIONS(3972), - [anon_sym_if] = ACTIONS(3972), - [anon_sym_DOLLARif] = ACTIONS(3972), - [anon_sym_match] = ACTIONS(3972), - [anon_sym_select] = ACTIONS(3972), - [anon_sym_lock] = ACTIONS(3972), - [anon_sym_rlock] = ACTIONS(3972), - [anon_sym_unsafe] = ACTIONS(3972), - [anon_sym_sql] = ACTIONS(3972), - [sym_int_literal] = ACTIONS(3972), - [sym_float_literal] = ACTIONS(3972), - [sym_rune_literal] = ACTIONS(3972), - [anon_sym_AT] = ACTIONS(3972), - [anon_sym_shared] = ACTIONS(3972), - [anon_sym_map_LBRACK] = ACTIONS(3972), - [anon_sym_chan] = ACTIONS(3972), - [anon_sym_thread] = ACTIONS(3972), - [anon_sym_atomic] = ACTIONS(3972), - [anon_sym_assert] = ACTIONS(3972), - [anon_sym_defer] = ACTIONS(3972), - [anon_sym_goto] = ACTIONS(3972), - [anon_sym_break] = ACTIONS(3972), - [anon_sym_continue] = ACTIONS(3972), - [anon_sym_return] = ACTIONS(3972), - [anon_sym_DOLLARfor] = ACTIONS(3972), - [anon_sym_for] = ACTIONS(3972), - [anon_sym_POUND] = ACTIONS(3972), - [anon_sym_asm] = ACTIONS(3972), - [anon_sym_AT_LBRACK] = ACTIONS(3972), - [sym___double_quote] = ACTIONS(3972), - [sym___single_quote] = ACTIONS(3972), - [sym___c_double_quote] = ACTIONS(3972), - [sym___c_single_quote] = ACTIONS(3972), - [sym___r_double_quote] = ACTIONS(3972), - [sym___r_single_quote] = ACTIONS(3972), + [ts_builtin_sym_end] = ACTIONS(3138), + [sym_identifier] = ACTIONS(3140), + [anon_sym_LF] = ACTIONS(3140), + [anon_sym_CR] = ACTIONS(3140), + [anon_sym_CR_LF] = ACTIONS(3140), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_const] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym___global] = ACTIONS(3140), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3140), + [anon_sym_fn] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_struct] = ACTIONS(3140), + [anon_sym_union] = ACTIONS(3140), + [anon_sym_pub] = ACTIONS(3140), + [anon_sym_mut] = ACTIONS(3140), + [anon_sym_enum] = ACTIONS(3140), + [anon_sym_interface] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_go] = ACTIONS(3140), + [anon_sym_spawn] = ACTIONS(3140), + [anon_sym_json_DOTdecode] = ACTIONS(3140), + [anon_sym_LBRACK2] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3140), + [sym_none] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_nil] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_DOLLARif] = ACTIONS(3140), + [anon_sym_match] = ACTIONS(3140), + [anon_sym_select] = ACTIONS(3140), + [anon_sym_lock] = ACTIONS(3140), + [anon_sym_rlock] = ACTIONS(3140), + [anon_sym_unsafe] = ACTIONS(3140), + [anon_sym_sql] = ACTIONS(3140), + [sym_int_literal] = ACTIONS(3140), + [sym_float_literal] = ACTIONS(3140), + [sym_rune_literal] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_shared] = ACTIONS(3140), + [anon_sym_map_LBRACK] = ACTIONS(3140), + [anon_sym_chan] = ACTIONS(3140), + [anon_sym_thread] = ACTIONS(3140), + [anon_sym_atomic] = ACTIONS(3140), + [anon_sym_assert] = ACTIONS(3140), + [anon_sym_defer] = ACTIONS(3140), + [anon_sym_goto] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_DOLLARfor] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3140), + [anon_sym_POUND] = ACTIONS(3140), + [anon_sym_asm] = ACTIONS(3140), + [anon_sym_AT_LBRACK] = ACTIONS(3140), + [sym___double_quote] = ACTIONS(3140), + [sym___single_quote] = ACTIONS(3140), + [sym___c_double_quote] = ACTIONS(3140), + [sym___c_single_quote] = ACTIONS(3140), + [sym___r_double_quote] = ACTIONS(3140), + [sym___r_single_quote] = ACTIONS(3140), }, [1504] = { - [ts_builtin_sym_end] = ACTIONS(3974), - [sym_identifier] = ACTIONS(3976), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_CR] = ACTIONS(3976), - [anon_sym_CR_LF] = ACTIONS(3976), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_const] = ACTIONS(3976), - [anon_sym_LPAREN] = ACTIONS(3976), - [anon_sym___global] = ACTIONS(3976), - [anon_sym_type] = ACTIONS(3976), - [anon_sym_fn] = ACTIONS(3976), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_struct] = ACTIONS(3976), - [anon_sym_union] = ACTIONS(3976), - [anon_sym_pub] = ACTIONS(3976), - [anon_sym_mut] = ACTIONS(3976), - [anon_sym_enum] = ACTIONS(3976), - [anon_sym_interface] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_go] = ACTIONS(3976), - [anon_sym_spawn] = ACTIONS(3976), - [anon_sym_json_DOTdecode] = ACTIONS(3976), - [anon_sym_LBRACK2] = ACTIONS(3976), - [anon_sym_TILDE] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_DASH] = ACTIONS(3976), - [sym_none] = ACTIONS(3976), - [sym_true] = ACTIONS(3976), - [sym_false] = ACTIONS(3976), - [sym_nil] = ACTIONS(3976), - [anon_sym_if] = ACTIONS(3976), - [anon_sym_DOLLARif] = ACTIONS(3976), - [anon_sym_match] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_lock] = ACTIONS(3976), - [anon_sym_rlock] = ACTIONS(3976), - [anon_sym_unsafe] = ACTIONS(3976), - [anon_sym_sql] = ACTIONS(3976), - [sym_int_literal] = ACTIONS(3976), - [sym_float_literal] = ACTIONS(3976), - [sym_rune_literal] = ACTIONS(3976), - [anon_sym_AT] = ACTIONS(3976), - [anon_sym_shared] = ACTIONS(3976), - [anon_sym_map_LBRACK] = ACTIONS(3976), - [anon_sym_chan] = ACTIONS(3976), - [anon_sym_thread] = ACTIONS(3976), - [anon_sym_atomic] = ACTIONS(3976), - [anon_sym_assert] = ACTIONS(3976), - [anon_sym_defer] = ACTIONS(3976), - [anon_sym_goto] = ACTIONS(3976), - [anon_sym_break] = ACTIONS(3976), - [anon_sym_continue] = ACTIONS(3976), - [anon_sym_return] = ACTIONS(3976), - [anon_sym_DOLLARfor] = ACTIONS(3976), - [anon_sym_for] = ACTIONS(3976), - [anon_sym_POUND] = ACTIONS(3976), - [anon_sym_asm] = ACTIONS(3976), - [anon_sym_AT_LBRACK] = ACTIONS(3976), - [sym___double_quote] = ACTIONS(3976), - [sym___single_quote] = ACTIONS(3976), - [sym___c_double_quote] = ACTIONS(3976), - [sym___c_single_quote] = ACTIONS(3976), - [sym___r_double_quote] = ACTIONS(3976), - [sym___r_single_quote] = ACTIONS(3976), + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2984), + [anon_sym_CR] = ACTIONS(2984), + [anon_sym_CR_LF] = ACTIONS(2984), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym___global] = ACTIONS(2984), + [anon_sym_type] = ACTIONS(2984), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_pub] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_interface] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2984), + [anon_sym_spawn] = ACTIONS(2984), + [anon_sym_json_DOTdecode] = ACTIONS(2984), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2984), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2984), + [sym_none] = ACTIONS(2984), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_nil] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_DOLLARif] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_select] = ACTIONS(2984), + [anon_sym_lock] = ACTIONS(2984), + [anon_sym_rlock] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_sql] = ACTIONS(2984), + [sym_int_literal] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2984), + [sym_rune_literal] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2984), + [anon_sym_shared] = ACTIONS(2984), + [anon_sym_map_LBRACK] = ACTIONS(2984), + [anon_sym_chan] = ACTIONS(2984), + [anon_sym_thread] = ACTIONS(2984), + [anon_sym_atomic] = ACTIONS(2984), + [anon_sym_assert] = ACTIONS(2984), + [anon_sym_defer] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_DOLLARfor] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym_AT_LBRACK] = ACTIONS(2984), + [sym___double_quote] = ACTIONS(2984), + [sym___single_quote] = ACTIONS(2984), + [sym___c_double_quote] = ACTIONS(2984), + [sym___c_single_quote] = ACTIONS(2984), + [sym___r_double_quote] = ACTIONS(2984), + [sym___r_single_quote] = ACTIONS(2984), }, [1505] = { - [ts_builtin_sym_end] = ACTIONS(3978), - [sym_identifier] = ACTIONS(3980), - [anon_sym_LF] = ACTIONS(3980), - [anon_sym_CR] = ACTIONS(3980), - [anon_sym_CR_LF] = ACTIONS(3980), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_LBRACE] = ACTIONS(3980), - [anon_sym_const] = ACTIONS(3980), - [anon_sym_LPAREN] = ACTIONS(3980), - [anon_sym___global] = ACTIONS(3980), - [anon_sym_type] = ACTIONS(3980), - [anon_sym_fn] = ACTIONS(3980), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_struct] = ACTIONS(3980), - [anon_sym_union] = ACTIONS(3980), - [anon_sym_pub] = ACTIONS(3980), - [anon_sym_mut] = ACTIONS(3980), - [anon_sym_enum] = ACTIONS(3980), - [anon_sym_interface] = ACTIONS(3980), - [anon_sym_QMARK] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_go] = ACTIONS(3980), - [anon_sym_spawn] = ACTIONS(3980), - [anon_sym_json_DOTdecode] = ACTIONS(3980), - [anon_sym_LBRACK2] = ACTIONS(3980), - [anon_sym_TILDE] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_DASH] = ACTIONS(3980), - [sym_none] = ACTIONS(3980), - [sym_true] = ACTIONS(3980), - [sym_false] = ACTIONS(3980), - [sym_nil] = ACTIONS(3980), - [anon_sym_if] = ACTIONS(3980), - [anon_sym_DOLLARif] = ACTIONS(3980), - [anon_sym_match] = ACTIONS(3980), - [anon_sym_select] = ACTIONS(3980), - [anon_sym_lock] = ACTIONS(3980), - [anon_sym_rlock] = ACTIONS(3980), - [anon_sym_unsafe] = ACTIONS(3980), - [anon_sym_sql] = ACTIONS(3980), - [sym_int_literal] = ACTIONS(3980), - [sym_float_literal] = ACTIONS(3980), - [sym_rune_literal] = ACTIONS(3980), - [anon_sym_AT] = ACTIONS(3980), - [anon_sym_shared] = ACTIONS(3980), - [anon_sym_map_LBRACK] = ACTIONS(3980), - [anon_sym_chan] = ACTIONS(3980), - [anon_sym_thread] = ACTIONS(3980), - [anon_sym_atomic] = ACTIONS(3980), - [anon_sym_assert] = ACTIONS(3980), - [anon_sym_defer] = ACTIONS(3980), - [anon_sym_goto] = ACTIONS(3980), - [anon_sym_break] = ACTIONS(3980), - [anon_sym_continue] = ACTIONS(3980), - [anon_sym_return] = ACTIONS(3980), - [anon_sym_DOLLARfor] = ACTIONS(3980), - [anon_sym_for] = ACTIONS(3980), - [anon_sym_POUND] = ACTIONS(3980), - [anon_sym_asm] = ACTIONS(3980), - [anon_sym_AT_LBRACK] = ACTIONS(3980), - [sym___double_quote] = ACTIONS(3980), - [sym___single_quote] = ACTIONS(3980), - [sym___c_double_quote] = ACTIONS(3980), - [sym___c_single_quote] = ACTIONS(3980), - [sym___r_double_quote] = ACTIONS(3980), - [sym___r_single_quote] = ACTIONS(3980), + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_CR] = ACTIONS(2980), + [anon_sym_CR_LF] = ACTIONS(2980), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym___global] = ACTIONS(2980), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_pub] = ACTIONS(2980), + [anon_sym_mut] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_interface] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_go] = ACTIONS(2980), + [anon_sym_spawn] = ACTIONS(2980), + [anon_sym_json_DOTdecode] = ACTIONS(2980), + [anon_sym_LBRACK2] = ACTIONS(2980), + [anon_sym_TILDE] = ACTIONS(2980), + [anon_sym_CARET] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_LT_DASH] = ACTIONS(2980), + [sym_none] = ACTIONS(2980), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [sym_nil] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_DOLLARif] = ACTIONS(2980), + [anon_sym_match] = ACTIONS(2980), + [anon_sym_select] = ACTIONS(2980), + [anon_sym_lock] = ACTIONS(2980), + [anon_sym_rlock] = ACTIONS(2980), + [anon_sym_unsafe] = ACTIONS(2980), + [anon_sym_sql] = ACTIONS(2980), + [sym_int_literal] = ACTIONS(2980), + [sym_float_literal] = ACTIONS(2980), + [sym_rune_literal] = ACTIONS(2980), + [anon_sym_AT] = ACTIONS(2980), + [anon_sym_shared] = ACTIONS(2980), + [anon_sym_map_LBRACK] = ACTIONS(2980), + [anon_sym_chan] = ACTIONS(2980), + [anon_sym_thread] = ACTIONS(2980), + [anon_sym_atomic] = ACTIONS(2980), + [anon_sym_assert] = ACTIONS(2980), + [anon_sym_defer] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_DOLLARfor] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym_AT_LBRACK] = ACTIONS(2980), + [sym___double_quote] = ACTIONS(2980), + [sym___single_quote] = ACTIONS(2980), + [sym___c_double_quote] = ACTIONS(2980), + [sym___c_single_quote] = ACTIONS(2980), + [sym___r_double_quote] = ACTIONS(2980), + [sym___r_single_quote] = ACTIONS(2980), }, [1506] = { - [ts_builtin_sym_end] = ACTIONS(3982), - [sym_identifier] = ACTIONS(3984), - [anon_sym_LF] = ACTIONS(3984), - [anon_sym_CR] = ACTIONS(3984), - [anon_sym_CR_LF] = ACTIONS(3984), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3984), - [anon_sym_LBRACE] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_LPAREN] = ACTIONS(3984), - [anon_sym___global] = ACTIONS(3984), - [anon_sym_type] = ACTIONS(3984), - [anon_sym_fn] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_pub] = ACTIONS(3984), - [anon_sym_mut] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_interface] = ACTIONS(3984), - [anon_sym_QMARK] = ACTIONS(3984), - [anon_sym_BANG] = ACTIONS(3984), - [anon_sym_go] = ACTIONS(3984), - [anon_sym_spawn] = ACTIONS(3984), - [anon_sym_json_DOTdecode] = ACTIONS(3984), - [anon_sym_LBRACK2] = ACTIONS(3984), - [anon_sym_TILDE] = ACTIONS(3984), - [anon_sym_CARET] = ACTIONS(3984), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_LT_DASH] = ACTIONS(3984), - [sym_none] = ACTIONS(3984), - [sym_true] = ACTIONS(3984), - [sym_false] = ACTIONS(3984), - [sym_nil] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_DOLLARif] = ACTIONS(3984), - [anon_sym_match] = ACTIONS(3984), - [anon_sym_select] = ACTIONS(3984), - [anon_sym_lock] = ACTIONS(3984), - [anon_sym_rlock] = ACTIONS(3984), - [anon_sym_unsafe] = ACTIONS(3984), - [anon_sym_sql] = ACTIONS(3984), - [sym_int_literal] = ACTIONS(3984), - [sym_float_literal] = ACTIONS(3984), - [sym_rune_literal] = ACTIONS(3984), - [anon_sym_AT] = ACTIONS(3984), - [anon_sym_shared] = ACTIONS(3984), - [anon_sym_map_LBRACK] = ACTIONS(3984), - [anon_sym_chan] = ACTIONS(3984), - [anon_sym_thread] = ACTIONS(3984), - [anon_sym_atomic] = ACTIONS(3984), - [anon_sym_assert] = ACTIONS(3984), - [anon_sym_defer] = ACTIONS(3984), - [anon_sym_goto] = ACTIONS(3984), - [anon_sym_break] = ACTIONS(3984), - [anon_sym_continue] = ACTIONS(3984), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_DOLLARfor] = ACTIONS(3984), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_POUND] = ACTIONS(3984), - [anon_sym_asm] = ACTIONS(3984), - [anon_sym_AT_LBRACK] = ACTIONS(3984), - [sym___double_quote] = ACTIONS(3984), - [sym___single_quote] = ACTIONS(3984), - [sym___c_double_quote] = ACTIONS(3984), - [sym___c_single_quote] = ACTIONS(3984), - [sym___r_double_quote] = ACTIONS(3984), - [sym___r_single_quote] = ACTIONS(3984), + [ts_builtin_sym_end] = ACTIONS(2974), + [sym_identifier] = ACTIONS(2976), + [anon_sym_LF] = ACTIONS(2976), + [anon_sym_CR] = ACTIONS(2976), + [anon_sym_CR_LF] = ACTIONS(2976), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym___global] = ACTIONS(2976), + [anon_sym_type] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2976), + [anon_sym_fn] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_pub] = ACTIONS(2976), + [anon_sym_mut] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_interface] = ACTIONS(2976), + [anon_sym_QMARK] = ACTIONS(2976), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_go] = ACTIONS(2976), + [anon_sym_spawn] = ACTIONS(2976), + [anon_sym_json_DOTdecode] = ACTIONS(2976), + [anon_sym_LBRACK2] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_CARET] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_LT_DASH] = ACTIONS(2976), + [sym_none] = ACTIONS(2976), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [sym_nil] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_DOLLARif] = ACTIONS(2976), + [anon_sym_match] = ACTIONS(2976), + [anon_sym_select] = ACTIONS(2976), + [anon_sym_lock] = ACTIONS(2976), + [anon_sym_rlock] = ACTIONS(2976), + [anon_sym_unsafe] = ACTIONS(2976), + [anon_sym_sql] = ACTIONS(2976), + [sym_int_literal] = ACTIONS(2976), + [sym_float_literal] = ACTIONS(2976), + [sym_rune_literal] = ACTIONS(2976), + [anon_sym_AT] = ACTIONS(2976), + [anon_sym_shared] = ACTIONS(2976), + [anon_sym_map_LBRACK] = ACTIONS(2976), + [anon_sym_chan] = ACTIONS(2976), + [anon_sym_thread] = ACTIONS(2976), + [anon_sym_atomic] = ACTIONS(2976), + [anon_sym_assert] = ACTIONS(2976), + [anon_sym_defer] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_DOLLARfor] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_POUND] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym_AT_LBRACK] = ACTIONS(2976), + [sym___double_quote] = ACTIONS(2976), + [sym___single_quote] = ACTIONS(2976), + [sym___c_double_quote] = ACTIONS(2976), + [sym___c_single_quote] = ACTIONS(2976), + [sym___r_double_quote] = ACTIONS(2976), + [sym___r_single_quote] = ACTIONS(2976), }, [1507] = { - [ts_builtin_sym_end] = ACTIONS(3986), - [sym_identifier] = ACTIONS(3988), - [anon_sym_LF] = ACTIONS(3988), - [anon_sym_CR] = ACTIONS(3988), - [anon_sym_CR_LF] = ACTIONS(3988), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym___global] = ACTIONS(3988), - [anon_sym_type] = ACTIONS(3988), - [anon_sym_fn] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_pub] = ACTIONS(3988), - [anon_sym_mut] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_interface] = ACTIONS(3988), - [anon_sym_QMARK] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3988), - [anon_sym_go] = ACTIONS(3988), - [anon_sym_spawn] = ACTIONS(3988), - [anon_sym_json_DOTdecode] = ACTIONS(3988), - [anon_sym_LBRACK2] = ACTIONS(3988), - [anon_sym_TILDE] = ACTIONS(3988), - [anon_sym_CARET] = ACTIONS(3988), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_LT_DASH] = ACTIONS(3988), - [sym_none] = ACTIONS(3988), - [sym_true] = ACTIONS(3988), - [sym_false] = ACTIONS(3988), - [sym_nil] = ACTIONS(3988), - [anon_sym_if] = ACTIONS(3988), - [anon_sym_DOLLARif] = ACTIONS(3988), - [anon_sym_match] = ACTIONS(3988), - [anon_sym_select] = ACTIONS(3988), - [anon_sym_lock] = ACTIONS(3988), - [anon_sym_rlock] = ACTIONS(3988), - [anon_sym_unsafe] = ACTIONS(3988), - [anon_sym_sql] = ACTIONS(3988), - [sym_int_literal] = ACTIONS(3988), - [sym_float_literal] = ACTIONS(3988), - [sym_rune_literal] = ACTIONS(3988), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_shared] = ACTIONS(3988), - [anon_sym_map_LBRACK] = ACTIONS(3988), - [anon_sym_chan] = ACTIONS(3988), - [anon_sym_thread] = ACTIONS(3988), - [anon_sym_atomic] = ACTIONS(3988), - [anon_sym_assert] = ACTIONS(3988), - [anon_sym_defer] = ACTIONS(3988), - [anon_sym_goto] = ACTIONS(3988), - [anon_sym_break] = ACTIONS(3988), - [anon_sym_continue] = ACTIONS(3988), - [anon_sym_return] = ACTIONS(3988), - [anon_sym_DOLLARfor] = ACTIONS(3988), - [anon_sym_for] = ACTIONS(3988), - [anon_sym_POUND] = ACTIONS(3988), - [anon_sym_asm] = ACTIONS(3988), - [anon_sym_AT_LBRACK] = ACTIONS(3988), - [sym___double_quote] = ACTIONS(3988), - [sym___single_quote] = ACTIONS(3988), - [sym___c_double_quote] = ACTIONS(3988), - [sym___c_single_quote] = ACTIONS(3988), - [sym___r_double_quote] = ACTIONS(3988), - [sym___r_single_quote] = ACTIONS(3988), + [sym_block] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(4057), + [sym_identifier] = ACTIONS(4059), + [anon_sym_LF] = ACTIONS(4059), + [anon_sym_CR] = ACTIONS(4059), + [anon_sym_CR_LF] = ACTIONS(4059), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4059), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4059), + [anon_sym___global] = ACTIONS(4059), + [anon_sym_type] = ACTIONS(4059), + [anon_sym_fn] = ACTIONS(4059), + [anon_sym_PLUS] = ACTIONS(4059), + [anon_sym_DASH] = ACTIONS(4059), + [anon_sym_STAR] = ACTIONS(4059), + [anon_sym_struct] = ACTIONS(4059), + [anon_sym_union] = ACTIONS(4059), + [anon_sym_pub] = ACTIONS(4059), + [anon_sym_mut] = ACTIONS(4059), + [anon_sym_enum] = ACTIONS(4059), + [anon_sym_interface] = ACTIONS(4059), + [anon_sym_QMARK] = ACTIONS(4059), + [anon_sym_BANG] = ACTIONS(4059), + [anon_sym_go] = ACTIONS(4059), + [anon_sym_spawn] = ACTIONS(4059), + [anon_sym_json_DOTdecode] = ACTIONS(4059), + [anon_sym_LBRACK2] = ACTIONS(4059), + [anon_sym_TILDE] = ACTIONS(4059), + [anon_sym_CARET] = ACTIONS(4059), + [anon_sym_AMP] = ACTIONS(4059), + [anon_sym_LT_DASH] = ACTIONS(4059), + [sym_none] = ACTIONS(4059), + [sym_true] = ACTIONS(4059), + [sym_false] = ACTIONS(4059), + [sym_nil] = ACTIONS(4059), + [anon_sym_if] = ACTIONS(4059), + [anon_sym_DOLLARif] = ACTIONS(4059), + [anon_sym_match] = ACTIONS(4059), + [anon_sym_select] = ACTIONS(4059), + [anon_sym_lock] = ACTIONS(4059), + [anon_sym_rlock] = ACTIONS(4059), + [anon_sym_unsafe] = ACTIONS(4059), + [anon_sym_sql] = ACTIONS(4059), + [sym_int_literal] = ACTIONS(4059), + [sym_float_literal] = ACTIONS(4059), + [sym_rune_literal] = ACTIONS(4059), + [anon_sym_AT] = ACTIONS(4059), + [anon_sym_shared] = ACTIONS(4059), + [anon_sym_map_LBRACK] = ACTIONS(4059), + [anon_sym_chan] = ACTIONS(4059), + [anon_sym_thread] = ACTIONS(4059), + [anon_sym_atomic] = ACTIONS(4059), + [anon_sym_assert] = ACTIONS(4059), + [anon_sym_defer] = ACTIONS(4059), + [anon_sym_goto] = ACTIONS(4059), + [anon_sym_break] = ACTIONS(4059), + [anon_sym_continue] = ACTIONS(4059), + [anon_sym_return] = ACTIONS(4059), + [anon_sym_DOLLARfor] = ACTIONS(4059), + [anon_sym_for] = ACTIONS(4059), + [anon_sym_POUND] = ACTIONS(4059), + [anon_sym_asm] = ACTIONS(4059), + [anon_sym_AT_LBRACK] = ACTIONS(4059), + [sym___double_quote] = ACTIONS(4059), + [sym___single_quote] = ACTIONS(4059), + [sym___c_double_quote] = ACTIONS(4059), + [sym___c_single_quote] = ACTIONS(4059), + [sym___r_double_quote] = ACTIONS(4059), + [sym___r_single_quote] = ACTIONS(4059), }, [1508] = { - [ts_builtin_sym_end] = ACTIONS(3990), - [sym_identifier] = ACTIONS(3992), - [anon_sym_LF] = ACTIONS(3992), - [anon_sym_CR] = ACTIONS(3992), - [anon_sym_CR_LF] = ACTIONS(3992), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3992), - [anon_sym_LBRACE] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3992), - [anon_sym___global] = ACTIONS(3992), - [anon_sym_type] = ACTIONS(3992), - [anon_sym_fn] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(3992), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_pub] = ACTIONS(3992), - [anon_sym_mut] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_interface] = ACTIONS(3992), - [anon_sym_QMARK] = ACTIONS(3992), - [anon_sym_BANG] = ACTIONS(3992), - [anon_sym_go] = ACTIONS(3992), - [anon_sym_spawn] = ACTIONS(3992), - [anon_sym_json_DOTdecode] = ACTIONS(3992), - [anon_sym_LBRACK2] = ACTIONS(3992), - [anon_sym_TILDE] = ACTIONS(3992), - [anon_sym_CARET] = ACTIONS(3992), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_LT_DASH] = ACTIONS(3992), - [sym_none] = ACTIONS(3992), - [sym_true] = ACTIONS(3992), - [sym_false] = ACTIONS(3992), - [sym_nil] = ACTIONS(3992), - [anon_sym_if] = ACTIONS(3992), - [anon_sym_DOLLARif] = ACTIONS(3992), - [anon_sym_match] = ACTIONS(3992), - [anon_sym_select] = ACTIONS(3992), - [anon_sym_lock] = ACTIONS(3992), - [anon_sym_rlock] = ACTIONS(3992), - [anon_sym_unsafe] = ACTIONS(3992), - [anon_sym_sql] = ACTIONS(3992), - [sym_int_literal] = ACTIONS(3992), - [sym_float_literal] = ACTIONS(3992), - [sym_rune_literal] = ACTIONS(3992), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_shared] = ACTIONS(3992), - [anon_sym_map_LBRACK] = ACTIONS(3992), - [anon_sym_chan] = ACTIONS(3992), - [anon_sym_thread] = ACTIONS(3992), - [anon_sym_atomic] = ACTIONS(3992), - [anon_sym_assert] = ACTIONS(3992), - [anon_sym_defer] = ACTIONS(3992), - [anon_sym_goto] = ACTIONS(3992), - [anon_sym_break] = ACTIONS(3992), - [anon_sym_continue] = ACTIONS(3992), - [anon_sym_return] = ACTIONS(3992), - [anon_sym_DOLLARfor] = ACTIONS(3992), - [anon_sym_for] = ACTIONS(3992), - [anon_sym_POUND] = ACTIONS(3992), - [anon_sym_asm] = ACTIONS(3992), - [anon_sym_AT_LBRACK] = ACTIONS(3992), - [sym___double_quote] = ACTIONS(3992), - [sym___single_quote] = ACTIONS(3992), - [sym___c_double_quote] = ACTIONS(3992), - [sym___c_single_quote] = ACTIONS(3992), - [sym___r_double_quote] = ACTIONS(3992), - [sym___r_single_quote] = ACTIONS(3992), + [sym_block] = STATE(1568), + [ts_builtin_sym_end] = ACTIONS(4061), + [sym_identifier] = ACTIONS(4063), + [anon_sym_LF] = ACTIONS(4063), + [anon_sym_CR] = ACTIONS(4063), + [anon_sym_CR_LF] = ACTIONS(4063), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4063), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4063), + [anon_sym___global] = ACTIONS(4063), + [anon_sym_type] = ACTIONS(4063), + [anon_sym_fn] = ACTIONS(4063), + [anon_sym_PLUS] = ACTIONS(4063), + [anon_sym_DASH] = ACTIONS(4063), + [anon_sym_STAR] = ACTIONS(4063), + [anon_sym_struct] = ACTIONS(4063), + [anon_sym_union] = ACTIONS(4063), + [anon_sym_pub] = ACTIONS(4063), + [anon_sym_mut] = ACTIONS(4063), + [anon_sym_enum] = ACTIONS(4063), + [anon_sym_interface] = ACTIONS(4063), + [anon_sym_QMARK] = ACTIONS(4063), + [anon_sym_BANG] = ACTIONS(4063), + [anon_sym_go] = ACTIONS(4063), + [anon_sym_spawn] = ACTIONS(4063), + [anon_sym_json_DOTdecode] = ACTIONS(4063), + [anon_sym_LBRACK2] = ACTIONS(4063), + [anon_sym_TILDE] = ACTIONS(4063), + [anon_sym_CARET] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4063), + [anon_sym_LT_DASH] = ACTIONS(4063), + [sym_none] = ACTIONS(4063), + [sym_true] = ACTIONS(4063), + [sym_false] = ACTIONS(4063), + [sym_nil] = ACTIONS(4063), + [anon_sym_if] = ACTIONS(4063), + [anon_sym_DOLLARif] = ACTIONS(4063), + [anon_sym_match] = ACTIONS(4063), + [anon_sym_select] = ACTIONS(4063), + [anon_sym_lock] = ACTIONS(4063), + [anon_sym_rlock] = ACTIONS(4063), + [anon_sym_unsafe] = ACTIONS(4063), + [anon_sym_sql] = ACTIONS(4063), + [sym_int_literal] = ACTIONS(4063), + [sym_float_literal] = ACTIONS(4063), + [sym_rune_literal] = ACTIONS(4063), + [anon_sym_AT] = ACTIONS(4063), + [anon_sym_shared] = ACTIONS(4063), + [anon_sym_map_LBRACK] = ACTIONS(4063), + [anon_sym_chan] = ACTIONS(4063), + [anon_sym_thread] = ACTIONS(4063), + [anon_sym_atomic] = ACTIONS(4063), + [anon_sym_assert] = ACTIONS(4063), + [anon_sym_defer] = ACTIONS(4063), + [anon_sym_goto] = ACTIONS(4063), + [anon_sym_break] = ACTIONS(4063), + [anon_sym_continue] = ACTIONS(4063), + [anon_sym_return] = ACTIONS(4063), + [anon_sym_DOLLARfor] = ACTIONS(4063), + [anon_sym_for] = ACTIONS(4063), + [anon_sym_POUND] = ACTIONS(4063), + [anon_sym_asm] = ACTIONS(4063), + [anon_sym_AT_LBRACK] = ACTIONS(4063), + [sym___double_quote] = ACTIONS(4063), + [sym___single_quote] = ACTIONS(4063), + [sym___c_double_quote] = ACTIONS(4063), + [sym___c_single_quote] = ACTIONS(4063), + [sym___r_double_quote] = ACTIONS(4063), + [sym___r_single_quote] = ACTIONS(4063), }, [1509] = { - [ts_builtin_sym_end] = ACTIONS(3994), - [sym_identifier] = ACTIONS(3996), - [anon_sym_LF] = ACTIONS(3996), - [anon_sym_CR] = ACTIONS(3996), - [anon_sym_CR_LF] = ACTIONS(3996), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3996), - [anon_sym_const] = ACTIONS(3996), - [anon_sym_LPAREN] = ACTIONS(3996), - [anon_sym___global] = ACTIONS(3996), - [anon_sym_type] = ACTIONS(3996), - [anon_sym_fn] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3996), - [anon_sym_DASH] = ACTIONS(3996), - [anon_sym_STAR] = ACTIONS(3996), - [anon_sym_struct] = ACTIONS(3996), - [anon_sym_union] = ACTIONS(3996), - [anon_sym_pub] = ACTIONS(3996), - [anon_sym_mut] = ACTIONS(3996), - [anon_sym_enum] = ACTIONS(3996), - [anon_sym_interface] = ACTIONS(3996), - [anon_sym_QMARK] = ACTIONS(3996), - [anon_sym_BANG] = ACTIONS(3996), - [anon_sym_go] = ACTIONS(3996), - [anon_sym_spawn] = ACTIONS(3996), - [anon_sym_json_DOTdecode] = ACTIONS(3996), - [anon_sym_LBRACK2] = ACTIONS(3996), - [anon_sym_TILDE] = ACTIONS(3996), - [anon_sym_CARET] = ACTIONS(3996), - [anon_sym_AMP] = ACTIONS(3996), - [anon_sym_LT_DASH] = ACTIONS(3996), - [sym_none] = ACTIONS(3996), - [sym_true] = ACTIONS(3996), - [sym_false] = ACTIONS(3996), - [sym_nil] = ACTIONS(3996), - [anon_sym_if] = ACTIONS(3996), - [anon_sym_DOLLARif] = ACTIONS(3996), - [anon_sym_match] = ACTIONS(3996), - [anon_sym_select] = ACTIONS(3996), - [anon_sym_lock] = ACTIONS(3996), - [anon_sym_rlock] = ACTIONS(3996), - [anon_sym_unsafe] = ACTIONS(3996), - [anon_sym_sql] = ACTIONS(3996), - [sym_int_literal] = ACTIONS(3996), - [sym_float_literal] = ACTIONS(3996), - [sym_rune_literal] = ACTIONS(3996), - [anon_sym_AT] = ACTIONS(3996), - [anon_sym_shared] = ACTIONS(3996), - [anon_sym_map_LBRACK] = ACTIONS(3996), - [anon_sym_chan] = ACTIONS(3996), - [anon_sym_thread] = ACTIONS(3996), - [anon_sym_atomic] = ACTIONS(3996), - [anon_sym_assert] = ACTIONS(3996), - [anon_sym_defer] = ACTIONS(3996), - [anon_sym_goto] = ACTIONS(3996), - [anon_sym_break] = ACTIONS(3996), - [anon_sym_continue] = ACTIONS(3996), - [anon_sym_return] = ACTIONS(3996), - [anon_sym_DOLLARfor] = ACTIONS(3996), - [anon_sym_for] = ACTIONS(3996), - [anon_sym_POUND] = ACTIONS(3996), - [anon_sym_asm] = ACTIONS(3996), - [anon_sym_AT_LBRACK] = ACTIONS(3996), - [sym___double_quote] = ACTIONS(3996), - [sym___single_quote] = ACTIONS(3996), - [sym___c_double_quote] = ACTIONS(3996), - [sym___c_single_quote] = ACTIONS(3996), - [sym___r_double_quote] = ACTIONS(3996), - [sym___r_single_quote] = ACTIONS(3996), + [ts_builtin_sym_end] = ACTIONS(3939), + [sym_identifier] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3941), + [anon_sym_CR] = ACTIONS(3941), + [anon_sym_CR_LF] = ACTIONS(3941), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_const] = ACTIONS(3941), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym___global] = ACTIONS(3941), + [anon_sym_type] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_fn] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_struct] = ACTIONS(3941), + [anon_sym_union] = ACTIONS(3941), + [anon_sym_pub] = ACTIONS(3941), + [anon_sym_mut] = ACTIONS(3941), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_interface] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_go] = ACTIONS(3941), + [anon_sym_spawn] = ACTIONS(3941), + [anon_sym_json_DOTdecode] = ACTIONS(3941), + [anon_sym_LBRACK2] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_CARET] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [sym_none] = ACTIONS(3941), + [sym_true] = ACTIONS(3941), + [sym_false] = ACTIONS(3941), + [sym_nil] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_DOLLARif] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_select] = ACTIONS(3941), + [anon_sym_lock] = ACTIONS(3941), + [anon_sym_rlock] = ACTIONS(3941), + [anon_sym_unsafe] = ACTIONS(3941), + [anon_sym_sql] = ACTIONS(3941), + [sym_int_literal] = ACTIONS(3941), + [sym_float_literal] = ACTIONS(3941), + [sym_rune_literal] = ACTIONS(3941), + [anon_sym_AT] = ACTIONS(3941), + [anon_sym_shared] = ACTIONS(3941), + [anon_sym_map_LBRACK] = ACTIONS(3941), + [anon_sym_chan] = ACTIONS(3941), + [anon_sym_thread] = ACTIONS(3941), + [anon_sym_atomic] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_defer] = ACTIONS(3941), + [anon_sym_goto] = ACTIONS(3941), + [anon_sym_break] = ACTIONS(3941), + [anon_sym_continue] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_DOLLARfor] = ACTIONS(3941), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_POUND] = ACTIONS(3941), + [anon_sym_asm] = ACTIONS(3941), + [anon_sym_AT_LBRACK] = ACTIONS(3941), + [sym___double_quote] = ACTIONS(3941), + [sym___single_quote] = ACTIONS(3941), + [sym___c_double_quote] = ACTIONS(3941), + [sym___c_single_quote] = ACTIONS(3941), + [sym___r_double_quote] = ACTIONS(3941), + [sym___r_single_quote] = ACTIONS(3941), }, [1510] = { - [ts_builtin_sym_end] = ACTIONS(3998), - [sym_identifier] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(4000), - [anon_sym_CR] = ACTIONS(4000), - [anon_sym_CR_LF] = ACTIONS(4000), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_LPAREN] = ACTIONS(4000), - [anon_sym___global] = ACTIONS(4000), - [anon_sym_type] = ACTIONS(4000), - [anon_sym_fn] = ACTIONS(4000), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_pub] = ACTIONS(4000), - [anon_sym_mut] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_interface] = ACTIONS(4000), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_BANG] = ACTIONS(4000), - [anon_sym_go] = ACTIONS(4000), - [anon_sym_spawn] = ACTIONS(4000), - [anon_sym_json_DOTdecode] = ACTIONS(4000), - [anon_sym_LBRACK2] = ACTIONS(4000), - [anon_sym_TILDE] = ACTIONS(4000), - [anon_sym_CARET] = ACTIONS(4000), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_LT_DASH] = ACTIONS(4000), - [sym_none] = ACTIONS(4000), - [sym_true] = ACTIONS(4000), - [sym_false] = ACTIONS(4000), - [sym_nil] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_DOLLARif] = ACTIONS(4000), - [anon_sym_match] = ACTIONS(4000), - [anon_sym_select] = ACTIONS(4000), - [anon_sym_lock] = ACTIONS(4000), - [anon_sym_rlock] = ACTIONS(4000), - [anon_sym_unsafe] = ACTIONS(4000), - [anon_sym_sql] = ACTIONS(4000), - [sym_int_literal] = ACTIONS(4000), - [sym_float_literal] = ACTIONS(4000), - [sym_rune_literal] = ACTIONS(4000), - [anon_sym_AT] = ACTIONS(4000), - [anon_sym_shared] = ACTIONS(4000), - [anon_sym_map_LBRACK] = ACTIONS(4000), - [anon_sym_chan] = ACTIONS(4000), - [anon_sym_thread] = ACTIONS(4000), - [anon_sym_atomic] = ACTIONS(4000), - [anon_sym_assert] = ACTIONS(4000), - [anon_sym_defer] = ACTIONS(4000), - [anon_sym_goto] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_DOLLARfor] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_POUND] = ACTIONS(4000), - [anon_sym_asm] = ACTIONS(4000), - [anon_sym_AT_LBRACK] = ACTIONS(4000), - [sym___double_quote] = ACTIONS(4000), - [sym___single_quote] = ACTIONS(4000), - [sym___c_double_quote] = ACTIONS(4000), - [sym___c_single_quote] = ACTIONS(4000), - [sym___r_double_quote] = ACTIONS(4000), - [sym___r_single_quote] = ACTIONS(4000), + [ts_builtin_sym_end] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LF] = ACTIONS(3104), + [anon_sym_CR] = ACTIONS(3104), + [anon_sym_CR_LF] = ACTIONS(3104), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym___global] = ACTIONS(3104), + [anon_sym_type] = ACTIONS(3104), + [anon_sym_PIPE] = ACTIONS(3104), + [anon_sym_fn] = ACTIONS(3104), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_pub] = ACTIONS(3104), + [anon_sym_mut] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_interface] = ACTIONS(3104), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_go] = ACTIONS(3104), + [anon_sym_spawn] = ACTIONS(3104), + [anon_sym_json_DOTdecode] = ACTIONS(3104), + [anon_sym_LBRACK2] = ACTIONS(3104), + [anon_sym_TILDE] = ACTIONS(3104), + [anon_sym_CARET] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3104), + [anon_sym_LT_DASH] = ACTIONS(3104), + [sym_none] = ACTIONS(3104), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_nil] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_DOLLARif] = ACTIONS(3104), + [anon_sym_match] = ACTIONS(3104), + [anon_sym_select] = ACTIONS(3104), + [anon_sym_lock] = ACTIONS(3104), + [anon_sym_rlock] = ACTIONS(3104), + [anon_sym_unsafe] = ACTIONS(3104), + [anon_sym_sql] = ACTIONS(3104), + [sym_int_literal] = ACTIONS(3104), + [sym_float_literal] = ACTIONS(3104), + [sym_rune_literal] = ACTIONS(3104), + [anon_sym_AT] = ACTIONS(3104), + [anon_sym_shared] = ACTIONS(3104), + [anon_sym_map_LBRACK] = ACTIONS(3104), + [anon_sym_chan] = ACTIONS(3104), + [anon_sym_thread] = ACTIONS(3104), + [anon_sym_atomic] = ACTIONS(3104), + [anon_sym_assert] = ACTIONS(3104), + [anon_sym_defer] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_DOLLARfor] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_POUND] = ACTIONS(3104), + [anon_sym_asm] = ACTIONS(3104), + [anon_sym_AT_LBRACK] = ACTIONS(3104), + [sym___double_quote] = ACTIONS(3104), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3104), + [sym___c_single_quote] = ACTIONS(3104), + [sym___r_double_quote] = ACTIONS(3104), + [sym___r_single_quote] = ACTIONS(3104), }, [1511] = { - [ts_builtin_sym_end] = ACTIONS(4002), - [sym_identifier] = ACTIONS(4004), - [anon_sym_LF] = ACTIONS(4004), - [anon_sym_CR] = ACTIONS(4004), - [anon_sym_CR_LF] = ACTIONS(4004), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4004), - [anon_sym_LBRACE] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_LPAREN] = ACTIONS(4004), - [anon_sym___global] = ACTIONS(4004), - [anon_sym_type] = ACTIONS(4004), - [anon_sym_fn] = ACTIONS(4004), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_pub] = ACTIONS(4004), - [anon_sym_mut] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_interface] = ACTIONS(4004), - [anon_sym_QMARK] = ACTIONS(4004), - [anon_sym_BANG] = ACTIONS(4004), - [anon_sym_go] = ACTIONS(4004), - [anon_sym_spawn] = ACTIONS(4004), - [anon_sym_json_DOTdecode] = ACTIONS(4004), - [anon_sym_LBRACK2] = ACTIONS(4004), - [anon_sym_TILDE] = ACTIONS(4004), - [anon_sym_CARET] = ACTIONS(4004), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_LT_DASH] = ACTIONS(4004), - [sym_none] = ACTIONS(4004), - [sym_true] = ACTIONS(4004), - [sym_false] = ACTIONS(4004), - [sym_nil] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(4004), - [anon_sym_DOLLARif] = ACTIONS(4004), - [anon_sym_match] = ACTIONS(4004), - [anon_sym_select] = ACTIONS(4004), - [anon_sym_lock] = ACTIONS(4004), - [anon_sym_rlock] = ACTIONS(4004), - [anon_sym_unsafe] = ACTIONS(4004), - [anon_sym_sql] = ACTIONS(4004), - [sym_int_literal] = ACTIONS(4004), - [sym_float_literal] = ACTIONS(4004), - [sym_rune_literal] = ACTIONS(4004), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_shared] = ACTIONS(4004), - [anon_sym_map_LBRACK] = ACTIONS(4004), - [anon_sym_chan] = ACTIONS(4004), - [anon_sym_thread] = ACTIONS(4004), - [anon_sym_atomic] = ACTIONS(4004), - [anon_sym_assert] = ACTIONS(4004), - [anon_sym_defer] = ACTIONS(4004), - [anon_sym_goto] = ACTIONS(4004), - [anon_sym_break] = ACTIONS(4004), - [anon_sym_continue] = ACTIONS(4004), - [anon_sym_return] = ACTIONS(4004), - [anon_sym_DOLLARfor] = ACTIONS(4004), - [anon_sym_for] = ACTIONS(4004), - [anon_sym_POUND] = ACTIONS(4004), - [anon_sym_asm] = ACTIONS(4004), - [anon_sym_AT_LBRACK] = ACTIONS(4004), - [sym___double_quote] = ACTIONS(4004), - [sym___single_quote] = ACTIONS(4004), - [sym___c_double_quote] = ACTIONS(4004), - [sym___c_single_quote] = ACTIONS(4004), - [sym___r_double_quote] = ACTIONS(4004), - [sym___r_single_quote] = ACTIONS(4004), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LF] = ACTIONS(2956), + [anon_sym_CR] = ACTIONS(2956), + [anon_sym_CR_LF] = ACTIONS(2956), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym___global] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_fn] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_pub] = ACTIONS(2956), + [anon_sym_mut] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_go] = ACTIONS(2956), + [anon_sym_spawn] = ACTIONS(2956), + [anon_sym_json_DOTdecode] = ACTIONS(2956), + [anon_sym_LBRACK2] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_LT_DASH] = ACTIONS(2956), + [sym_none] = ACTIONS(2956), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [sym_nil] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_DOLLARif] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2956), + [anon_sym_select] = ACTIONS(2956), + [anon_sym_lock] = ACTIONS(2956), + [anon_sym_rlock] = ACTIONS(2956), + [anon_sym_unsafe] = ACTIONS(2956), + [anon_sym_sql] = ACTIONS(2956), + [sym_int_literal] = ACTIONS(2956), + [sym_float_literal] = ACTIONS(2956), + [sym_rune_literal] = ACTIONS(2956), + [anon_sym_AT] = ACTIONS(2956), + [anon_sym_shared] = ACTIONS(2956), + [anon_sym_map_LBRACK] = ACTIONS(2956), + [anon_sym_chan] = ACTIONS(2956), + [anon_sym_thread] = ACTIONS(2956), + [anon_sym_atomic] = ACTIONS(2956), + [anon_sym_assert] = ACTIONS(2956), + [anon_sym_defer] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_DOLLARfor] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym_AT_LBRACK] = ACTIONS(2956), + [sym___double_quote] = ACTIONS(2956), + [sym___single_quote] = ACTIONS(2956), + [sym___c_double_quote] = ACTIONS(2956), + [sym___c_single_quote] = ACTIONS(2956), + [sym___r_double_quote] = ACTIONS(2956), + [sym___r_single_quote] = ACTIONS(2956), }, [1512] = { - [ts_builtin_sym_end] = ACTIONS(4006), - [sym_identifier] = ACTIONS(4008), - [anon_sym_LF] = ACTIONS(4008), - [anon_sym_CR] = ACTIONS(4008), - [anon_sym_CR_LF] = ACTIONS(4008), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4008), - [anon_sym_LBRACE] = ACTIONS(4008), - [anon_sym_const] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym___global] = ACTIONS(4008), - [anon_sym_type] = ACTIONS(4008), - [anon_sym_fn] = ACTIONS(4008), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4008), - [anon_sym_struct] = ACTIONS(4008), - [anon_sym_union] = ACTIONS(4008), - [anon_sym_pub] = ACTIONS(4008), - [anon_sym_mut] = ACTIONS(4008), - [anon_sym_enum] = ACTIONS(4008), - [anon_sym_interface] = ACTIONS(4008), - [anon_sym_QMARK] = ACTIONS(4008), - [anon_sym_BANG] = ACTIONS(4008), - [anon_sym_go] = ACTIONS(4008), - [anon_sym_spawn] = ACTIONS(4008), - [anon_sym_json_DOTdecode] = ACTIONS(4008), - [anon_sym_LBRACK2] = ACTIONS(4008), - [anon_sym_TILDE] = ACTIONS(4008), - [anon_sym_CARET] = ACTIONS(4008), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_LT_DASH] = ACTIONS(4008), - [sym_none] = ACTIONS(4008), - [sym_true] = ACTIONS(4008), - [sym_false] = ACTIONS(4008), - [sym_nil] = ACTIONS(4008), - [anon_sym_if] = ACTIONS(4008), - [anon_sym_DOLLARif] = ACTIONS(4008), - [anon_sym_match] = ACTIONS(4008), - [anon_sym_select] = ACTIONS(4008), - [anon_sym_lock] = ACTIONS(4008), - [anon_sym_rlock] = ACTIONS(4008), - [anon_sym_unsafe] = ACTIONS(4008), - [anon_sym_sql] = ACTIONS(4008), - [sym_int_literal] = ACTIONS(4008), - [sym_float_literal] = ACTIONS(4008), - [sym_rune_literal] = ACTIONS(4008), - [anon_sym_AT] = ACTIONS(4008), - [anon_sym_shared] = ACTIONS(4008), - [anon_sym_map_LBRACK] = ACTIONS(4008), - [anon_sym_chan] = ACTIONS(4008), - [anon_sym_thread] = ACTIONS(4008), - [anon_sym_atomic] = ACTIONS(4008), - [anon_sym_assert] = ACTIONS(4008), - [anon_sym_defer] = ACTIONS(4008), - [anon_sym_goto] = ACTIONS(4008), - [anon_sym_break] = ACTIONS(4008), - [anon_sym_continue] = ACTIONS(4008), - [anon_sym_return] = ACTIONS(4008), - [anon_sym_DOLLARfor] = ACTIONS(4008), - [anon_sym_for] = ACTIONS(4008), - [anon_sym_POUND] = ACTIONS(4008), - [anon_sym_asm] = ACTIONS(4008), - [anon_sym_AT_LBRACK] = ACTIONS(4008), - [sym___double_quote] = ACTIONS(4008), - [sym___single_quote] = ACTIONS(4008), - [sym___c_double_quote] = ACTIONS(4008), - [sym___c_single_quote] = ACTIONS(4008), - [sym___r_double_quote] = ACTIONS(4008), - [sym___r_single_quote] = ACTIONS(4008), + [sym_block] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(4065), + [sym_identifier] = ACTIONS(4067), + [anon_sym_LF] = ACTIONS(4067), + [anon_sym_CR] = ACTIONS(4067), + [anon_sym_CR_LF] = ACTIONS(4067), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4067), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4067), + [anon_sym_LPAREN] = ACTIONS(4067), + [anon_sym___global] = ACTIONS(4067), + [anon_sym_type] = ACTIONS(4067), + [anon_sym_fn] = ACTIONS(4067), + [anon_sym_PLUS] = ACTIONS(4067), + [anon_sym_DASH] = ACTIONS(4067), + [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_struct] = ACTIONS(4067), + [anon_sym_union] = ACTIONS(4067), + [anon_sym_pub] = ACTIONS(4067), + [anon_sym_mut] = ACTIONS(4067), + [anon_sym_enum] = ACTIONS(4067), + [anon_sym_interface] = ACTIONS(4067), + [anon_sym_QMARK] = ACTIONS(4067), + [anon_sym_BANG] = ACTIONS(4067), + [anon_sym_go] = ACTIONS(4067), + [anon_sym_spawn] = ACTIONS(4067), + [anon_sym_json_DOTdecode] = ACTIONS(4067), + [anon_sym_LBRACK2] = ACTIONS(4067), + [anon_sym_TILDE] = ACTIONS(4067), + [anon_sym_CARET] = ACTIONS(4067), + [anon_sym_AMP] = ACTIONS(4067), + [anon_sym_LT_DASH] = ACTIONS(4067), + [sym_none] = ACTIONS(4067), + [sym_true] = ACTIONS(4067), + [sym_false] = ACTIONS(4067), + [sym_nil] = ACTIONS(4067), + [anon_sym_if] = ACTIONS(4067), + [anon_sym_DOLLARif] = ACTIONS(4067), + [anon_sym_match] = ACTIONS(4067), + [anon_sym_select] = ACTIONS(4067), + [anon_sym_lock] = ACTIONS(4067), + [anon_sym_rlock] = ACTIONS(4067), + [anon_sym_unsafe] = ACTIONS(4067), + [anon_sym_sql] = ACTIONS(4067), + [sym_int_literal] = ACTIONS(4067), + [sym_float_literal] = ACTIONS(4067), + [sym_rune_literal] = ACTIONS(4067), + [anon_sym_AT] = ACTIONS(4067), + [anon_sym_shared] = ACTIONS(4067), + [anon_sym_map_LBRACK] = ACTIONS(4067), + [anon_sym_chan] = ACTIONS(4067), + [anon_sym_thread] = ACTIONS(4067), + [anon_sym_atomic] = ACTIONS(4067), + [anon_sym_assert] = ACTIONS(4067), + [anon_sym_defer] = ACTIONS(4067), + [anon_sym_goto] = ACTIONS(4067), + [anon_sym_break] = ACTIONS(4067), + [anon_sym_continue] = ACTIONS(4067), + [anon_sym_return] = ACTIONS(4067), + [anon_sym_DOLLARfor] = ACTIONS(4067), + [anon_sym_for] = ACTIONS(4067), + [anon_sym_POUND] = ACTIONS(4067), + [anon_sym_asm] = ACTIONS(4067), + [anon_sym_AT_LBRACK] = ACTIONS(4067), + [sym___double_quote] = ACTIONS(4067), + [sym___single_quote] = ACTIONS(4067), + [sym___c_double_quote] = ACTIONS(4067), + [sym___c_single_quote] = ACTIONS(4067), + [sym___r_double_quote] = ACTIONS(4067), + [sym___r_single_quote] = ACTIONS(4067), }, [1513] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(617), + [sym_label_reference] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(4069), + [sym_identifier] = ACTIONS(4017), + [anon_sym_LF] = ACTIONS(4071), + [anon_sym_CR] = ACTIONS(4071), + [anon_sym_CR_LF] = ACTIONS(4071), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4071), + [anon_sym_LBRACE] = ACTIONS(4071), + [anon_sym_const] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(4071), + [anon_sym___global] = ACTIONS(4071), + [anon_sym_type] = ACTIONS(4071), + [anon_sym_fn] = ACTIONS(4071), + [anon_sym_PLUS] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_struct] = ACTIONS(4071), + [anon_sym_union] = ACTIONS(4071), + [anon_sym_pub] = ACTIONS(4071), + [anon_sym_mut] = ACTIONS(4071), + [anon_sym_enum] = ACTIONS(4071), + [anon_sym_interface] = ACTIONS(4071), + [anon_sym_QMARK] = ACTIONS(4071), + [anon_sym_BANG] = ACTIONS(4071), + [anon_sym_go] = ACTIONS(4071), + [anon_sym_spawn] = ACTIONS(4071), + [anon_sym_json_DOTdecode] = ACTIONS(4071), + [anon_sym_LBRACK2] = ACTIONS(4071), + [anon_sym_TILDE] = ACTIONS(4071), + [anon_sym_CARET] = ACTIONS(4071), + [anon_sym_AMP] = ACTIONS(4071), + [anon_sym_LT_DASH] = ACTIONS(4071), + [sym_none] = ACTIONS(4071), + [sym_true] = ACTIONS(4071), + [sym_false] = ACTIONS(4071), + [sym_nil] = ACTIONS(4071), + [anon_sym_if] = ACTIONS(4071), + [anon_sym_DOLLARif] = ACTIONS(4071), + [anon_sym_match] = ACTIONS(4071), + [anon_sym_select] = ACTIONS(4071), + [anon_sym_lock] = ACTIONS(4071), + [anon_sym_rlock] = ACTIONS(4071), + [anon_sym_unsafe] = ACTIONS(4071), + [anon_sym_sql] = ACTIONS(4071), + [sym_int_literal] = ACTIONS(4071), + [sym_float_literal] = ACTIONS(4071), + [sym_rune_literal] = ACTIONS(4071), + [anon_sym_AT] = ACTIONS(4071), + [anon_sym_shared] = ACTIONS(4071), + [anon_sym_map_LBRACK] = ACTIONS(4071), + [anon_sym_chan] = ACTIONS(4071), + [anon_sym_thread] = ACTIONS(4071), + [anon_sym_atomic] = ACTIONS(4071), + [anon_sym_assert] = ACTIONS(4071), + [anon_sym_defer] = ACTIONS(4071), + [anon_sym_goto] = ACTIONS(4071), + [anon_sym_break] = ACTIONS(4071), + [anon_sym_continue] = ACTIONS(4071), + [anon_sym_return] = ACTIONS(4071), + [anon_sym_DOLLARfor] = ACTIONS(4071), + [anon_sym_for] = ACTIONS(4071), + [anon_sym_POUND] = ACTIONS(4071), + [anon_sym_asm] = ACTIONS(4071), + [anon_sym_AT_LBRACK] = ACTIONS(4071), + [sym___double_quote] = ACTIONS(4071), + [sym___single_quote] = ACTIONS(4071), + [sym___c_double_quote] = ACTIONS(4071), + [sym___c_single_quote] = ACTIONS(4071), + [sym___r_double_quote] = ACTIONS(4071), + [sym___r_single_quote] = ACTIONS(4071), }, [1514] = { - [ts_builtin_sym_end] = ACTIONS(4010), - [sym_identifier] = ACTIONS(4012), - [anon_sym_LF] = ACTIONS(4012), - [anon_sym_CR] = ACTIONS(4012), - [anon_sym_CR_LF] = ACTIONS(4012), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4012), - [anon_sym_LBRACE] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_LPAREN] = ACTIONS(4012), - [anon_sym___global] = ACTIONS(4012), - [anon_sym_type] = ACTIONS(4012), - [anon_sym_fn] = ACTIONS(4012), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_pub] = ACTIONS(4012), - [anon_sym_mut] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_interface] = ACTIONS(4012), - [anon_sym_QMARK] = ACTIONS(4012), - [anon_sym_BANG] = ACTIONS(4012), - [anon_sym_go] = ACTIONS(4012), - [anon_sym_spawn] = ACTIONS(4012), - [anon_sym_json_DOTdecode] = ACTIONS(4012), - [anon_sym_LBRACK2] = ACTIONS(4012), - [anon_sym_TILDE] = ACTIONS(4012), - [anon_sym_CARET] = ACTIONS(4012), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_LT_DASH] = ACTIONS(4012), - [sym_none] = ACTIONS(4012), - [sym_true] = ACTIONS(4012), - [sym_false] = ACTIONS(4012), - [sym_nil] = ACTIONS(4012), - [anon_sym_if] = ACTIONS(4012), - [anon_sym_DOLLARif] = ACTIONS(4012), - [anon_sym_match] = ACTIONS(4012), - [anon_sym_select] = ACTIONS(4012), - [anon_sym_lock] = ACTIONS(4012), - [anon_sym_rlock] = ACTIONS(4012), - [anon_sym_unsafe] = ACTIONS(4012), - [anon_sym_sql] = ACTIONS(4012), - [sym_int_literal] = ACTIONS(4012), - [sym_float_literal] = ACTIONS(4012), - [sym_rune_literal] = ACTIONS(4012), - [anon_sym_AT] = ACTIONS(4012), - [anon_sym_shared] = ACTIONS(4012), - [anon_sym_map_LBRACK] = ACTIONS(4012), - [anon_sym_chan] = ACTIONS(4012), - [anon_sym_thread] = ACTIONS(4012), - [anon_sym_atomic] = ACTIONS(4012), - [anon_sym_assert] = ACTIONS(4012), - [anon_sym_defer] = ACTIONS(4012), - [anon_sym_goto] = ACTIONS(4012), - [anon_sym_break] = ACTIONS(4012), - [anon_sym_continue] = ACTIONS(4012), - [anon_sym_return] = ACTIONS(4012), - [anon_sym_DOLLARfor] = ACTIONS(4012), - [anon_sym_for] = ACTIONS(4012), - [anon_sym_POUND] = ACTIONS(4012), - [anon_sym_asm] = ACTIONS(4012), - [anon_sym_AT_LBRACK] = ACTIONS(4012), - [sym___double_quote] = ACTIONS(4012), - [sym___single_quote] = ACTIONS(4012), - [sym___c_double_quote] = ACTIONS(4012), - [sym___c_single_quote] = ACTIONS(4012), - [sym___r_double_quote] = ACTIONS(4012), - [sym___r_single_quote] = ACTIONS(4012), + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3241), + [anon_sym_pub] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [anon_sym_assert] = ACTIONS(3241), + [anon_sym_defer] = ACTIONS(3241), + [anon_sym_goto] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_DOLLARfor] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_asm] = ACTIONS(3241), + [anon_sym_AT_LBRACK] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3241), + [sym___single_quote] = ACTIONS(3241), + [sym___c_double_quote] = ACTIONS(3241), + [sym___c_single_quote] = ACTIONS(3241), + [sym___r_double_quote] = ACTIONS(3241), + [sym___r_single_quote] = ACTIONS(3241), }, [1515] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_LF] = ACTIONS(2694), - [anon_sym_CR] = ACTIONS(2694), - [anon_sym_CR_LF] = ACTIONS(2694), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym___global] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_fn] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_pub] = ACTIONS(2694), - [anon_sym_mut] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_go] = ACTIONS(2694), - [anon_sym_spawn] = ACTIONS(2694), - [anon_sym_json_DOTdecode] = ACTIONS(2694), - [anon_sym_LBRACK2] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_LT_DASH] = ACTIONS(2694), - [sym_none] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_nil] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_DOLLARif] = ACTIONS(2694), - [anon_sym_match] = ACTIONS(2694), - [anon_sym_select] = ACTIONS(2694), - [anon_sym_lock] = ACTIONS(2694), - [anon_sym_rlock] = ACTIONS(2694), - [anon_sym_unsafe] = ACTIONS(2694), - [anon_sym_sql] = ACTIONS(2694), - [sym_int_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), - [sym_rune_literal] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_shared] = ACTIONS(2694), - [anon_sym_map_LBRACK] = ACTIONS(2694), - [anon_sym_chan] = ACTIONS(2694), - [anon_sym_thread] = ACTIONS(2694), - [anon_sym_atomic] = ACTIONS(2694), - [anon_sym_assert] = ACTIONS(2694), - [anon_sym_defer] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_DOLLARfor] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_asm] = ACTIONS(2694), - [anon_sym_AT_LBRACK] = ACTIONS(2694), - [sym___double_quote] = ACTIONS(2694), - [sym___single_quote] = ACTIONS(2694), - [sym___c_double_quote] = ACTIONS(2694), - [sym___c_single_quote] = ACTIONS(2694), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2694), + [sym_block] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(4073), + [sym_identifier] = ACTIONS(4075), + [anon_sym_LF] = ACTIONS(4075), + [anon_sym_CR] = ACTIONS(4075), + [anon_sym_CR_LF] = ACTIONS(4075), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4075), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4075), + [anon_sym___global] = ACTIONS(4075), + [anon_sym_type] = ACTIONS(4075), + [anon_sym_fn] = ACTIONS(4075), + [anon_sym_PLUS] = ACTIONS(4075), + [anon_sym_DASH] = ACTIONS(4075), + [anon_sym_STAR] = ACTIONS(4075), + [anon_sym_struct] = ACTIONS(4075), + [anon_sym_union] = ACTIONS(4075), + [anon_sym_pub] = ACTIONS(4075), + [anon_sym_mut] = ACTIONS(4075), + [anon_sym_enum] = ACTIONS(4075), + [anon_sym_interface] = ACTIONS(4075), + [anon_sym_QMARK] = ACTIONS(4075), + [anon_sym_BANG] = ACTIONS(4075), + [anon_sym_go] = ACTIONS(4075), + [anon_sym_spawn] = ACTIONS(4075), + [anon_sym_json_DOTdecode] = ACTIONS(4075), + [anon_sym_LBRACK2] = ACTIONS(4075), + [anon_sym_TILDE] = ACTIONS(4075), + [anon_sym_CARET] = ACTIONS(4075), + [anon_sym_AMP] = ACTIONS(4075), + [anon_sym_LT_DASH] = ACTIONS(4075), + [sym_none] = ACTIONS(4075), + [sym_true] = ACTIONS(4075), + [sym_false] = ACTIONS(4075), + [sym_nil] = ACTIONS(4075), + [anon_sym_if] = ACTIONS(4075), + [anon_sym_DOLLARif] = ACTIONS(4075), + [anon_sym_match] = ACTIONS(4075), + [anon_sym_select] = ACTIONS(4075), + [anon_sym_lock] = ACTIONS(4075), + [anon_sym_rlock] = ACTIONS(4075), + [anon_sym_unsafe] = ACTIONS(4075), + [anon_sym_sql] = ACTIONS(4075), + [sym_int_literal] = ACTIONS(4075), + [sym_float_literal] = ACTIONS(4075), + [sym_rune_literal] = ACTIONS(4075), + [anon_sym_AT] = ACTIONS(4075), + [anon_sym_shared] = ACTIONS(4075), + [anon_sym_map_LBRACK] = ACTIONS(4075), + [anon_sym_chan] = ACTIONS(4075), + [anon_sym_thread] = ACTIONS(4075), + [anon_sym_atomic] = ACTIONS(4075), + [anon_sym_assert] = ACTIONS(4075), + [anon_sym_defer] = ACTIONS(4075), + [anon_sym_goto] = ACTIONS(4075), + [anon_sym_break] = ACTIONS(4075), + [anon_sym_continue] = ACTIONS(4075), + [anon_sym_return] = ACTIONS(4075), + [anon_sym_DOLLARfor] = ACTIONS(4075), + [anon_sym_for] = ACTIONS(4075), + [anon_sym_POUND] = ACTIONS(4075), + [anon_sym_asm] = ACTIONS(4075), + [anon_sym_AT_LBRACK] = ACTIONS(4075), + [sym___double_quote] = ACTIONS(4075), + [sym___single_quote] = ACTIONS(4075), + [sym___c_double_quote] = ACTIONS(4075), + [sym___c_single_quote] = ACTIONS(4075), + [sym___r_double_quote] = ACTIONS(4075), + [sym___r_single_quote] = ACTIONS(4075), }, [1516] = { - [ts_builtin_sym_end] = ACTIONS(4014), - [sym_identifier] = ACTIONS(4016), - [anon_sym_LF] = ACTIONS(4016), - [anon_sym_CR] = ACTIONS(4016), - [anon_sym_CR_LF] = ACTIONS(4016), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym___global] = ACTIONS(4016), - [anon_sym_type] = ACTIONS(4016), - [anon_sym_fn] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4016), - [anon_sym_struct] = ACTIONS(4016), - [anon_sym_union] = ACTIONS(4016), - [anon_sym_pub] = ACTIONS(4016), - [anon_sym_mut] = ACTIONS(4016), - [anon_sym_enum] = ACTIONS(4016), - [anon_sym_interface] = ACTIONS(4016), - [anon_sym_QMARK] = ACTIONS(4016), - [anon_sym_BANG] = ACTIONS(4016), - [anon_sym_go] = ACTIONS(4016), - [anon_sym_spawn] = ACTIONS(4016), - [anon_sym_json_DOTdecode] = ACTIONS(4016), - [anon_sym_LBRACK2] = ACTIONS(4016), - [anon_sym_TILDE] = ACTIONS(4016), - [anon_sym_CARET] = ACTIONS(4016), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_LT_DASH] = ACTIONS(4016), - [sym_none] = ACTIONS(4016), - [sym_true] = ACTIONS(4016), - [sym_false] = ACTIONS(4016), - [sym_nil] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_DOLLARif] = ACTIONS(4016), - [anon_sym_match] = ACTIONS(4016), - [anon_sym_select] = ACTIONS(4016), - [anon_sym_lock] = ACTIONS(4016), - [anon_sym_rlock] = ACTIONS(4016), - [anon_sym_unsafe] = ACTIONS(4016), - [anon_sym_sql] = ACTIONS(4016), - [sym_int_literal] = ACTIONS(4016), - [sym_float_literal] = ACTIONS(4016), - [sym_rune_literal] = ACTIONS(4016), - [anon_sym_AT] = ACTIONS(4016), - [anon_sym_shared] = ACTIONS(4016), - [anon_sym_map_LBRACK] = ACTIONS(4016), - [anon_sym_chan] = ACTIONS(4016), - [anon_sym_thread] = ACTIONS(4016), - [anon_sym_atomic] = ACTIONS(4016), - [anon_sym_assert] = ACTIONS(4016), - [anon_sym_defer] = ACTIONS(4016), - [anon_sym_goto] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_DOLLARfor] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_POUND] = ACTIONS(4016), - [anon_sym_asm] = ACTIONS(4016), - [anon_sym_AT_LBRACK] = ACTIONS(4016), - [sym___double_quote] = ACTIONS(4016), - [sym___single_quote] = ACTIONS(4016), - [sym___c_double_quote] = ACTIONS(4016), - [sym___c_single_quote] = ACTIONS(4016), - [sym___r_double_quote] = ACTIONS(4016), - [sym___r_single_quote] = ACTIONS(4016), + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym___global] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_pub] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [anon_sym_assert] = ACTIONS(3245), + [anon_sym_defer] = ACTIONS(3245), + [anon_sym_goto] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_DOLLARfor] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_asm] = ACTIONS(3245), + [anon_sym_AT_LBRACK] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), }, [1517] = { - [ts_builtin_sym_end] = ACTIONS(4018), - [sym_identifier] = ACTIONS(4020), - [anon_sym_LF] = ACTIONS(4020), - [anon_sym_CR] = ACTIONS(4020), - [anon_sym_CR_LF] = ACTIONS(4020), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym___global] = ACTIONS(4020), - [anon_sym_type] = ACTIONS(4020), - [anon_sym_fn] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_pub] = ACTIONS(4020), - [anon_sym_mut] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_interface] = ACTIONS(4020), - [anon_sym_QMARK] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4020), - [anon_sym_go] = ACTIONS(4020), - [anon_sym_spawn] = ACTIONS(4020), - [anon_sym_json_DOTdecode] = ACTIONS(4020), - [anon_sym_LBRACK2] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_CARET] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_LT_DASH] = ACTIONS(4020), - [sym_none] = ACTIONS(4020), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [sym_nil] = ACTIONS(4020), - [anon_sym_if] = ACTIONS(4020), - [anon_sym_DOLLARif] = ACTIONS(4020), - [anon_sym_match] = ACTIONS(4020), - [anon_sym_select] = ACTIONS(4020), - [anon_sym_lock] = ACTIONS(4020), - [anon_sym_rlock] = ACTIONS(4020), - [anon_sym_unsafe] = ACTIONS(4020), - [anon_sym_sql] = ACTIONS(4020), - [sym_int_literal] = ACTIONS(4020), - [sym_float_literal] = ACTIONS(4020), - [sym_rune_literal] = ACTIONS(4020), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_shared] = ACTIONS(4020), - [anon_sym_map_LBRACK] = ACTIONS(4020), - [anon_sym_chan] = ACTIONS(4020), - [anon_sym_thread] = ACTIONS(4020), - [anon_sym_atomic] = ACTIONS(4020), - [anon_sym_assert] = ACTIONS(4020), - [anon_sym_defer] = ACTIONS(4020), - [anon_sym_goto] = ACTIONS(4020), - [anon_sym_break] = ACTIONS(4020), - [anon_sym_continue] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4020), - [anon_sym_DOLLARfor] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4020), - [anon_sym_POUND] = ACTIONS(4020), - [anon_sym_asm] = ACTIONS(4020), - [anon_sym_AT_LBRACK] = ACTIONS(4020), - [sym___double_quote] = ACTIONS(4020), - [sym___single_quote] = ACTIONS(4020), - [sym___c_double_quote] = ACTIONS(4020), - [sym___c_single_quote] = ACTIONS(4020), - [sym___r_double_quote] = ACTIONS(4020), - [sym___r_single_quote] = ACTIONS(4020), + [ts_builtin_sym_end] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3293), + [anon_sym_LF] = ACTIONS(3293), + [anon_sym_CR] = ACTIONS(3293), + [anon_sym_CR_LF] = ACTIONS(3293), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym___global] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_fn] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3293), + [anon_sym_union] = ACTIONS(3293), + [anon_sym_pub] = ACTIONS(3293), + [anon_sym_mut] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_go] = ACTIONS(3293), + [anon_sym_spawn] = ACTIONS(3293), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_LT_DASH] = ACTIONS(3293), + [sym_none] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_nil] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_DOLLARif] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3293), + [anon_sym_select] = ACTIONS(3293), + [anon_sym_lock] = ACTIONS(3293), + [anon_sym_rlock] = ACTIONS(3293), + [anon_sym_unsafe] = ACTIONS(3293), + [anon_sym_sql] = ACTIONS(3293), + [sym_int_literal] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3293), + [anon_sym_thread] = ACTIONS(3293), + [anon_sym_atomic] = ACTIONS(3293), + [anon_sym_assert] = ACTIONS(3293), + [anon_sym_defer] = ACTIONS(3293), + [anon_sym_goto] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_DOLLARfor] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_asm] = ACTIONS(3293), + [anon_sym_AT_LBRACK] = ACTIONS(3293), + [sym___double_quote] = ACTIONS(3293), + [sym___single_quote] = ACTIONS(3293), + [sym___c_double_quote] = ACTIONS(3293), + [sym___c_single_quote] = ACTIONS(3293), + [sym___r_double_quote] = ACTIONS(3293), + [sym___r_single_quote] = ACTIONS(3293), }, [1518] = { - [ts_builtin_sym_end] = ACTIONS(4022), - [sym_identifier] = ACTIONS(4024), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_CR] = ACTIONS(4024), - [anon_sym_CR_LF] = ACTIONS(4024), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_LPAREN] = ACTIONS(4024), - [anon_sym___global] = ACTIONS(4024), - [anon_sym_type] = ACTIONS(4024), - [anon_sym_fn] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_pub] = ACTIONS(4024), - [anon_sym_mut] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_interface] = ACTIONS(4024), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4024), - [anon_sym_go] = ACTIONS(4024), - [anon_sym_spawn] = ACTIONS(4024), - [anon_sym_json_DOTdecode] = ACTIONS(4024), - [anon_sym_LBRACK2] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_CARET] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_LT_DASH] = ACTIONS(4024), - [sym_none] = ACTIONS(4024), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [sym_nil] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_DOLLARif] = ACTIONS(4024), - [anon_sym_match] = ACTIONS(4024), - [anon_sym_select] = ACTIONS(4024), - [anon_sym_lock] = ACTIONS(4024), - [anon_sym_rlock] = ACTIONS(4024), - [anon_sym_unsafe] = ACTIONS(4024), - [anon_sym_sql] = ACTIONS(4024), - [sym_int_literal] = ACTIONS(4024), - [sym_float_literal] = ACTIONS(4024), - [sym_rune_literal] = ACTIONS(4024), - [anon_sym_AT] = ACTIONS(4024), - [anon_sym_shared] = ACTIONS(4024), - [anon_sym_map_LBRACK] = ACTIONS(4024), - [anon_sym_chan] = ACTIONS(4024), - [anon_sym_thread] = ACTIONS(4024), - [anon_sym_atomic] = ACTIONS(4024), - [anon_sym_assert] = ACTIONS(4024), - [anon_sym_defer] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_DOLLARfor] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_POUND] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym_AT_LBRACK] = ACTIONS(4024), - [sym___double_quote] = ACTIONS(4024), - [sym___single_quote] = ACTIONS(4024), - [sym___c_double_quote] = ACTIONS(4024), - [sym___c_single_quote] = ACTIONS(4024), - [sym___r_double_quote] = ACTIONS(4024), - [sym___r_single_quote] = ACTIONS(4024), + [ts_builtin_sym_end] = ACTIONS(3146), + [sym_identifier] = ACTIONS(3148), + [anon_sym_LF] = ACTIONS(3148), + [anon_sym_CR] = ACTIONS(3148), + [anon_sym_CR_LF] = ACTIONS(3148), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym___global] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_PIPE] = ACTIONS(3148), + [anon_sym_fn] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3148), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_pub] = ACTIONS(3148), + [anon_sym_mut] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_QMARK] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_go] = ACTIONS(3148), + [anon_sym_spawn] = ACTIONS(3148), + [anon_sym_json_DOTdecode] = ACTIONS(3148), + [anon_sym_LBRACK2] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_CARET] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3148), + [anon_sym_LT_DASH] = ACTIONS(3148), + [sym_none] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_nil] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_DOLLARif] = ACTIONS(3148), + [anon_sym_match] = ACTIONS(3148), + [anon_sym_select] = ACTIONS(3148), + [anon_sym_lock] = ACTIONS(3148), + [anon_sym_rlock] = ACTIONS(3148), + [anon_sym_unsafe] = ACTIONS(3148), + [anon_sym_sql] = ACTIONS(3148), + [sym_int_literal] = ACTIONS(3148), + [sym_float_literal] = ACTIONS(3148), + [sym_rune_literal] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_shared] = ACTIONS(3148), + [anon_sym_map_LBRACK] = ACTIONS(3148), + [anon_sym_chan] = ACTIONS(3148), + [anon_sym_thread] = ACTIONS(3148), + [anon_sym_atomic] = ACTIONS(3148), + [anon_sym_assert] = ACTIONS(3148), + [anon_sym_defer] = ACTIONS(3148), + [anon_sym_goto] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_DOLLARfor] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_POUND] = ACTIONS(3148), + [anon_sym_asm] = ACTIONS(3148), + [anon_sym_AT_LBRACK] = ACTIONS(3148), + [sym___double_quote] = ACTIONS(3148), + [sym___single_quote] = ACTIONS(3148), + [sym___c_double_quote] = ACTIONS(3148), + [sym___c_single_quote] = ACTIONS(3148), + [sym___r_double_quote] = ACTIONS(3148), + [sym___r_single_quote] = ACTIONS(3148), }, [1519] = { - [ts_builtin_sym_end] = ACTIONS(4026), - [sym_identifier] = ACTIONS(4028), - [anon_sym_LF] = ACTIONS(4028), - [anon_sym_CR] = ACTIONS(4028), - [anon_sym_CR_LF] = ACTIONS(4028), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4028), - [anon_sym_LPAREN] = ACTIONS(4028), - [anon_sym___global] = ACTIONS(4028), - [anon_sym_type] = ACTIONS(4028), - [anon_sym_fn] = ACTIONS(4028), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4028), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(4028), - [anon_sym_pub] = ACTIONS(4028), - [anon_sym_mut] = ACTIONS(4028), - [anon_sym_enum] = ACTIONS(4028), - [anon_sym_interface] = ACTIONS(4028), - [anon_sym_QMARK] = ACTIONS(4028), - [anon_sym_BANG] = ACTIONS(4028), - [anon_sym_go] = ACTIONS(4028), - [anon_sym_spawn] = ACTIONS(4028), - [anon_sym_json_DOTdecode] = ACTIONS(4028), - [anon_sym_LBRACK2] = ACTIONS(4028), - [anon_sym_TILDE] = ACTIONS(4028), - [anon_sym_CARET] = ACTIONS(4028), - [anon_sym_AMP] = ACTIONS(4028), - [anon_sym_LT_DASH] = ACTIONS(4028), - [sym_none] = ACTIONS(4028), - [sym_true] = ACTIONS(4028), - [sym_false] = ACTIONS(4028), - [sym_nil] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_DOLLARif] = ACTIONS(4028), - [anon_sym_match] = ACTIONS(4028), - [anon_sym_select] = ACTIONS(4028), - [anon_sym_lock] = ACTIONS(4028), - [anon_sym_rlock] = ACTIONS(4028), - [anon_sym_unsafe] = ACTIONS(4028), - [anon_sym_sql] = ACTIONS(4028), - [sym_int_literal] = ACTIONS(4028), - [sym_float_literal] = ACTIONS(4028), - [sym_rune_literal] = ACTIONS(4028), - [anon_sym_AT] = ACTIONS(4028), - [anon_sym_shared] = ACTIONS(4028), - [anon_sym_map_LBRACK] = ACTIONS(4028), - [anon_sym_chan] = ACTIONS(4028), - [anon_sym_thread] = ACTIONS(4028), - [anon_sym_atomic] = ACTIONS(4028), - [anon_sym_assert] = ACTIONS(4028), - [anon_sym_defer] = ACTIONS(4028), - [anon_sym_goto] = ACTIONS(4028), - [anon_sym_break] = ACTIONS(4028), - [anon_sym_continue] = ACTIONS(4028), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_DOLLARfor] = ACTIONS(4028), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_POUND] = ACTIONS(4028), - [anon_sym_asm] = ACTIONS(4028), - [anon_sym_AT_LBRACK] = ACTIONS(4028), - [sym___double_quote] = ACTIONS(4028), - [sym___single_quote] = ACTIONS(4028), - [sym___c_double_quote] = ACTIONS(4028), - [sym___c_single_quote] = ACTIONS(4028), - [sym___r_double_quote] = ACTIONS(4028), - [sym___r_single_quote] = ACTIONS(4028), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(1930), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_CR] = ACTIONS(1930), + [anon_sym_CR_LF] = ACTIONS(1930), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_COMMA] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym___global] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_mut] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_interface] = ACTIONS(1930), + [anon_sym_QMARK] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_go] = ACTIONS(1930), + [anon_sym_spawn] = ACTIONS(1930), + [anon_sym_json_DOTdecode] = ACTIONS(1930), + [anon_sym_LBRACK2] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_LT_DASH] = ACTIONS(1930), + [sym_none] = ACTIONS(1930), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_nil] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_DOLLARif] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_select] = ACTIONS(1930), + [anon_sym_lock] = ACTIONS(1930), + [anon_sym_rlock] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_sql] = ACTIONS(1930), + [sym_int_literal] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), + [sym_rune_literal] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1930), + [anon_sym_shared] = ACTIONS(1930), + [anon_sym_map_LBRACK] = ACTIONS(1930), + [anon_sym_chan] = ACTIONS(1930), + [anon_sym_thread] = ACTIONS(1930), + [anon_sym_atomic] = ACTIONS(1930), + [anon_sym_assert] = ACTIONS(1930), + [anon_sym_defer] = ACTIONS(1930), + [anon_sym_goto] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_DOLLARfor] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_asm] = ACTIONS(1930), + [anon_sym_AT_LBRACK] = ACTIONS(1930), + [sym___double_quote] = ACTIONS(1930), + [sym___single_quote] = ACTIONS(1930), + [sym___c_double_quote] = ACTIONS(1930), + [sym___c_single_quote] = ACTIONS(1930), + [sym___r_double_quote] = ACTIONS(1930), + [sym___r_single_quote] = ACTIONS(1930), }, [1520] = { - [ts_builtin_sym_end] = ACTIONS(4030), - [sym_identifier] = ACTIONS(4032), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_CR] = ACTIONS(4032), - [anon_sym_CR_LF] = ACTIONS(4032), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4032), - [anon_sym_LBRACE] = ACTIONS(4032), - [anon_sym_const] = ACTIONS(4032), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym___global] = ACTIONS(4032), - [anon_sym_type] = ACTIONS(4032), - [anon_sym_fn] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_STAR] = ACTIONS(4032), - [anon_sym_struct] = ACTIONS(4032), - [anon_sym_union] = ACTIONS(4032), - [anon_sym_pub] = ACTIONS(4032), - [anon_sym_mut] = ACTIONS(4032), - [anon_sym_enum] = ACTIONS(4032), - [anon_sym_interface] = ACTIONS(4032), - [anon_sym_QMARK] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(4032), - [anon_sym_go] = ACTIONS(4032), - [anon_sym_spawn] = ACTIONS(4032), - [anon_sym_json_DOTdecode] = ACTIONS(4032), - [anon_sym_LBRACK2] = ACTIONS(4032), - [anon_sym_TILDE] = ACTIONS(4032), - [anon_sym_CARET] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_LT_DASH] = ACTIONS(4032), - [sym_none] = ACTIONS(4032), - [sym_true] = ACTIONS(4032), - [sym_false] = ACTIONS(4032), - [sym_nil] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_DOLLARif] = ACTIONS(4032), - [anon_sym_match] = ACTIONS(4032), - [anon_sym_select] = ACTIONS(4032), - [anon_sym_lock] = ACTIONS(4032), - [anon_sym_rlock] = ACTIONS(4032), - [anon_sym_unsafe] = ACTIONS(4032), - [anon_sym_sql] = ACTIONS(4032), - [sym_int_literal] = ACTIONS(4032), - [sym_float_literal] = ACTIONS(4032), - [sym_rune_literal] = ACTIONS(4032), - [anon_sym_AT] = ACTIONS(4032), - [anon_sym_shared] = ACTIONS(4032), - [anon_sym_map_LBRACK] = ACTIONS(4032), - [anon_sym_chan] = ACTIONS(4032), - [anon_sym_thread] = ACTIONS(4032), - [anon_sym_atomic] = ACTIONS(4032), - [anon_sym_assert] = ACTIONS(4032), - [anon_sym_defer] = ACTIONS(4032), - [anon_sym_goto] = ACTIONS(4032), - [anon_sym_break] = ACTIONS(4032), - [anon_sym_continue] = ACTIONS(4032), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_DOLLARfor] = ACTIONS(4032), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_POUND] = ACTIONS(4032), - [anon_sym_asm] = ACTIONS(4032), - [anon_sym_AT_LBRACK] = ACTIONS(4032), - [sym___double_quote] = ACTIONS(4032), - [sym___single_quote] = ACTIONS(4032), - [sym___c_double_quote] = ACTIONS(4032), - [sym___c_single_quote] = ACTIONS(4032), - [sym___r_double_quote] = ACTIONS(4032), - [sym___r_single_quote] = ACTIONS(4032), + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym___global] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_union] = ACTIONS(3214), + [anon_sym_pub] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [anon_sym_assert] = ACTIONS(3214), + [anon_sym_defer] = ACTIONS(3214), + [anon_sym_goto] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_DOLLARfor] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_asm] = ACTIONS(3214), + [anon_sym_AT_LBRACK] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), }, [1521] = { - [ts_builtin_sym_end] = ACTIONS(4034), - [sym_identifier] = ACTIONS(4036), - [anon_sym_LF] = ACTIONS(4036), - [anon_sym_CR] = ACTIONS(4036), - [anon_sym_CR_LF] = ACTIONS(4036), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4036), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_const] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4036), - [anon_sym___global] = ACTIONS(4036), - [anon_sym_type] = ACTIONS(4036), - [anon_sym_fn] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_STAR] = ACTIONS(4036), - [anon_sym_struct] = ACTIONS(4036), - [anon_sym_union] = ACTIONS(4036), - [anon_sym_pub] = ACTIONS(4036), - [anon_sym_mut] = ACTIONS(4036), - [anon_sym_enum] = ACTIONS(4036), - [anon_sym_interface] = ACTIONS(4036), - [anon_sym_QMARK] = ACTIONS(4036), - [anon_sym_BANG] = ACTIONS(4036), - [anon_sym_go] = ACTIONS(4036), - [anon_sym_spawn] = ACTIONS(4036), - [anon_sym_json_DOTdecode] = ACTIONS(4036), - [anon_sym_LBRACK2] = ACTIONS(4036), - [anon_sym_TILDE] = ACTIONS(4036), - [anon_sym_CARET] = ACTIONS(4036), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_LT_DASH] = ACTIONS(4036), - [sym_none] = ACTIONS(4036), - [sym_true] = ACTIONS(4036), - [sym_false] = ACTIONS(4036), - [sym_nil] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_DOLLARif] = ACTIONS(4036), - [anon_sym_match] = ACTIONS(4036), - [anon_sym_select] = ACTIONS(4036), - [anon_sym_lock] = ACTIONS(4036), - [anon_sym_rlock] = ACTIONS(4036), - [anon_sym_unsafe] = ACTIONS(4036), - [anon_sym_sql] = ACTIONS(4036), - [sym_int_literal] = ACTIONS(4036), - [sym_float_literal] = ACTIONS(4036), - [sym_rune_literal] = ACTIONS(4036), - [anon_sym_AT] = ACTIONS(4036), - [anon_sym_shared] = ACTIONS(4036), - [anon_sym_map_LBRACK] = ACTIONS(4036), - [anon_sym_chan] = ACTIONS(4036), - [anon_sym_thread] = ACTIONS(4036), - [anon_sym_atomic] = ACTIONS(4036), - [anon_sym_assert] = ACTIONS(4036), - [anon_sym_defer] = ACTIONS(4036), - [anon_sym_goto] = ACTIONS(4036), - [anon_sym_break] = ACTIONS(4036), - [anon_sym_continue] = ACTIONS(4036), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_DOLLARfor] = ACTIONS(4036), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_POUND] = ACTIONS(4036), - [anon_sym_asm] = ACTIONS(4036), - [anon_sym_AT_LBRACK] = ACTIONS(4036), - [sym___double_quote] = ACTIONS(4036), - [sym___single_quote] = ACTIONS(4036), - [sym___c_double_quote] = ACTIONS(4036), - [sym___c_single_quote] = ACTIONS(4036), - [sym___r_double_quote] = ACTIONS(4036), - [sym___r_single_quote] = ACTIONS(4036), + [sym_block] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(4077), + [sym_identifier] = ACTIONS(4079), + [anon_sym_LF] = ACTIONS(4079), + [anon_sym_CR] = ACTIONS(4079), + [anon_sym_CR_LF] = ACTIONS(4079), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4079), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym___global] = ACTIONS(4079), + [anon_sym_type] = ACTIONS(4079), + [anon_sym_fn] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [anon_sym_STAR] = ACTIONS(4079), + [anon_sym_struct] = ACTIONS(4079), + [anon_sym_union] = ACTIONS(4079), + [anon_sym_pub] = ACTIONS(4079), + [anon_sym_mut] = ACTIONS(4079), + [anon_sym_enum] = ACTIONS(4079), + [anon_sym_interface] = ACTIONS(4079), + [anon_sym_QMARK] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4079), + [anon_sym_go] = ACTIONS(4079), + [anon_sym_spawn] = ACTIONS(4079), + [anon_sym_json_DOTdecode] = ACTIONS(4079), + [anon_sym_LBRACK2] = ACTIONS(4079), + [anon_sym_TILDE] = ACTIONS(4079), + [anon_sym_CARET] = ACTIONS(4079), + [anon_sym_AMP] = ACTIONS(4079), + [anon_sym_LT_DASH] = ACTIONS(4079), + [sym_none] = ACTIONS(4079), + [sym_true] = ACTIONS(4079), + [sym_false] = ACTIONS(4079), + [sym_nil] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_DOLLARif] = ACTIONS(4079), + [anon_sym_match] = ACTIONS(4079), + [anon_sym_select] = ACTIONS(4079), + [anon_sym_lock] = ACTIONS(4079), + [anon_sym_rlock] = ACTIONS(4079), + [anon_sym_unsafe] = ACTIONS(4079), + [anon_sym_sql] = ACTIONS(4079), + [sym_int_literal] = ACTIONS(4079), + [sym_float_literal] = ACTIONS(4079), + [sym_rune_literal] = ACTIONS(4079), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_shared] = ACTIONS(4079), + [anon_sym_map_LBRACK] = ACTIONS(4079), + [anon_sym_chan] = ACTIONS(4079), + [anon_sym_thread] = ACTIONS(4079), + [anon_sym_atomic] = ACTIONS(4079), + [anon_sym_assert] = ACTIONS(4079), + [anon_sym_defer] = ACTIONS(4079), + [anon_sym_goto] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_DOLLARfor] = ACTIONS(4079), + [anon_sym_for] = ACTIONS(4079), + [anon_sym_POUND] = ACTIONS(4079), + [anon_sym_asm] = ACTIONS(4079), + [anon_sym_AT_LBRACK] = ACTIONS(4079), + [sym___double_quote] = ACTIONS(4079), + [sym___single_quote] = ACTIONS(4079), + [sym___c_double_quote] = ACTIONS(4079), + [sym___c_single_quote] = ACTIONS(4079), + [sym___r_double_quote] = ACTIONS(4079), + [sym___r_single_quote] = ACTIONS(4079), }, [1522] = { - [ts_builtin_sym_end] = ACTIONS(4038), - [sym_identifier] = ACTIONS(4040), - [anon_sym_LF] = ACTIONS(4040), - [anon_sym_CR] = ACTIONS(4040), - [anon_sym_CR_LF] = ACTIONS(4040), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4040), - [anon_sym_const] = ACTIONS(4040), - [anon_sym_LPAREN] = ACTIONS(4040), - [anon_sym___global] = ACTIONS(4040), - [anon_sym_type] = ACTIONS(4040), - [anon_sym_fn] = ACTIONS(4040), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_struct] = ACTIONS(4040), - [anon_sym_union] = ACTIONS(4040), - [anon_sym_pub] = ACTIONS(4040), - [anon_sym_mut] = ACTIONS(4040), - [anon_sym_enum] = ACTIONS(4040), - [anon_sym_interface] = ACTIONS(4040), - [anon_sym_QMARK] = ACTIONS(4040), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_go] = ACTIONS(4040), - [anon_sym_spawn] = ACTIONS(4040), - [anon_sym_json_DOTdecode] = ACTIONS(4040), - [anon_sym_LBRACK2] = ACTIONS(4040), - [anon_sym_TILDE] = ACTIONS(4040), - [anon_sym_CARET] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4040), - [anon_sym_LT_DASH] = ACTIONS(4040), - [sym_none] = ACTIONS(4040), - [sym_true] = ACTIONS(4040), - [sym_false] = ACTIONS(4040), - [sym_nil] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_DOLLARif] = ACTIONS(4040), - [anon_sym_match] = ACTIONS(4040), - [anon_sym_select] = ACTIONS(4040), - [anon_sym_lock] = ACTIONS(4040), - [anon_sym_rlock] = ACTIONS(4040), - [anon_sym_unsafe] = ACTIONS(4040), - [anon_sym_sql] = ACTIONS(4040), - [sym_int_literal] = ACTIONS(4040), - [sym_float_literal] = ACTIONS(4040), - [sym_rune_literal] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4040), - [anon_sym_shared] = ACTIONS(4040), - [anon_sym_map_LBRACK] = ACTIONS(4040), - [anon_sym_chan] = ACTIONS(4040), - [anon_sym_thread] = ACTIONS(4040), - [anon_sym_atomic] = ACTIONS(4040), - [anon_sym_assert] = ACTIONS(4040), - [anon_sym_defer] = ACTIONS(4040), - [anon_sym_goto] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_DOLLARfor] = ACTIONS(4040), - [anon_sym_for] = ACTIONS(4040), - [anon_sym_POUND] = ACTIONS(4040), - [anon_sym_asm] = ACTIONS(4040), - [anon_sym_AT_LBRACK] = ACTIONS(4040), - [sym___double_quote] = ACTIONS(4040), - [sym___single_quote] = ACTIONS(4040), - [sym___c_double_quote] = ACTIONS(4040), - [sym___c_single_quote] = ACTIONS(4040), - [sym___r_double_quote] = ACTIONS(4040), - [sym___r_single_quote] = ACTIONS(4040), + [sym_block] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(4081), + [sym_identifier] = ACTIONS(4083), + [anon_sym_LF] = ACTIONS(4083), + [anon_sym_CR] = ACTIONS(4083), + [anon_sym_CR_LF] = ACTIONS(4083), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4083), + [anon_sym___global] = ACTIONS(4083), + [anon_sym_type] = ACTIONS(4083), + [anon_sym_fn] = ACTIONS(4083), + [anon_sym_PLUS] = ACTIONS(4083), + [anon_sym_DASH] = ACTIONS(4083), + [anon_sym_STAR] = ACTIONS(4083), + [anon_sym_struct] = ACTIONS(4083), + [anon_sym_union] = ACTIONS(4083), + [anon_sym_pub] = ACTIONS(4083), + [anon_sym_mut] = ACTIONS(4083), + [anon_sym_enum] = ACTIONS(4083), + [anon_sym_interface] = ACTIONS(4083), + [anon_sym_QMARK] = ACTIONS(4083), + [anon_sym_BANG] = ACTIONS(4083), + [anon_sym_go] = ACTIONS(4083), + [anon_sym_spawn] = ACTIONS(4083), + [anon_sym_json_DOTdecode] = ACTIONS(4083), + [anon_sym_LBRACK2] = ACTIONS(4083), + [anon_sym_TILDE] = ACTIONS(4083), + [anon_sym_CARET] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(4083), + [anon_sym_LT_DASH] = ACTIONS(4083), + [sym_none] = ACTIONS(4083), + [sym_true] = ACTIONS(4083), + [sym_false] = ACTIONS(4083), + [sym_nil] = ACTIONS(4083), + [anon_sym_if] = ACTIONS(4083), + [anon_sym_DOLLARif] = ACTIONS(4083), + [anon_sym_match] = ACTIONS(4083), + [anon_sym_select] = ACTIONS(4083), + [anon_sym_lock] = ACTIONS(4083), + [anon_sym_rlock] = ACTIONS(4083), + [anon_sym_unsafe] = ACTIONS(4083), + [anon_sym_sql] = ACTIONS(4083), + [sym_int_literal] = ACTIONS(4083), + [sym_float_literal] = ACTIONS(4083), + [sym_rune_literal] = ACTIONS(4083), + [anon_sym_AT] = ACTIONS(4083), + [anon_sym_shared] = ACTIONS(4083), + [anon_sym_map_LBRACK] = ACTIONS(4083), + [anon_sym_chan] = ACTIONS(4083), + [anon_sym_thread] = ACTIONS(4083), + [anon_sym_atomic] = ACTIONS(4083), + [anon_sym_assert] = ACTIONS(4083), + [anon_sym_defer] = ACTIONS(4083), + [anon_sym_goto] = ACTIONS(4083), + [anon_sym_break] = ACTIONS(4083), + [anon_sym_continue] = ACTIONS(4083), + [anon_sym_return] = ACTIONS(4083), + [anon_sym_DOLLARfor] = ACTIONS(4083), + [anon_sym_for] = ACTIONS(4083), + [anon_sym_POUND] = ACTIONS(4083), + [anon_sym_asm] = ACTIONS(4083), + [anon_sym_AT_LBRACK] = ACTIONS(4083), + [sym___double_quote] = ACTIONS(4083), + [sym___single_quote] = ACTIONS(4083), + [sym___c_double_quote] = ACTIONS(4083), + [sym___c_single_quote] = ACTIONS(4083), + [sym___r_double_quote] = ACTIONS(4083), + [sym___r_single_quote] = ACTIONS(4083), }, [1523] = { - [ts_builtin_sym_end] = ACTIONS(4042), - [sym_identifier] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_CR] = ACTIONS(4044), - [anon_sym_CR_LF] = ACTIONS(4044), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_LPAREN] = ACTIONS(4044), - [anon_sym___global] = ACTIONS(4044), - [anon_sym_type] = ACTIONS(4044), - [anon_sym_fn] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_struct] = ACTIONS(4044), - [anon_sym_union] = ACTIONS(4044), - [anon_sym_pub] = ACTIONS(4044), - [anon_sym_mut] = ACTIONS(4044), - [anon_sym_enum] = ACTIONS(4044), - [anon_sym_interface] = ACTIONS(4044), - [anon_sym_QMARK] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_go] = ACTIONS(4044), - [anon_sym_spawn] = ACTIONS(4044), - [anon_sym_json_DOTdecode] = ACTIONS(4044), - [anon_sym_LBRACK2] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_CARET] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - [anon_sym_LT_DASH] = ACTIONS(4044), - [sym_none] = ACTIONS(4044), - [sym_true] = ACTIONS(4044), - [sym_false] = ACTIONS(4044), - [sym_nil] = ACTIONS(4044), - [anon_sym_if] = ACTIONS(4044), - [anon_sym_DOLLARif] = ACTIONS(4044), - [anon_sym_match] = ACTIONS(4044), - [anon_sym_select] = ACTIONS(4044), - [anon_sym_lock] = ACTIONS(4044), - [anon_sym_rlock] = ACTIONS(4044), - [anon_sym_unsafe] = ACTIONS(4044), - [anon_sym_sql] = ACTIONS(4044), - [sym_int_literal] = ACTIONS(4044), - [sym_float_literal] = ACTIONS(4044), - [sym_rune_literal] = ACTIONS(4044), - [anon_sym_AT] = ACTIONS(4044), - [anon_sym_shared] = ACTIONS(4044), - [anon_sym_map_LBRACK] = ACTIONS(4044), - [anon_sym_chan] = ACTIONS(4044), - [anon_sym_thread] = ACTIONS(4044), - [anon_sym_atomic] = ACTIONS(4044), - [anon_sym_assert] = ACTIONS(4044), - [anon_sym_defer] = ACTIONS(4044), - [anon_sym_goto] = ACTIONS(4044), - [anon_sym_break] = ACTIONS(4044), - [anon_sym_continue] = ACTIONS(4044), - [anon_sym_return] = ACTIONS(4044), - [anon_sym_DOLLARfor] = ACTIONS(4044), - [anon_sym_for] = ACTIONS(4044), - [anon_sym_POUND] = ACTIONS(4044), - [anon_sym_asm] = ACTIONS(4044), - [anon_sym_AT_LBRACK] = ACTIONS(4044), - [sym___double_quote] = ACTIONS(4044), - [sym___single_quote] = ACTIONS(4044), - [sym___c_double_quote] = ACTIONS(4044), - [sym___c_single_quote] = ACTIONS(4044), - [sym___r_double_quote] = ACTIONS(4044), - [sym___r_single_quote] = ACTIONS(4044), + [ts_builtin_sym_end] = ACTIONS(4085), + [sym_identifier] = ACTIONS(4087), + [anon_sym_LF] = ACTIONS(4087), + [anon_sym_CR] = ACTIONS(4087), + [anon_sym_CR_LF] = ACTIONS(4087), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4087), + [anon_sym_const] = ACTIONS(4087), + [anon_sym_LPAREN] = ACTIONS(4087), + [anon_sym___global] = ACTIONS(4087), + [anon_sym_type] = ACTIONS(4087), + [anon_sym_fn] = ACTIONS(4087), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [anon_sym_struct] = ACTIONS(4087), + [anon_sym_union] = ACTIONS(4087), + [anon_sym_pub] = ACTIONS(4087), + [anon_sym_mut] = ACTIONS(4087), + [anon_sym_enum] = ACTIONS(4087), + [anon_sym_interface] = ACTIONS(4087), + [anon_sym_QMARK] = ACTIONS(4087), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_go] = ACTIONS(4087), + [anon_sym_spawn] = ACTIONS(4087), + [anon_sym_json_DOTdecode] = ACTIONS(4087), + [anon_sym_LBRACK2] = ACTIONS(4087), + [anon_sym_TILDE] = ACTIONS(4087), + [anon_sym_CARET] = ACTIONS(4087), + [anon_sym_AMP] = ACTIONS(4087), + [anon_sym_LT_DASH] = ACTIONS(4087), + [sym_none] = ACTIONS(4087), + [sym_true] = ACTIONS(4087), + [sym_false] = ACTIONS(4087), + [sym_nil] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_DOLLARif] = ACTIONS(4087), + [anon_sym_match] = ACTIONS(4087), + [anon_sym_select] = ACTIONS(4087), + [anon_sym_lock] = ACTIONS(4087), + [anon_sym_rlock] = ACTIONS(4087), + [anon_sym_unsafe] = ACTIONS(4087), + [anon_sym_sql] = ACTIONS(4087), + [sym_int_literal] = ACTIONS(4087), + [sym_float_literal] = ACTIONS(4087), + [sym_rune_literal] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4087), + [anon_sym_shared] = ACTIONS(4087), + [anon_sym_map_LBRACK] = ACTIONS(4087), + [anon_sym_chan] = ACTIONS(4087), + [anon_sym_thread] = ACTIONS(4087), + [anon_sym_atomic] = ACTIONS(4087), + [anon_sym_assert] = ACTIONS(4087), + [anon_sym_defer] = ACTIONS(4087), + [anon_sym_goto] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_DOLLARfor] = ACTIONS(4087), + [anon_sym_for] = ACTIONS(4087), + [anon_sym_POUND] = ACTIONS(4087), + [anon_sym_asm] = ACTIONS(4087), + [anon_sym_AT_LBRACK] = ACTIONS(4087), + [sym___double_quote] = ACTIONS(4087), + [sym___single_quote] = ACTIONS(4087), + [sym___c_double_quote] = ACTIONS(4087), + [sym___c_single_quote] = ACTIONS(4087), + [sym___r_double_quote] = ACTIONS(4087), + [sym___r_single_quote] = ACTIONS(4087), }, [1524] = { - [ts_builtin_sym_end] = ACTIONS(3100), - [sym_identifier] = ACTIONS(3102), - [anon_sym_LF] = ACTIONS(3102), - [anon_sym_CR] = ACTIONS(3102), - [anon_sym_CR_LF] = ACTIONS(3102), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym___global] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_fn] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_struct] = ACTIONS(3102), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_pub] = ACTIONS(3102), - [anon_sym_mut] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_QMARK] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_go] = ACTIONS(3102), - [anon_sym_spawn] = ACTIONS(3102), - [anon_sym_json_DOTdecode] = ACTIONS(3102), - [anon_sym_LBRACK2] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_CARET] = ACTIONS(3102), - [anon_sym_AMP] = ACTIONS(3102), - [anon_sym_LT_DASH] = ACTIONS(3102), - [sym_none] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_nil] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_DOLLARif] = ACTIONS(3102), - [anon_sym_match] = ACTIONS(3102), - [anon_sym_select] = ACTIONS(3102), - [anon_sym_lock] = ACTIONS(3102), - [anon_sym_rlock] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(3102), - [anon_sym_sql] = ACTIONS(3102), - [sym_int_literal] = ACTIONS(3102), - [sym_float_literal] = ACTIONS(3102), - [sym_rune_literal] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_shared] = ACTIONS(3102), - [anon_sym_map_LBRACK] = ACTIONS(3102), - [anon_sym_chan] = ACTIONS(3102), - [anon_sym_thread] = ACTIONS(3102), - [anon_sym_atomic] = ACTIONS(3102), - [anon_sym_assert] = ACTIONS(3102), - [anon_sym_defer] = ACTIONS(3102), - [anon_sym_goto] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_DOLLARfor] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_POUND] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(3102), - [anon_sym_AT_LBRACK] = ACTIONS(3102), - [sym___double_quote] = ACTIONS(3102), - [sym___single_quote] = ACTIONS(3102), - [sym___c_double_quote] = ACTIONS(3102), - [sym___c_single_quote] = ACTIONS(3102), - [sym___r_double_quote] = ACTIONS(3102), - [sym___r_single_quote] = ACTIONS(3102), + [ts_builtin_sym_end] = ACTIONS(4089), + [sym_identifier] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4091), + [anon_sym_CR] = ACTIONS(4091), + [anon_sym_CR_LF] = ACTIONS(4091), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4091), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_const] = ACTIONS(4091), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym___global] = ACTIONS(4091), + [anon_sym_type] = ACTIONS(4091), + [anon_sym_fn] = ACTIONS(4091), + [anon_sym_PLUS] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [anon_sym_STAR] = ACTIONS(4091), + [anon_sym_struct] = ACTIONS(4091), + [anon_sym_union] = ACTIONS(4091), + [anon_sym_pub] = ACTIONS(4091), + [anon_sym_mut] = ACTIONS(4091), + [anon_sym_enum] = ACTIONS(4091), + [anon_sym_interface] = ACTIONS(4091), + [anon_sym_QMARK] = ACTIONS(4091), + [anon_sym_BANG] = ACTIONS(4091), + [anon_sym_go] = ACTIONS(4091), + [anon_sym_spawn] = ACTIONS(4091), + [anon_sym_json_DOTdecode] = ACTIONS(4091), + [anon_sym_LBRACK2] = ACTIONS(4091), + [anon_sym_TILDE] = ACTIONS(4091), + [anon_sym_CARET] = ACTIONS(4091), + [anon_sym_AMP] = ACTIONS(4091), + [anon_sym_LT_DASH] = ACTIONS(4091), + [sym_none] = ACTIONS(4091), + [sym_true] = ACTIONS(4091), + [sym_false] = ACTIONS(4091), + [sym_nil] = ACTIONS(4091), + [anon_sym_if] = ACTIONS(4091), + [anon_sym_DOLLARif] = ACTIONS(4091), + [anon_sym_match] = ACTIONS(4091), + [anon_sym_select] = ACTIONS(4091), + [anon_sym_lock] = ACTIONS(4091), + [anon_sym_rlock] = ACTIONS(4091), + [anon_sym_unsafe] = ACTIONS(4091), + [anon_sym_sql] = ACTIONS(4091), + [sym_int_literal] = ACTIONS(4091), + [sym_float_literal] = ACTIONS(4091), + [sym_rune_literal] = ACTIONS(4091), + [anon_sym_AT] = ACTIONS(4091), + [anon_sym_shared] = ACTIONS(4091), + [anon_sym_map_LBRACK] = ACTIONS(4091), + [anon_sym_chan] = ACTIONS(4091), + [anon_sym_thread] = ACTIONS(4091), + [anon_sym_atomic] = ACTIONS(4091), + [anon_sym_assert] = ACTIONS(4091), + [anon_sym_defer] = ACTIONS(4091), + [anon_sym_goto] = ACTIONS(4091), + [anon_sym_break] = ACTIONS(4091), + [anon_sym_continue] = ACTIONS(4091), + [anon_sym_return] = ACTIONS(4091), + [anon_sym_DOLLARfor] = ACTIONS(4091), + [anon_sym_for] = ACTIONS(4091), + [anon_sym_POUND] = ACTIONS(4091), + [anon_sym_asm] = ACTIONS(4091), + [anon_sym_AT_LBRACK] = ACTIONS(4091), + [sym___double_quote] = ACTIONS(4091), + [sym___single_quote] = ACTIONS(4091), + [sym___c_double_quote] = ACTIONS(4091), + [sym___c_single_quote] = ACTIONS(4091), + [sym___r_double_quote] = ACTIONS(4091), + [sym___r_single_quote] = ACTIONS(4091), }, [1525] = { - [ts_builtin_sym_end] = ACTIONS(4046), - [sym_identifier] = ACTIONS(4048), - [anon_sym_LF] = ACTIONS(4048), - [anon_sym_CR] = ACTIONS(4048), - [anon_sym_CR_LF] = ACTIONS(4048), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4048), - [anon_sym_LBRACE] = ACTIONS(4048), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(4048), - [anon_sym___global] = ACTIONS(4048), - [anon_sym_type] = ACTIONS(4048), - [anon_sym_fn] = ACTIONS(4048), - [anon_sym_PLUS] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_pub] = ACTIONS(4048), - [anon_sym_mut] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_interface] = ACTIONS(4048), - [anon_sym_QMARK] = ACTIONS(4048), - [anon_sym_BANG] = ACTIONS(4048), - [anon_sym_go] = ACTIONS(4048), - [anon_sym_spawn] = ACTIONS(4048), - [anon_sym_json_DOTdecode] = ACTIONS(4048), - [anon_sym_LBRACK2] = ACTIONS(4048), - [anon_sym_TILDE] = ACTIONS(4048), - [anon_sym_CARET] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(4048), - [sym_none] = ACTIONS(4048), - [sym_true] = ACTIONS(4048), - [sym_false] = ACTIONS(4048), - [sym_nil] = ACTIONS(4048), - [anon_sym_if] = ACTIONS(4048), - [anon_sym_DOLLARif] = ACTIONS(4048), - [anon_sym_match] = ACTIONS(4048), - [anon_sym_select] = ACTIONS(4048), - [anon_sym_lock] = ACTIONS(4048), - [anon_sym_rlock] = ACTIONS(4048), - [anon_sym_unsafe] = ACTIONS(4048), - [anon_sym_sql] = ACTIONS(4048), - [sym_int_literal] = ACTIONS(4048), - [sym_float_literal] = ACTIONS(4048), - [sym_rune_literal] = ACTIONS(4048), - [anon_sym_AT] = ACTIONS(4048), - [anon_sym_shared] = ACTIONS(4048), - [anon_sym_map_LBRACK] = ACTIONS(4048), - [anon_sym_chan] = ACTIONS(4048), - [anon_sym_thread] = ACTIONS(4048), - [anon_sym_atomic] = ACTIONS(4048), - [anon_sym_assert] = ACTIONS(4048), - [anon_sym_defer] = ACTIONS(4048), - [anon_sym_goto] = ACTIONS(4048), - [anon_sym_break] = ACTIONS(4048), - [anon_sym_continue] = ACTIONS(4048), - [anon_sym_return] = ACTIONS(4048), - [anon_sym_DOLLARfor] = ACTIONS(4048), - [anon_sym_for] = ACTIONS(4048), - [anon_sym_POUND] = ACTIONS(4048), - [anon_sym_asm] = ACTIONS(4048), - [anon_sym_AT_LBRACK] = ACTIONS(4048), - [sym___double_quote] = ACTIONS(4048), - [sym___single_quote] = ACTIONS(4048), - [sym___c_double_quote] = ACTIONS(4048), - [sym___c_single_quote] = ACTIONS(4048), - [sym___r_double_quote] = ACTIONS(4048), - [sym___r_single_quote] = ACTIONS(4048), + [ts_builtin_sym_end] = ACTIONS(4093), + [sym_identifier] = ACTIONS(4095), + [anon_sym_LF] = ACTIONS(4095), + [anon_sym_CR] = ACTIONS(4095), + [anon_sym_CR_LF] = ACTIONS(4095), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_const] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym___global] = ACTIONS(4095), + [anon_sym_type] = ACTIONS(4095), + [anon_sym_fn] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4095), + [anon_sym_DASH] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4095), + [anon_sym_struct] = ACTIONS(4095), + [anon_sym_union] = ACTIONS(4095), + [anon_sym_pub] = ACTIONS(4095), + [anon_sym_mut] = ACTIONS(4095), + [anon_sym_enum] = ACTIONS(4095), + [anon_sym_interface] = ACTIONS(4095), + [anon_sym_QMARK] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4095), + [anon_sym_go] = ACTIONS(4095), + [anon_sym_spawn] = ACTIONS(4095), + [anon_sym_json_DOTdecode] = ACTIONS(4095), + [anon_sym_LBRACK2] = ACTIONS(4095), + [anon_sym_TILDE] = ACTIONS(4095), + [anon_sym_CARET] = ACTIONS(4095), + [anon_sym_AMP] = ACTIONS(4095), + [anon_sym_LT_DASH] = ACTIONS(4095), + [sym_none] = ACTIONS(4095), + [sym_true] = ACTIONS(4095), + [sym_false] = ACTIONS(4095), + [sym_nil] = ACTIONS(4095), + [anon_sym_if] = ACTIONS(4095), + [anon_sym_DOLLARif] = ACTIONS(4095), + [anon_sym_match] = ACTIONS(4095), + [anon_sym_select] = ACTIONS(4095), + [anon_sym_lock] = ACTIONS(4095), + [anon_sym_rlock] = ACTIONS(4095), + [anon_sym_unsafe] = ACTIONS(4095), + [anon_sym_sql] = ACTIONS(4095), + [sym_int_literal] = ACTIONS(4095), + [sym_float_literal] = ACTIONS(4095), + [sym_rune_literal] = ACTIONS(4095), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_shared] = ACTIONS(4095), + [anon_sym_map_LBRACK] = ACTIONS(4095), + [anon_sym_chan] = ACTIONS(4095), + [anon_sym_thread] = ACTIONS(4095), + [anon_sym_atomic] = ACTIONS(4095), + [anon_sym_assert] = ACTIONS(4095), + [anon_sym_defer] = ACTIONS(4095), + [anon_sym_goto] = ACTIONS(4095), + [anon_sym_break] = ACTIONS(4095), + [anon_sym_continue] = ACTIONS(4095), + [anon_sym_return] = ACTIONS(4095), + [anon_sym_DOLLARfor] = ACTIONS(4095), + [anon_sym_for] = ACTIONS(4095), + [anon_sym_POUND] = ACTIONS(4095), + [anon_sym_asm] = ACTIONS(4095), + [anon_sym_AT_LBRACK] = ACTIONS(4095), + [sym___double_quote] = ACTIONS(4095), + [sym___single_quote] = ACTIONS(4095), + [sym___c_double_quote] = ACTIONS(4095), + [sym___c_single_quote] = ACTIONS(4095), + [sym___r_double_quote] = ACTIONS(4095), + [sym___r_single_quote] = ACTIONS(4095), }, [1526] = { - [ts_builtin_sym_end] = ACTIONS(4050), - [sym_identifier] = ACTIONS(4052), - [anon_sym_LF] = ACTIONS(4052), - [anon_sym_CR] = ACTIONS(4052), - [anon_sym_CR_LF] = ACTIONS(4052), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4052), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4052), - [anon_sym_LPAREN] = ACTIONS(4052), - [anon_sym___global] = ACTIONS(4052), - [anon_sym_type] = ACTIONS(4052), - [anon_sym_fn] = ACTIONS(4052), - [anon_sym_PLUS] = ACTIONS(4052), - [anon_sym_DASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4052), - [anon_sym_struct] = ACTIONS(4052), - [anon_sym_union] = ACTIONS(4052), - [anon_sym_pub] = ACTIONS(4052), - [anon_sym_mut] = ACTIONS(4052), - [anon_sym_enum] = ACTIONS(4052), - [anon_sym_interface] = ACTIONS(4052), - [anon_sym_QMARK] = ACTIONS(4052), - [anon_sym_BANG] = ACTIONS(4052), - [anon_sym_go] = ACTIONS(4052), - [anon_sym_spawn] = ACTIONS(4052), - [anon_sym_json_DOTdecode] = ACTIONS(4052), - [anon_sym_LBRACK2] = ACTIONS(4052), - [anon_sym_TILDE] = ACTIONS(4052), - [anon_sym_CARET] = ACTIONS(4052), - [anon_sym_AMP] = ACTIONS(4052), - [anon_sym_LT_DASH] = ACTIONS(4052), - [sym_none] = ACTIONS(4052), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_nil] = ACTIONS(4052), - [anon_sym_if] = ACTIONS(4052), - [anon_sym_DOLLARif] = ACTIONS(4052), - [anon_sym_match] = ACTIONS(4052), - [anon_sym_select] = ACTIONS(4052), - [anon_sym_lock] = ACTIONS(4052), - [anon_sym_rlock] = ACTIONS(4052), - [anon_sym_unsafe] = ACTIONS(4052), - [anon_sym_sql] = ACTIONS(4052), - [sym_int_literal] = ACTIONS(4052), - [sym_float_literal] = ACTIONS(4052), - [sym_rune_literal] = ACTIONS(4052), - [anon_sym_AT] = ACTIONS(4052), - [anon_sym_shared] = ACTIONS(4052), - [anon_sym_map_LBRACK] = ACTIONS(4052), - [anon_sym_chan] = ACTIONS(4052), - [anon_sym_thread] = ACTIONS(4052), - [anon_sym_atomic] = ACTIONS(4052), - [anon_sym_assert] = ACTIONS(4052), - [anon_sym_defer] = ACTIONS(4052), - [anon_sym_goto] = ACTIONS(4052), - [anon_sym_break] = ACTIONS(4052), - [anon_sym_continue] = ACTIONS(4052), - [anon_sym_return] = ACTIONS(4052), - [anon_sym_DOLLARfor] = ACTIONS(4052), - [anon_sym_for] = ACTIONS(4052), - [anon_sym_POUND] = ACTIONS(4052), - [anon_sym_asm] = ACTIONS(4052), - [anon_sym_AT_LBRACK] = ACTIONS(4052), - [sym___double_quote] = ACTIONS(4052), - [sym___single_quote] = ACTIONS(4052), - [sym___c_double_quote] = ACTIONS(4052), - [sym___c_single_quote] = ACTIONS(4052), - [sym___r_double_quote] = ACTIONS(4052), - [sym___r_single_quote] = ACTIONS(4052), + [ts_builtin_sym_end] = ACTIONS(4097), + [sym_identifier] = ACTIONS(4099), + [anon_sym_LF] = ACTIONS(4099), + [anon_sym_CR] = ACTIONS(4099), + [anon_sym_CR_LF] = ACTIONS(4099), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4099), + [anon_sym_LBRACE] = ACTIONS(4099), + [anon_sym_const] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym___global] = ACTIONS(4099), + [anon_sym_type] = ACTIONS(4099), + [anon_sym_fn] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4099), + [anon_sym_DASH] = ACTIONS(4099), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_struct] = ACTIONS(4099), + [anon_sym_union] = ACTIONS(4099), + [anon_sym_pub] = ACTIONS(4099), + [anon_sym_mut] = ACTIONS(4099), + [anon_sym_enum] = ACTIONS(4099), + [anon_sym_interface] = ACTIONS(4099), + [anon_sym_QMARK] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4099), + [anon_sym_go] = ACTIONS(4099), + [anon_sym_spawn] = ACTIONS(4099), + [anon_sym_json_DOTdecode] = ACTIONS(4099), + [anon_sym_LBRACK2] = ACTIONS(4099), + [anon_sym_TILDE] = ACTIONS(4099), + [anon_sym_CARET] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(4099), + [anon_sym_LT_DASH] = ACTIONS(4099), + [sym_none] = ACTIONS(4099), + [sym_true] = ACTIONS(4099), + [sym_false] = ACTIONS(4099), + [sym_nil] = ACTIONS(4099), + [anon_sym_if] = ACTIONS(4099), + [anon_sym_DOLLARif] = ACTIONS(4099), + [anon_sym_match] = ACTIONS(4099), + [anon_sym_select] = ACTIONS(4099), + [anon_sym_lock] = ACTIONS(4099), + [anon_sym_rlock] = ACTIONS(4099), + [anon_sym_unsafe] = ACTIONS(4099), + [anon_sym_sql] = ACTIONS(4099), + [sym_int_literal] = ACTIONS(4099), + [sym_float_literal] = ACTIONS(4099), + [sym_rune_literal] = ACTIONS(4099), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_shared] = ACTIONS(4099), + [anon_sym_map_LBRACK] = ACTIONS(4099), + [anon_sym_chan] = ACTIONS(4099), + [anon_sym_thread] = ACTIONS(4099), + [anon_sym_atomic] = ACTIONS(4099), + [anon_sym_assert] = ACTIONS(4099), + [anon_sym_defer] = ACTIONS(4099), + [anon_sym_goto] = ACTIONS(4099), + [anon_sym_break] = ACTIONS(4099), + [anon_sym_continue] = ACTIONS(4099), + [anon_sym_return] = ACTIONS(4099), + [anon_sym_DOLLARfor] = ACTIONS(4099), + [anon_sym_for] = ACTIONS(4099), + [anon_sym_POUND] = ACTIONS(4099), + [anon_sym_asm] = ACTIONS(4099), + [anon_sym_AT_LBRACK] = ACTIONS(4099), + [sym___double_quote] = ACTIONS(4099), + [sym___single_quote] = ACTIONS(4099), + [sym___c_double_quote] = ACTIONS(4099), + [sym___c_single_quote] = ACTIONS(4099), + [sym___r_double_quote] = ACTIONS(4099), + [sym___r_single_quote] = ACTIONS(4099), }, [1527] = { - [ts_builtin_sym_end] = ACTIONS(4054), - [sym_identifier] = ACTIONS(4056), - [anon_sym_LF] = ACTIONS(4056), - [anon_sym_CR] = ACTIONS(4056), - [anon_sym_CR_LF] = ACTIONS(4056), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(4056), - [anon_sym_const] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(4056), - [anon_sym___global] = ACTIONS(4056), - [anon_sym_type] = ACTIONS(4056), - [anon_sym_fn] = ACTIONS(4056), - [anon_sym_PLUS] = ACTIONS(4056), - [anon_sym_DASH] = ACTIONS(4056), - [anon_sym_STAR] = ACTIONS(4056), - [anon_sym_struct] = ACTIONS(4056), - [anon_sym_union] = ACTIONS(4056), - [anon_sym_pub] = ACTIONS(4056), - [anon_sym_mut] = ACTIONS(4056), - [anon_sym_enum] = ACTIONS(4056), - [anon_sym_interface] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4056), - [anon_sym_BANG] = ACTIONS(4056), - [anon_sym_go] = ACTIONS(4056), - [anon_sym_spawn] = ACTIONS(4056), - [anon_sym_json_DOTdecode] = ACTIONS(4056), - [anon_sym_LBRACK2] = ACTIONS(4056), - [anon_sym_TILDE] = ACTIONS(4056), - [anon_sym_CARET] = ACTIONS(4056), - [anon_sym_AMP] = ACTIONS(4056), - [anon_sym_LT_DASH] = ACTIONS(4056), - [sym_none] = ACTIONS(4056), - [sym_true] = ACTIONS(4056), - [sym_false] = ACTIONS(4056), - [sym_nil] = ACTIONS(4056), - [anon_sym_if] = ACTIONS(4056), - [anon_sym_DOLLARif] = ACTIONS(4056), - [anon_sym_match] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_lock] = ACTIONS(4056), - [anon_sym_rlock] = ACTIONS(4056), - [anon_sym_unsafe] = ACTIONS(4056), - [anon_sym_sql] = ACTIONS(4056), - [sym_int_literal] = ACTIONS(4056), - [sym_float_literal] = ACTIONS(4056), - [sym_rune_literal] = ACTIONS(4056), - [anon_sym_AT] = ACTIONS(4056), - [anon_sym_shared] = ACTIONS(4056), - [anon_sym_map_LBRACK] = ACTIONS(4056), - [anon_sym_chan] = ACTIONS(4056), - [anon_sym_thread] = ACTIONS(4056), - [anon_sym_atomic] = ACTIONS(4056), - [anon_sym_assert] = ACTIONS(4056), - [anon_sym_defer] = ACTIONS(4056), - [anon_sym_goto] = ACTIONS(4056), - [anon_sym_break] = ACTIONS(4056), - [anon_sym_continue] = ACTIONS(4056), - [anon_sym_return] = ACTIONS(4056), - [anon_sym_DOLLARfor] = ACTIONS(4056), - [anon_sym_for] = ACTIONS(4056), - [anon_sym_POUND] = ACTIONS(4056), - [anon_sym_asm] = ACTIONS(4056), - [anon_sym_AT_LBRACK] = ACTIONS(4056), - [sym___double_quote] = ACTIONS(4056), - [sym___single_quote] = ACTIONS(4056), - [sym___c_double_quote] = ACTIONS(4056), - [sym___c_single_quote] = ACTIONS(4056), - [sym___r_double_quote] = ACTIONS(4056), - [sym___r_single_quote] = ACTIONS(4056), + [ts_builtin_sym_end] = ACTIONS(4101), + [sym_identifier] = ACTIONS(4103), + [anon_sym_LF] = ACTIONS(4103), + [anon_sym_CR] = ACTIONS(4103), + [anon_sym_CR_LF] = ACTIONS(4103), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4103), + [anon_sym_const] = ACTIONS(4103), + [anon_sym_LPAREN] = ACTIONS(4103), + [anon_sym___global] = ACTIONS(4103), + [anon_sym_type] = ACTIONS(4103), + [anon_sym_fn] = ACTIONS(4103), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [anon_sym_struct] = ACTIONS(4103), + [anon_sym_union] = ACTIONS(4103), + [anon_sym_pub] = ACTIONS(4103), + [anon_sym_mut] = ACTIONS(4103), + [anon_sym_enum] = ACTIONS(4103), + [anon_sym_interface] = ACTIONS(4103), + [anon_sym_QMARK] = ACTIONS(4103), + [anon_sym_BANG] = ACTIONS(4103), + [anon_sym_go] = ACTIONS(4103), + [anon_sym_spawn] = ACTIONS(4103), + [anon_sym_json_DOTdecode] = ACTIONS(4103), + [anon_sym_LBRACK2] = ACTIONS(4103), + [anon_sym_TILDE] = ACTIONS(4103), + [anon_sym_CARET] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4103), + [anon_sym_LT_DASH] = ACTIONS(4103), + [sym_none] = ACTIONS(4103), + [sym_true] = ACTIONS(4103), + [sym_false] = ACTIONS(4103), + [sym_nil] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_DOLLARif] = ACTIONS(4103), + [anon_sym_match] = ACTIONS(4103), + [anon_sym_select] = ACTIONS(4103), + [anon_sym_lock] = ACTIONS(4103), + [anon_sym_rlock] = ACTIONS(4103), + [anon_sym_unsafe] = ACTIONS(4103), + [anon_sym_sql] = ACTIONS(4103), + [sym_int_literal] = ACTIONS(4103), + [sym_float_literal] = ACTIONS(4103), + [sym_rune_literal] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4103), + [anon_sym_shared] = ACTIONS(4103), + [anon_sym_map_LBRACK] = ACTIONS(4103), + [anon_sym_chan] = ACTIONS(4103), + [anon_sym_thread] = ACTIONS(4103), + [anon_sym_atomic] = ACTIONS(4103), + [anon_sym_assert] = ACTIONS(4103), + [anon_sym_defer] = ACTIONS(4103), + [anon_sym_goto] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_DOLLARfor] = ACTIONS(4103), + [anon_sym_for] = ACTIONS(4103), + [anon_sym_POUND] = ACTIONS(4103), + [anon_sym_asm] = ACTIONS(4103), + [anon_sym_AT_LBRACK] = ACTIONS(4103), + [sym___double_quote] = ACTIONS(4103), + [sym___single_quote] = ACTIONS(4103), + [sym___c_double_quote] = ACTIONS(4103), + [sym___c_single_quote] = ACTIONS(4103), + [sym___r_double_quote] = ACTIONS(4103), + [sym___r_single_quote] = ACTIONS(4103), }, [1528] = { - [ts_builtin_sym_end] = ACTIONS(4058), - [sym_identifier] = ACTIONS(4060), - [anon_sym_LF] = ACTIONS(4060), - [anon_sym_CR] = ACTIONS(4060), - [anon_sym_CR_LF] = ACTIONS(4060), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(4060), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4060), - [anon_sym___global] = ACTIONS(4060), - [anon_sym_type] = ACTIONS(4060), - [anon_sym_fn] = ACTIONS(4060), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_pub] = ACTIONS(4060), - [anon_sym_mut] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_interface] = ACTIONS(4060), - [anon_sym_QMARK] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(4060), - [anon_sym_go] = ACTIONS(4060), - [anon_sym_spawn] = ACTIONS(4060), - [anon_sym_json_DOTdecode] = ACTIONS(4060), - [anon_sym_LBRACK2] = ACTIONS(4060), - [anon_sym_TILDE] = ACTIONS(4060), - [anon_sym_CARET] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4060), - [anon_sym_LT_DASH] = ACTIONS(4060), - [sym_none] = ACTIONS(4060), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [sym_nil] = ACTIONS(4060), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_DOLLARif] = ACTIONS(4060), - [anon_sym_match] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), - [anon_sym_lock] = ACTIONS(4060), - [anon_sym_rlock] = ACTIONS(4060), - [anon_sym_unsafe] = ACTIONS(4060), - [anon_sym_sql] = ACTIONS(4060), - [sym_int_literal] = ACTIONS(4060), - [sym_float_literal] = ACTIONS(4060), - [sym_rune_literal] = ACTIONS(4060), - [anon_sym_AT] = ACTIONS(4060), - [anon_sym_shared] = ACTIONS(4060), - [anon_sym_map_LBRACK] = ACTIONS(4060), - [anon_sym_chan] = ACTIONS(4060), - [anon_sym_thread] = ACTIONS(4060), - [anon_sym_atomic] = ACTIONS(4060), - [anon_sym_assert] = ACTIONS(4060), - [anon_sym_defer] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_DOLLARfor] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_POUND] = ACTIONS(4060), - [anon_sym_asm] = ACTIONS(4060), - [anon_sym_AT_LBRACK] = ACTIONS(4060), - [sym___double_quote] = ACTIONS(4060), - [sym___single_quote] = ACTIONS(4060), - [sym___c_double_quote] = ACTIONS(4060), - [sym___c_single_quote] = ACTIONS(4060), - [sym___r_double_quote] = ACTIONS(4060), - [sym___r_single_quote] = ACTIONS(4060), + [ts_builtin_sym_end] = ACTIONS(4105), + [sym_identifier] = ACTIONS(4107), + [anon_sym_LF] = ACTIONS(4107), + [anon_sym_CR] = ACTIONS(4107), + [anon_sym_CR_LF] = ACTIONS(4107), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4107), + [anon_sym_LBRACE] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_LPAREN] = ACTIONS(4107), + [anon_sym___global] = ACTIONS(4107), + [anon_sym_type] = ACTIONS(4107), + [anon_sym_fn] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(4107), + [anon_sym_DASH] = ACTIONS(4107), + [anon_sym_STAR] = ACTIONS(4107), + [anon_sym_struct] = ACTIONS(4107), + [anon_sym_union] = ACTIONS(4107), + [anon_sym_pub] = ACTIONS(4107), + [anon_sym_mut] = ACTIONS(4107), + [anon_sym_enum] = ACTIONS(4107), + [anon_sym_interface] = ACTIONS(4107), + [anon_sym_QMARK] = ACTIONS(4107), + [anon_sym_BANG] = ACTIONS(4107), + [anon_sym_go] = ACTIONS(4107), + [anon_sym_spawn] = ACTIONS(4107), + [anon_sym_json_DOTdecode] = ACTIONS(4107), + [anon_sym_LBRACK2] = ACTIONS(4107), + [anon_sym_TILDE] = ACTIONS(4107), + [anon_sym_CARET] = ACTIONS(4107), + [anon_sym_AMP] = ACTIONS(4107), + [anon_sym_LT_DASH] = ACTIONS(4107), + [sym_none] = ACTIONS(4107), + [sym_true] = ACTIONS(4107), + [sym_false] = ACTIONS(4107), + [sym_nil] = ACTIONS(4107), + [anon_sym_if] = ACTIONS(4107), + [anon_sym_DOLLARif] = ACTIONS(4107), + [anon_sym_match] = ACTIONS(4107), + [anon_sym_select] = ACTIONS(4107), + [anon_sym_lock] = ACTIONS(4107), + [anon_sym_rlock] = ACTIONS(4107), + [anon_sym_unsafe] = ACTIONS(4107), + [anon_sym_sql] = ACTIONS(4107), + [sym_int_literal] = ACTIONS(4107), + [sym_float_literal] = ACTIONS(4107), + [sym_rune_literal] = ACTIONS(4107), + [anon_sym_AT] = ACTIONS(4107), + [anon_sym_shared] = ACTIONS(4107), + [anon_sym_map_LBRACK] = ACTIONS(4107), + [anon_sym_chan] = ACTIONS(4107), + [anon_sym_thread] = ACTIONS(4107), + [anon_sym_atomic] = ACTIONS(4107), + [anon_sym_assert] = ACTIONS(4107), + [anon_sym_defer] = ACTIONS(4107), + [anon_sym_goto] = ACTIONS(4107), + [anon_sym_break] = ACTIONS(4107), + [anon_sym_continue] = ACTIONS(4107), + [anon_sym_return] = ACTIONS(4107), + [anon_sym_DOLLARfor] = ACTIONS(4107), + [anon_sym_for] = ACTIONS(4107), + [anon_sym_POUND] = ACTIONS(4107), + [anon_sym_asm] = ACTIONS(4107), + [anon_sym_AT_LBRACK] = ACTIONS(4107), + [sym___double_quote] = ACTIONS(4107), + [sym___single_quote] = ACTIONS(4107), + [sym___c_double_quote] = ACTIONS(4107), + [sym___c_single_quote] = ACTIONS(4107), + [sym___r_double_quote] = ACTIONS(4107), + [sym___r_single_quote] = ACTIONS(4107), }, [1529] = { - [ts_builtin_sym_end] = ACTIONS(4062), - [sym_identifier] = ACTIONS(4064), - [anon_sym_LF] = ACTIONS(4064), - [anon_sym_CR] = ACTIONS(4064), - [anon_sym_CR_LF] = ACTIONS(4064), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4064), - [anon_sym_const] = ACTIONS(4064), - [anon_sym_LPAREN] = ACTIONS(4064), - [anon_sym___global] = ACTIONS(4064), - [anon_sym_type] = ACTIONS(4064), - [anon_sym_fn] = ACTIONS(4064), - [anon_sym_PLUS] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_struct] = ACTIONS(4064), - [anon_sym_union] = ACTIONS(4064), - [anon_sym_pub] = ACTIONS(4064), - [anon_sym_mut] = ACTIONS(4064), - [anon_sym_enum] = ACTIONS(4064), - [anon_sym_interface] = ACTIONS(4064), - [anon_sym_QMARK] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4064), - [anon_sym_go] = ACTIONS(4064), - [anon_sym_spawn] = ACTIONS(4064), - [anon_sym_json_DOTdecode] = ACTIONS(4064), - [anon_sym_LBRACK2] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_CARET] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4064), - [anon_sym_LT_DASH] = ACTIONS(4064), - [sym_none] = ACTIONS(4064), - [sym_true] = ACTIONS(4064), - [sym_false] = ACTIONS(4064), - [sym_nil] = ACTIONS(4064), - [anon_sym_if] = ACTIONS(4064), - [anon_sym_DOLLARif] = ACTIONS(4064), - [anon_sym_match] = ACTIONS(4064), - [anon_sym_select] = ACTIONS(4064), - [anon_sym_lock] = ACTIONS(4064), - [anon_sym_rlock] = ACTIONS(4064), - [anon_sym_unsafe] = ACTIONS(4064), - [anon_sym_sql] = ACTIONS(4064), - [sym_int_literal] = ACTIONS(4064), - [sym_float_literal] = ACTIONS(4064), - [sym_rune_literal] = ACTIONS(4064), - [anon_sym_AT] = ACTIONS(4064), - [anon_sym_shared] = ACTIONS(4064), - [anon_sym_map_LBRACK] = ACTIONS(4064), - [anon_sym_chan] = ACTIONS(4064), - [anon_sym_thread] = ACTIONS(4064), - [anon_sym_atomic] = ACTIONS(4064), - [anon_sym_assert] = ACTIONS(4064), - [anon_sym_defer] = ACTIONS(4064), - [anon_sym_goto] = ACTIONS(4064), - [anon_sym_break] = ACTIONS(4064), - [anon_sym_continue] = ACTIONS(4064), - [anon_sym_return] = ACTIONS(4064), - [anon_sym_DOLLARfor] = ACTIONS(4064), - [anon_sym_for] = ACTIONS(4064), - [anon_sym_POUND] = ACTIONS(4064), - [anon_sym_asm] = ACTIONS(4064), - [anon_sym_AT_LBRACK] = ACTIONS(4064), - [sym___double_quote] = ACTIONS(4064), - [sym___single_quote] = ACTIONS(4064), - [sym___c_double_quote] = ACTIONS(4064), - [sym___c_single_quote] = ACTIONS(4064), - [sym___r_double_quote] = ACTIONS(4064), - [sym___r_single_quote] = ACTIONS(4064), + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(619), }, [1530] = { - [ts_builtin_sym_end] = ACTIONS(4066), - [sym_identifier] = ACTIONS(4068), - [anon_sym_LF] = ACTIONS(4068), - [anon_sym_CR] = ACTIONS(4068), - [anon_sym_CR_LF] = ACTIONS(4068), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4068), - [anon_sym_LBRACE] = ACTIONS(4068), - [anon_sym_const] = ACTIONS(4068), - [anon_sym_LPAREN] = ACTIONS(4068), - [anon_sym___global] = ACTIONS(4068), - [anon_sym_type] = ACTIONS(4068), - [anon_sym_fn] = ACTIONS(4068), - [anon_sym_PLUS] = ACTIONS(4068), - [anon_sym_DASH] = ACTIONS(4068), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_struct] = ACTIONS(4068), - [anon_sym_union] = ACTIONS(4068), - [anon_sym_pub] = ACTIONS(4068), - [anon_sym_mut] = ACTIONS(4068), - [anon_sym_enum] = ACTIONS(4068), - [anon_sym_interface] = ACTIONS(4068), - [anon_sym_QMARK] = ACTIONS(4068), - [anon_sym_BANG] = ACTIONS(4068), - [anon_sym_go] = ACTIONS(4068), - [anon_sym_spawn] = ACTIONS(4068), - [anon_sym_json_DOTdecode] = ACTIONS(4068), - [anon_sym_LBRACK2] = ACTIONS(4068), - [anon_sym_TILDE] = ACTIONS(4068), - [anon_sym_CARET] = ACTIONS(4068), - [anon_sym_AMP] = ACTIONS(4068), - [anon_sym_LT_DASH] = ACTIONS(4068), - [sym_none] = ACTIONS(4068), - [sym_true] = ACTIONS(4068), - [sym_false] = ACTIONS(4068), - [sym_nil] = ACTIONS(4068), - [anon_sym_if] = ACTIONS(4068), - [anon_sym_DOLLARif] = ACTIONS(4068), - [anon_sym_match] = ACTIONS(4068), - [anon_sym_select] = ACTIONS(4068), - [anon_sym_lock] = ACTIONS(4068), - [anon_sym_rlock] = ACTIONS(4068), - [anon_sym_unsafe] = ACTIONS(4068), - [anon_sym_sql] = ACTIONS(4068), - [sym_int_literal] = ACTIONS(4068), - [sym_float_literal] = ACTIONS(4068), - [sym_rune_literal] = ACTIONS(4068), - [anon_sym_AT] = ACTIONS(4068), - [anon_sym_shared] = ACTIONS(4068), - [anon_sym_map_LBRACK] = ACTIONS(4068), - [anon_sym_chan] = ACTIONS(4068), - [anon_sym_thread] = ACTIONS(4068), - [anon_sym_atomic] = ACTIONS(4068), - [anon_sym_assert] = ACTIONS(4068), - [anon_sym_defer] = ACTIONS(4068), - [anon_sym_goto] = ACTIONS(4068), - [anon_sym_break] = ACTIONS(4068), - [anon_sym_continue] = ACTIONS(4068), - [anon_sym_return] = ACTIONS(4068), - [anon_sym_DOLLARfor] = ACTIONS(4068), - [anon_sym_for] = ACTIONS(4068), - [anon_sym_POUND] = ACTIONS(4068), - [anon_sym_asm] = ACTIONS(4068), - [anon_sym_AT_LBRACK] = ACTIONS(4068), - [sym___double_quote] = ACTIONS(4068), - [sym___single_quote] = ACTIONS(4068), - [sym___c_double_quote] = ACTIONS(4068), - [sym___c_single_quote] = ACTIONS(4068), - [sym___r_double_quote] = ACTIONS(4068), - [sym___r_single_quote] = ACTIONS(4068), + [ts_builtin_sym_end] = ACTIONS(4109), + [sym_identifier] = ACTIONS(4111), + [anon_sym_LF] = ACTIONS(4111), + [anon_sym_CR] = ACTIONS(4111), + [anon_sym_CR_LF] = ACTIONS(4111), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4111), + [anon_sym_LBRACE] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4111), + [anon_sym_LPAREN] = ACTIONS(4111), + [anon_sym___global] = ACTIONS(4111), + [anon_sym_type] = ACTIONS(4111), + [anon_sym_fn] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(4111), + [anon_sym_DASH] = ACTIONS(4111), + [anon_sym_STAR] = ACTIONS(4111), + [anon_sym_struct] = ACTIONS(4111), + [anon_sym_union] = ACTIONS(4111), + [anon_sym_pub] = ACTIONS(4111), + [anon_sym_mut] = ACTIONS(4111), + [anon_sym_enum] = ACTIONS(4111), + [anon_sym_interface] = ACTIONS(4111), + [anon_sym_QMARK] = ACTIONS(4111), + [anon_sym_BANG] = ACTIONS(4111), + [anon_sym_go] = ACTIONS(4111), + [anon_sym_spawn] = ACTIONS(4111), + [anon_sym_json_DOTdecode] = ACTIONS(4111), + [anon_sym_LBRACK2] = ACTIONS(4111), + [anon_sym_TILDE] = ACTIONS(4111), + [anon_sym_CARET] = ACTIONS(4111), + [anon_sym_AMP] = ACTIONS(4111), + [anon_sym_LT_DASH] = ACTIONS(4111), + [sym_none] = ACTIONS(4111), + [sym_true] = ACTIONS(4111), + [sym_false] = ACTIONS(4111), + [sym_nil] = ACTIONS(4111), + [anon_sym_if] = ACTIONS(4111), + [anon_sym_DOLLARif] = ACTIONS(4111), + [anon_sym_match] = ACTIONS(4111), + [anon_sym_select] = ACTIONS(4111), + [anon_sym_lock] = ACTIONS(4111), + [anon_sym_rlock] = ACTIONS(4111), + [anon_sym_unsafe] = ACTIONS(4111), + [anon_sym_sql] = ACTIONS(4111), + [sym_int_literal] = ACTIONS(4111), + [sym_float_literal] = ACTIONS(4111), + [sym_rune_literal] = ACTIONS(4111), + [anon_sym_AT] = ACTIONS(4111), + [anon_sym_shared] = ACTIONS(4111), + [anon_sym_map_LBRACK] = ACTIONS(4111), + [anon_sym_chan] = ACTIONS(4111), + [anon_sym_thread] = ACTIONS(4111), + [anon_sym_atomic] = ACTIONS(4111), + [anon_sym_assert] = ACTIONS(4111), + [anon_sym_defer] = ACTIONS(4111), + [anon_sym_goto] = ACTIONS(4111), + [anon_sym_break] = ACTIONS(4111), + [anon_sym_continue] = ACTIONS(4111), + [anon_sym_return] = ACTIONS(4111), + [anon_sym_DOLLARfor] = ACTIONS(4111), + [anon_sym_for] = ACTIONS(4111), + [anon_sym_POUND] = ACTIONS(4111), + [anon_sym_asm] = ACTIONS(4111), + [anon_sym_AT_LBRACK] = ACTIONS(4111), + [sym___double_quote] = ACTIONS(4111), + [sym___single_quote] = ACTIONS(4111), + [sym___c_double_quote] = ACTIONS(4111), + [sym___c_single_quote] = ACTIONS(4111), + [sym___r_double_quote] = ACTIONS(4111), + [sym___r_single_quote] = ACTIONS(4111), }, [1531] = { - [ts_builtin_sym_end] = ACTIONS(4070), - [sym_identifier] = ACTIONS(4072), - [anon_sym_LF] = ACTIONS(4072), - [anon_sym_CR] = ACTIONS(4072), - [anon_sym_CR_LF] = ACTIONS(4072), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_LBRACE] = ACTIONS(4072), - [anon_sym_const] = ACTIONS(4072), - [anon_sym_LPAREN] = ACTIONS(4072), - [anon_sym___global] = ACTIONS(4072), - [anon_sym_type] = ACTIONS(4072), - [anon_sym_fn] = ACTIONS(4072), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_struct] = ACTIONS(4072), - [anon_sym_union] = ACTIONS(4072), - [anon_sym_pub] = ACTIONS(4072), - [anon_sym_mut] = ACTIONS(4072), - [anon_sym_enum] = ACTIONS(4072), - [anon_sym_interface] = ACTIONS(4072), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_go] = ACTIONS(4072), - [anon_sym_spawn] = ACTIONS(4072), - [anon_sym_json_DOTdecode] = ACTIONS(4072), - [anon_sym_LBRACK2] = ACTIONS(4072), - [anon_sym_TILDE] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_DASH] = ACTIONS(4072), - [sym_none] = ACTIONS(4072), - [sym_true] = ACTIONS(4072), - [sym_false] = ACTIONS(4072), - [sym_nil] = ACTIONS(4072), - [anon_sym_if] = ACTIONS(4072), - [anon_sym_DOLLARif] = ACTIONS(4072), - [anon_sym_match] = ACTIONS(4072), - [anon_sym_select] = ACTIONS(4072), - [anon_sym_lock] = ACTIONS(4072), - [anon_sym_rlock] = ACTIONS(4072), - [anon_sym_unsafe] = ACTIONS(4072), - [anon_sym_sql] = ACTIONS(4072), - [sym_int_literal] = ACTIONS(4072), - [sym_float_literal] = ACTIONS(4072), - [sym_rune_literal] = ACTIONS(4072), - [anon_sym_AT] = ACTIONS(4072), - [anon_sym_shared] = ACTIONS(4072), - [anon_sym_map_LBRACK] = ACTIONS(4072), - [anon_sym_chan] = ACTIONS(4072), - [anon_sym_thread] = ACTIONS(4072), - [anon_sym_atomic] = ACTIONS(4072), - [anon_sym_assert] = ACTIONS(4072), - [anon_sym_defer] = ACTIONS(4072), - [anon_sym_goto] = ACTIONS(4072), - [anon_sym_break] = ACTIONS(4072), - [anon_sym_continue] = ACTIONS(4072), - [anon_sym_return] = ACTIONS(4072), - [anon_sym_DOLLARfor] = ACTIONS(4072), - [anon_sym_for] = ACTIONS(4072), - [anon_sym_POUND] = ACTIONS(4072), - [anon_sym_asm] = ACTIONS(4072), - [anon_sym_AT_LBRACK] = ACTIONS(4072), - [sym___double_quote] = ACTIONS(4072), - [sym___single_quote] = ACTIONS(4072), - [sym___c_double_quote] = ACTIONS(4072), - [sym___c_single_quote] = ACTIONS(4072), - [sym___r_double_quote] = ACTIONS(4072), - [sym___r_single_quote] = ACTIONS(4072), + [ts_builtin_sym_end] = ACTIONS(4113), + [sym_identifier] = ACTIONS(4115), + [anon_sym_LF] = ACTIONS(4115), + [anon_sym_CR] = ACTIONS(4115), + [anon_sym_CR_LF] = ACTIONS(4115), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4115), + [anon_sym_LBRACE] = ACTIONS(4115), + [anon_sym_const] = ACTIONS(4115), + [anon_sym_LPAREN] = ACTIONS(4115), + [anon_sym___global] = ACTIONS(4115), + [anon_sym_type] = ACTIONS(4115), + [anon_sym_fn] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(4115), + [anon_sym_DASH] = ACTIONS(4115), + [anon_sym_STAR] = ACTIONS(4115), + [anon_sym_struct] = ACTIONS(4115), + [anon_sym_union] = ACTIONS(4115), + [anon_sym_pub] = ACTIONS(4115), + [anon_sym_mut] = ACTIONS(4115), + [anon_sym_enum] = ACTIONS(4115), + [anon_sym_interface] = ACTIONS(4115), + [anon_sym_QMARK] = ACTIONS(4115), + [anon_sym_BANG] = ACTIONS(4115), + [anon_sym_go] = ACTIONS(4115), + [anon_sym_spawn] = ACTIONS(4115), + [anon_sym_json_DOTdecode] = ACTIONS(4115), + [anon_sym_LBRACK2] = ACTIONS(4115), + [anon_sym_TILDE] = ACTIONS(4115), + [anon_sym_CARET] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(4115), + [anon_sym_LT_DASH] = ACTIONS(4115), + [sym_none] = ACTIONS(4115), + [sym_true] = ACTIONS(4115), + [sym_false] = ACTIONS(4115), + [sym_nil] = ACTIONS(4115), + [anon_sym_if] = ACTIONS(4115), + [anon_sym_DOLLARif] = ACTIONS(4115), + [anon_sym_match] = ACTIONS(4115), + [anon_sym_select] = ACTIONS(4115), + [anon_sym_lock] = ACTIONS(4115), + [anon_sym_rlock] = ACTIONS(4115), + [anon_sym_unsafe] = ACTIONS(4115), + [anon_sym_sql] = ACTIONS(4115), + [sym_int_literal] = ACTIONS(4115), + [sym_float_literal] = ACTIONS(4115), + [sym_rune_literal] = ACTIONS(4115), + [anon_sym_AT] = ACTIONS(4115), + [anon_sym_shared] = ACTIONS(4115), + [anon_sym_map_LBRACK] = ACTIONS(4115), + [anon_sym_chan] = ACTIONS(4115), + [anon_sym_thread] = ACTIONS(4115), + [anon_sym_atomic] = ACTIONS(4115), + [anon_sym_assert] = ACTIONS(4115), + [anon_sym_defer] = ACTIONS(4115), + [anon_sym_goto] = ACTIONS(4115), + [anon_sym_break] = ACTIONS(4115), + [anon_sym_continue] = ACTIONS(4115), + [anon_sym_return] = ACTIONS(4115), + [anon_sym_DOLLARfor] = ACTIONS(4115), + [anon_sym_for] = ACTIONS(4115), + [anon_sym_POUND] = ACTIONS(4115), + [anon_sym_asm] = ACTIONS(4115), + [anon_sym_AT_LBRACK] = ACTIONS(4115), + [sym___double_quote] = ACTIONS(4115), + [sym___single_quote] = ACTIONS(4115), + [sym___c_double_quote] = ACTIONS(4115), + [sym___c_single_quote] = ACTIONS(4115), + [sym___r_double_quote] = ACTIONS(4115), + [sym___r_single_quote] = ACTIONS(4115), }, [1532] = { - [ts_builtin_sym_end] = ACTIONS(4074), - [sym_identifier] = ACTIONS(4076), - [anon_sym_LF] = ACTIONS(4076), - [anon_sym_CR] = ACTIONS(4076), - [anon_sym_CR_LF] = ACTIONS(4076), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4076), - [anon_sym_const] = ACTIONS(4076), - [anon_sym_LPAREN] = ACTIONS(4076), - [anon_sym___global] = ACTIONS(4076), - [anon_sym_type] = ACTIONS(4076), - [anon_sym_fn] = ACTIONS(4076), - [anon_sym_PLUS] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_union] = ACTIONS(4076), - [anon_sym_pub] = ACTIONS(4076), - [anon_sym_mut] = ACTIONS(4076), - [anon_sym_enum] = ACTIONS(4076), - [anon_sym_interface] = ACTIONS(4076), - [anon_sym_QMARK] = ACTIONS(4076), - [anon_sym_BANG] = ACTIONS(4076), - [anon_sym_go] = ACTIONS(4076), - [anon_sym_spawn] = ACTIONS(4076), - [anon_sym_json_DOTdecode] = ACTIONS(4076), - [anon_sym_LBRACK2] = ACTIONS(4076), - [anon_sym_TILDE] = ACTIONS(4076), - [anon_sym_CARET] = ACTIONS(4076), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_LT_DASH] = ACTIONS(4076), - [sym_none] = ACTIONS(4076), - [sym_true] = ACTIONS(4076), - [sym_false] = ACTIONS(4076), - [sym_nil] = ACTIONS(4076), - [anon_sym_if] = ACTIONS(4076), - [anon_sym_DOLLARif] = ACTIONS(4076), - [anon_sym_match] = ACTIONS(4076), - [anon_sym_select] = ACTIONS(4076), - [anon_sym_lock] = ACTIONS(4076), - [anon_sym_rlock] = ACTIONS(4076), - [anon_sym_unsafe] = ACTIONS(4076), - [anon_sym_sql] = ACTIONS(4076), - [sym_int_literal] = ACTIONS(4076), - [sym_float_literal] = ACTIONS(4076), - [sym_rune_literal] = ACTIONS(4076), - [anon_sym_AT] = ACTIONS(4076), - [anon_sym_shared] = ACTIONS(4076), - [anon_sym_map_LBRACK] = ACTIONS(4076), - [anon_sym_chan] = ACTIONS(4076), - [anon_sym_thread] = ACTIONS(4076), - [anon_sym_atomic] = ACTIONS(4076), - [anon_sym_assert] = ACTIONS(4076), - [anon_sym_defer] = ACTIONS(4076), - [anon_sym_goto] = ACTIONS(4076), - [anon_sym_break] = ACTIONS(4076), - [anon_sym_continue] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4076), - [anon_sym_DOLLARfor] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4076), - [anon_sym_POUND] = ACTIONS(4076), - [anon_sym_asm] = ACTIONS(4076), - [anon_sym_AT_LBRACK] = ACTIONS(4076), - [sym___double_quote] = ACTIONS(4076), - [sym___single_quote] = ACTIONS(4076), - [sym___c_double_quote] = ACTIONS(4076), - [sym___c_single_quote] = ACTIONS(4076), - [sym___r_double_quote] = ACTIONS(4076), - [sym___r_single_quote] = ACTIONS(4076), + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(559), }, [1533] = { - [ts_builtin_sym_end] = ACTIONS(4078), - [sym_identifier] = ACTIONS(4080), - [anon_sym_LF] = ACTIONS(4080), - [anon_sym_CR] = ACTIONS(4080), - [anon_sym_CR_LF] = ACTIONS(4080), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_LPAREN] = ACTIONS(4080), - [anon_sym___global] = ACTIONS(4080), - [anon_sym_type] = ACTIONS(4080), - [anon_sym_fn] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_pub] = ACTIONS(4080), - [anon_sym_mut] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_interface] = ACTIONS(4080), - [anon_sym_QMARK] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_go] = ACTIONS(4080), - [anon_sym_spawn] = ACTIONS(4080), - [anon_sym_json_DOTdecode] = ACTIONS(4080), - [anon_sym_LBRACK2] = ACTIONS(4080), - [anon_sym_TILDE] = ACTIONS(4080), - [anon_sym_CARET] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_LT_DASH] = ACTIONS(4080), - [sym_none] = ACTIONS(4080), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [sym_nil] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_DOLLARif] = ACTIONS(4080), - [anon_sym_match] = ACTIONS(4080), - [anon_sym_select] = ACTIONS(4080), - [anon_sym_lock] = ACTIONS(4080), - [anon_sym_rlock] = ACTIONS(4080), - [anon_sym_unsafe] = ACTIONS(4080), - [anon_sym_sql] = ACTIONS(4080), - [sym_int_literal] = ACTIONS(4080), - [sym_float_literal] = ACTIONS(4080), - [sym_rune_literal] = ACTIONS(4080), - [anon_sym_AT] = ACTIONS(4080), - [anon_sym_shared] = ACTIONS(4080), - [anon_sym_map_LBRACK] = ACTIONS(4080), - [anon_sym_chan] = ACTIONS(4080), - [anon_sym_thread] = ACTIONS(4080), - [anon_sym_atomic] = ACTIONS(4080), - [anon_sym_assert] = ACTIONS(4080), - [anon_sym_defer] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_DOLLARfor] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_POUND] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym_AT_LBRACK] = ACTIONS(4080), - [sym___double_quote] = ACTIONS(4080), - [sym___single_quote] = ACTIONS(4080), - [sym___c_double_quote] = ACTIONS(4080), - [sym___c_single_quote] = ACTIONS(4080), - [sym___r_double_quote] = ACTIONS(4080), - [sym___r_single_quote] = ACTIONS(4080), + [sym_import_declaration] = STATE(1607), + [aux_sym_import_list_repeat1] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(4119), + [sym_identifier] = ACTIONS(4121), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(4121), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_const] = ACTIONS(4121), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym___global] = ACTIONS(4121), + [anon_sym_type] = ACTIONS(4121), + [anon_sym_fn] = ACTIONS(4121), + [anon_sym_PLUS] = ACTIONS(4119), + [anon_sym_DASH] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4119), + [anon_sym_struct] = ACTIONS(4121), + [anon_sym_union] = ACTIONS(4121), + [anon_sym_pub] = ACTIONS(4121), + [anon_sym_mut] = ACTIONS(4121), + [anon_sym_enum] = ACTIONS(4121), + [anon_sym_interface] = ACTIONS(4121), + [anon_sym_QMARK] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_go] = ACTIONS(4121), + [anon_sym_spawn] = ACTIONS(4121), + [anon_sym_json_DOTdecode] = ACTIONS(4119), + [anon_sym_LBRACK2] = ACTIONS(4119), + [anon_sym_TILDE] = ACTIONS(4119), + [anon_sym_CARET] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(4119), + [anon_sym_LT_DASH] = ACTIONS(4119), + [sym_none] = ACTIONS(4121), + [sym_true] = ACTIONS(4121), + [sym_false] = ACTIONS(4121), + [sym_nil] = ACTIONS(4121), + [anon_sym_if] = ACTIONS(4121), + [anon_sym_DOLLARif] = ACTIONS(4121), + [anon_sym_match] = ACTIONS(4121), + [anon_sym_select] = ACTIONS(4121), + [anon_sym_lock] = ACTIONS(4121), + [anon_sym_rlock] = ACTIONS(4121), + [anon_sym_unsafe] = ACTIONS(4121), + [anon_sym_sql] = ACTIONS(4121), + [sym_int_literal] = ACTIONS(4121), + [sym_float_literal] = ACTIONS(4119), + [sym_rune_literal] = ACTIONS(4119), + [anon_sym_AT] = ACTIONS(4121), + [anon_sym_shared] = ACTIONS(4121), + [anon_sym_map_LBRACK] = ACTIONS(4119), + [anon_sym_chan] = ACTIONS(4121), + [anon_sym_thread] = ACTIONS(4121), + [anon_sym_atomic] = ACTIONS(4121), + [anon_sym_assert] = ACTIONS(4121), + [anon_sym_defer] = ACTIONS(4121), + [anon_sym_goto] = ACTIONS(4121), + [anon_sym_break] = ACTIONS(4121), + [anon_sym_continue] = ACTIONS(4121), + [anon_sym_return] = ACTIONS(4121), + [anon_sym_DOLLARfor] = ACTIONS(4121), + [anon_sym_for] = ACTIONS(4121), + [anon_sym_POUND] = ACTIONS(4119), + [anon_sym_asm] = ACTIONS(4121), + [anon_sym_AT_LBRACK] = ACTIONS(4119), + [sym___double_quote] = ACTIONS(4119), + [sym___single_quote] = ACTIONS(4119), + [sym___c_double_quote] = ACTIONS(4119), + [sym___c_single_quote] = ACTIONS(4119), + [sym___r_double_quote] = ACTIONS(4119), + [sym___r_single_quote] = ACTIONS(4119), }, [1534] = { - [ts_builtin_sym_end] = ACTIONS(4082), - [sym_identifier] = ACTIONS(4084), - [anon_sym_LF] = ACTIONS(4084), - [anon_sym_CR] = ACTIONS(4084), - [anon_sym_CR_LF] = ACTIONS(4084), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym___global] = ACTIONS(4084), - [anon_sym_type] = ACTIONS(4084), - [anon_sym_fn] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_pub] = ACTIONS(4084), - [anon_sym_mut] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_interface] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4084), - [anon_sym_BANG] = ACTIONS(4084), - [anon_sym_go] = ACTIONS(4084), - [anon_sym_spawn] = ACTIONS(4084), - [anon_sym_json_DOTdecode] = ACTIONS(4084), - [anon_sym_LBRACK2] = ACTIONS(4084), - [anon_sym_TILDE] = ACTIONS(4084), - [anon_sym_CARET] = ACTIONS(4084), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_LT_DASH] = ACTIONS(4084), - [sym_none] = ACTIONS(4084), - [sym_true] = ACTIONS(4084), - [sym_false] = ACTIONS(4084), - [sym_nil] = ACTIONS(4084), - [anon_sym_if] = ACTIONS(4084), - [anon_sym_DOLLARif] = ACTIONS(4084), - [anon_sym_match] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_lock] = ACTIONS(4084), - [anon_sym_rlock] = ACTIONS(4084), - [anon_sym_unsafe] = ACTIONS(4084), - [anon_sym_sql] = ACTIONS(4084), - [sym_int_literal] = ACTIONS(4084), - [sym_float_literal] = ACTIONS(4084), - [sym_rune_literal] = ACTIONS(4084), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_shared] = ACTIONS(4084), - [anon_sym_map_LBRACK] = ACTIONS(4084), - [anon_sym_chan] = ACTIONS(4084), - [anon_sym_thread] = ACTIONS(4084), - [anon_sym_atomic] = ACTIONS(4084), - [anon_sym_assert] = ACTIONS(4084), - [anon_sym_defer] = ACTIONS(4084), - [anon_sym_goto] = ACTIONS(4084), - [anon_sym_break] = ACTIONS(4084), - [anon_sym_continue] = ACTIONS(4084), - [anon_sym_return] = ACTIONS(4084), - [anon_sym_DOLLARfor] = ACTIONS(4084), - [anon_sym_for] = ACTIONS(4084), - [anon_sym_POUND] = ACTIONS(4084), - [anon_sym_asm] = ACTIONS(4084), - [anon_sym_AT_LBRACK] = ACTIONS(4084), - [sym___double_quote] = ACTIONS(4084), - [sym___single_quote] = ACTIONS(4084), - [sym___c_double_quote] = ACTIONS(4084), - [sym___c_single_quote] = ACTIONS(4084), - [sym___r_double_quote] = ACTIONS(4084), - [sym___r_single_quote] = ACTIONS(4084), + [ts_builtin_sym_end] = ACTIONS(4123), + [sym_identifier] = ACTIONS(4125), + [anon_sym_LF] = ACTIONS(4125), + [anon_sym_CR] = ACTIONS(4125), + [anon_sym_CR_LF] = ACTIONS(4125), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4125), + [anon_sym_LBRACE] = ACTIONS(4125), + [anon_sym_const] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym___global] = ACTIONS(4125), + [anon_sym_type] = ACTIONS(4125), + [anon_sym_fn] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4125), + [anon_sym_DASH] = ACTIONS(4125), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_struct] = ACTIONS(4125), + [anon_sym_union] = ACTIONS(4125), + [anon_sym_pub] = ACTIONS(4125), + [anon_sym_mut] = ACTIONS(4125), + [anon_sym_enum] = ACTIONS(4125), + [anon_sym_interface] = ACTIONS(4125), + [anon_sym_QMARK] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4125), + [anon_sym_go] = ACTIONS(4125), + [anon_sym_spawn] = ACTIONS(4125), + [anon_sym_json_DOTdecode] = ACTIONS(4125), + [anon_sym_LBRACK2] = ACTIONS(4125), + [anon_sym_TILDE] = ACTIONS(4125), + [anon_sym_CARET] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(4125), + [anon_sym_LT_DASH] = ACTIONS(4125), + [sym_none] = ACTIONS(4125), + [sym_true] = ACTIONS(4125), + [sym_false] = ACTIONS(4125), + [sym_nil] = ACTIONS(4125), + [anon_sym_if] = ACTIONS(4125), + [anon_sym_DOLLARif] = ACTIONS(4125), + [anon_sym_match] = ACTIONS(4125), + [anon_sym_select] = ACTIONS(4125), + [anon_sym_lock] = ACTIONS(4125), + [anon_sym_rlock] = ACTIONS(4125), + [anon_sym_unsafe] = ACTIONS(4125), + [anon_sym_sql] = ACTIONS(4125), + [sym_int_literal] = ACTIONS(4125), + [sym_float_literal] = ACTIONS(4125), + [sym_rune_literal] = ACTIONS(4125), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_shared] = ACTIONS(4125), + [anon_sym_map_LBRACK] = ACTIONS(4125), + [anon_sym_chan] = ACTIONS(4125), + [anon_sym_thread] = ACTIONS(4125), + [anon_sym_atomic] = ACTIONS(4125), + [anon_sym_assert] = ACTIONS(4125), + [anon_sym_defer] = ACTIONS(4125), + [anon_sym_goto] = ACTIONS(4125), + [anon_sym_break] = ACTIONS(4125), + [anon_sym_continue] = ACTIONS(4125), + [anon_sym_return] = ACTIONS(4125), + [anon_sym_DOLLARfor] = ACTIONS(4125), + [anon_sym_for] = ACTIONS(4125), + [anon_sym_POUND] = ACTIONS(4125), + [anon_sym_asm] = ACTIONS(4125), + [anon_sym_AT_LBRACK] = ACTIONS(4125), + [sym___double_quote] = ACTIONS(4125), + [sym___single_quote] = ACTIONS(4125), + [sym___c_double_quote] = ACTIONS(4125), + [sym___c_single_quote] = ACTIONS(4125), + [sym___r_double_quote] = ACTIONS(4125), + [sym___r_single_quote] = ACTIONS(4125), }, [1535] = { - [ts_builtin_sym_end] = ACTIONS(4086), - [sym_identifier] = ACTIONS(4088), - [anon_sym_LF] = ACTIONS(4088), - [anon_sym_CR] = ACTIONS(4088), - [anon_sym_CR_LF] = ACTIONS(4088), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4088), - [anon_sym_const] = ACTIONS(4088), - [anon_sym_LPAREN] = ACTIONS(4088), - [anon_sym___global] = ACTIONS(4088), - [anon_sym_type] = ACTIONS(4088), - [anon_sym_fn] = ACTIONS(4088), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4088), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_union] = ACTIONS(4088), - [anon_sym_pub] = ACTIONS(4088), - [anon_sym_mut] = ACTIONS(4088), - [anon_sym_enum] = ACTIONS(4088), - [anon_sym_interface] = ACTIONS(4088), - [anon_sym_QMARK] = ACTIONS(4088), - [anon_sym_BANG] = ACTIONS(4088), - [anon_sym_go] = ACTIONS(4088), - [anon_sym_spawn] = ACTIONS(4088), - [anon_sym_json_DOTdecode] = ACTIONS(4088), - [anon_sym_LBRACK2] = ACTIONS(4088), - [anon_sym_TILDE] = ACTIONS(4088), - [anon_sym_CARET] = ACTIONS(4088), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym_LT_DASH] = ACTIONS(4088), - [sym_none] = ACTIONS(4088), - [sym_true] = ACTIONS(4088), - [sym_false] = ACTIONS(4088), - [sym_nil] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_DOLLARif] = ACTIONS(4088), - [anon_sym_match] = ACTIONS(4088), - [anon_sym_select] = ACTIONS(4088), - [anon_sym_lock] = ACTIONS(4088), - [anon_sym_rlock] = ACTIONS(4088), - [anon_sym_unsafe] = ACTIONS(4088), - [anon_sym_sql] = ACTIONS(4088), - [sym_int_literal] = ACTIONS(4088), - [sym_float_literal] = ACTIONS(4088), - [sym_rune_literal] = ACTIONS(4088), - [anon_sym_AT] = ACTIONS(4088), - [anon_sym_shared] = ACTIONS(4088), - [anon_sym_map_LBRACK] = ACTIONS(4088), - [anon_sym_chan] = ACTIONS(4088), - [anon_sym_thread] = ACTIONS(4088), - [anon_sym_atomic] = ACTIONS(4088), - [anon_sym_assert] = ACTIONS(4088), - [anon_sym_defer] = ACTIONS(4088), - [anon_sym_goto] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_DOLLARfor] = ACTIONS(4088), - [anon_sym_for] = ACTIONS(4088), - [anon_sym_POUND] = ACTIONS(4088), - [anon_sym_asm] = ACTIONS(4088), - [anon_sym_AT_LBRACK] = ACTIONS(4088), - [sym___double_quote] = ACTIONS(4088), - [sym___single_quote] = ACTIONS(4088), - [sym___c_double_quote] = ACTIONS(4088), - [sym___c_single_quote] = ACTIONS(4088), - [sym___r_double_quote] = ACTIONS(4088), - [sym___r_single_quote] = ACTIONS(4088), + [ts_builtin_sym_end] = ACTIONS(4127), + [sym_identifier] = ACTIONS(4129), + [anon_sym_LF] = ACTIONS(4129), + [anon_sym_CR] = ACTIONS(4129), + [anon_sym_CR_LF] = ACTIONS(4129), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4129), + [anon_sym_const] = ACTIONS(4129), + [anon_sym_LPAREN] = ACTIONS(4129), + [anon_sym___global] = ACTIONS(4129), + [anon_sym_type] = ACTIONS(4129), + [anon_sym_fn] = ACTIONS(4129), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_struct] = ACTIONS(4129), + [anon_sym_union] = ACTIONS(4129), + [anon_sym_pub] = ACTIONS(4129), + [anon_sym_mut] = ACTIONS(4129), + [anon_sym_enum] = ACTIONS(4129), + [anon_sym_interface] = ACTIONS(4129), + [anon_sym_QMARK] = ACTIONS(4129), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_go] = ACTIONS(4129), + [anon_sym_spawn] = ACTIONS(4129), + [anon_sym_json_DOTdecode] = ACTIONS(4129), + [anon_sym_LBRACK2] = ACTIONS(4129), + [anon_sym_TILDE] = ACTIONS(4129), + [anon_sym_CARET] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [anon_sym_LT_DASH] = ACTIONS(4129), + [sym_none] = ACTIONS(4129), + [sym_true] = ACTIONS(4129), + [sym_false] = ACTIONS(4129), + [sym_nil] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_DOLLARif] = ACTIONS(4129), + [anon_sym_match] = ACTIONS(4129), + [anon_sym_select] = ACTIONS(4129), + [anon_sym_lock] = ACTIONS(4129), + [anon_sym_rlock] = ACTIONS(4129), + [anon_sym_unsafe] = ACTIONS(4129), + [anon_sym_sql] = ACTIONS(4129), + [sym_int_literal] = ACTIONS(4129), + [sym_float_literal] = ACTIONS(4129), + [sym_rune_literal] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4129), + [anon_sym_shared] = ACTIONS(4129), + [anon_sym_map_LBRACK] = ACTIONS(4129), + [anon_sym_chan] = ACTIONS(4129), + [anon_sym_thread] = ACTIONS(4129), + [anon_sym_atomic] = ACTIONS(4129), + [anon_sym_assert] = ACTIONS(4129), + [anon_sym_defer] = ACTIONS(4129), + [anon_sym_goto] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_DOLLARfor] = ACTIONS(4129), + [anon_sym_for] = ACTIONS(4129), + [anon_sym_POUND] = ACTIONS(4129), + [anon_sym_asm] = ACTIONS(4129), + [anon_sym_AT_LBRACK] = ACTIONS(4129), + [sym___double_quote] = ACTIONS(4129), + [sym___single_quote] = ACTIONS(4129), + [sym___c_double_quote] = ACTIONS(4129), + [sym___c_single_quote] = ACTIONS(4129), + [sym___r_double_quote] = ACTIONS(4129), + [sym___r_single_quote] = ACTIONS(4129), }, [1536] = { - [ts_builtin_sym_end] = ACTIONS(4090), - [sym_identifier] = ACTIONS(4092), - [anon_sym_LF] = ACTIONS(4092), - [anon_sym_CR] = ACTIONS(4092), - [anon_sym_CR_LF] = ACTIONS(4092), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4092), - [anon_sym_const] = ACTIONS(4092), - [anon_sym_LPAREN] = ACTIONS(4092), - [anon_sym___global] = ACTIONS(4092), - [anon_sym_type] = ACTIONS(4092), - [anon_sym_fn] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_struct] = ACTIONS(4092), - [anon_sym_union] = ACTIONS(4092), - [anon_sym_pub] = ACTIONS(4092), - [anon_sym_mut] = ACTIONS(4092), - [anon_sym_enum] = ACTIONS(4092), - [anon_sym_interface] = ACTIONS(4092), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_go] = ACTIONS(4092), - [anon_sym_spawn] = ACTIONS(4092), - [anon_sym_json_DOTdecode] = ACTIONS(4092), - [anon_sym_LBRACK2] = ACTIONS(4092), - [anon_sym_TILDE] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_DASH] = ACTIONS(4092), - [sym_none] = ACTIONS(4092), - [sym_true] = ACTIONS(4092), - [sym_false] = ACTIONS(4092), - [sym_nil] = ACTIONS(4092), - [anon_sym_if] = ACTIONS(4092), - [anon_sym_DOLLARif] = ACTIONS(4092), - [anon_sym_match] = ACTIONS(4092), - [anon_sym_select] = ACTIONS(4092), - [anon_sym_lock] = ACTIONS(4092), - [anon_sym_rlock] = ACTIONS(4092), - [anon_sym_unsafe] = ACTIONS(4092), - [anon_sym_sql] = ACTIONS(4092), - [sym_int_literal] = ACTIONS(4092), - [sym_float_literal] = ACTIONS(4092), - [sym_rune_literal] = ACTIONS(4092), - [anon_sym_AT] = ACTIONS(4092), - [anon_sym_shared] = ACTIONS(4092), - [anon_sym_map_LBRACK] = ACTIONS(4092), - [anon_sym_chan] = ACTIONS(4092), - [anon_sym_thread] = ACTIONS(4092), - [anon_sym_atomic] = ACTIONS(4092), - [anon_sym_assert] = ACTIONS(4092), - [anon_sym_defer] = ACTIONS(4092), - [anon_sym_goto] = ACTIONS(4092), - [anon_sym_break] = ACTIONS(4092), - [anon_sym_continue] = ACTIONS(4092), - [anon_sym_return] = ACTIONS(4092), - [anon_sym_DOLLARfor] = ACTIONS(4092), - [anon_sym_for] = ACTIONS(4092), - [anon_sym_POUND] = ACTIONS(4092), - [anon_sym_asm] = ACTIONS(4092), - [anon_sym_AT_LBRACK] = ACTIONS(4092), - [sym___double_quote] = ACTIONS(4092), - [sym___single_quote] = ACTIONS(4092), - [sym___c_double_quote] = ACTIONS(4092), - [sym___c_single_quote] = ACTIONS(4092), - [sym___r_double_quote] = ACTIONS(4092), - [sym___r_single_quote] = ACTIONS(4092), + [ts_builtin_sym_end] = ACTIONS(4131), + [sym_identifier] = ACTIONS(4133), + [anon_sym_LF] = ACTIONS(4133), + [anon_sym_CR] = ACTIONS(4133), + [anon_sym_CR_LF] = ACTIONS(4133), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4133), + [anon_sym_LBRACE] = ACTIONS(4133), + [anon_sym_const] = ACTIONS(4133), + [anon_sym_LPAREN] = ACTIONS(4133), + [anon_sym___global] = ACTIONS(4133), + [anon_sym_type] = ACTIONS(4133), + [anon_sym_fn] = ACTIONS(4133), + [anon_sym_PLUS] = ACTIONS(4133), + [anon_sym_DASH] = ACTIONS(4133), + [anon_sym_STAR] = ACTIONS(4133), + [anon_sym_struct] = ACTIONS(4133), + [anon_sym_union] = ACTIONS(4133), + [anon_sym_pub] = ACTIONS(4133), + [anon_sym_mut] = ACTIONS(4133), + [anon_sym_enum] = ACTIONS(4133), + [anon_sym_interface] = ACTIONS(4133), + [anon_sym_QMARK] = ACTIONS(4133), + [anon_sym_BANG] = ACTIONS(4133), + [anon_sym_go] = ACTIONS(4133), + [anon_sym_spawn] = ACTIONS(4133), + [anon_sym_json_DOTdecode] = ACTIONS(4133), + [anon_sym_LBRACK2] = ACTIONS(4133), + [anon_sym_TILDE] = ACTIONS(4133), + [anon_sym_CARET] = ACTIONS(4133), + [anon_sym_AMP] = ACTIONS(4133), + [anon_sym_LT_DASH] = ACTIONS(4133), + [sym_none] = ACTIONS(4133), + [sym_true] = ACTIONS(4133), + [sym_false] = ACTIONS(4133), + [sym_nil] = ACTIONS(4133), + [anon_sym_if] = ACTIONS(4133), + [anon_sym_DOLLARif] = ACTIONS(4133), + [anon_sym_match] = ACTIONS(4133), + [anon_sym_select] = ACTIONS(4133), + [anon_sym_lock] = ACTIONS(4133), + [anon_sym_rlock] = ACTIONS(4133), + [anon_sym_unsafe] = ACTIONS(4133), + [anon_sym_sql] = ACTIONS(4133), + [sym_int_literal] = ACTIONS(4133), + [sym_float_literal] = ACTIONS(4133), + [sym_rune_literal] = ACTIONS(4133), + [anon_sym_AT] = ACTIONS(4133), + [anon_sym_shared] = ACTIONS(4133), + [anon_sym_map_LBRACK] = ACTIONS(4133), + [anon_sym_chan] = ACTIONS(4133), + [anon_sym_thread] = ACTIONS(4133), + [anon_sym_atomic] = ACTIONS(4133), + [anon_sym_assert] = ACTIONS(4133), + [anon_sym_defer] = ACTIONS(4133), + [anon_sym_goto] = ACTIONS(4133), + [anon_sym_break] = ACTIONS(4133), + [anon_sym_continue] = ACTIONS(4133), + [anon_sym_return] = ACTIONS(4133), + [anon_sym_DOLLARfor] = ACTIONS(4133), + [anon_sym_for] = ACTIONS(4133), + [anon_sym_POUND] = ACTIONS(4133), + [anon_sym_asm] = ACTIONS(4133), + [anon_sym_AT_LBRACK] = ACTIONS(4133), + [sym___double_quote] = ACTIONS(4133), + [sym___single_quote] = ACTIONS(4133), + [sym___c_double_quote] = ACTIONS(4133), + [sym___c_single_quote] = ACTIONS(4133), + [sym___r_double_quote] = ACTIONS(4133), + [sym___r_single_quote] = ACTIONS(4133), }, [1537] = { - [ts_builtin_sym_end] = ACTIONS(4094), - [sym_identifier] = ACTIONS(4096), - [anon_sym_LF] = ACTIONS(4096), - [anon_sym_CR] = ACTIONS(4096), - [anon_sym_CR_LF] = ACTIONS(4096), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_LPAREN] = ACTIONS(4096), - [anon_sym___global] = ACTIONS(4096), - [anon_sym_type] = ACTIONS(4096), - [anon_sym_fn] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4096), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_STAR] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_pub] = ACTIONS(4096), - [anon_sym_mut] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_interface] = ACTIONS(4096), - [anon_sym_QMARK] = ACTIONS(4096), - [anon_sym_BANG] = ACTIONS(4096), - [anon_sym_go] = ACTIONS(4096), - [anon_sym_spawn] = ACTIONS(4096), - [anon_sym_json_DOTdecode] = ACTIONS(4096), - [anon_sym_LBRACK2] = ACTIONS(4096), - [anon_sym_TILDE] = ACTIONS(4096), - [anon_sym_CARET] = ACTIONS(4096), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_LT_DASH] = ACTIONS(4096), - [sym_none] = ACTIONS(4096), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [sym_nil] = ACTIONS(4096), - [anon_sym_if] = ACTIONS(4096), - [anon_sym_DOLLARif] = ACTIONS(4096), - [anon_sym_match] = ACTIONS(4096), - [anon_sym_select] = ACTIONS(4096), - [anon_sym_lock] = ACTIONS(4096), - [anon_sym_rlock] = ACTIONS(4096), - [anon_sym_unsafe] = ACTIONS(4096), - [anon_sym_sql] = ACTIONS(4096), - [sym_int_literal] = ACTIONS(4096), - [sym_float_literal] = ACTIONS(4096), - [sym_rune_literal] = ACTIONS(4096), - [anon_sym_AT] = ACTIONS(4096), - [anon_sym_shared] = ACTIONS(4096), - [anon_sym_map_LBRACK] = ACTIONS(4096), - [anon_sym_chan] = ACTIONS(4096), - [anon_sym_thread] = ACTIONS(4096), - [anon_sym_atomic] = ACTIONS(4096), - [anon_sym_assert] = ACTIONS(4096), - [anon_sym_defer] = ACTIONS(4096), - [anon_sym_goto] = ACTIONS(4096), - [anon_sym_break] = ACTIONS(4096), - [anon_sym_continue] = ACTIONS(4096), - [anon_sym_return] = ACTIONS(4096), - [anon_sym_DOLLARfor] = ACTIONS(4096), - [anon_sym_for] = ACTIONS(4096), - [anon_sym_POUND] = ACTIONS(4096), - [anon_sym_asm] = ACTIONS(4096), - [anon_sym_AT_LBRACK] = ACTIONS(4096), - [sym___double_quote] = ACTIONS(4096), - [sym___single_quote] = ACTIONS(4096), - [sym___c_double_quote] = ACTIONS(4096), - [sym___c_single_quote] = ACTIONS(4096), - [sym___r_double_quote] = ACTIONS(4096), - [sym___r_single_quote] = ACTIONS(4096), + [ts_builtin_sym_end] = ACTIONS(4135), + [sym_identifier] = ACTIONS(4137), + [anon_sym_LF] = ACTIONS(4137), + [anon_sym_CR] = ACTIONS(4137), + [anon_sym_CR_LF] = ACTIONS(4137), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4137), + [anon_sym_LBRACE] = ACTIONS(4137), + [anon_sym_const] = ACTIONS(4137), + [anon_sym_LPAREN] = ACTIONS(4137), + [anon_sym___global] = ACTIONS(4137), + [anon_sym_type] = ACTIONS(4137), + [anon_sym_fn] = ACTIONS(4137), + [anon_sym_PLUS] = ACTIONS(4137), + [anon_sym_DASH] = ACTIONS(4137), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_struct] = ACTIONS(4137), + [anon_sym_union] = ACTIONS(4137), + [anon_sym_pub] = ACTIONS(4137), + [anon_sym_mut] = ACTIONS(4137), + [anon_sym_enum] = ACTIONS(4137), + [anon_sym_interface] = ACTIONS(4137), + [anon_sym_QMARK] = ACTIONS(4137), + [anon_sym_BANG] = ACTIONS(4137), + [anon_sym_go] = ACTIONS(4137), + [anon_sym_spawn] = ACTIONS(4137), + [anon_sym_json_DOTdecode] = ACTIONS(4137), + [anon_sym_LBRACK2] = ACTIONS(4137), + [anon_sym_TILDE] = ACTIONS(4137), + [anon_sym_CARET] = ACTIONS(4137), + [anon_sym_AMP] = ACTIONS(4137), + [anon_sym_LT_DASH] = ACTIONS(4137), + [sym_none] = ACTIONS(4137), + [sym_true] = ACTIONS(4137), + [sym_false] = ACTIONS(4137), + [sym_nil] = ACTIONS(4137), + [anon_sym_if] = ACTIONS(4137), + [anon_sym_DOLLARif] = ACTIONS(4137), + [anon_sym_match] = ACTIONS(4137), + [anon_sym_select] = ACTIONS(4137), + [anon_sym_lock] = ACTIONS(4137), + [anon_sym_rlock] = ACTIONS(4137), + [anon_sym_unsafe] = ACTIONS(4137), + [anon_sym_sql] = ACTIONS(4137), + [sym_int_literal] = ACTIONS(4137), + [sym_float_literal] = ACTIONS(4137), + [sym_rune_literal] = ACTIONS(4137), + [anon_sym_AT] = ACTIONS(4137), + [anon_sym_shared] = ACTIONS(4137), + [anon_sym_map_LBRACK] = ACTIONS(4137), + [anon_sym_chan] = ACTIONS(4137), + [anon_sym_thread] = ACTIONS(4137), + [anon_sym_atomic] = ACTIONS(4137), + [anon_sym_assert] = ACTIONS(4137), + [anon_sym_defer] = ACTIONS(4137), + [anon_sym_goto] = ACTIONS(4137), + [anon_sym_break] = ACTIONS(4137), + [anon_sym_continue] = ACTIONS(4137), + [anon_sym_return] = ACTIONS(4137), + [anon_sym_DOLLARfor] = ACTIONS(4137), + [anon_sym_for] = ACTIONS(4137), + [anon_sym_POUND] = ACTIONS(4137), + [anon_sym_asm] = ACTIONS(4137), + [anon_sym_AT_LBRACK] = ACTIONS(4137), + [sym___double_quote] = ACTIONS(4137), + [sym___single_quote] = ACTIONS(4137), + [sym___c_double_quote] = ACTIONS(4137), + [sym___c_single_quote] = ACTIONS(4137), + [sym___r_double_quote] = ACTIONS(4137), + [sym___r_single_quote] = ACTIONS(4137), }, [1538] = { - [ts_builtin_sym_end] = ACTIONS(4098), - [sym_identifier] = ACTIONS(4100), - [anon_sym_LF] = ACTIONS(4100), - [anon_sym_CR] = ACTIONS(4100), - [anon_sym_CR_LF] = ACTIONS(4100), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_LPAREN] = ACTIONS(4100), - [anon_sym___global] = ACTIONS(4100), - [anon_sym_type] = ACTIONS(4100), - [anon_sym_fn] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_pub] = ACTIONS(4100), - [anon_sym_mut] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_interface] = ACTIONS(4100), - [anon_sym_QMARK] = ACTIONS(4100), - [anon_sym_BANG] = ACTIONS(4100), - [anon_sym_go] = ACTIONS(4100), - [anon_sym_spawn] = ACTIONS(4100), - [anon_sym_json_DOTdecode] = ACTIONS(4100), - [anon_sym_LBRACK2] = ACTIONS(4100), - [anon_sym_TILDE] = ACTIONS(4100), - [anon_sym_CARET] = ACTIONS(4100), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_LT_DASH] = ACTIONS(4100), - [sym_none] = ACTIONS(4100), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [sym_nil] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_DOLLARif] = ACTIONS(4100), - [anon_sym_match] = ACTIONS(4100), - [anon_sym_select] = ACTIONS(4100), - [anon_sym_lock] = ACTIONS(4100), - [anon_sym_rlock] = ACTIONS(4100), - [anon_sym_unsafe] = ACTIONS(4100), - [anon_sym_sql] = ACTIONS(4100), - [sym_int_literal] = ACTIONS(4100), - [sym_float_literal] = ACTIONS(4100), - [sym_rune_literal] = ACTIONS(4100), - [anon_sym_AT] = ACTIONS(4100), - [anon_sym_shared] = ACTIONS(4100), - [anon_sym_map_LBRACK] = ACTIONS(4100), - [anon_sym_chan] = ACTIONS(4100), - [anon_sym_thread] = ACTIONS(4100), - [anon_sym_atomic] = ACTIONS(4100), - [anon_sym_assert] = ACTIONS(4100), - [anon_sym_defer] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_DOLLARfor] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_POUND] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym_AT_LBRACK] = ACTIONS(4100), - [sym___double_quote] = ACTIONS(4100), - [sym___single_quote] = ACTIONS(4100), - [sym___c_double_quote] = ACTIONS(4100), - [sym___c_single_quote] = ACTIONS(4100), - [sym___r_double_quote] = ACTIONS(4100), - [sym___r_single_quote] = ACTIONS(4100), + [ts_builtin_sym_end] = ACTIONS(4139), + [sym_identifier] = ACTIONS(4141), + [anon_sym_LF] = ACTIONS(4141), + [anon_sym_CR] = ACTIONS(4141), + [anon_sym_CR_LF] = ACTIONS(4141), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4141), + [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_const] = ACTIONS(4141), + [anon_sym_LPAREN] = ACTIONS(4141), + [anon_sym___global] = ACTIONS(4141), + [anon_sym_type] = ACTIONS(4141), + [anon_sym_fn] = ACTIONS(4141), + [anon_sym_PLUS] = ACTIONS(4141), + [anon_sym_DASH] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_struct] = ACTIONS(4141), + [anon_sym_union] = ACTIONS(4141), + [anon_sym_pub] = ACTIONS(4141), + [anon_sym_mut] = ACTIONS(4141), + [anon_sym_enum] = ACTIONS(4141), + [anon_sym_interface] = ACTIONS(4141), + [anon_sym_QMARK] = ACTIONS(4141), + [anon_sym_BANG] = ACTIONS(4141), + [anon_sym_go] = ACTIONS(4141), + [anon_sym_spawn] = ACTIONS(4141), + [anon_sym_json_DOTdecode] = ACTIONS(4141), + [anon_sym_LBRACK2] = ACTIONS(4141), + [anon_sym_TILDE] = ACTIONS(4141), + [anon_sym_CARET] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(4141), + [anon_sym_LT_DASH] = ACTIONS(4141), + [sym_none] = ACTIONS(4141), + [sym_true] = ACTIONS(4141), + [sym_false] = ACTIONS(4141), + [sym_nil] = ACTIONS(4141), + [anon_sym_if] = ACTIONS(4141), + [anon_sym_DOLLARif] = ACTIONS(4141), + [anon_sym_match] = ACTIONS(4141), + [anon_sym_select] = ACTIONS(4141), + [anon_sym_lock] = ACTIONS(4141), + [anon_sym_rlock] = ACTIONS(4141), + [anon_sym_unsafe] = ACTIONS(4141), + [anon_sym_sql] = ACTIONS(4141), + [sym_int_literal] = ACTIONS(4141), + [sym_float_literal] = ACTIONS(4141), + [sym_rune_literal] = ACTIONS(4141), + [anon_sym_AT] = ACTIONS(4141), + [anon_sym_shared] = ACTIONS(4141), + [anon_sym_map_LBRACK] = ACTIONS(4141), + [anon_sym_chan] = ACTIONS(4141), + [anon_sym_thread] = ACTIONS(4141), + [anon_sym_atomic] = ACTIONS(4141), + [anon_sym_assert] = ACTIONS(4141), + [anon_sym_defer] = ACTIONS(4141), + [anon_sym_goto] = ACTIONS(4141), + [anon_sym_break] = ACTIONS(4141), + [anon_sym_continue] = ACTIONS(4141), + [anon_sym_return] = ACTIONS(4141), + [anon_sym_DOLLARfor] = ACTIONS(4141), + [anon_sym_for] = ACTIONS(4141), + [anon_sym_POUND] = ACTIONS(4141), + [anon_sym_asm] = ACTIONS(4141), + [anon_sym_AT_LBRACK] = ACTIONS(4141), + [sym___double_quote] = ACTIONS(4141), + [sym___single_quote] = ACTIONS(4141), + [sym___c_double_quote] = ACTIONS(4141), + [sym___c_single_quote] = ACTIONS(4141), + [sym___r_double_quote] = ACTIONS(4141), + [sym___r_single_quote] = ACTIONS(4141), }, [1539] = { - [ts_builtin_sym_end] = ACTIONS(4102), - [sym_identifier] = ACTIONS(4104), - [anon_sym_LF] = ACTIONS(4104), - [anon_sym_CR] = ACTIONS(4104), - [anon_sym_CR_LF] = ACTIONS(4104), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_LPAREN] = ACTIONS(4104), - [anon_sym___global] = ACTIONS(4104), - [anon_sym_type] = ACTIONS(4104), - [anon_sym_fn] = ACTIONS(4104), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_pub] = ACTIONS(4104), - [anon_sym_mut] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_interface] = ACTIONS(4104), - [anon_sym_QMARK] = ACTIONS(4104), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_go] = ACTIONS(4104), - [anon_sym_spawn] = ACTIONS(4104), - [anon_sym_json_DOTdecode] = ACTIONS(4104), - [anon_sym_LBRACK2] = ACTIONS(4104), - [anon_sym_TILDE] = ACTIONS(4104), - [anon_sym_CARET] = ACTIONS(4104), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_LT_DASH] = ACTIONS(4104), - [sym_none] = ACTIONS(4104), - [sym_true] = ACTIONS(4104), - [sym_false] = ACTIONS(4104), - [sym_nil] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_DOLLARif] = ACTIONS(4104), - [anon_sym_match] = ACTIONS(4104), - [anon_sym_select] = ACTIONS(4104), - [anon_sym_lock] = ACTIONS(4104), - [anon_sym_rlock] = ACTIONS(4104), - [anon_sym_unsafe] = ACTIONS(4104), - [anon_sym_sql] = ACTIONS(4104), - [sym_int_literal] = ACTIONS(4104), - [sym_float_literal] = ACTIONS(4104), - [sym_rune_literal] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4104), - [anon_sym_shared] = ACTIONS(4104), - [anon_sym_map_LBRACK] = ACTIONS(4104), - [anon_sym_chan] = ACTIONS(4104), - [anon_sym_thread] = ACTIONS(4104), - [anon_sym_atomic] = ACTIONS(4104), - [anon_sym_assert] = ACTIONS(4104), - [anon_sym_defer] = ACTIONS(4104), - [anon_sym_goto] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_DOLLARfor] = ACTIONS(4104), - [anon_sym_for] = ACTIONS(4104), - [anon_sym_POUND] = ACTIONS(4104), - [anon_sym_asm] = ACTIONS(4104), - [anon_sym_AT_LBRACK] = ACTIONS(4104), - [sym___double_quote] = ACTIONS(4104), - [sym___single_quote] = ACTIONS(4104), - [sym___c_double_quote] = ACTIONS(4104), - [sym___c_single_quote] = ACTIONS(4104), - [sym___r_double_quote] = ACTIONS(4104), - [sym___r_single_quote] = ACTIONS(4104), + [ts_builtin_sym_end] = ACTIONS(4143), + [sym_identifier] = ACTIONS(4145), + [anon_sym_LF] = ACTIONS(4145), + [anon_sym_CR] = ACTIONS(4145), + [anon_sym_CR_LF] = ACTIONS(4145), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4145), + [anon_sym_LBRACE] = ACTIONS(4145), + [anon_sym_const] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(4145), + [anon_sym___global] = ACTIONS(4145), + [anon_sym_type] = ACTIONS(4145), + [anon_sym_fn] = ACTIONS(4145), + [anon_sym_PLUS] = ACTIONS(4145), + [anon_sym_DASH] = ACTIONS(4145), + [anon_sym_STAR] = ACTIONS(4145), + [anon_sym_struct] = ACTIONS(4145), + [anon_sym_union] = ACTIONS(4145), + [anon_sym_pub] = ACTIONS(4145), + [anon_sym_mut] = ACTIONS(4145), + [anon_sym_enum] = ACTIONS(4145), + [anon_sym_interface] = ACTIONS(4145), + [anon_sym_QMARK] = ACTIONS(4145), + [anon_sym_BANG] = ACTIONS(4145), + [anon_sym_go] = ACTIONS(4145), + [anon_sym_spawn] = ACTIONS(4145), + [anon_sym_json_DOTdecode] = ACTIONS(4145), + [anon_sym_LBRACK2] = ACTIONS(4145), + [anon_sym_TILDE] = ACTIONS(4145), + [anon_sym_CARET] = ACTIONS(4145), + [anon_sym_AMP] = ACTIONS(4145), + [anon_sym_LT_DASH] = ACTIONS(4145), + [sym_none] = ACTIONS(4145), + [sym_true] = ACTIONS(4145), + [sym_false] = ACTIONS(4145), + [sym_nil] = ACTIONS(4145), + [anon_sym_if] = ACTIONS(4145), + [anon_sym_DOLLARif] = ACTIONS(4145), + [anon_sym_match] = ACTIONS(4145), + [anon_sym_select] = ACTIONS(4145), + [anon_sym_lock] = ACTIONS(4145), + [anon_sym_rlock] = ACTIONS(4145), + [anon_sym_unsafe] = ACTIONS(4145), + [anon_sym_sql] = ACTIONS(4145), + [sym_int_literal] = ACTIONS(4145), + [sym_float_literal] = ACTIONS(4145), + [sym_rune_literal] = ACTIONS(4145), + [anon_sym_AT] = ACTIONS(4145), + [anon_sym_shared] = ACTIONS(4145), + [anon_sym_map_LBRACK] = ACTIONS(4145), + [anon_sym_chan] = ACTIONS(4145), + [anon_sym_thread] = ACTIONS(4145), + [anon_sym_atomic] = ACTIONS(4145), + [anon_sym_assert] = ACTIONS(4145), + [anon_sym_defer] = ACTIONS(4145), + [anon_sym_goto] = ACTIONS(4145), + [anon_sym_break] = ACTIONS(4145), + [anon_sym_continue] = ACTIONS(4145), + [anon_sym_return] = ACTIONS(4145), + [anon_sym_DOLLARfor] = ACTIONS(4145), + [anon_sym_for] = ACTIONS(4145), + [anon_sym_POUND] = ACTIONS(4145), + [anon_sym_asm] = ACTIONS(4145), + [anon_sym_AT_LBRACK] = ACTIONS(4145), + [sym___double_quote] = ACTIONS(4145), + [sym___single_quote] = ACTIONS(4145), + [sym___c_double_quote] = ACTIONS(4145), + [sym___c_single_quote] = ACTIONS(4145), + [sym___r_double_quote] = ACTIONS(4145), + [sym___r_single_quote] = ACTIONS(4145), }, [1540] = { - [ts_builtin_sym_end] = ACTIONS(4106), - [sym_identifier] = ACTIONS(4108), - [anon_sym_LF] = ACTIONS(4108), - [anon_sym_CR] = ACTIONS(4108), - [anon_sym_CR_LF] = ACTIONS(4108), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4108), - [anon_sym___global] = ACTIONS(4108), - [anon_sym_type] = ACTIONS(4108), - [anon_sym_fn] = ACTIONS(4108), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_pub] = ACTIONS(4108), - [anon_sym_mut] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_interface] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_go] = ACTIONS(4108), - [anon_sym_spawn] = ACTIONS(4108), - [anon_sym_json_DOTdecode] = ACTIONS(4108), - [anon_sym_LBRACK2] = ACTIONS(4108), - [anon_sym_TILDE] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_DASH] = ACTIONS(4108), - [sym_none] = ACTIONS(4108), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [sym_nil] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_DOLLARif] = ACTIONS(4108), - [anon_sym_match] = ACTIONS(4108), - [anon_sym_select] = ACTIONS(4108), - [anon_sym_lock] = ACTIONS(4108), - [anon_sym_rlock] = ACTIONS(4108), - [anon_sym_unsafe] = ACTIONS(4108), - [anon_sym_sql] = ACTIONS(4108), - [sym_int_literal] = ACTIONS(4108), - [sym_float_literal] = ACTIONS(4108), - [sym_rune_literal] = ACTIONS(4108), - [anon_sym_AT] = ACTIONS(4108), - [anon_sym_shared] = ACTIONS(4108), - [anon_sym_map_LBRACK] = ACTIONS(4108), - [anon_sym_chan] = ACTIONS(4108), - [anon_sym_thread] = ACTIONS(4108), - [anon_sym_atomic] = ACTIONS(4108), - [anon_sym_assert] = ACTIONS(4108), - [anon_sym_defer] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_DOLLARfor] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_POUND] = ACTIONS(4108), - [anon_sym_asm] = ACTIONS(4108), - [anon_sym_AT_LBRACK] = ACTIONS(4108), - [sym___double_quote] = ACTIONS(4108), - [sym___single_quote] = ACTIONS(4108), - [sym___c_double_quote] = ACTIONS(4108), - [sym___c_single_quote] = ACTIONS(4108), - [sym___r_double_quote] = ACTIONS(4108), - [sym___r_single_quote] = ACTIONS(4108), + [ts_builtin_sym_end] = ACTIONS(4147), + [sym_identifier] = ACTIONS(4149), + [anon_sym_LF] = ACTIONS(4149), + [anon_sym_CR] = ACTIONS(4149), + [anon_sym_CR_LF] = ACTIONS(4149), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4149), + [anon_sym_LBRACE] = ACTIONS(4149), + [anon_sym_const] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(4149), + [anon_sym___global] = ACTIONS(4149), + [anon_sym_type] = ACTIONS(4149), + [anon_sym_fn] = ACTIONS(4149), + [anon_sym_PLUS] = ACTIONS(4149), + [anon_sym_DASH] = ACTIONS(4149), + [anon_sym_STAR] = ACTIONS(4149), + [anon_sym_struct] = ACTIONS(4149), + [anon_sym_union] = ACTIONS(4149), + [anon_sym_pub] = ACTIONS(4149), + [anon_sym_mut] = ACTIONS(4149), + [anon_sym_enum] = ACTIONS(4149), + [anon_sym_interface] = ACTIONS(4149), + [anon_sym_QMARK] = ACTIONS(4149), + [anon_sym_BANG] = ACTIONS(4149), + [anon_sym_go] = ACTIONS(4149), + [anon_sym_spawn] = ACTIONS(4149), + [anon_sym_json_DOTdecode] = ACTIONS(4149), + [anon_sym_LBRACK2] = ACTIONS(4149), + [anon_sym_TILDE] = ACTIONS(4149), + [anon_sym_CARET] = ACTIONS(4149), + [anon_sym_AMP] = ACTIONS(4149), + [anon_sym_LT_DASH] = ACTIONS(4149), + [sym_none] = ACTIONS(4149), + [sym_true] = ACTIONS(4149), + [sym_false] = ACTIONS(4149), + [sym_nil] = ACTIONS(4149), + [anon_sym_if] = ACTIONS(4149), + [anon_sym_DOLLARif] = ACTIONS(4149), + [anon_sym_match] = ACTIONS(4149), + [anon_sym_select] = ACTIONS(4149), + [anon_sym_lock] = ACTIONS(4149), + [anon_sym_rlock] = ACTIONS(4149), + [anon_sym_unsafe] = ACTIONS(4149), + [anon_sym_sql] = ACTIONS(4149), + [sym_int_literal] = ACTIONS(4149), + [sym_float_literal] = ACTIONS(4149), + [sym_rune_literal] = ACTIONS(4149), + [anon_sym_AT] = ACTIONS(4149), + [anon_sym_shared] = ACTIONS(4149), + [anon_sym_map_LBRACK] = ACTIONS(4149), + [anon_sym_chan] = ACTIONS(4149), + [anon_sym_thread] = ACTIONS(4149), + [anon_sym_atomic] = ACTIONS(4149), + [anon_sym_assert] = ACTIONS(4149), + [anon_sym_defer] = ACTIONS(4149), + [anon_sym_goto] = ACTIONS(4149), + [anon_sym_break] = ACTIONS(4149), + [anon_sym_continue] = ACTIONS(4149), + [anon_sym_return] = ACTIONS(4149), + [anon_sym_DOLLARfor] = ACTIONS(4149), + [anon_sym_for] = ACTIONS(4149), + [anon_sym_POUND] = ACTIONS(4149), + [anon_sym_asm] = ACTIONS(4149), + [anon_sym_AT_LBRACK] = ACTIONS(4149), + [sym___double_quote] = ACTIONS(4149), + [sym___single_quote] = ACTIONS(4149), + [sym___c_double_quote] = ACTIONS(4149), + [sym___c_single_quote] = ACTIONS(4149), + [sym___r_double_quote] = ACTIONS(4149), + [sym___r_single_quote] = ACTIONS(4149), }, [1541] = { - [ts_builtin_sym_end] = ACTIONS(4110), - [sym_identifier] = ACTIONS(4112), - [anon_sym_LF] = ACTIONS(4112), - [anon_sym_CR] = ACTIONS(4112), - [anon_sym_CR_LF] = ACTIONS(4112), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym___global] = ACTIONS(4112), - [anon_sym_type] = ACTIONS(4112), - [anon_sym_fn] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_pub] = ACTIONS(4112), - [anon_sym_mut] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_interface] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4112), - [anon_sym_BANG] = ACTIONS(4112), - [anon_sym_go] = ACTIONS(4112), - [anon_sym_spawn] = ACTIONS(4112), - [anon_sym_json_DOTdecode] = ACTIONS(4112), - [anon_sym_LBRACK2] = ACTIONS(4112), - [anon_sym_TILDE] = ACTIONS(4112), - [anon_sym_CARET] = ACTIONS(4112), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_LT_DASH] = ACTIONS(4112), - [sym_none] = ACTIONS(4112), - [sym_true] = ACTIONS(4112), - [sym_false] = ACTIONS(4112), - [sym_nil] = ACTIONS(4112), - [anon_sym_if] = ACTIONS(4112), - [anon_sym_DOLLARif] = ACTIONS(4112), - [anon_sym_match] = ACTIONS(4112), - [anon_sym_select] = ACTIONS(4112), - [anon_sym_lock] = ACTIONS(4112), - [anon_sym_rlock] = ACTIONS(4112), - [anon_sym_unsafe] = ACTIONS(4112), - [anon_sym_sql] = ACTIONS(4112), - [sym_int_literal] = ACTIONS(4112), - [sym_float_literal] = ACTIONS(4112), - [sym_rune_literal] = ACTIONS(4112), - [anon_sym_AT] = ACTIONS(4112), - [anon_sym_shared] = ACTIONS(4112), - [anon_sym_map_LBRACK] = ACTIONS(4112), - [anon_sym_chan] = ACTIONS(4112), - [anon_sym_thread] = ACTIONS(4112), - [anon_sym_atomic] = ACTIONS(4112), - [anon_sym_assert] = ACTIONS(4112), - [anon_sym_defer] = ACTIONS(4112), - [anon_sym_goto] = ACTIONS(4112), - [anon_sym_break] = ACTIONS(4112), - [anon_sym_continue] = ACTIONS(4112), - [anon_sym_return] = ACTIONS(4112), - [anon_sym_DOLLARfor] = ACTIONS(4112), - [anon_sym_for] = ACTIONS(4112), - [anon_sym_POUND] = ACTIONS(4112), - [anon_sym_asm] = ACTIONS(4112), - [anon_sym_AT_LBRACK] = ACTIONS(4112), - [sym___double_quote] = ACTIONS(4112), - [sym___single_quote] = ACTIONS(4112), - [sym___c_double_quote] = ACTIONS(4112), - [sym___c_single_quote] = ACTIONS(4112), - [sym___r_double_quote] = ACTIONS(4112), - [sym___r_single_quote] = ACTIONS(4112), + [ts_builtin_sym_end] = ACTIONS(4151), + [sym_identifier] = ACTIONS(4153), + [anon_sym_LF] = ACTIONS(4153), + [anon_sym_CR] = ACTIONS(4153), + [anon_sym_CR_LF] = ACTIONS(4153), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(4153), + [anon_sym_const] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(4153), + [anon_sym___global] = ACTIONS(4153), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_fn] = ACTIONS(4153), + [anon_sym_PLUS] = ACTIONS(4153), + [anon_sym_DASH] = ACTIONS(4153), + [anon_sym_STAR] = ACTIONS(4153), + [anon_sym_struct] = ACTIONS(4153), + [anon_sym_union] = ACTIONS(4153), + [anon_sym_pub] = ACTIONS(4153), + [anon_sym_mut] = ACTIONS(4153), + [anon_sym_enum] = ACTIONS(4153), + [anon_sym_interface] = ACTIONS(4153), + [anon_sym_QMARK] = ACTIONS(4153), + [anon_sym_BANG] = ACTIONS(4153), + [anon_sym_go] = ACTIONS(4153), + [anon_sym_spawn] = ACTIONS(4153), + [anon_sym_json_DOTdecode] = ACTIONS(4153), + [anon_sym_LBRACK2] = ACTIONS(4153), + [anon_sym_TILDE] = ACTIONS(4153), + [anon_sym_CARET] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), + [anon_sym_LT_DASH] = ACTIONS(4153), + [sym_none] = ACTIONS(4153), + [sym_true] = ACTIONS(4153), + [sym_false] = ACTIONS(4153), + [sym_nil] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_DOLLARif] = ACTIONS(4153), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_select] = ACTIONS(4153), + [anon_sym_lock] = ACTIONS(4153), + [anon_sym_rlock] = ACTIONS(4153), + [anon_sym_unsafe] = ACTIONS(4153), + [anon_sym_sql] = ACTIONS(4153), + [sym_int_literal] = ACTIONS(4153), + [sym_float_literal] = ACTIONS(4153), + [sym_rune_literal] = ACTIONS(4153), + [anon_sym_AT] = ACTIONS(4153), + [anon_sym_shared] = ACTIONS(4153), + [anon_sym_map_LBRACK] = ACTIONS(4153), + [anon_sym_chan] = ACTIONS(4153), + [anon_sym_thread] = ACTIONS(4153), + [anon_sym_atomic] = ACTIONS(4153), + [anon_sym_assert] = ACTIONS(4153), + [anon_sym_defer] = ACTIONS(4153), + [anon_sym_goto] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_DOLLARfor] = ACTIONS(4153), + [anon_sym_for] = ACTIONS(4153), + [anon_sym_POUND] = ACTIONS(4153), + [anon_sym_asm] = ACTIONS(4153), + [anon_sym_AT_LBRACK] = ACTIONS(4153), + [sym___double_quote] = ACTIONS(4153), + [sym___single_quote] = ACTIONS(4153), + [sym___c_double_quote] = ACTIONS(4153), + [sym___c_single_quote] = ACTIONS(4153), + [sym___r_double_quote] = ACTIONS(4153), + [sym___r_single_quote] = ACTIONS(4153), }, [1542] = { - [ts_builtin_sym_end] = ACTIONS(4114), - [sym_identifier] = ACTIONS(4116), - [anon_sym_LF] = ACTIONS(4116), - [anon_sym_CR] = ACTIONS(4116), - [anon_sym_CR_LF] = ACTIONS(4116), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4116), - [anon_sym_const] = ACTIONS(4116), - [anon_sym_LPAREN] = ACTIONS(4116), - [anon_sym___global] = ACTIONS(4116), - [anon_sym_type] = ACTIONS(4116), - [anon_sym_fn] = ACTIONS(4116), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4116), - [anon_sym_union] = ACTIONS(4116), - [anon_sym_pub] = ACTIONS(4116), - [anon_sym_mut] = ACTIONS(4116), - [anon_sym_enum] = ACTIONS(4116), - [anon_sym_interface] = ACTIONS(4116), - [anon_sym_QMARK] = ACTIONS(4116), - [anon_sym_BANG] = ACTIONS(4116), - [anon_sym_go] = ACTIONS(4116), - [anon_sym_spawn] = ACTIONS(4116), - [anon_sym_json_DOTdecode] = ACTIONS(4116), - [anon_sym_LBRACK2] = ACTIONS(4116), - [anon_sym_TILDE] = ACTIONS(4116), - [anon_sym_CARET] = ACTIONS(4116), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_LT_DASH] = ACTIONS(4116), - [sym_none] = ACTIONS(4116), - [sym_true] = ACTIONS(4116), - [sym_false] = ACTIONS(4116), - [sym_nil] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_DOLLARif] = ACTIONS(4116), - [anon_sym_match] = ACTIONS(4116), - [anon_sym_select] = ACTIONS(4116), - [anon_sym_lock] = ACTIONS(4116), - [anon_sym_rlock] = ACTIONS(4116), - [anon_sym_unsafe] = ACTIONS(4116), - [anon_sym_sql] = ACTIONS(4116), - [sym_int_literal] = ACTIONS(4116), - [sym_float_literal] = ACTIONS(4116), - [sym_rune_literal] = ACTIONS(4116), - [anon_sym_AT] = ACTIONS(4116), - [anon_sym_shared] = ACTIONS(4116), - [anon_sym_map_LBRACK] = ACTIONS(4116), - [anon_sym_chan] = ACTIONS(4116), - [anon_sym_thread] = ACTIONS(4116), - [anon_sym_atomic] = ACTIONS(4116), - [anon_sym_assert] = ACTIONS(4116), - [anon_sym_defer] = ACTIONS(4116), - [anon_sym_goto] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_DOLLARfor] = ACTIONS(4116), - [anon_sym_for] = ACTIONS(4116), - [anon_sym_POUND] = ACTIONS(4116), - [anon_sym_asm] = ACTIONS(4116), - [anon_sym_AT_LBRACK] = ACTIONS(4116), - [sym___double_quote] = ACTIONS(4116), - [sym___single_quote] = ACTIONS(4116), - [sym___c_double_quote] = ACTIONS(4116), - [sym___c_single_quote] = ACTIONS(4116), - [sym___r_double_quote] = ACTIONS(4116), - [sym___r_single_quote] = ACTIONS(4116), + [ts_builtin_sym_end] = ACTIONS(4155), + [sym_identifier] = ACTIONS(4157), + [anon_sym_LF] = ACTIONS(4157), + [anon_sym_CR] = ACTIONS(4157), + [anon_sym_CR_LF] = ACTIONS(4157), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4157), + [anon_sym_LBRACE] = ACTIONS(4157), + [anon_sym_const] = ACTIONS(4157), + [anon_sym_LPAREN] = ACTIONS(4157), + [anon_sym___global] = ACTIONS(4157), + [anon_sym_type] = ACTIONS(4157), + [anon_sym_fn] = ACTIONS(4157), + [anon_sym_PLUS] = ACTIONS(4157), + [anon_sym_DASH] = ACTIONS(4157), + [anon_sym_STAR] = ACTIONS(4157), + [anon_sym_struct] = ACTIONS(4157), + [anon_sym_union] = ACTIONS(4157), + [anon_sym_pub] = ACTIONS(4157), + [anon_sym_mut] = ACTIONS(4157), + [anon_sym_enum] = ACTIONS(4157), + [anon_sym_interface] = ACTIONS(4157), + [anon_sym_QMARK] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(4157), + [anon_sym_go] = ACTIONS(4157), + [anon_sym_spawn] = ACTIONS(4157), + [anon_sym_json_DOTdecode] = ACTIONS(4157), + [anon_sym_LBRACK2] = ACTIONS(4157), + [anon_sym_TILDE] = ACTIONS(4157), + [anon_sym_CARET] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4157), + [anon_sym_LT_DASH] = ACTIONS(4157), + [sym_none] = ACTIONS(4157), + [sym_true] = ACTIONS(4157), + [sym_false] = ACTIONS(4157), + [sym_nil] = ACTIONS(4157), + [anon_sym_if] = ACTIONS(4157), + [anon_sym_DOLLARif] = ACTIONS(4157), + [anon_sym_match] = ACTIONS(4157), + [anon_sym_select] = ACTIONS(4157), + [anon_sym_lock] = ACTIONS(4157), + [anon_sym_rlock] = ACTIONS(4157), + [anon_sym_unsafe] = ACTIONS(4157), + [anon_sym_sql] = ACTIONS(4157), + [sym_int_literal] = ACTIONS(4157), + [sym_float_literal] = ACTIONS(4157), + [sym_rune_literal] = ACTIONS(4157), + [anon_sym_AT] = ACTIONS(4157), + [anon_sym_shared] = ACTIONS(4157), + [anon_sym_map_LBRACK] = ACTIONS(4157), + [anon_sym_chan] = ACTIONS(4157), + [anon_sym_thread] = ACTIONS(4157), + [anon_sym_atomic] = ACTIONS(4157), + [anon_sym_assert] = ACTIONS(4157), + [anon_sym_defer] = ACTIONS(4157), + [anon_sym_goto] = ACTIONS(4157), + [anon_sym_break] = ACTIONS(4157), + [anon_sym_continue] = ACTIONS(4157), + [anon_sym_return] = ACTIONS(4157), + [anon_sym_DOLLARfor] = ACTIONS(4157), + [anon_sym_for] = ACTIONS(4157), + [anon_sym_POUND] = ACTIONS(4157), + [anon_sym_asm] = ACTIONS(4157), + [anon_sym_AT_LBRACK] = ACTIONS(4157), + [sym___double_quote] = ACTIONS(4157), + [sym___single_quote] = ACTIONS(4157), + [sym___c_double_quote] = ACTIONS(4157), + [sym___c_single_quote] = ACTIONS(4157), + [sym___r_double_quote] = ACTIONS(4157), + [sym___r_single_quote] = ACTIONS(4157), }, [1543] = { - [ts_builtin_sym_end] = ACTIONS(4118), - [sym_identifier] = ACTIONS(4120), - [anon_sym_LF] = ACTIONS(4120), - [anon_sym_CR] = ACTIONS(4120), - [anon_sym_CR_LF] = ACTIONS(4120), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(4120), - [anon_sym_const] = ACTIONS(4120), - [anon_sym_LPAREN] = ACTIONS(4120), - [anon_sym___global] = ACTIONS(4120), - [anon_sym_type] = ACTIONS(4120), - [anon_sym_fn] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_struct] = ACTIONS(4120), - [anon_sym_union] = ACTIONS(4120), - [anon_sym_pub] = ACTIONS(4120), - [anon_sym_mut] = ACTIONS(4120), - [anon_sym_enum] = ACTIONS(4120), - [anon_sym_interface] = ACTIONS(4120), - [anon_sym_QMARK] = ACTIONS(4120), - [anon_sym_BANG] = ACTIONS(4120), - [anon_sym_go] = ACTIONS(4120), - [anon_sym_spawn] = ACTIONS(4120), - [anon_sym_json_DOTdecode] = ACTIONS(4120), - [anon_sym_LBRACK2] = ACTIONS(4120), - [anon_sym_TILDE] = ACTIONS(4120), - [anon_sym_CARET] = ACTIONS(4120), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_LT_DASH] = ACTIONS(4120), - [sym_none] = ACTIONS(4120), - [sym_true] = ACTIONS(4120), - [sym_false] = ACTIONS(4120), - [sym_nil] = ACTIONS(4120), - [anon_sym_if] = ACTIONS(4120), - [anon_sym_DOLLARif] = ACTIONS(4120), - [anon_sym_match] = ACTIONS(4120), - [anon_sym_select] = ACTIONS(4120), - [anon_sym_lock] = ACTIONS(4120), - [anon_sym_rlock] = ACTIONS(4120), - [anon_sym_unsafe] = ACTIONS(4120), - [anon_sym_sql] = ACTIONS(4120), - [sym_int_literal] = ACTIONS(4120), - [sym_float_literal] = ACTIONS(4120), - [sym_rune_literal] = ACTIONS(4120), - [anon_sym_AT] = ACTIONS(4120), - [anon_sym_shared] = ACTIONS(4120), - [anon_sym_map_LBRACK] = ACTIONS(4120), - [anon_sym_chan] = ACTIONS(4120), - [anon_sym_thread] = ACTIONS(4120), - [anon_sym_atomic] = ACTIONS(4120), - [anon_sym_assert] = ACTIONS(4120), - [anon_sym_defer] = ACTIONS(4120), - [anon_sym_goto] = ACTIONS(4120), - [anon_sym_break] = ACTIONS(4120), - [anon_sym_continue] = ACTIONS(4120), - [anon_sym_return] = ACTIONS(4120), - [anon_sym_DOLLARfor] = ACTIONS(4120), - [anon_sym_for] = ACTIONS(4120), - [anon_sym_POUND] = ACTIONS(4120), - [anon_sym_asm] = ACTIONS(4120), - [anon_sym_AT_LBRACK] = ACTIONS(4120), - [sym___double_quote] = ACTIONS(4120), - [sym___single_quote] = ACTIONS(4120), - [sym___c_double_quote] = ACTIONS(4120), - [sym___c_single_quote] = ACTIONS(4120), - [sym___r_double_quote] = ACTIONS(4120), - [sym___r_single_quote] = ACTIONS(4120), + [ts_builtin_sym_end] = ACTIONS(4159), + [sym_identifier] = ACTIONS(4161), + [anon_sym_LF] = ACTIONS(4161), + [anon_sym_CR] = ACTIONS(4161), + [anon_sym_CR_LF] = ACTIONS(4161), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4161), + [anon_sym_LBRACE] = ACTIONS(4161), + [anon_sym_const] = ACTIONS(4161), + [anon_sym_LPAREN] = ACTIONS(4161), + [anon_sym___global] = ACTIONS(4161), + [anon_sym_type] = ACTIONS(4161), + [anon_sym_fn] = ACTIONS(4161), + [anon_sym_PLUS] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4161), + [anon_sym_STAR] = ACTIONS(4161), + [anon_sym_struct] = ACTIONS(4161), + [anon_sym_union] = ACTIONS(4161), + [anon_sym_pub] = ACTIONS(4161), + [anon_sym_mut] = ACTIONS(4161), + [anon_sym_enum] = ACTIONS(4161), + [anon_sym_interface] = ACTIONS(4161), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_BANG] = ACTIONS(4161), + [anon_sym_go] = ACTIONS(4161), + [anon_sym_spawn] = ACTIONS(4161), + [anon_sym_json_DOTdecode] = ACTIONS(4161), + [anon_sym_LBRACK2] = ACTIONS(4161), + [anon_sym_TILDE] = ACTIONS(4161), + [anon_sym_CARET] = ACTIONS(4161), + [anon_sym_AMP] = ACTIONS(4161), + [anon_sym_LT_DASH] = ACTIONS(4161), + [sym_none] = ACTIONS(4161), + [sym_true] = ACTIONS(4161), + [sym_false] = ACTIONS(4161), + [sym_nil] = ACTIONS(4161), + [anon_sym_if] = ACTIONS(4161), + [anon_sym_DOLLARif] = ACTIONS(4161), + [anon_sym_match] = ACTIONS(4161), + [anon_sym_select] = ACTIONS(4161), + [anon_sym_lock] = ACTIONS(4161), + [anon_sym_rlock] = ACTIONS(4161), + [anon_sym_unsafe] = ACTIONS(4161), + [anon_sym_sql] = ACTIONS(4161), + [sym_int_literal] = ACTIONS(4161), + [sym_float_literal] = ACTIONS(4161), + [sym_rune_literal] = ACTIONS(4161), + [anon_sym_AT] = ACTIONS(4161), + [anon_sym_shared] = ACTIONS(4161), + [anon_sym_map_LBRACK] = ACTIONS(4161), + [anon_sym_chan] = ACTIONS(4161), + [anon_sym_thread] = ACTIONS(4161), + [anon_sym_atomic] = ACTIONS(4161), + [anon_sym_assert] = ACTIONS(4161), + [anon_sym_defer] = ACTIONS(4161), + [anon_sym_goto] = ACTIONS(4161), + [anon_sym_break] = ACTIONS(4161), + [anon_sym_continue] = ACTIONS(4161), + [anon_sym_return] = ACTIONS(4161), + [anon_sym_DOLLARfor] = ACTIONS(4161), + [anon_sym_for] = ACTIONS(4161), + [anon_sym_POUND] = ACTIONS(4161), + [anon_sym_asm] = ACTIONS(4161), + [anon_sym_AT_LBRACK] = ACTIONS(4161), + [sym___double_quote] = ACTIONS(4161), + [sym___single_quote] = ACTIONS(4161), + [sym___c_double_quote] = ACTIONS(4161), + [sym___c_single_quote] = ACTIONS(4161), + [sym___r_double_quote] = ACTIONS(4161), + [sym___r_single_quote] = ACTIONS(4161), }, [1544] = { - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LF] = ACTIONS(1776), - [anon_sym_CR] = ACTIONS(1776), - [anon_sym_CR_LF] = ACTIONS(1776), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym___global] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_mut] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_interface] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_go] = ACTIONS(1776), - [anon_sym_spawn] = ACTIONS(1776), - [anon_sym_json_DOTdecode] = ACTIONS(1776), - [anon_sym_LBRACK2] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_LT_DASH] = ACTIONS(1776), - [sym_none] = ACTIONS(1776), - [sym_true] = ACTIONS(1776), - [sym_false] = ACTIONS(1776), - [sym_nil] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_DOLLARif] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_select] = ACTIONS(1776), - [anon_sym_lock] = ACTIONS(1776), - [anon_sym_rlock] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_sql] = ACTIONS(1776), - [sym_int_literal] = ACTIONS(1776), - [sym_float_literal] = ACTIONS(1776), - [sym_rune_literal] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_shared] = ACTIONS(1776), - [anon_sym_map_LBRACK] = ACTIONS(1776), - [anon_sym_chan] = ACTIONS(1776), - [anon_sym_thread] = ACTIONS(1776), - [anon_sym_atomic] = ACTIONS(1776), - [anon_sym_assert] = ACTIONS(1776), - [anon_sym_defer] = ACTIONS(1776), - [anon_sym_goto] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_DOLLARfor] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_asm] = ACTIONS(1776), - [anon_sym_AT_LBRACK] = ACTIONS(1776), - [sym___double_quote] = ACTIONS(1776), - [sym___single_quote] = ACTIONS(1776), - [sym___c_double_quote] = ACTIONS(1776), - [sym___c_single_quote] = ACTIONS(1776), - [sym___r_double_quote] = ACTIONS(1776), - [sym___r_single_quote] = ACTIONS(1776), + [ts_builtin_sym_end] = ACTIONS(4163), + [sym_identifier] = ACTIONS(4165), + [anon_sym_LF] = ACTIONS(4165), + [anon_sym_CR] = ACTIONS(4165), + [anon_sym_CR_LF] = ACTIONS(4165), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4165), + [anon_sym_const] = ACTIONS(4165), + [anon_sym_LPAREN] = ACTIONS(4165), + [anon_sym___global] = ACTIONS(4165), + [anon_sym_type] = ACTIONS(4165), + [anon_sym_fn] = ACTIONS(4165), + [anon_sym_PLUS] = ACTIONS(4165), + [anon_sym_DASH] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_struct] = ACTIONS(4165), + [anon_sym_union] = ACTIONS(4165), + [anon_sym_pub] = ACTIONS(4165), + [anon_sym_mut] = ACTIONS(4165), + [anon_sym_enum] = ACTIONS(4165), + [anon_sym_interface] = ACTIONS(4165), + [anon_sym_QMARK] = ACTIONS(4165), + [anon_sym_BANG] = ACTIONS(4165), + [anon_sym_go] = ACTIONS(4165), + [anon_sym_spawn] = ACTIONS(4165), + [anon_sym_json_DOTdecode] = ACTIONS(4165), + [anon_sym_LBRACK2] = ACTIONS(4165), + [anon_sym_TILDE] = ACTIONS(4165), + [anon_sym_CARET] = ACTIONS(4165), + [anon_sym_AMP] = ACTIONS(4165), + [anon_sym_LT_DASH] = ACTIONS(4165), + [sym_none] = ACTIONS(4165), + [sym_true] = ACTIONS(4165), + [sym_false] = ACTIONS(4165), + [sym_nil] = ACTIONS(4165), + [anon_sym_if] = ACTIONS(4165), + [anon_sym_DOLLARif] = ACTIONS(4165), + [anon_sym_match] = ACTIONS(4165), + [anon_sym_select] = ACTIONS(4165), + [anon_sym_lock] = ACTIONS(4165), + [anon_sym_rlock] = ACTIONS(4165), + [anon_sym_unsafe] = ACTIONS(4165), + [anon_sym_sql] = ACTIONS(4165), + [sym_int_literal] = ACTIONS(4165), + [sym_float_literal] = ACTIONS(4165), + [sym_rune_literal] = ACTIONS(4165), + [anon_sym_AT] = ACTIONS(4165), + [anon_sym_shared] = ACTIONS(4165), + [anon_sym_map_LBRACK] = ACTIONS(4165), + [anon_sym_chan] = ACTIONS(4165), + [anon_sym_thread] = ACTIONS(4165), + [anon_sym_atomic] = ACTIONS(4165), + [anon_sym_assert] = ACTIONS(4165), + [anon_sym_defer] = ACTIONS(4165), + [anon_sym_goto] = ACTIONS(4165), + [anon_sym_break] = ACTIONS(4165), + [anon_sym_continue] = ACTIONS(4165), + [anon_sym_return] = ACTIONS(4165), + [anon_sym_DOLLARfor] = ACTIONS(4165), + [anon_sym_for] = ACTIONS(4165), + [anon_sym_POUND] = ACTIONS(4165), + [anon_sym_asm] = ACTIONS(4165), + [anon_sym_AT_LBRACK] = ACTIONS(4165), + [sym___double_quote] = ACTIONS(4165), + [sym___single_quote] = ACTIONS(4165), + [sym___c_double_quote] = ACTIONS(4165), + [sym___c_single_quote] = ACTIONS(4165), + [sym___r_double_quote] = ACTIONS(4165), + [sym___r_single_quote] = ACTIONS(4165), }, [1545] = { - [ts_builtin_sym_end] = ACTIONS(4122), - [sym_identifier] = ACTIONS(4124), - [anon_sym_LF] = ACTIONS(4124), - [anon_sym_CR] = ACTIONS(4124), - [anon_sym_CR_LF] = ACTIONS(4124), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_const] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym___global] = ACTIONS(4124), - [anon_sym_type] = ACTIONS(4124), - [anon_sym_fn] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_struct] = ACTIONS(4124), - [anon_sym_union] = ACTIONS(4124), - [anon_sym_pub] = ACTIONS(4124), - [anon_sym_mut] = ACTIONS(4124), - [anon_sym_enum] = ACTIONS(4124), - [anon_sym_interface] = ACTIONS(4124), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_go] = ACTIONS(4124), - [anon_sym_spawn] = ACTIONS(4124), - [anon_sym_json_DOTdecode] = ACTIONS(4124), - [anon_sym_LBRACK2] = ACTIONS(4124), - [anon_sym_TILDE] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_DASH] = ACTIONS(4124), - [sym_none] = ACTIONS(4124), - [sym_true] = ACTIONS(4124), - [sym_false] = ACTIONS(4124), - [sym_nil] = ACTIONS(4124), - [anon_sym_if] = ACTIONS(4124), - [anon_sym_DOLLARif] = ACTIONS(4124), - [anon_sym_match] = ACTIONS(4124), - [anon_sym_select] = ACTIONS(4124), - [anon_sym_lock] = ACTIONS(4124), - [anon_sym_rlock] = ACTIONS(4124), - [anon_sym_unsafe] = ACTIONS(4124), - [anon_sym_sql] = ACTIONS(4124), - [sym_int_literal] = ACTIONS(4124), - [sym_float_literal] = ACTIONS(4124), - [sym_rune_literal] = ACTIONS(4124), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_shared] = ACTIONS(4124), - [anon_sym_map_LBRACK] = ACTIONS(4124), - [anon_sym_chan] = ACTIONS(4124), - [anon_sym_thread] = ACTIONS(4124), - [anon_sym_atomic] = ACTIONS(4124), - [anon_sym_assert] = ACTIONS(4124), - [anon_sym_defer] = ACTIONS(4124), - [anon_sym_goto] = ACTIONS(4124), - [anon_sym_break] = ACTIONS(4124), - [anon_sym_continue] = ACTIONS(4124), - [anon_sym_return] = ACTIONS(4124), - [anon_sym_DOLLARfor] = ACTIONS(4124), - [anon_sym_for] = ACTIONS(4124), - [anon_sym_POUND] = ACTIONS(4124), - [anon_sym_asm] = ACTIONS(4124), - [anon_sym_AT_LBRACK] = ACTIONS(4124), - [sym___double_quote] = ACTIONS(4124), - [sym___single_quote] = ACTIONS(4124), - [sym___c_double_quote] = ACTIONS(4124), - [sym___c_single_quote] = ACTIONS(4124), - [sym___r_double_quote] = ACTIONS(4124), - [sym___r_single_quote] = ACTIONS(4124), + [ts_builtin_sym_end] = ACTIONS(4167), + [sym_identifier] = ACTIONS(4169), + [anon_sym_LF] = ACTIONS(4169), + [anon_sym_CR] = ACTIONS(4169), + [anon_sym_CR_LF] = ACTIONS(4169), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4169), + [anon_sym_LBRACE] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4169), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym___global] = ACTIONS(4169), + [anon_sym_type] = ACTIONS(4169), + [anon_sym_fn] = ACTIONS(4169), + [anon_sym_PLUS] = ACTIONS(4169), + [anon_sym_DASH] = ACTIONS(4169), + [anon_sym_STAR] = ACTIONS(4169), + [anon_sym_struct] = ACTIONS(4169), + [anon_sym_union] = ACTIONS(4169), + [anon_sym_pub] = ACTIONS(4169), + [anon_sym_mut] = ACTIONS(4169), + [anon_sym_enum] = ACTIONS(4169), + [anon_sym_interface] = ACTIONS(4169), + [anon_sym_QMARK] = ACTIONS(4169), + [anon_sym_BANG] = ACTIONS(4169), + [anon_sym_go] = ACTIONS(4169), + [anon_sym_spawn] = ACTIONS(4169), + [anon_sym_json_DOTdecode] = ACTIONS(4169), + [anon_sym_LBRACK2] = ACTIONS(4169), + [anon_sym_TILDE] = ACTIONS(4169), + [anon_sym_CARET] = ACTIONS(4169), + [anon_sym_AMP] = ACTIONS(4169), + [anon_sym_LT_DASH] = ACTIONS(4169), + [sym_none] = ACTIONS(4169), + [sym_true] = ACTIONS(4169), + [sym_false] = ACTIONS(4169), + [sym_nil] = ACTIONS(4169), + [anon_sym_if] = ACTIONS(4169), + [anon_sym_DOLLARif] = ACTIONS(4169), + [anon_sym_match] = ACTIONS(4169), + [anon_sym_select] = ACTIONS(4169), + [anon_sym_lock] = ACTIONS(4169), + [anon_sym_rlock] = ACTIONS(4169), + [anon_sym_unsafe] = ACTIONS(4169), + [anon_sym_sql] = ACTIONS(4169), + [sym_int_literal] = ACTIONS(4169), + [sym_float_literal] = ACTIONS(4169), + [sym_rune_literal] = ACTIONS(4169), + [anon_sym_AT] = ACTIONS(4169), + [anon_sym_shared] = ACTIONS(4169), + [anon_sym_map_LBRACK] = ACTIONS(4169), + [anon_sym_chan] = ACTIONS(4169), + [anon_sym_thread] = ACTIONS(4169), + [anon_sym_atomic] = ACTIONS(4169), + [anon_sym_assert] = ACTIONS(4169), + [anon_sym_defer] = ACTIONS(4169), + [anon_sym_goto] = ACTIONS(4169), + [anon_sym_break] = ACTIONS(4169), + [anon_sym_continue] = ACTIONS(4169), + [anon_sym_return] = ACTIONS(4169), + [anon_sym_DOLLARfor] = ACTIONS(4169), + [anon_sym_for] = ACTIONS(4169), + [anon_sym_POUND] = ACTIONS(4169), + [anon_sym_asm] = ACTIONS(4169), + [anon_sym_AT_LBRACK] = ACTIONS(4169), + [sym___double_quote] = ACTIONS(4169), + [sym___single_quote] = ACTIONS(4169), + [sym___c_double_quote] = ACTIONS(4169), + [sym___c_single_quote] = ACTIONS(4169), + [sym___r_double_quote] = ACTIONS(4169), + [sym___r_single_quote] = ACTIONS(4169), }, [1546] = { - [ts_builtin_sym_end] = ACTIONS(4126), - [sym_identifier] = ACTIONS(4128), - [anon_sym_LF] = ACTIONS(4128), - [anon_sym_CR] = ACTIONS(4128), - [anon_sym_CR_LF] = ACTIONS(4128), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4128), - [anon_sym_const] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym___global] = ACTIONS(4128), - [anon_sym_type] = ACTIONS(4128), - [anon_sym_fn] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_struct] = ACTIONS(4128), - [anon_sym_union] = ACTIONS(4128), - [anon_sym_pub] = ACTIONS(4128), - [anon_sym_mut] = ACTIONS(4128), - [anon_sym_enum] = ACTIONS(4128), - [anon_sym_interface] = ACTIONS(4128), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_go] = ACTIONS(4128), - [anon_sym_spawn] = ACTIONS(4128), - [anon_sym_json_DOTdecode] = ACTIONS(4128), - [anon_sym_LBRACK2] = ACTIONS(4128), - [anon_sym_TILDE] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_DASH] = ACTIONS(4128), - [sym_none] = ACTIONS(4128), - [sym_true] = ACTIONS(4128), - [sym_false] = ACTIONS(4128), - [sym_nil] = ACTIONS(4128), - [anon_sym_if] = ACTIONS(4128), - [anon_sym_DOLLARif] = ACTIONS(4128), - [anon_sym_match] = ACTIONS(4128), - [anon_sym_select] = ACTIONS(4128), - [anon_sym_lock] = ACTIONS(4128), - [anon_sym_rlock] = ACTIONS(4128), - [anon_sym_unsafe] = ACTIONS(4128), - [anon_sym_sql] = ACTIONS(4128), - [sym_int_literal] = ACTIONS(4128), - [sym_float_literal] = ACTIONS(4128), - [sym_rune_literal] = ACTIONS(4128), - [anon_sym_AT] = ACTIONS(4128), - [anon_sym_shared] = ACTIONS(4128), - [anon_sym_map_LBRACK] = ACTIONS(4128), - [anon_sym_chan] = ACTIONS(4128), - [anon_sym_thread] = ACTIONS(4128), - [anon_sym_atomic] = ACTIONS(4128), - [anon_sym_assert] = ACTIONS(4128), - [anon_sym_defer] = ACTIONS(4128), - [anon_sym_goto] = ACTIONS(4128), - [anon_sym_break] = ACTIONS(4128), - [anon_sym_continue] = ACTIONS(4128), - [anon_sym_return] = ACTIONS(4128), - [anon_sym_DOLLARfor] = ACTIONS(4128), - [anon_sym_for] = ACTIONS(4128), - [anon_sym_POUND] = ACTIONS(4128), - [anon_sym_asm] = ACTIONS(4128), - [anon_sym_AT_LBRACK] = ACTIONS(4128), - [sym___double_quote] = ACTIONS(4128), - [sym___single_quote] = ACTIONS(4128), - [sym___c_double_quote] = ACTIONS(4128), - [sym___c_single_quote] = ACTIONS(4128), - [sym___r_double_quote] = ACTIONS(4128), - [sym___r_single_quote] = ACTIONS(4128), + [ts_builtin_sym_end] = ACTIONS(4171), + [sym_identifier] = ACTIONS(4173), + [anon_sym_LF] = ACTIONS(4173), + [anon_sym_CR] = ACTIONS(4173), + [anon_sym_CR_LF] = ACTIONS(4173), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4173), + [anon_sym_LBRACE] = ACTIONS(4173), + [anon_sym_const] = ACTIONS(4173), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym___global] = ACTIONS(4173), + [anon_sym_type] = ACTIONS(4173), + [anon_sym_fn] = ACTIONS(4173), + [anon_sym_PLUS] = ACTIONS(4173), + [anon_sym_DASH] = ACTIONS(4173), + [anon_sym_STAR] = ACTIONS(4173), + [anon_sym_struct] = ACTIONS(4173), + [anon_sym_union] = ACTIONS(4173), + [anon_sym_pub] = ACTIONS(4173), + [anon_sym_mut] = ACTIONS(4173), + [anon_sym_enum] = ACTIONS(4173), + [anon_sym_interface] = ACTIONS(4173), + [anon_sym_QMARK] = ACTIONS(4173), + [anon_sym_BANG] = ACTIONS(4173), + [anon_sym_go] = ACTIONS(4173), + [anon_sym_spawn] = ACTIONS(4173), + [anon_sym_json_DOTdecode] = ACTIONS(4173), + [anon_sym_LBRACK2] = ACTIONS(4173), + [anon_sym_TILDE] = ACTIONS(4173), + [anon_sym_CARET] = ACTIONS(4173), + [anon_sym_AMP] = ACTIONS(4173), + [anon_sym_LT_DASH] = ACTIONS(4173), + [sym_none] = ACTIONS(4173), + [sym_true] = ACTIONS(4173), + [sym_false] = ACTIONS(4173), + [sym_nil] = ACTIONS(4173), + [anon_sym_if] = ACTIONS(4173), + [anon_sym_DOLLARif] = ACTIONS(4173), + [anon_sym_match] = ACTIONS(4173), + [anon_sym_select] = ACTIONS(4173), + [anon_sym_lock] = ACTIONS(4173), + [anon_sym_rlock] = ACTIONS(4173), + [anon_sym_unsafe] = ACTIONS(4173), + [anon_sym_sql] = ACTIONS(4173), + [sym_int_literal] = ACTIONS(4173), + [sym_float_literal] = ACTIONS(4173), + [sym_rune_literal] = ACTIONS(4173), + [anon_sym_AT] = ACTIONS(4173), + [anon_sym_shared] = ACTIONS(4173), + [anon_sym_map_LBRACK] = ACTIONS(4173), + [anon_sym_chan] = ACTIONS(4173), + [anon_sym_thread] = ACTIONS(4173), + [anon_sym_atomic] = ACTIONS(4173), + [anon_sym_assert] = ACTIONS(4173), + [anon_sym_defer] = ACTIONS(4173), + [anon_sym_goto] = ACTIONS(4173), + [anon_sym_break] = ACTIONS(4173), + [anon_sym_continue] = ACTIONS(4173), + [anon_sym_return] = ACTIONS(4173), + [anon_sym_DOLLARfor] = ACTIONS(4173), + [anon_sym_for] = ACTIONS(4173), + [anon_sym_POUND] = ACTIONS(4173), + [anon_sym_asm] = ACTIONS(4173), + [anon_sym_AT_LBRACK] = ACTIONS(4173), + [sym___double_quote] = ACTIONS(4173), + [sym___single_quote] = ACTIONS(4173), + [sym___c_double_quote] = ACTIONS(4173), + [sym___c_single_quote] = ACTIONS(4173), + [sym___r_double_quote] = ACTIONS(4173), + [sym___r_single_quote] = ACTIONS(4173), }, [1547] = { - [ts_builtin_sym_end] = ACTIONS(4130), - [sym_identifier] = ACTIONS(4132), - [anon_sym_LF] = ACTIONS(4132), - [anon_sym_CR] = ACTIONS(4132), - [anon_sym_CR_LF] = ACTIONS(4132), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_LPAREN] = ACTIONS(4132), - [anon_sym___global] = ACTIONS(4132), - [anon_sym_type] = ACTIONS(4132), - [anon_sym_fn] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_pub] = ACTIONS(4132), - [anon_sym_mut] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_interface] = ACTIONS(4132), - [anon_sym_QMARK] = ACTIONS(4132), - [anon_sym_BANG] = ACTIONS(4132), - [anon_sym_go] = ACTIONS(4132), - [anon_sym_spawn] = ACTIONS(4132), - [anon_sym_json_DOTdecode] = ACTIONS(4132), - [anon_sym_LBRACK2] = ACTIONS(4132), - [anon_sym_TILDE] = ACTIONS(4132), - [anon_sym_CARET] = ACTIONS(4132), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_LT_DASH] = ACTIONS(4132), - [sym_none] = ACTIONS(4132), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [sym_nil] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_DOLLARif] = ACTIONS(4132), - [anon_sym_match] = ACTIONS(4132), - [anon_sym_select] = ACTIONS(4132), - [anon_sym_lock] = ACTIONS(4132), - [anon_sym_rlock] = ACTIONS(4132), - [anon_sym_unsafe] = ACTIONS(4132), - [anon_sym_sql] = ACTIONS(4132), - [sym_int_literal] = ACTIONS(4132), - [sym_float_literal] = ACTIONS(4132), - [sym_rune_literal] = ACTIONS(4132), - [anon_sym_AT] = ACTIONS(4132), - [anon_sym_shared] = ACTIONS(4132), - [anon_sym_map_LBRACK] = ACTIONS(4132), - [anon_sym_chan] = ACTIONS(4132), - [anon_sym_thread] = ACTIONS(4132), - [anon_sym_atomic] = ACTIONS(4132), - [anon_sym_assert] = ACTIONS(4132), - [anon_sym_defer] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_DOLLARfor] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_POUND] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym_AT_LBRACK] = ACTIONS(4132), - [sym___double_quote] = ACTIONS(4132), - [sym___single_quote] = ACTIONS(4132), - [sym___c_double_quote] = ACTIONS(4132), - [sym___c_single_quote] = ACTIONS(4132), - [sym___r_double_quote] = ACTIONS(4132), - [sym___r_single_quote] = ACTIONS(4132), + [ts_builtin_sym_end] = ACTIONS(4175), + [sym_identifier] = ACTIONS(4177), + [anon_sym_LF] = ACTIONS(4177), + [anon_sym_CR] = ACTIONS(4177), + [anon_sym_CR_LF] = ACTIONS(4177), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4177), + [anon_sym_LBRACE] = ACTIONS(4177), + [anon_sym_const] = ACTIONS(4177), + [anon_sym_LPAREN] = ACTIONS(4177), + [anon_sym___global] = ACTIONS(4177), + [anon_sym_type] = ACTIONS(4177), + [anon_sym_fn] = ACTIONS(4177), + [anon_sym_PLUS] = ACTIONS(4177), + [anon_sym_DASH] = ACTIONS(4177), + [anon_sym_STAR] = ACTIONS(4177), + [anon_sym_struct] = ACTIONS(4177), + [anon_sym_union] = ACTIONS(4177), + [anon_sym_pub] = ACTIONS(4177), + [anon_sym_mut] = ACTIONS(4177), + [anon_sym_enum] = ACTIONS(4177), + [anon_sym_interface] = ACTIONS(4177), + [anon_sym_QMARK] = ACTIONS(4177), + [anon_sym_BANG] = ACTIONS(4177), + [anon_sym_go] = ACTIONS(4177), + [anon_sym_spawn] = ACTIONS(4177), + [anon_sym_json_DOTdecode] = ACTIONS(4177), + [anon_sym_LBRACK2] = ACTIONS(4177), + [anon_sym_TILDE] = ACTIONS(4177), + [anon_sym_CARET] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4177), + [anon_sym_LT_DASH] = ACTIONS(4177), + [sym_none] = ACTIONS(4177), + [sym_true] = ACTIONS(4177), + [sym_false] = ACTIONS(4177), + [sym_nil] = ACTIONS(4177), + [anon_sym_if] = ACTIONS(4177), + [anon_sym_DOLLARif] = ACTIONS(4177), + [anon_sym_match] = ACTIONS(4177), + [anon_sym_select] = ACTIONS(4177), + [anon_sym_lock] = ACTIONS(4177), + [anon_sym_rlock] = ACTIONS(4177), + [anon_sym_unsafe] = ACTIONS(4177), + [anon_sym_sql] = ACTIONS(4177), + [sym_int_literal] = ACTIONS(4177), + [sym_float_literal] = ACTIONS(4177), + [sym_rune_literal] = ACTIONS(4177), + [anon_sym_AT] = ACTIONS(4177), + [anon_sym_shared] = ACTIONS(4177), + [anon_sym_map_LBRACK] = ACTIONS(4177), + [anon_sym_chan] = ACTIONS(4177), + [anon_sym_thread] = ACTIONS(4177), + [anon_sym_atomic] = ACTIONS(4177), + [anon_sym_assert] = ACTIONS(4177), + [anon_sym_defer] = ACTIONS(4177), + [anon_sym_goto] = ACTIONS(4177), + [anon_sym_break] = ACTIONS(4177), + [anon_sym_continue] = ACTIONS(4177), + [anon_sym_return] = ACTIONS(4177), + [anon_sym_DOLLARfor] = ACTIONS(4177), + [anon_sym_for] = ACTIONS(4177), + [anon_sym_POUND] = ACTIONS(4177), + [anon_sym_asm] = ACTIONS(4177), + [anon_sym_AT_LBRACK] = ACTIONS(4177), + [sym___double_quote] = ACTIONS(4177), + [sym___single_quote] = ACTIONS(4177), + [sym___c_double_quote] = ACTIONS(4177), + [sym___c_single_quote] = ACTIONS(4177), + [sym___r_double_quote] = ACTIONS(4177), + [sym___r_single_quote] = ACTIONS(4177), }, [1548] = { - [ts_builtin_sym_end] = ACTIONS(4134), - [sym_identifier] = ACTIONS(4136), - [anon_sym_LF] = ACTIONS(4136), - [anon_sym_CR] = ACTIONS(4136), - [anon_sym_CR_LF] = ACTIONS(4136), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4136), - [anon_sym_const] = ACTIONS(4136), - [anon_sym_LPAREN] = ACTIONS(4136), - [anon_sym___global] = ACTIONS(4136), - [anon_sym_type] = ACTIONS(4136), - [anon_sym_fn] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_union] = ACTIONS(4136), - [anon_sym_pub] = ACTIONS(4136), - [anon_sym_mut] = ACTIONS(4136), - [anon_sym_enum] = ACTIONS(4136), - [anon_sym_interface] = ACTIONS(4136), - [anon_sym_QMARK] = ACTIONS(4136), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_go] = ACTIONS(4136), - [anon_sym_spawn] = ACTIONS(4136), - [anon_sym_json_DOTdecode] = ACTIONS(4136), - [anon_sym_LBRACK2] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4136), - [anon_sym_CARET] = ACTIONS(4136), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_LT_DASH] = ACTIONS(4136), - [sym_none] = ACTIONS(4136), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [sym_nil] = ACTIONS(4136), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_DOLLARif] = ACTIONS(4136), - [anon_sym_match] = ACTIONS(4136), - [anon_sym_select] = ACTIONS(4136), - [anon_sym_lock] = ACTIONS(4136), - [anon_sym_rlock] = ACTIONS(4136), - [anon_sym_unsafe] = ACTIONS(4136), - [anon_sym_sql] = ACTIONS(4136), - [sym_int_literal] = ACTIONS(4136), - [sym_float_literal] = ACTIONS(4136), - [sym_rune_literal] = ACTIONS(4136), - [anon_sym_AT] = ACTIONS(4136), - [anon_sym_shared] = ACTIONS(4136), - [anon_sym_map_LBRACK] = ACTIONS(4136), - [anon_sym_chan] = ACTIONS(4136), - [anon_sym_thread] = ACTIONS(4136), - [anon_sym_atomic] = ACTIONS(4136), - [anon_sym_assert] = ACTIONS(4136), - [anon_sym_defer] = ACTIONS(4136), - [anon_sym_goto] = ACTIONS(4136), - [anon_sym_break] = ACTIONS(4136), - [anon_sym_continue] = ACTIONS(4136), - [anon_sym_return] = ACTIONS(4136), - [anon_sym_DOLLARfor] = ACTIONS(4136), - [anon_sym_for] = ACTIONS(4136), - [anon_sym_POUND] = ACTIONS(4136), - [anon_sym_asm] = ACTIONS(4136), - [anon_sym_AT_LBRACK] = ACTIONS(4136), - [sym___double_quote] = ACTIONS(4136), - [sym___single_quote] = ACTIONS(4136), - [sym___c_double_quote] = ACTIONS(4136), - [sym___c_single_quote] = ACTIONS(4136), - [sym___r_double_quote] = ACTIONS(4136), - [sym___r_single_quote] = ACTIONS(4136), + [ts_builtin_sym_end] = ACTIONS(4179), + [sym_identifier] = ACTIONS(4181), + [anon_sym_LF] = ACTIONS(4181), + [anon_sym_CR] = ACTIONS(4181), + [anon_sym_CR_LF] = ACTIONS(4181), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4181), + [anon_sym_LBRACE] = ACTIONS(4181), + [anon_sym_const] = ACTIONS(4181), + [anon_sym_LPAREN] = ACTIONS(4181), + [anon_sym___global] = ACTIONS(4181), + [anon_sym_type] = ACTIONS(4181), + [anon_sym_fn] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4181), + [anon_sym_DASH] = ACTIONS(4181), + [anon_sym_STAR] = ACTIONS(4181), + [anon_sym_struct] = ACTIONS(4181), + [anon_sym_union] = ACTIONS(4181), + [anon_sym_pub] = ACTIONS(4181), + [anon_sym_mut] = ACTIONS(4181), + [anon_sym_enum] = ACTIONS(4181), + [anon_sym_interface] = ACTIONS(4181), + [anon_sym_QMARK] = ACTIONS(4181), + [anon_sym_BANG] = ACTIONS(4181), + [anon_sym_go] = ACTIONS(4181), + [anon_sym_spawn] = ACTIONS(4181), + [anon_sym_json_DOTdecode] = ACTIONS(4181), + [anon_sym_LBRACK2] = ACTIONS(4181), + [anon_sym_TILDE] = ACTIONS(4181), + [anon_sym_CARET] = ACTIONS(4181), + [anon_sym_AMP] = ACTIONS(4181), + [anon_sym_LT_DASH] = ACTIONS(4181), + [sym_none] = ACTIONS(4181), + [sym_true] = ACTIONS(4181), + [sym_false] = ACTIONS(4181), + [sym_nil] = ACTIONS(4181), + [anon_sym_if] = ACTIONS(4181), + [anon_sym_DOLLARif] = ACTIONS(4181), + [anon_sym_match] = ACTIONS(4181), + [anon_sym_select] = ACTIONS(4181), + [anon_sym_lock] = ACTIONS(4181), + [anon_sym_rlock] = ACTIONS(4181), + [anon_sym_unsafe] = ACTIONS(4181), + [anon_sym_sql] = ACTIONS(4181), + [sym_int_literal] = ACTIONS(4181), + [sym_float_literal] = ACTIONS(4181), + [sym_rune_literal] = ACTIONS(4181), + [anon_sym_AT] = ACTIONS(4181), + [anon_sym_shared] = ACTIONS(4181), + [anon_sym_map_LBRACK] = ACTIONS(4181), + [anon_sym_chan] = ACTIONS(4181), + [anon_sym_thread] = ACTIONS(4181), + [anon_sym_atomic] = ACTIONS(4181), + [anon_sym_assert] = ACTIONS(4181), + [anon_sym_defer] = ACTIONS(4181), + [anon_sym_goto] = ACTIONS(4181), + [anon_sym_break] = ACTIONS(4181), + [anon_sym_continue] = ACTIONS(4181), + [anon_sym_return] = ACTIONS(4181), + [anon_sym_DOLLARfor] = ACTIONS(4181), + [anon_sym_for] = ACTIONS(4181), + [anon_sym_POUND] = ACTIONS(4181), + [anon_sym_asm] = ACTIONS(4181), + [anon_sym_AT_LBRACK] = ACTIONS(4181), + [sym___double_quote] = ACTIONS(4181), + [sym___single_quote] = ACTIONS(4181), + [sym___c_double_quote] = ACTIONS(4181), + [sym___c_single_quote] = ACTIONS(4181), + [sym___r_double_quote] = ACTIONS(4181), + [sym___r_single_quote] = ACTIONS(4181), }, [1549] = { - [ts_builtin_sym_end] = ACTIONS(4138), - [sym_identifier] = ACTIONS(4140), - [anon_sym_LF] = ACTIONS(4140), - [anon_sym_CR] = ACTIONS(4140), - [anon_sym_CR_LF] = ACTIONS(4140), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4140), - [anon_sym_const] = ACTIONS(4140), - [anon_sym_LPAREN] = ACTIONS(4140), - [anon_sym___global] = ACTIONS(4140), - [anon_sym_type] = ACTIONS(4140), - [anon_sym_fn] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4140), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_union] = ACTIONS(4140), - [anon_sym_pub] = ACTIONS(4140), - [anon_sym_mut] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_interface] = ACTIONS(4140), - [anon_sym_QMARK] = ACTIONS(4140), - [anon_sym_BANG] = ACTIONS(4140), - [anon_sym_go] = ACTIONS(4140), - [anon_sym_spawn] = ACTIONS(4140), - [anon_sym_json_DOTdecode] = ACTIONS(4140), - [anon_sym_LBRACK2] = ACTIONS(4140), - [anon_sym_TILDE] = ACTIONS(4140), - [anon_sym_CARET] = ACTIONS(4140), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_LT_DASH] = ACTIONS(4140), - [sym_none] = ACTIONS(4140), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [sym_nil] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_DOLLARif] = ACTIONS(4140), - [anon_sym_match] = ACTIONS(4140), - [anon_sym_select] = ACTIONS(4140), - [anon_sym_lock] = ACTIONS(4140), - [anon_sym_rlock] = ACTIONS(4140), - [anon_sym_unsafe] = ACTIONS(4140), - [anon_sym_sql] = ACTIONS(4140), - [sym_int_literal] = ACTIONS(4140), - [sym_float_literal] = ACTIONS(4140), - [sym_rune_literal] = ACTIONS(4140), - [anon_sym_AT] = ACTIONS(4140), - [anon_sym_shared] = ACTIONS(4140), - [anon_sym_map_LBRACK] = ACTIONS(4140), - [anon_sym_chan] = ACTIONS(4140), - [anon_sym_thread] = ACTIONS(4140), - [anon_sym_atomic] = ACTIONS(4140), - [anon_sym_assert] = ACTIONS(4140), - [anon_sym_defer] = ACTIONS(4140), - [anon_sym_goto] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_DOLLARfor] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_POUND] = ACTIONS(4140), - [anon_sym_asm] = ACTIONS(4140), - [anon_sym_AT_LBRACK] = ACTIONS(4140), - [sym___double_quote] = ACTIONS(4140), - [sym___single_quote] = ACTIONS(4140), - [sym___c_double_quote] = ACTIONS(4140), - [sym___c_single_quote] = ACTIONS(4140), - [sym___r_double_quote] = ACTIONS(4140), - [sym___r_single_quote] = ACTIONS(4140), + [ts_builtin_sym_end] = ACTIONS(4183), + [sym_identifier] = ACTIONS(4185), + [anon_sym_LF] = ACTIONS(4185), + [anon_sym_CR] = ACTIONS(4185), + [anon_sym_CR_LF] = ACTIONS(4185), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4185), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_const] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4185), + [anon_sym___global] = ACTIONS(4185), + [anon_sym_type] = ACTIONS(4185), + [anon_sym_fn] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4185), + [anon_sym_DASH] = ACTIONS(4185), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_struct] = ACTIONS(4185), + [anon_sym_union] = ACTIONS(4185), + [anon_sym_pub] = ACTIONS(4185), + [anon_sym_mut] = ACTIONS(4185), + [anon_sym_enum] = ACTIONS(4185), + [anon_sym_interface] = ACTIONS(4185), + [anon_sym_QMARK] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4185), + [anon_sym_go] = ACTIONS(4185), + [anon_sym_spawn] = ACTIONS(4185), + [anon_sym_json_DOTdecode] = ACTIONS(4185), + [anon_sym_LBRACK2] = ACTIONS(4185), + [anon_sym_TILDE] = ACTIONS(4185), + [anon_sym_CARET] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4185), + [anon_sym_LT_DASH] = ACTIONS(4185), + [sym_none] = ACTIONS(4185), + [sym_true] = ACTIONS(4185), + [sym_false] = ACTIONS(4185), + [sym_nil] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_DOLLARif] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_select] = ACTIONS(4185), + [anon_sym_lock] = ACTIONS(4185), + [anon_sym_rlock] = ACTIONS(4185), + [anon_sym_unsafe] = ACTIONS(4185), + [anon_sym_sql] = ACTIONS(4185), + [sym_int_literal] = ACTIONS(4185), + [sym_float_literal] = ACTIONS(4185), + [sym_rune_literal] = ACTIONS(4185), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_shared] = ACTIONS(4185), + [anon_sym_map_LBRACK] = ACTIONS(4185), + [anon_sym_chan] = ACTIONS(4185), + [anon_sym_thread] = ACTIONS(4185), + [anon_sym_atomic] = ACTIONS(4185), + [anon_sym_assert] = ACTIONS(4185), + [anon_sym_defer] = ACTIONS(4185), + [anon_sym_goto] = ACTIONS(4185), + [anon_sym_break] = ACTIONS(4185), + [anon_sym_continue] = ACTIONS(4185), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_DOLLARfor] = ACTIONS(4185), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_POUND] = ACTIONS(4185), + [anon_sym_asm] = ACTIONS(4185), + [anon_sym_AT_LBRACK] = ACTIONS(4185), + [sym___double_quote] = ACTIONS(4185), + [sym___single_quote] = ACTIONS(4185), + [sym___c_double_quote] = ACTIONS(4185), + [sym___c_single_quote] = ACTIONS(4185), + [sym___r_double_quote] = ACTIONS(4185), + [sym___r_single_quote] = ACTIONS(4185), }, [1550] = { - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_CR] = ACTIONS(2736), - [anon_sym_CR_LF] = ACTIONS(2736), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym___global] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2736), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_mut] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_interface] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_go] = ACTIONS(2736), - [anon_sym_spawn] = ACTIONS(2736), - [anon_sym_json_DOTdecode] = ACTIONS(2736), - [anon_sym_LBRACK2] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_LT_DASH] = ACTIONS(2736), - [sym_none] = ACTIONS(2736), - [sym_true] = ACTIONS(2736), - [sym_false] = ACTIONS(2736), - [sym_nil] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_DOLLARif] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_select] = ACTIONS(2736), - [anon_sym_lock] = ACTIONS(2736), - [anon_sym_rlock] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_sql] = ACTIONS(2736), - [sym_int_literal] = ACTIONS(2736), - [sym_float_literal] = ACTIONS(2736), - [sym_rune_literal] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_shared] = ACTIONS(2736), - [anon_sym_map_LBRACK] = ACTIONS(2736), - [anon_sym_chan] = ACTIONS(2736), - [anon_sym_thread] = ACTIONS(2736), - [anon_sym_atomic] = ACTIONS(2736), - [anon_sym_assert] = ACTIONS(2736), - [anon_sym_defer] = ACTIONS(2736), - [anon_sym_goto] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_DOLLARfor] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(2736), - [anon_sym_asm] = ACTIONS(2736), - [anon_sym_AT_LBRACK] = ACTIONS(2736), - [sym___double_quote] = ACTIONS(2736), - [sym___single_quote] = ACTIONS(2736), - [sym___c_double_quote] = ACTIONS(2736), - [sym___c_single_quote] = ACTIONS(2736), - [sym___r_double_quote] = ACTIONS(2736), - [sym___r_single_quote] = ACTIONS(2736), + [ts_builtin_sym_end] = ACTIONS(4187), + [sym_identifier] = ACTIONS(4189), + [anon_sym_LF] = ACTIONS(4189), + [anon_sym_CR] = ACTIONS(4189), + [anon_sym_CR_LF] = ACTIONS(4189), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_const] = ACTIONS(4189), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym___global] = ACTIONS(4189), + [anon_sym_type] = ACTIONS(4189), + [anon_sym_fn] = ACTIONS(4189), + [anon_sym_PLUS] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_struct] = ACTIONS(4189), + [anon_sym_union] = ACTIONS(4189), + [anon_sym_pub] = ACTIONS(4189), + [anon_sym_mut] = ACTIONS(4189), + [anon_sym_enum] = ACTIONS(4189), + [anon_sym_interface] = ACTIONS(4189), + [anon_sym_QMARK] = ACTIONS(4189), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_go] = ACTIONS(4189), + [anon_sym_spawn] = ACTIONS(4189), + [anon_sym_json_DOTdecode] = ACTIONS(4189), + [anon_sym_LBRACK2] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_CARET] = ACTIONS(4189), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_LT_DASH] = ACTIONS(4189), + [sym_none] = ACTIONS(4189), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_nil] = ACTIONS(4189), + [anon_sym_if] = ACTIONS(4189), + [anon_sym_DOLLARif] = ACTIONS(4189), + [anon_sym_match] = ACTIONS(4189), + [anon_sym_select] = ACTIONS(4189), + [anon_sym_lock] = ACTIONS(4189), + [anon_sym_rlock] = ACTIONS(4189), + [anon_sym_unsafe] = ACTIONS(4189), + [anon_sym_sql] = ACTIONS(4189), + [sym_int_literal] = ACTIONS(4189), + [sym_float_literal] = ACTIONS(4189), + [sym_rune_literal] = ACTIONS(4189), + [anon_sym_AT] = ACTIONS(4189), + [anon_sym_shared] = ACTIONS(4189), + [anon_sym_map_LBRACK] = ACTIONS(4189), + [anon_sym_chan] = ACTIONS(4189), + [anon_sym_thread] = ACTIONS(4189), + [anon_sym_atomic] = ACTIONS(4189), + [anon_sym_assert] = ACTIONS(4189), + [anon_sym_defer] = ACTIONS(4189), + [anon_sym_goto] = ACTIONS(4189), + [anon_sym_break] = ACTIONS(4189), + [anon_sym_continue] = ACTIONS(4189), + [anon_sym_return] = ACTIONS(4189), + [anon_sym_DOLLARfor] = ACTIONS(4189), + [anon_sym_for] = ACTIONS(4189), + [anon_sym_POUND] = ACTIONS(4189), + [anon_sym_asm] = ACTIONS(4189), + [anon_sym_AT_LBRACK] = ACTIONS(4189), + [sym___double_quote] = ACTIONS(4189), + [sym___single_quote] = ACTIONS(4189), + [sym___c_double_quote] = ACTIONS(4189), + [sym___c_single_quote] = ACTIONS(4189), + [sym___r_double_quote] = ACTIONS(4189), + [sym___r_single_quote] = ACTIONS(4189), }, [1551] = { - [ts_builtin_sym_end] = ACTIONS(4142), - [sym_identifier] = ACTIONS(4144), - [anon_sym_LF] = ACTIONS(4144), - [anon_sym_CR] = ACTIONS(4144), - [anon_sym_CR_LF] = ACTIONS(4144), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_LPAREN] = ACTIONS(4144), - [anon_sym___global] = ACTIONS(4144), - [anon_sym_type] = ACTIONS(4144), - [anon_sym_fn] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_pub] = ACTIONS(4144), - [anon_sym_mut] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_interface] = ACTIONS(4144), - [anon_sym_QMARK] = ACTIONS(4144), - [anon_sym_BANG] = ACTIONS(4144), - [anon_sym_go] = ACTIONS(4144), - [anon_sym_spawn] = ACTIONS(4144), - [anon_sym_json_DOTdecode] = ACTIONS(4144), - [anon_sym_LBRACK2] = ACTIONS(4144), - [anon_sym_TILDE] = ACTIONS(4144), - [anon_sym_CARET] = ACTIONS(4144), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_LT_DASH] = ACTIONS(4144), - [sym_none] = ACTIONS(4144), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [sym_nil] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_DOLLARif] = ACTIONS(4144), - [anon_sym_match] = ACTIONS(4144), - [anon_sym_select] = ACTIONS(4144), - [anon_sym_lock] = ACTIONS(4144), - [anon_sym_rlock] = ACTIONS(4144), - [anon_sym_unsafe] = ACTIONS(4144), - [anon_sym_sql] = ACTIONS(4144), - [sym_int_literal] = ACTIONS(4144), - [sym_float_literal] = ACTIONS(4144), - [sym_rune_literal] = ACTIONS(4144), - [anon_sym_AT] = ACTIONS(4144), - [anon_sym_shared] = ACTIONS(4144), - [anon_sym_map_LBRACK] = ACTIONS(4144), - [anon_sym_chan] = ACTIONS(4144), - [anon_sym_thread] = ACTIONS(4144), - [anon_sym_atomic] = ACTIONS(4144), - [anon_sym_assert] = ACTIONS(4144), - [anon_sym_defer] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_DOLLARfor] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_POUND] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym_AT_LBRACK] = ACTIONS(4144), - [sym___double_quote] = ACTIONS(4144), - [sym___single_quote] = ACTIONS(4144), - [sym___c_double_quote] = ACTIONS(4144), - [sym___c_single_quote] = ACTIONS(4144), - [sym___r_double_quote] = ACTIONS(4144), - [sym___r_single_quote] = ACTIONS(4144), + [ts_builtin_sym_end] = ACTIONS(4191), + [sym_identifier] = ACTIONS(4193), + [anon_sym_LF] = ACTIONS(4193), + [anon_sym_CR] = ACTIONS(4193), + [anon_sym_CR_LF] = ACTIONS(4193), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4193), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym___global] = ACTIONS(4193), + [anon_sym_type] = ACTIONS(4193), + [anon_sym_fn] = ACTIONS(4193), + [anon_sym_PLUS] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4193), + [anon_sym_struct] = ACTIONS(4193), + [anon_sym_union] = ACTIONS(4193), + [anon_sym_pub] = ACTIONS(4193), + [anon_sym_mut] = ACTIONS(4193), + [anon_sym_enum] = ACTIONS(4193), + [anon_sym_interface] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4193), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_go] = ACTIONS(4193), + [anon_sym_spawn] = ACTIONS(4193), + [anon_sym_json_DOTdecode] = ACTIONS(4193), + [anon_sym_LBRACK2] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_CARET] = ACTIONS(4193), + [anon_sym_AMP] = ACTIONS(4193), + [anon_sym_LT_DASH] = ACTIONS(4193), + [sym_none] = ACTIONS(4193), + [sym_true] = ACTIONS(4193), + [sym_false] = ACTIONS(4193), + [sym_nil] = ACTIONS(4193), + [anon_sym_if] = ACTIONS(4193), + [anon_sym_DOLLARif] = ACTIONS(4193), + [anon_sym_match] = ACTIONS(4193), + [anon_sym_select] = ACTIONS(4193), + [anon_sym_lock] = ACTIONS(4193), + [anon_sym_rlock] = ACTIONS(4193), + [anon_sym_unsafe] = ACTIONS(4193), + [anon_sym_sql] = ACTIONS(4193), + [sym_int_literal] = ACTIONS(4193), + [sym_float_literal] = ACTIONS(4193), + [sym_rune_literal] = ACTIONS(4193), + [anon_sym_AT] = ACTIONS(4193), + [anon_sym_shared] = ACTIONS(4193), + [anon_sym_map_LBRACK] = ACTIONS(4193), + [anon_sym_chan] = ACTIONS(4193), + [anon_sym_thread] = ACTIONS(4193), + [anon_sym_atomic] = ACTIONS(4193), + [anon_sym_assert] = ACTIONS(4193), + [anon_sym_defer] = ACTIONS(4193), + [anon_sym_goto] = ACTIONS(4193), + [anon_sym_break] = ACTIONS(4193), + [anon_sym_continue] = ACTIONS(4193), + [anon_sym_return] = ACTIONS(4193), + [anon_sym_DOLLARfor] = ACTIONS(4193), + [anon_sym_for] = ACTIONS(4193), + [anon_sym_POUND] = ACTIONS(4193), + [anon_sym_asm] = ACTIONS(4193), + [anon_sym_AT_LBRACK] = ACTIONS(4193), + [sym___double_quote] = ACTIONS(4193), + [sym___single_quote] = ACTIONS(4193), + [sym___c_double_quote] = ACTIONS(4193), + [sym___c_single_quote] = ACTIONS(4193), + [sym___r_double_quote] = ACTIONS(4193), + [sym___r_single_quote] = ACTIONS(4193), }, [1552] = { - [ts_builtin_sym_end] = ACTIONS(4146), - [sym_identifier] = ACTIONS(4148), - [anon_sym_LF] = ACTIONS(4148), - [anon_sym_CR] = ACTIONS(4148), - [anon_sym_CR_LF] = ACTIONS(4148), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4148), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_LPAREN] = ACTIONS(4148), - [anon_sym___global] = ACTIONS(4148), - [anon_sym_type] = ACTIONS(4148), - [anon_sym_fn] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_pub] = ACTIONS(4148), - [anon_sym_mut] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_interface] = ACTIONS(4148), - [anon_sym_QMARK] = ACTIONS(4148), - [anon_sym_BANG] = ACTIONS(4148), - [anon_sym_go] = ACTIONS(4148), - [anon_sym_spawn] = ACTIONS(4148), - [anon_sym_json_DOTdecode] = ACTIONS(4148), - [anon_sym_LBRACK2] = ACTIONS(4148), - [anon_sym_TILDE] = ACTIONS(4148), - [anon_sym_CARET] = ACTIONS(4148), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_LT_DASH] = ACTIONS(4148), - [sym_none] = ACTIONS(4148), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [sym_nil] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_DOLLARif] = ACTIONS(4148), - [anon_sym_match] = ACTIONS(4148), - [anon_sym_select] = ACTIONS(4148), - [anon_sym_lock] = ACTIONS(4148), - [anon_sym_rlock] = ACTIONS(4148), - [anon_sym_unsafe] = ACTIONS(4148), - [anon_sym_sql] = ACTIONS(4148), - [sym_int_literal] = ACTIONS(4148), - [sym_float_literal] = ACTIONS(4148), - [sym_rune_literal] = ACTIONS(4148), - [anon_sym_AT] = ACTIONS(4148), - [anon_sym_shared] = ACTIONS(4148), - [anon_sym_map_LBRACK] = ACTIONS(4148), - [anon_sym_chan] = ACTIONS(4148), - [anon_sym_thread] = ACTIONS(4148), - [anon_sym_atomic] = ACTIONS(4148), - [anon_sym_assert] = ACTIONS(4148), - [anon_sym_defer] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_DOLLARfor] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_POUND] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym_AT_LBRACK] = ACTIONS(4148), - [sym___double_quote] = ACTIONS(4148), - [sym___single_quote] = ACTIONS(4148), - [sym___c_double_quote] = ACTIONS(4148), - [sym___c_single_quote] = ACTIONS(4148), - [sym___r_double_quote] = ACTIONS(4148), - [sym___r_single_quote] = ACTIONS(4148), + [ts_builtin_sym_end] = ACTIONS(4195), + [sym_identifier] = ACTIONS(4197), + [anon_sym_LF] = ACTIONS(4197), + [anon_sym_CR] = ACTIONS(4197), + [anon_sym_CR_LF] = ACTIONS(4197), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_const] = ACTIONS(4197), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym___global] = ACTIONS(4197), + [anon_sym_type] = ACTIONS(4197), + [anon_sym_fn] = ACTIONS(4197), + [anon_sym_PLUS] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4197), + [anon_sym_STAR] = ACTIONS(4197), + [anon_sym_struct] = ACTIONS(4197), + [anon_sym_union] = ACTIONS(4197), + [anon_sym_pub] = ACTIONS(4197), + [anon_sym_mut] = ACTIONS(4197), + [anon_sym_enum] = ACTIONS(4197), + [anon_sym_interface] = ACTIONS(4197), + [anon_sym_QMARK] = ACTIONS(4197), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_go] = ACTIONS(4197), + [anon_sym_spawn] = ACTIONS(4197), + [anon_sym_json_DOTdecode] = ACTIONS(4197), + [anon_sym_LBRACK2] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_CARET] = ACTIONS(4197), + [anon_sym_AMP] = ACTIONS(4197), + [anon_sym_LT_DASH] = ACTIONS(4197), + [sym_none] = ACTIONS(4197), + [sym_true] = ACTIONS(4197), + [sym_false] = ACTIONS(4197), + [sym_nil] = ACTIONS(4197), + [anon_sym_if] = ACTIONS(4197), + [anon_sym_DOLLARif] = ACTIONS(4197), + [anon_sym_match] = ACTIONS(4197), + [anon_sym_select] = ACTIONS(4197), + [anon_sym_lock] = ACTIONS(4197), + [anon_sym_rlock] = ACTIONS(4197), + [anon_sym_unsafe] = ACTIONS(4197), + [anon_sym_sql] = ACTIONS(4197), + [sym_int_literal] = ACTIONS(4197), + [sym_float_literal] = ACTIONS(4197), + [sym_rune_literal] = ACTIONS(4197), + [anon_sym_AT] = ACTIONS(4197), + [anon_sym_shared] = ACTIONS(4197), + [anon_sym_map_LBRACK] = ACTIONS(4197), + [anon_sym_chan] = ACTIONS(4197), + [anon_sym_thread] = ACTIONS(4197), + [anon_sym_atomic] = ACTIONS(4197), + [anon_sym_assert] = ACTIONS(4197), + [anon_sym_defer] = ACTIONS(4197), + [anon_sym_goto] = ACTIONS(4197), + [anon_sym_break] = ACTIONS(4197), + [anon_sym_continue] = ACTIONS(4197), + [anon_sym_return] = ACTIONS(4197), + [anon_sym_DOLLARfor] = ACTIONS(4197), + [anon_sym_for] = ACTIONS(4197), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_asm] = ACTIONS(4197), + [anon_sym_AT_LBRACK] = ACTIONS(4197), + [sym___double_quote] = ACTIONS(4197), + [sym___single_quote] = ACTIONS(4197), + [sym___c_double_quote] = ACTIONS(4197), + [sym___c_single_quote] = ACTIONS(4197), + [sym___r_double_quote] = ACTIONS(4197), + [sym___r_single_quote] = ACTIONS(4197), }, [1553] = { - [ts_builtin_sym_end] = ACTIONS(4150), - [sym_identifier] = ACTIONS(4152), - [anon_sym_LF] = ACTIONS(4152), - [anon_sym_CR] = ACTIONS(4152), - [anon_sym_CR_LF] = ACTIONS(4152), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym___global] = ACTIONS(4152), - [anon_sym_type] = ACTIONS(4152), - [anon_sym_fn] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_pub] = ACTIONS(4152), - [anon_sym_mut] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_interface] = ACTIONS(4152), - [anon_sym_QMARK] = ACTIONS(4152), - [anon_sym_BANG] = ACTIONS(4152), - [anon_sym_go] = ACTIONS(4152), - [anon_sym_spawn] = ACTIONS(4152), - [anon_sym_json_DOTdecode] = ACTIONS(4152), - [anon_sym_LBRACK2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_CARET] = ACTIONS(4152), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_LT_DASH] = ACTIONS(4152), - [sym_none] = ACTIONS(4152), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [sym_nil] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_DOLLARif] = ACTIONS(4152), - [anon_sym_match] = ACTIONS(4152), - [anon_sym_select] = ACTIONS(4152), - [anon_sym_lock] = ACTIONS(4152), - [anon_sym_rlock] = ACTIONS(4152), - [anon_sym_unsafe] = ACTIONS(4152), - [anon_sym_sql] = ACTIONS(4152), - [sym_int_literal] = ACTIONS(4152), - [sym_float_literal] = ACTIONS(4152), - [sym_rune_literal] = ACTIONS(4152), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_shared] = ACTIONS(4152), - [anon_sym_map_LBRACK] = ACTIONS(4152), - [anon_sym_chan] = ACTIONS(4152), - [anon_sym_thread] = ACTIONS(4152), - [anon_sym_atomic] = ACTIONS(4152), - [anon_sym_assert] = ACTIONS(4152), - [anon_sym_defer] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_DOLLARfor] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_POUND] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym_AT_LBRACK] = ACTIONS(4152), - [sym___double_quote] = ACTIONS(4152), - [sym___single_quote] = ACTIONS(4152), - [sym___c_double_quote] = ACTIONS(4152), - [sym___c_single_quote] = ACTIONS(4152), - [sym___r_double_quote] = ACTIONS(4152), - [sym___r_single_quote] = ACTIONS(4152), + [ts_builtin_sym_end] = ACTIONS(4199), + [sym_identifier] = ACTIONS(4201), + [anon_sym_LF] = ACTIONS(4201), + [anon_sym_CR] = ACTIONS(4201), + [anon_sym_CR_LF] = ACTIONS(4201), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4201), + [anon_sym_LBRACE] = ACTIONS(4201), + [anon_sym_const] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(4201), + [anon_sym___global] = ACTIONS(4201), + [anon_sym_type] = ACTIONS(4201), + [anon_sym_fn] = ACTIONS(4201), + [anon_sym_PLUS] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4201), + [anon_sym_STAR] = ACTIONS(4201), + [anon_sym_struct] = ACTIONS(4201), + [anon_sym_union] = ACTIONS(4201), + [anon_sym_pub] = ACTIONS(4201), + [anon_sym_mut] = ACTIONS(4201), + [anon_sym_enum] = ACTIONS(4201), + [anon_sym_interface] = ACTIONS(4201), + [anon_sym_QMARK] = ACTIONS(4201), + [anon_sym_BANG] = ACTIONS(4201), + [anon_sym_go] = ACTIONS(4201), + [anon_sym_spawn] = ACTIONS(4201), + [anon_sym_json_DOTdecode] = ACTIONS(4201), + [anon_sym_LBRACK2] = ACTIONS(4201), + [anon_sym_TILDE] = ACTIONS(4201), + [anon_sym_CARET] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4201), + [anon_sym_LT_DASH] = ACTIONS(4201), + [sym_none] = ACTIONS(4201), + [sym_true] = ACTIONS(4201), + [sym_false] = ACTIONS(4201), + [sym_nil] = ACTIONS(4201), + [anon_sym_if] = ACTIONS(4201), + [anon_sym_DOLLARif] = ACTIONS(4201), + [anon_sym_match] = ACTIONS(4201), + [anon_sym_select] = ACTIONS(4201), + [anon_sym_lock] = ACTIONS(4201), + [anon_sym_rlock] = ACTIONS(4201), + [anon_sym_unsafe] = ACTIONS(4201), + [anon_sym_sql] = ACTIONS(4201), + [sym_int_literal] = ACTIONS(4201), + [sym_float_literal] = ACTIONS(4201), + [sym_rune_literal] = ACTIONS(4201), + [anon_sym_AT] = ACTIONS(4201), + [anon_sym_shared] = ACTIONS(4201), + [anon_sym_map_LBRACK] = ACTIONS(4201), + [anon_sym_chan] = ACTIONS(4201), + [anon_sym_thread] = ACTIONS(4201), + [anon_sym_atomic] = ACTIONS(4201), + [anon_sym_assert] = ACTIONS(4201), + [anon_sym_defer] = ACTIONS(4201), + [anon_sym_goto] = ACTIONS(4201), + [anon_sym_break] = ACTIONS(4201), + [anon_sym_continue] = ACTIONS(4201), + [anon_sym_return] = ACTIONS(4201), + [anon_sym_DOLLARfor] = ACTIONS(4201), + [anon_sym_for] = ACTIONS(4201), + [anon_sym_POUND] = ACTIONS(4201), + [anon_sym_asm] = ACTIONS(4201), + [anon_sym_AT_LBRACK] = ACTIONS(4201), + [sym___double_quote] = ACTIONS(4201), + [sym___single_quote] = ACTIONS(4201), + [sym___c_double_quote] = ACTIONS(4201), + [sym___c_single_quote] = ACTIONS(4201), + [sym___r_double_quote] = ACTIONS(4201), + [sym___r_single_quote] = ACTIONS(4201), }, [1554] = { - [ts_builtin_sym_end] = ACTIONS(4154), - [sym_identifier] = ACTIONS(4156), - [anon_sym_LF] = ACTIONS(4156), - [anon_sym_CR] = ACTIONS(4156), - [anon_sym_CR_LF] = ACTIONS(4156), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym___global] = ACTIONS(4156), - [anon_sym_type] = ACTIONS(4156), - [anon_sym_fn] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_pub] = ACTIONS(4156), - [anon_sym_mut] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_interface] = ACTIONS(4156), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_go] = ACTIONS(4156), - [anon_sym_spawn] = ACTIONS(4156), - [anon_sym_json_DOTdecode] = ACTIONS(4156), - [anon_sym_LBRACK2] = ACTIONS(4156), - [anon_sym_TILDE] = ACTIONS(4156), - [anon_sym_CARET] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_DASH] = ACTIONS(4156), - [sym_none] = ACTIONS(4156), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [sym_nil] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_DOLLARif] = ACTIONS(4156), - [anon_sym_match] = ACTIONS(4156), - [anon_sym_select] = ACTIONS(4156), - [anon_sym_lock] = ACTIONS(4156), - [anon_sym_rlock] = ACTIONS(4156), - [anon_sym_unsafe] = ACTIONS(4156), - [anon_sym_sql] = ACTIONS(4156), - [sym_int_literal] = ACTIONS(4156), - [sym_float_literal] = ACTIONS(4156), - [sym_rune_literal] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4156), - [anon_sym_shared] = ACTIONS(4156), - [anon_sym_map_LBRACK] = ACTIONS(4156), - [anon_sym_chan] = ACTIONS(4156), - [anon_sym_thread] = ACTIONS(4156), - [anon_sym_atomic] = ACTIONS(4156), - [anon_sym_assert] = ACTIONS(4156), - [anon_sym_defer] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_DOLLARfor] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_POUND] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym_AT_LBRACK] = ACTIONS(4156), - [sym___double_quote] = ACTIONS(4156), - [sym___single_quote] = ACTIONS(4156), - [sym___c_double_quote] = ACTIONS(4156), - [sym___c_single_quote] = ACTIONS(4156), - [sym___r_double_quote] = ACTIONS(4156), - [sym___r_single_quote] = ACTIONS(4156), + [ts_builtin_sym_end] = ACTIONS(4203), + [sym_identifier] = ACTIONS(4205), + [anon_sym_LF] = ACTIONS(4205), + [anon_sym_CR] = ACTIONS(4205), + [anon_sym_CR_LF] = ACTIONS(4205), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4205), + [anon_sym_LBRACE] = ACTIONS(4205), + [anon_sym_const] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4205), + [anon_sym___global] = ACTIONS(4205), + [anon_sym_type] = ACTIONS(4205), + [anon_sym_fn] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4205), + [anon_sym_DASH] = ACTIONS(4205), + [anon_sym_STAR] = ACTIONS(4205), + [anon_sym_struct] = ACTIONS(4205), + [anon_sym_union] = ACTIONS(4205), + [anon_sym_pub] = ACTIONS(4205), + [anon_sym_mut] = ACTIONS(4205), + [anon_sym_enum] = ACTIONS(4205), + [anon_sym_interface] = ACTIONS(4205), + [anon_sym_QMARK] = ACTIONS(4205), + [anon_sym_BANG] = ACTIONS(4205), + [anon_sym_go] = ACTIONS(4205), + [anon_sym_spawn] = ACTIONS(4205), + [anon_sym_json_DOTdecode] = ACTIONS(4205), + [anon_sym_LBRACK2] = ACTIONS(4205), + [anon_sym_TILDE] = ACTIONS(4205), + [anon_sym_CARET] = ACTIONS(4205), + [anon_sym_AMP] = ACTIONS(4205), + [anon_sym_LT_DASH] = ACTIONS(4205), + [sym_none] = ACTIONS(4205), + [sym_true] = ACTIONS(4205), + [sym_false] = ACTIONS(4205), + [sym_nil] = ACTIONS(4205), + [anon_sym_if] = ACTIONS(4205), + [anon_sym_DOLLARif] = ACTIONS(4205), + [anon_sym_match] = ACTIONS(4205), + [anon_sym_select] = ACTIONS(4205), + [anon_sym_lock] = ACTIONS(4205), + [anon_sym_rlock] = ACTIONS(4205), + [anon_sym_unsafe] = ACTIONS(4205), + [anon_sym_sql] = ACTIONS(4205), + [sym_int_literal] = ACTIONS(4205), + [sym_float_literal] = ACTIONS(4205), + [sym_rune_literal] = ACTIONS(4205), + [anon_sym_AT] = ACTIONS(4205), + [anon_sym_shared] = ACTIONS(4205), + [anon_sym_map_LBRACK] = ACTIONS(4205), + [anon_sym_chan] = ACTIONS(4205), + [anon_sym_thread] = ACTIONS(4205), + [anon_sym_atomic] = ACTIONS(4205), + [anon_sym_assert] = ACTIONS(4205), + [anon_sym_defer] = ACTIONS(4205), + [anon_sym_goto] = ACTIONS(4205), + [anon_sym_break] = ACTIONS(4205), + [anon_sym_continue] = ACTIONS(4205), + [anon_sym_return] = ACTIONS(4205), + [anon_sym_DOLLARfor] = ACTIONS(4205), + [anon_sym_for] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(4205), + [anon_sym_asm] = ACTIONS(4205), + [anon_sym_AT_LBRACK] = ACTIONS(4205), + [sym___double_quote] = ACTIONS(4205), + [sym___single_quote] = ACTIONS(4205), + [sym___c_double_quote] = ACTIONS(4205), + [sym___c_single_quote] = ACTIONS(4205), + [sym___r_double_quote] = ACTIONS(4205), + [sym___r_single_quote] = ACTIONS(4205), }, [1555] = { - [ts_builtin_sym_end] = ACTIONS(4158), - [sym_identifier] = ACTIONS(4160), - [anon_sym_LF] = ACTIONS(4160), - [anon_sym_CR] = ACTIONS(4160), - [anon_sym_CR_LF] = ACTIONS(4160), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(4160), - [anon_sym___global] = ACTIONS(4160), - [anon_sym_type] = ACTIONS(4160), - [anon_sym_fn] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_pub] = ACTIONS(4160), - [anon_sym_mut] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_interface] = ACTIONS(4160), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_go] = ACTIONS(4160), - [anon_sym_spawn] = ACTIONS(4160), - [anon_sym_json_DOTdecode] = ACTIONS(4160), - [anon_sym_LBRACK2] = ACTIONS(4160), - [anon_sym_TILDE] = ACTIONS(4160), - [anon_sym_CARET] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_DASH] = ACTIONS(4160), - [sym_none] = ACTIONS(4160), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [sym_nil] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_DOLLARif] = ACTIONS(4160), - [anon_sym_match] = ACTIONS(4160), - [anon_sym_select] = ACTIONS(4160), - [anon_sym_lock] = ACTIONS(4160), - [anon_sym_rlock] = ACTIONS(4160), - [anon_sym_unsafe] = ACTIONS(4160), - [anon_sym_sql] = ACTIONS(4160), - [sym_int_literal] = ACTIONS(4160), - [sym_float_literal] = ACTIONS(4160), - [sym_rune_literal] = ACTIONS(4160), - [anon_sym_AT] = ACTIONS(4160), - [anon_sym_shared] = ACTIONS(4160), - [anon_sym_map_LBRACK] = ACTIONS(4160), - [anon_sym_chan] = ACTIONS(4160), - [anon_sym_thread] = ACTIONS(4160), - [anon_sym_atomic] = ACTIONS(4160), - [anon_sym_assert] = ACTIONS(4160), - [anon_sym_defer] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_DOLLARfor] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_POUND] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym_AT_LBRACK] = ACTIONS(4160), - [sym___double_quote] = ACTIONS(4160), - [sym___single_quote] = ACTIONS(4160), - [sym___c_double_quote] = ACTIONS(4160), - [sym___c_single_quote] = ACTIONS(4160), - [sym___r_double_quote] = ACTIONS(4160), - [sym___r_single_quote] = ACTIONS(4160), + [ts_builtin_sym_end] = ACTIONS(4207), + [sym_identifier] = ACTIONS(4209), + [anon_sym_LF] = ACTIONS(4209), + [anon_sym_CR] = ACTIONS(4209), + [anon_sym_CR_LF] = ACTIONS(4209), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_const] = ACTIONS(4209), + [anon_sym_LPAREN] = ACTIONS(4209), + [anon_sym___global] = ACTIONS(4209), + [anon_sym_type] = ACTIONS(4209), + [anon_sym_fn] = ACTIONS(4209), + [anon_sym_PLUS] = ACTIONS(4209), + [anon_sym_DASH] = ACTIONS(4209), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_struct] = ACTIONS(4209), + [anon_sym_union] = ACTIONS(4209), + [anon_sym_pub] = ACTIONS(4209), + [anon_sym_mut] = ACTIONS(4209), + [anon_sym_enum] = ACTIONS(4209), + [anon_sym_interface] = ACTIONS(4209), + [anon_sym_QMARK] = ACTIONS(4209), + [anon_sym_BANG] = ACTIONS(4209), + [anon_sym_go] = ACTIONS(4209), + [anon_sym_spawn] = ACTIONS(4209), + [anon_sym_json_DOTdecode] = ACTIONS(4209), + [anon_sym_LBRACK2] = ACTIONS(4209), + [anon_sym_TILDE] = ACTIONS(4209), + [anon_sym_CARET] = ACTIONS(4209), + [anon_sym_AMP] = ACTIONS(4209), + [anon_sym_LT_DASH] = ACTIONS(4209), + [sym_none] = ACTIONS(4209), + [sym_true] = ACTIONS(4209), + [sym_false] = ACTIONS(4209), + [sym_nil] = ACTIONS(4209), + [anon_sym_if] = ACTIONS(4209), + [anon_sym_DOLLARif] = ACTIONS(4209), + [anon_sym_match] = ACTIONS(4209), + [anon_sym_select] = ACTIONS(4209), + [anon_sym_lock] = ACTIONS(4209), + [anon_sym_rlock] = ACTIONS(4209), + [anon_sym_unsafe] = ACTIONS(4209), + [anon_sym_sql] = ACTIONS(4209), + [sym_int_literal] = ACTIONS(4209), + [sym_float_literal] = ACTIONS(4209), + [sym_rune_literal] = ACTIONS(4209), + [anon_sym_AT] = ACTIONS(4209), + [anon_sym_shared] = ACTIONS(4209), + [anon_sym_map_LBRACK] = ACTIONS(4209), + [anon_sym_chan] = ACTIONS(4209), + [anon_sym_thread] = ACTIONS(4209), + [anon_sym_atomic] = ACTIONS(4209), + [anon_sym_assert] = ACTIONS(4209), + [anon_sym_defer] = ACTIONS(4209), + [anon_sym_goto] = ACTIONS(4209), + [anon_sym_break] = ACTIONS(4209), + [anon_sym_continue] = ACTIONS(4209), + [anon_sym_return] = ACTIONS(4209), + [anon_sym_DOLLARfor] = ACTIONS(4209), + [anon_sym_for] = ACTIONS(4209), + [anon_sym_POUND] = ACTIONS(4209), + [anon_sym_asm] = ACTIONS(4209), + [anon_sym_AT_LBRACK] = ACTIONS(4209), + [sym___double_quote] = ACTIONS(4209), + [sym___single_quote] = ACTIONS(4209), + [sym___c_double_quote] = ACTIONS(4209), + [sym___c_single_quote] = ACTIONS(4209), + [sym___r_double_quote] = ACTIONS(4209), + [sym___r_single_quote] = ACTIONS(4209), }, [1556] = { - [ts_builtin_sym_end] = ACTIONS(4162), - [sym_identifier] = ACTIONS(4164), - [anon_sym_LF] = ACTIONS(4164), - [anon_sym_CR] = ACTIONS(4164), - [anon_sym_CR_LF] = ACTIONS(4164), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4164), - [anon_sym_const] = ACTIONS(4164), - [anon_sym_LPAREN] = ACTIONS(4164), - [anon_sym___global] = ACTIONS(4164), - [anon_sym_type] = ACTIONS(4164), - [anon_sym_fn] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_pub] = ACTIONS(4164), - [anon_sym_mut] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_interface] = ACTIONS(4164), - [anon_sym_QMARK] = ACTIONS(4164), - [anon_sym_BANG] = ACTIONS(4164), - [anon_sym_go] = ACTIONS(4164), - [anon_sym_spawn] = ACTIONS(4164), - [anon_sym_json_DOTdecode] = ACTIONS(4164), - [anon_sym_LBRACK2] = ACTIONS(4164), - [anon_sym_TILDE] = ACTIONS(4164), - [anon_sym_CARET] = ACTIONS(4164), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_LT_DASH] = ACTIONS(4164), - [sym_none] = ACTIONS(4164), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [sym_nil] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_DOLLARif] = ACTIONS(4164), - [anon_sym_match] = ACTIONS(4164), - [anon_sym_select] = ACTIONS(4164), - [anon_sym_lock] = ACTIONS(4164), - [anon_sym_rlock] = ACTIONS(4164), - [anon_sym_unsafe] = ACTIONS(4164), - [anon_sym_sql] = ACTIONS(4164), - [sym_int_literal] = ACTIONS(4164), - [sym_float_literal] = ACTIONS(4164), - [sym_rune_literal] = ACTIONS(4164), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_shared] = ACTIONS(4164), - [anon_sym_map_LBRACK] = ACTIONS(4164), - [anon_sym_chan] = ACTIONS(4164), - [anon_sym_thread] = ACTIONS(4164), - [anon_sym_atomic] = ACTIONS(4164), - [anon_sym_assert] = ACTIONS(4164), - [anon_sym_defer] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_DOLLARfor] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_POUND] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym_AT_LBRACK] = ACTIONS(4164), - [sym___double_quote] = ACTIONS(4164), - [sym___single_quote] = ACTIONS(4164), - [sym___c_double_quote] = ACTIONS(4164), - [sym___c_single_quote] = ACTIONS(4164), - [sym___r_double_quote] = ACTIONS(4164), - [sym___r_single_quote] = ACTIONS(4164), + [ts_builtin_sym_end] = ACTIONS(4211), + [sym_identifier] = ACTIONS(4213), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_CR] = ACTIONS(4213), + [anon_sym_CR_LF] = ACTIONS(4213), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4213), + [anon_sym_LBRACE] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4213), + [anon_sym_LPAREN] = ACTIONS(4213), + [anon_sym___global] = ACTIONS(4213), + [anon_sym_type] = ACTIONS(4213), + [anon_sym_fn] = ACTIONS(4213), + [anon_sym_PLUS] = ACTIONS(4213), + [anon_sym_DASH] = ACTIONS(4213), + [anon_sym_STAR] = ACTIONS(4213), + [anon_sym_struct] = ACTIONS(4213), + [anon_sym_union] = ACTIONS(4213), + [anon_sym_pub] = ACTIONS(4213), + [anon_sym_mut] = ACTIONS(4213), + [anon_sym_enum] = ACTIONS(4213), + [anon_sym_interface] = ACTIONS(4213), + [anon_sym_QMARK] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(4213), + [anon_sym_go] = ACTIONS(4213), + [anon_sym_spawn] = ACTIONS(4213), + [anon_sym_json_DOTdecode] = ACTIONS(4213), + [anon_sym_LBRACK2] = ACTIONS(4213), + [anon_sym_TILDE] = ACTIONS(4213), + [anon_sym_CARET] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4213), + [anon_sym_LT_DASH] = ACTIONS(4213), + [sym_none] = ACTIONS(4213), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_nil] = ACTIONS(4213), + [anon_sym_if] = ACTIONS(4213), + [anon_sym_DOLLARif] = ACTIONS(4213), + [anon_sym_match] = ACTIONS(4213), + [anon_sym_select] = ACTIONS(4213), + [anon_sym_lock] = ACTIONS(4213), + [anon_sym_rlock] = ACTIONS(4213), + [anon_sym_unsafe] = ACTIONS(4213), + [anon_sym_sql] = ACTIONS(4213), + [sym_int_literal] = ACTIONS(4213), + [sym_float_literal] = ACTIONS(4213), + [sym_rune_literal] = ACTIONS(4213), + [anon_sym_AT] = ACTIONS(4213), + [anon_sym_shared] = ACTIONS(4213), + [anon_sym_map_LBRACK] = ACTIONS(4213), + [anon_sym_chan] = ACTIONS(4213), + [anon_sym_thread] = ACTIONS(4213), + [anon_sym_atomic] = ACTIONS(4213), + [anon_sym_assert] = ACTIONS(4213), + [anon_sym_defer] = ACTIONS(4213), + [anon_sym_goto] = ACTIONS(4213), + [anon_sym_break] = ACTIONS(4213), + [anon_sym_continue] = ACTIONS(4213), + [anon_sym_return] = ACTIONS(4213), + [anon_sym_DOLLARfor] = ACTIONS(4213), + [anon_sym_for] = ACTIONS(4213), + [anon_sym_POUND] = ACTIONS(4213), + [anon_sym_asm] = ACTIONS(4213), + [anon_sym_AT_LBRACK] = ACTIONS(4213), + [sym___double_quote] = ACTIONS(4213), + [sym___single_quote] = ACTIONS(4213), + [sym___c_double_quote] = ACTIONS(4213), + [sym___c_single_quote] = ACTIONS(4213), + [sym___r_double_quote] = ACTIONS(4213), + [sym___r_single_quote] = ACTIONS(4213), }, [1557] = { - [ts_builtin_sym_end] = ACTIONS(4166), - [sym_identifier] = ACTIONS(4168), - [anon_sym_LF] = ACTIONS(4168), - [anon_sym_CR] = ACTIONS(4168), - [anon_sym_CR_LF] = ACTIONS(4168), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_LPAREN] = ACTIONS(4168), - [anon_sym___global] = ACTIONS(4168), - [anon_sym_type] = ACTIONS(4168), - [anon_sym_fn] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_pub] = ACTIONS(4168), - [anon_sym_mut] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_interface] = ACTIONS(4168), - [anon_sym_QMARK] = ACTIONS(4168), - [anon_sym_BANG] = ACTIONS(4168), - [anon_sym_go] = ACTIONS(4168), - [anon_sym_spawn] = ACTIONS(4168), - [anon_sym_json_DOTdecode] = ACTIONS(4168), - [anon_sym_LBRACK2] = ACTIONS(4168), - [anon_sym_TILDE] = ACTIONS(4168), - [anon_sym_CARET] = ACTIONS(4168), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_LT_DASH] = ACTIONS(4168), - [sym_none] = ACTIONS(4168), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [sym_nil] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_DOLLARif] = ACTIONS(4168), - [anon_sym_match] = ACTIONS(4168), - [anon_sym_select] = ACTIONS(4168), - [anon_sym_lock] = ACTIONS(4168), - [anon_sym_rlock] = ACTIONS(4168), - [anon_sym_unsafe] = ACTIONS(4168), - [anon_sym_sql] = ACTIONS(4168), - [sym_int_literal] = ACTIONS(4168), - [sym_float_literal] = ACTIONS(4168), - [sym_rune_literal] = ACTIONS(4168), - [anon_sym_AT] = ACTIONS(4168), - [anon_sym_shared] = ACTIONS(4168), - [anon_sym_map_LBRACK] = ACTIONS(4168), - [anon_sym_chan] = ACTIONS(4168), - [anon_sym_thread] = ACTIONS(4168), - [anon_sym_atomic] = ACTIONS(4168), - [anon_sym_assert] = ACTIONS(4168), - [anon_sym_defer] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_DOLLARfor] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_POUND] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym_AT_LBRACK] = ACTIONS(4168), - [sym___double_quote] = ACTIONS(4168), - [sym___single_quote] = ACTIONS(4168), - [sym___c_double_quote] = ACTIONS(4168), - [sym___c_single_quote] = ACTIONS(4168), - [sym___r_double_quote] = ACTIONS(4168), - [sym___r_single_quote] = ACTIONS(4168), + [ts_builtin_sym_end] = ACTIONS(4215), + [sym_identifier] = ACTIONS(4217), + [anon_sym_LF] = ACTIONS(4217), + [anon_sym_CR] = ACTIONS(4217), + [anon_sym_CR_LF] = ACTIONS(4217), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4217), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_const] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym___global] = ACTIONS(4217), + [anon_sym_type] = ACTIONS(4217), + [anon_sym_fn] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4217), + [anon_sym_DASH] = ACTIONS(4217), + [anon_sym_STAR] = ACTIONS(4217), + [anon_sym_struct] = ACTIONS(4217), + [anon_sym_union] = ACTIONS(4217), + [anon_sym_pub] = ACTIONS(4217), + [anon_sym_mut] = ACTIONS(4217), + [anon_sym_enum] = ACTIONS(4217), + [anon_sym_interface] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4217), + [anon_sym_go] = ACTIONS(4217), + [anon_sym_spawn] = ACTIONS(4217), + [anon_sym_json_DOTdecode] = ACTIONS(4217), + [anon_sym_LBRACK2] = ACTIONS(4217), + [anon_sym_TILDE] = ACTIONS(4217), + [anon_sym_CARET] = ACTIONS(4217), + [anon_sym_AMP] = ACTIONS(4217), + [anon_sym_LT_DASH] = ACTIONS(4217), + [sym_none] = ACTIONS(4217), + [sym_true] = ACTIONS(4217), + [sym_false] = ACTIONS(4217), + [sym_nil] = ACTIONS(4217), + [anon_sym_if] = ACTIONS(4217), + [anon_sym_DOLLARif] = ACTIONS(4217), + [anon_sym_match] = ACTIONS(4217), + [anon_sym_select] = ACTIONS(4217), + [anon_sym_lock] = ACTIONS(4217), + [anon_sym_rlock] = ACTIONS(4217), + [anon_sym_unsafe] = ACTIONS(4217), + [anon_sym_sql] = ACTIONS(4217), + [sym_int_literal] = ACTIONS(4217), + [sym_float_literal] = ACTIONS(4217), + [sym_rune_literal] = ACTIONS(4217), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_shared] = ACTIONS(4217), + [anon_sym_map_LBRACK] = ACTIONS(4217), + [anon_sym_chan] = ACTIONS(4217), + [anon_sym_thread] = ACTIONS(4217), + [anon_sym_atomic] = ACTIONS(4217), + [anon_sym_assert] = ACTIONS(4217), + [anon_sym_defer] = ACTIONS(4217), + [anon_sym_goto] = ACTIONS(4217), + [anon_sym_break] = ACTIONS(4217), + [anon_sym_continue] = ACTIONS(4217), + [anon_sym_return] = ACTIONS(4217), + [anon_sym_DOLLARfor] = ACTIONS(4217), + [anon_sym_for] = ACTIONS(4217), + [anon_sym_POUND] = ACTIONS(4217), + [anon_sym_asm] = ACTIONS(4217), + [anon_sym_AT_LBRACK] = ACTIONS(4217), + [sym___double_quote] = ACTIONS(4217), + [sym___single_quote] = ACTIONS(4217), + [sym___c_double_quote] = ACTIONS(4217), + [sym___c_single_quote] = ACTIONS(4217), + [sym___r_double_quote] = ACTIONS(4217), + [sym___r_single_quote] = ACTIONS(4217), }, [1558] = { - [ts_builtin_sym_end] = ACTIONS(4170), - [sym_identifier] = ACTIONS(4172), - [anon_sym_LF] = ACTIONS(4172), - [anon_sym_CR] = ACTIONS(4172), - [anon_sym_CR_LF] = ACTIONS(4172), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [anon_sym_LPAREN] = ACTIONS(4172), - [anon_sym___global] = ACTIONS(4172), - [anon_sym_type] = ACTIONS(4172), - [anon_sym_fn] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_pub] = ACTIONS(4172), - [anon_sym_mut] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_interface] = ACTIONS(4172), - [anon_sym_QMARK] = ACTIONS(4172), - [anon_sym_BANG] = ACTIONS(4172), - [anon_sym_go] = ACTIONS(4172), - [anon_sym_spawn] = ACTIONS(4172), - [anon_sym_json_DOTdecode] = ACTIONS(4172), - [anon_sym_LBRACK2] = ACTIONS(4172), - [anon_sym_TILDE] = ACTIONS(4172), - [anon_sym_CARET] = ACTIONS(4172), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_LT_DASH] = ACTIONS(4172), - [sym_none] = ACTIONS(4172), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [sym_nil] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_DOLLARif] = ACTIONS(4172), - [anon_sym_match] = ACTIONS(4172), - [anon_sym_select] = ACTIONS(4172), - [anon_sym_lock] = ACTIONS(4172), - [anon_sym_rlock] = ACTIONS(4172), - [anon_sym_unsafe] = ACTIONS(4172), - [anon_sym_sql] = ACTIONS(4172), - [sym_int_literal] = ACTIONS(4172), - [sym_float_literal] = ACTIONS(4172), - [sym_rune_literal] = ACTIONS(4172), - [anon_sym_AT] = ACTIONS(4172), - [anon_sym_shared] = ACTIONS(4172), - [anon_sym_map_LBRACK] = ACTIONS(4172), - [anon_sym_chan] = ACTIONS(4172), - [anon_sym_thread] = ACTIONS(4172), - [anon_sym_atomic] = ACTIONS(4172), - [anon_sym_assert] = ACTIONS(4172), - [anon_sym_defer] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_DOLLARfor] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_POUND] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym_AT_LBRACK] = ACTIONS(4172), - [sym___double_quote] = ACTIONS(4172), - [sym___single_quote] = ACTIONS(4172), - [sym___c_double_quote] = ACTIONS(4172), - [sym___c_single_quote] = ACTIONS(4172), - [sym___r_double_quote] = ACTIONS(4172), - [sym___r_single_quote] = ACTIONS(4172), + [ts_builtin_sym_end] = ACTIONS(4219), + [sym_identifier] = ACTIONS(4221), + [anon_sym_LF] = ACTIONS(4221), + [anon_sym_CR] = ACTIONS(4221), + [anon_sym_CR_LF] = ACTIONS(4221), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4221), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_const] = ACTIONS(4221), + [anon_sym_LPAREN] = ACTIONS(4221), + [anon_sym___global] = ACTIONS(4221), + [anon_sym_type] = ACTIONS(4221), + [anon_sym_fn] = ACTIONS(4221), + [anon_sym_PLUS] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4221), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_struct] = ACTIONS(4221), + [anon_sym_union] = ACTIONS(4221), + [anon_sym_pub] = ACTIONS(4221), + [anon_sym_mut] = ACTIONS(4221), + [anon_sym_enum] = ACTIONS(4221), + [anon_sym_interface] = ACTIONS(4221), + [anon_sym_QMARK] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_go] = ACTIONS(4221), + [anon_sym_spawn] = ACTIONS(4221), + [anon_sym_json_DOTdecode] = ACTIONS(4221), + [anon_sym_LBRACK2] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_CARET] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4221), + [anon_sym_LT_DASH] = ACTIONS(4221), + [sym_none] = ACTIONS(4221), + [sym_true] = ACTIONS(4221), + [sym_false] = ACTIONS(4221), + [sym_nil] = ACTIONS(4221), + [anon_sym_if] = ACTIONS(4221), + [anon_sym_DOLLARif] = ACTIONS(4221), + [anon_sym_match] = ACTIONS(4221), + [anon_sym_select] = ACTIONS(4221), + [anon_sym_lock] = ACTIONS(4221), + [anon_sym_rlock] = ACTIONS(4221), + [anon_sym_unsafe] = ACTIONS(4221), + [anon_sym_sql] = ACTIONS(4221), + [sym_int_literal] = ACTIONS(4221), + [sym_float_literal] = ACTIONS(4221), + [sym_rune_literal] = ACTIONS(4221), + [anon_sym_AT] = ACTIONS(4221), + [anon_sym_shared] = ACTIONS(4221), + [anon_sym_map_LBRACK] = ACTIONS(4221), + [anon_sym_chan] = ACTIONS(4221), + [anon_sym_thread] = ACTIONS(4221), + [anon_sym_atomic] = ACTIONS(4221), + [anon_sym_assert] = ACTIONS(4221), + [anon_sym_defer] = ACTIONS(4221), + [anon_sym_goto] = ACTIONS(4221), + [anon_sym_break] = ACTIONS(4221), + [anon_sym_continue] = ACTIONS(4221), + [anon_sym_return] = ACTIONS(4221), + [anon_sym_DOLLARfor] = ACTIONS(4221), + [anon_sym_for] = ACTIONS(4221), + [anon_sym_POUND] = ACTIONS(4221), + [anon_sym_asm] = ACTIONS(4221), + [anon_sym_AT_LBRACK] = ACTIONS(4221), + [sym___double_quote] = ACTIONS(4221), + [sym___single_quote] = ACTIONS(4221), + [sym___c_double_quote] = ACTIONS(4221), + [sym___c_single_quote] = ACTIONS(4221), + [sym___r_double_quote] = ACTIONS(4221), + [sym___r_single_quote] = ACTIONS(4221), }, [1559] = { - [sym_import_declaration] = STATE(1499), - [aux_sym_import_list_repeat1] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(4174), - [sym_identifier] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_LPAREN] = ACTIONS(4174), - [anon_sym___global] = ACTIONS(4176), - [anon_sym_type] = ACTIONS(4176), - [anon_sym_fn] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_pub] = ACTIONS(4176), - [anon_sym_mut] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_interface] = ACTIONS(4176), - [anon_sym_QMARK] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_go] = ACTIONS(4176), - [anon_sym_spawn] = ACTIONS(4176), - [anon_sym_json_DOTdecode] = ACTIONS(4174), - [anon_sym_LBRACK2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_CARET] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4174), - [anon_sym_LT_DASH] = ACTIONS(4174), - [sym_none] = ACTIONS(4176), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [sym_nil] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_DOLLARif] = ACTIONS(4176), - [anon_sym_match] = ACTIONS(4176), - [anon_sym_select] = ACTIONS(4176), - [anon_sym_lock] = ACTIONS(4176), - [anon_sym_rlock] = ACTIONS(4176), - [anon_sym_unsafe] = ACTIONS(4176), - [anon_sym_sql] = ACTIONS(4176), - [sym_int_literal] = ACTIONS(4176), - [sym_float_literal] = ACTIONS(4174), - [sym_rune_literal] = ACTIONS(4174), - [anon_sym_AT] = ACTIONS(4176), - [anon_sym_shared] = ACTIONS(4176), - [anon_sym_map_LBRACK] = ACTIONS(4174), - [anon_sym_chan] = ACTIONS(4176), - [anon_sym_thread] = ACTIONS(4176), - [anon_sym_atomic] = ACTIONS(4176), - [anon_sym_assert] = ACTIONS(4176), - [anon_sym_defer] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_DOLLARfor] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_POUND] = ACTIONS(4174), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym_AT_LBRACK] = ACTIONS(4174), - [sym___double_quote] = ACTIONS(4174), - [sym___single_quote] = ACTIONS(4174), - [sym___c_double_quote] = ACTIONS(4174), - [sym___c_single_quote] = ACTIONS(4174), - [sym___r_double_quote] = ACTIONS(4174), - [sym___r_single_quote] = ACTIONS(4174), + [ts_builtin_sym_end] = ACTIONS(4223), + [sym_identifier] = ACTIONS(4225), + [anon_sym_LF] = ACTIONS(4225), + [anon_sym_CR] = ACTIONS(4225), + [anon_sym_CR_LF] = ACTIONS(4225), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4225), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_const] = ACTIONS(4225), + [anon_sym_LPAREN] = ACTIONS(4225), + [anon_sym___global] = ACTIONS(4225), + [anon_sym_type] = ACTIONS(4225), + [anon_sym_fn] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4225), + [anon_sym_STAR] = ACTIONS(4225), + [anon_sym_struct] = ACTIONS(4225), + [anon_sym_union] = ACTIONS(4225), + [anon_sym_pub] = ACTIONS(4225), + [anon_sym_mut] = ACTIONS(4225), + [anon_sym_enum] = ACTIONS(4225), + [anon_sym_interface] = ACTIONS(4225), + [anon_sym_QMARK] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_go] = ACTIONS(4225), + [anon_sym_spawn] = ACTIONS(4225), + [anon_sym_json_DOTdecode] = ACTIONS(4225), + [anon_sym_LBRACK2] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_CARET] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4225), + [anon_sym_LT_DASH] = ACTIONS(4225), + [sym_none] = ACTIONS(4225), + [sym_true] = ACTIONS(4225), + [sym_false] = ACTIONS(4225), + [sym_nil] = ACTIONS(4225), + [anon_sym_if] = ACTIONS(4225), + [anon_sym_DOLLARif] = ACTIONS(4225), + [anon_sym_match] = ACTIONS(4225), + [anon_sym_select] = ACTIONS(4225), + [anon_sym_lock] = ACTIONS(4225), + [anon_sym_rlock] = ACTIONS(4225), + [anon_sym_unsafe] = ACTIONS(4225), + [anon_sym_sql] = ACTIONS(4225), + [sym_int_literal] = ACTIONS(4225), + [sym_float_literal] = ACTIONS(4225), + [sym_rune_literal] = ACTIONS(4225), + [anon_sym_AT] = ACTIONS(4225), + [anon_sym_shared] = ACTIONS(4225), + [anon_sym_map_LBRACK] = ACTIONS(4225), + [anon_sym_chan] = ACTIONS(4225), + [anon_sym_thread] = ACTIONS(4225), + [anon_sym_atomic] = ACTIONS(4225), + [anon_sym_assert] = ACTIONS(4225), + [anon_sym_defer] = ACTIONS(4225), + [anon_sym_goto] = ACTIONS(4225), + [anon_sym_break] = ACTIONS(4225), + [anon_sym_continue] = ACTIONS(4225), + [anon_sym_return] = ACTIONS(4225), + [anon_sym_DOLLARfor] = ACTIONS(4225), + [anon_sym_for] = ACTIONS(4225), + [anon_sym_POUND] = ACTIONS(4225), + [anon_sym_asm] = ACTIONS(4225), + [anon_sym_AT_LBRACK] = ACTIONS(4225), + [sym___double_quote] = ACTIONS(4225), + [sym___single_quote] = ACTIONS(4225), + [sym___c_double_quote] = ACTIONS(4225), + [sym___c_single_quote] = ACTIONS(4225), + [sym___r_double_quote] = ACTIONS(4225), + [sym___r_single_quote] = ACTIONS(4225), }, [1560] = { - [ts_builtin_sym_end] = ACTIONS(4178), - [sym_identifier] = ACTIONS(4180), - [anon_sym_LF] = ACTIONS(4180), - [anon_sym_CR] = ACTIONS(4180), - [anon_sym_CR_LF] = ACTIONS(4180), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_LPAREN] = ACTIONS(4180), - [anon_sym___global] = ACTIONS(4180), - [anon_sym_type] = ACTIONS(4180), - [anon_sym_fn] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_pub] = ACTIONS(4180), - [anon_sym_mut] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_interface] = ACTIONS(4180), - [anon_sym_QMARK] = ACTIONS(4180), - [anon_sym_BANG] = ACTIONS(4180), - [anon_sym_go] = ACTIONS(4180), - [anon_sym_spawn] = ACTIONS(4180), - [anon_sym_json_DOTdecode] = ACTIONS(4180), - [anon_sym_LBRACK2] = ACTIONS(4180), - [anon_sym_TILDE] = ACTIONS(4180), - [anon_sym_CARET] = ACTIONS(4180), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_LT_DASH] = ACTIONS(4180), - [sym_none] = ACTIONS(4180), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [sym_nil] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_DOLLARif] = ACTIONS(4180), - [anon_sym_match] = ACTIONS(4180), - [anon_sym_select] = ACTIONS(4180), - [anon_sym_lock] = ACTIONS(4180), - [anon_sym_rlock] = ACTIONS(4180), - [anon_sym_unsafe] = ACTIONS(4180), - [anon_sym_sql] = ACTIONS(4180), - [sym_int_literal] = ACTIONS(4180), - [sym_float_literal] = ACTIONS(4180), - [sym_rune_literal] = ACTIONS(4180), - [anon_sym_AT] = ACTIONS(4180), - [anon_sym_shared] = ACTIONS(4180), - [anon_sym_map_LBRACK] = ACTIONS(4180), - [anon_sym_chan] = ACTIONS(4180), - [anon_sym_thread] = ACTIONS(4180), - [anon_sym_atomic] = ACTIONS(4180), - [anon_sym_assert] = ACTIONS(4180), - [anon_sym_defer] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_DOLLARfor] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_POUND] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym_AT_LBRACK] = ACTIONS(4180), - [sym___double_quote] = ACTIONS(4180), - [sym___single_quote] = ACTIONS(4180), - [sym___c_double_quote] = ACTIONS(4180), - [sym___c_single_quote] = ACTIONS(4180), - [sym___r_double_quote] = ACTIONS(4180), - [sym___r_single_quote] = ACTIONS(4180), + [ts_builtin_sym_end] = ACTIONS(4227), + [sym_identifier] = ACTIONS(4229), + [anon_sym_LF] = ACTIONS(4229), + [anon_sym_CR] = ACTIONS(4229), + [anon_sym_CR_LF] = ACTIONS(4229), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4229), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_const] = ACTIONS(4229), + [anon_sym_LPAREN] = ACTIONS(4229), + [anon_sym___global] = ACTIONS(4229), + [anon_sym_type] = ACTIONS(4229), + [anon_sym_fn] = ACTIONS(4229), + [anon_sym_PLUS] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4229), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_struct] = ACTIONS(4229), + [anon_sym_union] = ACTIONS(4229), + [anon_sym_pub] = ACTIONS(4229), + [anon_sym_mut] = ACTIONS(4229), + [anon_sym_enum] = ACTIONS(4229), + [anon_sym_interface] = ACTIONS(4229), + [anon_sym_QMARK] = ACTIONS(4229), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_go] = ACTIONS(4229), + [anon_sym_spawn] = ACTIONS(4229), + [anon_sym_json_DOTdecode] = ACTIONS(4229), + [anon_sym_LBRACK2] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_CARET] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4229), + [anon_sym_LT_DASH] = ACTIONS(4229), + [sym_none] = ACTIONS(4229), + [sym_true] = ACTIONS(4229), + [sym_false] = ACTIONS(4229), + [sym_nil] = ACTIONS(4229), + [anon_sym_if] = ACTIONS(4229), + [anon_sym_DOLLARif] = ACTIONS(4229), + [anon_sym_match] = ACTIONS(4229), + [anon_sym_select] = ACTIONS(4229), + [anon_sym_lock] = ACTIONS(4229), + [anon_sym_rlock] = ACTIONS(4229), + [anon_sym_unsafe] = ACTIONS(4229), + [anon_sym_sql] = ACTIONS(4229), + [sym_int_literal] = ACTIONS(4229), + [sym_float_literal] = ACTIONS(4229), + [sym_rune_literal] = ACTIONS(4229), + [anon_sym_AT] = ACTIONS(4229), + [anon_sym_shared] = ACTIONS(4229), + [anon_sym_map_LBRACK] = ACTIONS(4229), + [anon_sym_chan] = ACTIONS(4229), + [anon_sym_thread] = ACTIONS(4229), + [anon_sym_atomic] = ACTIONS(4229), + [anon_sym_assert] = ACTIONS(4229), + [anon_sym_defer] = ACTIONS(4229), + [anon_sym_goto] = ACTIONS(4229), + [anon_sym_break] = ACTIONS(4229), + [anon_sym_continue] = ACTIONS(4229), + [anon_sym_return] = ACTIONS(4229), + [anon_sym_DOLLARfor] = ACTIONS(4229), + [anon_sym_for] = ACTIONS(4229), + [anon_sym_POUND] = ACTIONS(4229), + [anon_sym_asm] = ACTIONS(4229), + [anon_sym_AT_LBRACK] = ACTIONS(4229), + [sym___double_quote] = ACTIONS(4229), + [sym___single_quote] = ACTIONS(4229), + [sym___c_double_quote] = ACTIONS(4229), + [sym___c_single_quote] = ACTIONS(4229), + [sym___r_double_quote] = ACTIONS(4229), + [sym___r_single_quote] = ACTIONS(4229), }, [1561] = { - [ts_builtin_sym_end] = ACTIONS(4182), - [sym_identifier] = ACTIONS(4184), - [anon_sym_LF] = ACTIONS(4184), - [anon_sym_CR] = ACTIONS(4184), - [anon_sym_CR_LF] = ACTIONS(4184), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4184), - [anon_sym___global] = ACTIONS(4184), - [anon_sym_type] = ACTIONS(4184), - [anon_sym_fn] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_pub] = ACTIONS(4184), - [anon_sym_mut] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_interface] = ACTIONS(4184), - [anon_sym_QMARK] = ACTIONS(4184), - [anon_sym_BANG] = ACTIONS(4184), - [anon_sym_go] = ACTIONS(4184), - [anon_sym_spawn] = ACTIONS(4184), - [anon_sym_json_DOTdecode] = ACTIONS(4184), - [anon_sym_LBRACK2] = ACTIONS(4184), - [anon_sym_TILDE] = ACTIONS(4184), - [anon_sym_CARET] = ACTIONS(4184), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_LT_DASH] = ACTIONS(4184), - [sym_none] = ACTIONS(4184), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [sym_nil] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_DOLLARif] = ACTIONS(4184), - [anon_sym_match] = ACTIONS(4184), - [anon_sym_select] = ACTIONS(4184), - [anon_sym_lock] = ACTIONS(4184), - [anon_sym_rlock] = ACTIONS(4184), - [anon_sym_unsafe] = ACTIONS(4184), - [anon_sym_sql] = ACTIONS(4184), - [sym_int_literal] = ACTIONS(4184), - [sym_float_literal] = ACTIONS(4184), - [sym_rune_literal] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4184), - [anon_sym_shared] = ACTIONS(4184), - [anon_sym_map_LBRACK] = ACTIONS(4184), - [anon_sym_chan] = ACTIONS(4184), - [anon_sym_thread] = ACTIONS(4184), - [anon_sym_atomic] = ACTIONS(4184), - [anon_sym_assert] = ACTIONS(4184), - [anon_sym_defer] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_DOLLARfor] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_POUND] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym_AT_LBRACK] = ACTIONS(4184), - [sym___double_quote] = ACTIONS(4184), - [sym___single_quote] = ACTIONS(4184), - [sym___c_double_quote] = ACTIONS(4184), - [sym___c_single_quote] = ACTIONS(4184), - [sym___r_double_quote] = ACTIONS(4184), - [sym___r_single_quote] = ACTIONS(4184), + [ts_builtin_sym_end] = ACTIONS(4231), + [sym_identifier] = ACTIONS(4233), + [anon_sym_LF] = ACTIONS(4233), + [anon_sym_CR] = ACTIONS(4233), + [anon_sym_CR_LF] = ACTIONS(4233), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4233), + [anon_sym_const] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4233), + [anon_sym___global] = ACTIONS(4233), + [anon_sym_type] = ACTIONS(4233), + [anon_sym_fn] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_struct] = ACTIONS(4233), + [anon_sym_union] = ACTIONS(4233), + [anon_sym_pub] = ACTIONS(4233), + [anon_sym_mut] = ACTIONS(4233), + [anon_sym_enum] = ACTIONS(4233), + [anon_sym_interface] = ACTIONS(4233), + [anon_sym_QMARK] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_go] = ACTIONS(4233), + [anon_sym_spawn] = ACTIONS(4233), + [anon_sym_json_DOTdecode] = ACTIONS(4233), + [anon_sym_LBRACK2] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4233), + [anon_sym_CARET] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_LT_DASH] = ACTIONS(4233), + [sym_none] = ACTIONS(4233), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_nil] = ACTIONS(4233), + [anon_sym_if] = ACTIONS(4233), + [anon_sym_DOLLARif] = ACTIONS(4233), + [anon_sym_match] = ACTIONS(4233), + [anon_sym_select] = ACTIONS(4233), + [anon_sym_lock] = ACTIONS(4233), + [anon_sym_rlock] = ACTIONS(4233), + [anon_sym_unsafe] = ACTIONS(4233), + [anon_sym_sql] = ACTIONS(4233), + [sym_int_literal] = ACTIONS(4233), + [sym_float_literal] = ACTIONS(4233), + [sym_rune_literal] = ACTIONS(4233), + [anon_sym_AT] = ACTIONS(4233), + [anon_sym_shared] = ACTIONS(4233), + [anon_sym_map_LBRACK] = ACTIONS(4233), + [anon_sym_chan] = ACTIONS(4233), + [anon_sym_thread] = ACTIONS(4233), + [anon_sym_atomic] = ACTIONS(4233), + [anon_sym_assert] = ACTIONS(4233), + [anon_sym_defer] = ACTIONS(4233), + [anon_sym_goto] = ACTIONS(4233), + [anon_sym_break] = ACTIONS(4233), + [anon_sym_continue] = ACTIONS(4233), + [anon_sym_return] = ACTIONS(4233), + [anon_sym_DOLLARfor] = ACTIONS(4233), + [anon_sym_for] = ACTIONS(4233), + [anon_sym_POUND] = ACTIONS(4233), + [anon_sym_asm] = ACTIONS(4233), + [anon_sym_AT_LBRACK] = ACTIONS(4233), + [sym___double_quote] = ACTIONS(4233), + [sym___single_quote] = ACTIONS(4233), + [sym___c_double_quote] = ACTIONS(4233), + [sym___c_single_quote] = ACTIONS(4233), + [sym___r_double_quote] = ACTIONS(4233), + [sym___r_single_quote] = ACTIONS(4233), }, [1562] = { - [ts_builtin_sym_end] = ACTIONS(4186), - [sym_identifier] = ACTIONS(4188), - [anon_sym_LF] = ACTIONS(4188), - [anon_sym_CR] = ACTIONS(4188), - [anon_sym_CR_LF] = ACTIONS(4188), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym___global] = ACTIONS(4188), - [anon_sym_type] = ACTIONS(4188), - [anon_sym_fn] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_pub] = ACTIONS(4188), - [anon_sym_mut] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_interface] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4188), - [anon_sym_BANG] = ACTIONS(4188), - [anon_sym_go] = ACTIONS(4188), - [anon_sym_spawn] = ACTIONS(4188), - [anon_sym_json_DOTdecode] = ACTIONS(4188), - [anon_sym_LBRACK2] = ACTIONS(4188), - [anon_sym_TILDE] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_LT_DASH] = ACTIONS(4188), - [sym_none] = ACTIONS(4188), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [sym_nil] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_DOLLARif] = ACTIONS(4188), - [anon_sym_match] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_lock] = ACTIONS(4188), - [anon_sym_rlock] = ACTIONS(4188), - [anon_sym_unsafe] = ACTIONS(4188), - [anon_sym_sql] = ACTIONS(4188), - [sym_int_literal] = ACTIONS(4188), - [sym_float_literal] = ACTIONS(4188), - [sym_rune_literal] = ACTIONS(4188), - [anon_sym_AT] = ACTIONS(4188), - [anon_sym_shared] = ACTIONS(4188), - [anon_sym_map_LBRACK] = ACTIONS(4188), - [anon_sym_chan] = ACTIONS(4188), - [anon_sym_thread] = ACTIONS(4188), - [anon_sym_atomic] = ACTIONS(4188), - [anon_sym_assert] = ACTIONS(4188), - [anon_sym_defer] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_DOLLARfor] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_POUND] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym_AT_LBRACK] = ACTIONS(4188), - [sym___double_quote] = ACTIONS(4188), - [sym___single_quote] = ACTIONS(4188), - [sym___c_double_quote] = ACTIONS(4188), - [sym___c_single_quote] = ACTIONS(4188), - [sym___r_double_quote] = ACTIONS(4188), - [sym___r_single_quote] = ACTIONS(4188), + [ts_builtin_sym_end] = ACTIONS(4235), + [sym_identifier] = ACTIONS(4237), + [anon_sym_LF] = ACTIONS(4239), + [anon_sym_CR] = ACTIONS(4239), + [anon_sym_CR_LF] = ACTIONS(4239), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4237), + [anon_sym_LPAREN] = ACTIONS(4237), + [anon_sym___global] = ACTIONS(4237), + [anon_sym_type] = ACTIONS(4237), + [anon_sym_fn] = ACTIONS(4237), + [anon_sym_PLUS] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4237), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_struct] = ACTIONS(4237), + [anon_sym_union] = ACTIONS(4237), + [anon_sym_pub] = ACTIONS(4237), + [anon_sym_mut] = ACTIONS(4237), + [anon_sym_enum] = ACTIONS(4237), + [anon_sym_interface] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4237), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_go] = ACTIONS(4237), + [anon_sym_spawn] = ACTIONS(4237), + [anon_sym_json_DOTdecode] = ACTIONS(4237), + [anon_sym_LBRACK2] = ACTIONS(4237), + [anon_sym_TILDE] = ACTIONS(4237), + [anon_sym_CARET] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4237), + [anon_sym_LT_DASH] = ACTIONS(4237), + [sym_none] = ACTIONS(4237), + [sym_true] = ACTIONS(4237), + [sym_false] = ACTIONS(4237), + [sym_nil] = ACTIONS(4237), + [anon_sym_if] = ACTIONS(4237), + [anon_sym_DOLLARif] = ACTIONS(4237), + [anon_sym_match] = ACTIONS(4237), + [anon_sym_select] = ACTIONS(4237), + [anon_sym_lock] = ACTIONS(4237), + [anon_sym_rlock] = ACTIONS(4237), + [anon_sym_unsafe] = ACTIONS(4237), + [anon_sym_sql] = ACTIONS(4237), + [sym_int_literal] = ACTIONS(4237), + [sym_float_literal] = ACTIONS(4237), + [sym_rune_literal] = ACTIONS(4237), + [anon_sym_AT] = ACTIONS(4237), + [anon_sym_shared] = ACTIONS(4237), + [anon_sym_map_LBRACK] = ACTIONS(4237), + [anon_sym_chan] = ACTIONS(4237), + [anon_sym_thread] = ACTIONS(4237), + [anon_sym_atomic] = ACTIONS(4237), + [anon_sym_assert] = ACTIONS(4237), + [anon_sym_defer] = ACTIONS(4237), + [anon_sym_goto] = ACTIONS(4237), + [anon_sym_break] = ACTIONS(4237), + [anon_sym_continue] = ACTIONS(4237), + [anon_sym_return] = ACTIONS(4237), + [anon_sym_DOLLARfor] = ACTIONS(4237), + [anon_sym_for] = ACTIONS(4237), + [anon_sym_POUND] = ACTIONS(4237), + [anon_sym_asm] = ACTIONS(4237), + [anon_sym_AT_LBRACK] = ACTIONS(4237), + [sym___double_quote] = ACTIONS(4237), + [sym___single_quote] = ACTIONS(4237), + [sym___c_double_quote] = ACTIONS(4237), + [sym___c_single_quote] = ACTIONS(4237), + [sym___r_double_quote] = ACTIONS(4237), + [sym___r_single_quote] = ACTIONS(4237), }, [1563] = { - [ts_builtin_sym_end] = ACTIONS(4190), - [sym_identifier] = ACTIONS(4192), - [anon_sym_LF] = ACTIONS(4192), - [anon_sym_CR] = ACTIONS(4192), - [anon_sym_CR_LF] = ACTIONS(4192), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(4192), - [anon_sym___global] = ACTIONS(4192), - [anon_sym_type] = ACTIONS(4192), - [anon_sym_fn] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_pub] = ACTIONS(4192), - [anon_sym_mut] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_interface] = ACTIONS(4192), - [anon_sym_QMARK] = ACTIONS(4192), - [anon_sym_BANG] = ACTIONS(4192), - [anon_sym_go] = ACTIONS(4192), - [anon_sym_spawn] = ACTIONS(4192), - [anon_sym_json_DOTdecode] = ACTIONS(4192), - [anon_sym_LBRACK2] = ACTIONS(4192), - [anon_sym_TILDE] = ACTIONS(4192), - [anon_sym_CARET] = ACTIONS(4192), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_LT_DASH] = ACTIONS(4192), - [sym_none] = ACTIONS(4192), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [sym_nil] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_DOLLARif] = ACTIONS(4192), - [anon_sym_match] = ACTIONS(4192), - [anon_sym_select] = ACTIONS(4192), - [anon_sym_lock] = ACTIONS(4192), - [anon_sym_rlock] = ACTIONS(4192), - [anon_sym_unsafe] = ACTIONS(4192), - [anon_sym_sql] = ACTIONS(4192), - [sym_int_literal] = ACTIONS(4192), - [sym_float_literal] = ACTIONS(4192), - [sym_rune_literal] = ACTIONS(4192), - [anon_sym_AT] = ACTIONS(4192), - [anon_sym_shared] = ACTIONS(4192), - [anon_sym_map_LBRACK] = ACTIONS(4192), - [anon_sym_chan] = ACTIONS(4192), - [anon_sym_thread] = ACTIONS(4192), - [anon_sym_atomic] = ACTIONS(4192), - [anon_sym_assert] = ACTIONS(4192), - [anon_sym_defer] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_DOLLARfor] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_POUND] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym_AT_LBRACK] = ACTIONS(4192), - [sym___double_quote] = ACTIONS(4192), - [sym___single_quote] = ACTIONS(4192), - [sym___c_double_quote] = ACTIONS(4192), - [sym___c_single_quote] = ACTIONS(4192), - [sym___r_double_quote] = ACTIONS(4192), - [sym___r_single_quote] = ACTIONS(4192), + [ts_builtin_sym_end] = ACTIONS(4241), + [sym_identifier] = ACTIONS(4243), + [anon_sym_LF] = ACTIONS(4243), + [anon_sym_CR] = ACTIONS(4243), + [anon_sym_CR_LF] = ACTIONS(4243), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4243), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_const] = ACTIONS(4243), + [anon_sym_LPAREN] = ACTIONS(4243), + [anon_sym___global] = ACTIONS(4243), + [anon_sym_type] = ACTIONS(4243), + [anon_sym_fn] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(4243), + [anon_sym_DASH] = ACTIONS(4243), + [anon_sym_STAR] = ACTIONS(4243), + [anon_sym_struct] = ACTIONS(4243), + [anon_sym_union] = ACTIONS(4243), + [anon_sym_pub] = ACTIONS(4243), + [anon_sym_mut] = ACTIONS(4243), + [anon_sym_enum] = ACTIONS(4243), + [anon_sym_interface] = ACTIONS(4243), + [anon_sym_QMARK] = ACTIONS(4243), + [anon_sym_BANG] = ACTIONS(4243), + [anon_sym_go] = ACTIONS(4243), + [anon_sym_spawn] = ACTIONS(4243), + [anon_sym_json_DOTdecode] = ACTIONS(4243), + [anon_sym_LBRACK2] = ACTIONS(4243), + [anon_sym_TILDE] = ACTIONS(4243), + [anon_sym_CARET] = ACTIONS(4243), + [anon_sym_AMP] = ACTIONS(4243), + [anon_sym_LT_DASH] = ACTIONS(4243), + [sym_none] = ACTIONS(4243), + [sym_true] = ACTIONS(4243), + [sym_false] = ACTIONS(4243), + [sym_nil] = ACTIONS(4243), + [anon_sym_if] = ACTIONS(4243), + [anon_sym_DOLLARif] = ACTIONS(4243), + [anon_sym_match] = ACTIONS(4243), + [anon_sym_select] = ACTIONS(4243), + [anon_sym_lock] = ACTIONS(4243), + [anon_sym_rlock] = ACTIONS(4243), + [anon_sym_unsafe] = ACTIONS(4243), + [anon_sym_sql] = ACTIONS(4243), + [sym_int_literal] = ACTIONS(4243), + [sym_float_literal] = ACTIONS(4243), + [sym_rune_literal] = ACTIONS(4243), + [anon_sym_AT] = ACTIONS(4243), + [anon_sym_shared] = ACTIONS(4243), + [anon_sym_map_LBRACK] = ACTIONS(4243), + [anon_sym_chan] = ACTIONS(4243), + [anon_sym_thread] = ACTIONS(4243), + [anon_sym_atomic] = ACTIONS(4243), + [anon_sym_assert] = ACTIONS(4243), + [anon_sym_defer] = ACTIONS(4243), + [anon_sym_goto] = ACTIONS(4243), + [anon_sym_break] = ACTIONS(4243), + [anon_sym_continue] = ACTIONS(4243), + [anon_sym_return] = ACTIONS(4243), + [anon_sym_DOLLARfor] = ACTIONS(4243), + [anon_sym_for] = ACTIONS(4243), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_asm] = ACTIONS(4243), + [anon_sym_AT_LBRACK] = ACTIONS(4243), + [sym___double_quote] = ACTIONS(4243), + [sym___single_quote] = ACTIONS(4243), + [sym___c_double_quote] = ACTIONS(4243), + [sym___c_single_quote] = ACTIONS(4243), + [sym___r_double_quote] = ACTIONS(4243), + [sym___r_single_quote] = ACTIONS(4243), }, [1564] = { - [ts_builtin_sym_end] = ACTIONS(4194), - [sym_identifier] = ACTIONS(4196), - [anon_sym_LF] = ACTIONS(4196), - [anon_sym_CR] = ACTIONS(4196), - [anon_sym_CR_LF] = ACTIONS(4196), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym___global] = ACTIONS(4196), - [anon_sym_type] = ACTIONS(4196), - [anon_sym_fn] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_pub] = ACTIONS(4196), - [anon_sym_mut] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_interface] = ACTIONS(4196), - [anon_sym_QMARK] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_go] = ACTIONS(4196), - [anon_sym_spawn] = ACTIONS(4196), - [anon_sym_json_DOTdecode] = ACTIONS(4196), - [anon_sym_LBRACK2] = ACTIONS(4196), - [anon_sym_TILDE] = ACTIONS(4196), - [anon_sym_CARET] = ACTIONS(4196), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_LT_DASH] = ACTIONS(4196), - [sym_none] = ACTIONS(4196), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [sym_nil] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_DOLLARif] = ACTIONS(4196), - [anon_sym_match] = ACTIONS(4196), - [anon_sym_select] = ACTIONS(4196), - [anon_sym_lock] = ACTIONS(4196), - [anon_sym_rlock] = ACTIONS(4196), - [anon_sym_unsafe] = ACTIONS(4196), - [anon_sym_sql] = ACTIONS(4196), - [sym_int_literal] = ACTIONS(4196), - [sym_float_literal] = ACTIONS(4196), - [sym_rune_literal] = ACTIONS(4196), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_shared] = ACTIONS(4196), - [anon_sym_map_LBRACK] = ACTIONS(4196), - [anon_sym_chan] = ACTIONS(4196), - [anon_sym_thread] = ACTIONS(4196), - [anon_sym_atomic] = ACTIONS(4196), - [anon_sym_assert] = ACTIONS(4196), - [anon_sym_defer] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_DOLLARfor] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_POUND] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym_AT_LBRACK] = ACTIONS(4196), - [sym___double_quote] = ACTIONS(4196), - [sym___single_quote] = ACTIONS(4196), - [sym___c_double_quote] = ACTIONS(4196), - [sym___c_single_quote] = ACTIONS(4196), - [sym___r_double_quote] = ACTIONS(4196), - [sym___r_single_quote] = ACTIONS(4196), + [ts_builtin_sym_end] = ACTIONS(4245), + [sym_identifier] = ACTIONS(4247), + [anon_sym_LF] = ACTIONS(4247), + [anon_sym_CR] = ACTIONS(4247), + [anon_sym_CR_LF] = ACTIONS(4247), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4247), + [anon_sym_LBRACE] = ACTIONS(4247), + [anon_sym_const] = ACTIONS(4247), + [anon_sym_LPAREN] = ACTIONS(4247), + [anon_sym___global] = ACTIONS(4247), + [anon_sym_type] = ACTIONS(4247), + [anon_sym_fn] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_struct] = ACTIONS(4247), + [anon_sym_union] = ACTIONS(4247), + [anon_sym_pub] = ACTIONS(4247), + [anon_sym_mut] = ACTIONS(4247), + [anon_sym_enum] = ACTIONS(4247), + [anon_sym_interface] = ACTIONS(4247), + [anon_sym_QMARK] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4247), + [anon_sym_go] = ACTIONS(4247), + [anon_sym_spawn] = ACTIONS(4247), + [anon_sym_json_DOTdecode] = ACTIONS(4247), + [anon_sym_LBRACK2] = ACTIONS(4247), + [anon_sym_TILDE] = ACTIONS(4247), + [anon_sym_CARET] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_LT_DASH] = ACTIONS(4247), + [sym_none] = ACTIONS(4247), + [sym_true] = ACTIONS(4247), + [sym_false] = ACTIONS(4247), + [sym_nil] = ACTIONS(4247), + [anon_sym_if] = ACTIONS(4247), + [anon_sym_DOLLARif] = ACTIONS(4247), + [anon_sym_match] = ACTIONS(4247), + [anon_sym_select] = ACTIONS(4247), + [anon_sym_lock] = ACTIONS(4247), + [anon_sym_rlock] = ACTIONS(4247), + [anon_sym_unsafe] = ACTIONS(4247), + [anon_sym_sql] = ACTIONS(4247), + [sym_int_literal] = ACTIONS(4247), + [sym_float_literal] = ACTIONS(4247), + [sym_rune_literal] = ACTIONS(4247), + [anon_sym_AT] = ACTIONS(4247), + [anon_sym_shared] = ACTIONS(4247), + [anon_sym_map_LBRACK] = ACTIONS(4247), + [anon_sym_chan] = ACTIONS(4247), + [anon_sym_thread] = ACTIONS(4247), + [anon_sym_atomic] = ACTIONS(4247), + [anon_sym_assert] = ACTIONS(4247), + [anon_sym_defer] = ACTIONS(4247), + [anon_sym_goto] = ACTIONS(4247), + [anon_sym_break] = ACTIONS(4247), + [anon_sym_continue] = ACTIONS(4247), + [anon_sym_return] = ACTIONS(4247), + [anon_sym_DOLLARfor] = ACTIONS(4247), + [anon_sym_for] = ACTIONS(4247), + [anon_sym_POUND] = ACTIONS(4247), + [anon_sym_asm] = ACTIONS(4247), + [anon_sym_AT_LBRACK] = ACTIONS(4247), + [sym___double_quote] = ACTIONS(4247), + [sym___single_quote] = ACTIONS(4247), + [sym___c_double_quote] = ACTIONS(4247), + [sym___c_single_quote] = ACTIONS(4247), + [sym___r_double_quote] = ACTIONS(4247), + [sym___r_single_quote] = ACTIONS(4247), }, [1565] = { - [ts_builtin_sym_end] = ACTIONS(4198), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LF] = ACTIONS(4200), - [anon_sym_CR] = ACTIONS(4200), - [anon_sym_CR_LF] = ACTIONS(4200), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_LPAREN] = ACTIONS(4200), - [anon_sym___global] = ACTIONS(4200), - [anon_sym_type] = ACTIONS(4200), - [anon_sym_fn] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [anon_sym_struct] = ACTIONS(4200), - [anon_sym_union] = ACTIONS(4200), - [anon_sym_pub] = ACTIONS(4200), - [anon_sym_mut] = ACTIONS(4200), - [anon_sym_enum] = ACTIONS(4200), - [anon_sym_interface] = ACTIONS(4200), - [anon_sym_QMARK] = ACTIONS(4200), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_go] = ACTIONS(4200), - [anon_sym_spawn] = ACTIONS(4200), - [anon_sym_json_DOTdecode] = ACTIONS(4200), - [anon_sym_LBRACK2] = ACTIONS(4200), - [anon_sym_TILDE] = ACTIONS(4200), - [anon_sym_CARET] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_LT_DASH] = ACTIONS(4200), - [sym_none] = ACTIONS(4200), - [sym_true] = ACTIONS(4200), - [sym_false] = ACTIONS(4200), - [sym_nil] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_DOLLARif] = ACTIONS(4200), - [anon_sym_match] = ACTIONS(4200), - [anon_sym_select] = ACTIONS(4200), - [anon_sym_lock] = ACTIONS(4200), - [anon_sym_rlock] = ACTIONS(4200), - [anon_sym_unsafe] = ACTIONS(4200), - [anon_sym_sql] = ACTIONS(4200), - [sym_int_literal] = ACTIONS(4200), - [sym_float_literal] = ACTIONS(4200), - [sym_rune_literal] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4200), - [anon_sym_shared] = ACTIONS(4200), - [anon_sym_map_LBRACK] = ACTIONS(4200), - [anon_sym_chan] = ACTIONS(4200), - [anon_sym_thread] = ACTIONS(4200), - [anon_sym_atomic] = ACTIONS(4200), - [anon_sym_assert] = ACTIONS(4200), - [anon_sym_defer] = ACTIONS(4200), - [anon_sym_goto] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_DOLLARfor] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_POUND] = ACTIONS(4200), - [anon_sym_asm] = ACTIONS(4200), - [anon_sym_AT_LBRACK] = ACTIONS(4200), - [sym___double_quote] = ACTIONS(4200), - [sym___single_quote] = ACTIONS(4200), - [sym___c_double_quote] = ACTIONS(4200), - [sym___c_single_quote] = ACTIONS(4200), - [sym___r_double_quote] = ACTIONS(4200), - [sym___r_single_quote] = ACTIONS(4200), + [ts_builtin_sym_end] = ACTIONS(4249), + [sym_identifier] = ACTIONS(4251), + [anon_sym_LF] = ACTIONS(4251), + [anon_sym_CR] = ACTIONS(4251), + [anon_sym_CR_LF] = ACTIONS(4251), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4251), + [anon_sym_LBRACE] = ACTIONS(4251), + [anon_sym_const] = ACTIONS(4251), + [anon_sym_LPAREN] = ACTIONS(4251), + [anon_sym___global] = ACTIONS(4251), + [anon_sym_type] = ACTIONS(4251), + [anon_sym_fn] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_struct] = ACTIONS(4251), + [anon_sym_union] = ACTIONS(4251), + [anon_sym_pub] = ACTIONS(4251), + [anon_sym_mut] = ACTIONS(4251), + [anon_sym_enum] = ACTIONS(4251), + [anon_sym_interface] = ACTIONS(4251), + [anon_sym_QMARK] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(4251), + [anon_sym_go] = ACTIONS(4251), + [anon_sym_spawn] = ACTIONS(4251), + [anon_sym_json_DOTdecode] = ACTIONS(4251), + [anon_sym_LBRACK2] = ACTIONS(4251), + [anon_sym_TILDE] = ACTIONS(4251), + [anon_sym_CARET] = ACTIONS(4251), + [anon_sym_AMP] = ACTIONS(4251), + [anon_sym_LT_DASH] = ACTIONS(4251), + [sym_none] = ACTIONS(4251), + [sym_true] = ACTIONS(4251), + [sym_false] = ACTIONS(4251), + [sym_nil] = ACTIONS(4251), + [anon_sym_if] = ACTIONS(4251), + [anon_sym_DOLLARif] = ACTIONS(4251), + [anon_sym_match] = ACTIONS(4251), + [anon_sym_select] = ACTIONS(4251), + [anon_sym_lock] = ACTIONS(4251), + [anon_sym_rlock] = ACTIONS(4251), + [anon_sym_unsafe] = ACTIONS(4251), + [anon_sym_sql] = ACTIONS(4251), + [sym_int_literal] = ACTIONS(4251), + [sym_float_literal] = ACTIONS(4251), + [sym_rune_literal] = ACTIONS(4251), + [anon_sym_AT] = ACTIONS(4251), + [anon_sym_shared] = ACTIONS(4251), + [anon_sym_map_LBRACK] = ACTIONS(4251), + [anon_sym_chan] = ACTIONS(4251), + [anon_sym_thread] = ACTIONS(4251), + [anon_sym_atomic] = ACTIONS(4251), + [anon_sym_assert] = ACTIONS(4251), + [anon_sym_defer] = ACTIONS(4251), + [anon_sym_goto] = ACTIONS(4251), + [anon_sym_break] = ACTIONS(4251), + [anon_sym_continue] = ACTIONS(4251), + [anon_sym_return] = ACTIONS(4251), + [anon_sym_DOLLARfor] = ACTIONS(4251), + [anon_sym_for] = ACTIONS(4251), + [anon_sym_POUND] = ACTIONS(4251), + [anon_sym_asm] = ACTIONS(4251), + [anon_sym_AT_LBRACK] = ACTIONS(4251), + [sym___double_quote] = ACTIONS(4251), + [sym___single_quote] = ACTIONS(4251), + [sym___c_double_quote] = ACTIONS(4251), + [sym___c_single_quote] = ACTIONS(4251), + [sym___r_double_quote] = ACTIONS(4251), + [sym___r_single_quote] = ACTIONS(4251), }, [1566] = { - [ts_builtin_sym_end] = ACTIONS(4202), - [sym_identifier] = ACTIONS(4204), - [anon_sym_LF] = ACTIONS(4206), - [anon_sym_CR] = ACTIONS(4206), - [anon_sym_CR_LF] = ACTIONS(4206), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4204), - [anon_sym_LBRACE] = ACTIONS(4204), - [anon_sym_const] = ACTIONS(4204), - [anon_sym_LPAREN] = ACTIONS(4204), - [anon_sym___global] = ACTIONS(4204), - [anon_sym_type] = ACTIONS(4204), - [anon_sym_fn] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4204), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4204), - [anon_sym_struct] = ACTIONS(4204), - [anon_sym_union] = ACTIONS(4204), - [anon_sym_pub] = ACTIONS(4204), - [anon_sym_mut] = ACTIONS(4204), - [anon_sym_enum] = ACTIONS(4204), - [anon_sym_interface] = ACTIONS(4204), - [anon_sym_QMARK] = ACTIONS(4204), - [anon_sym_BANG] = ACTIONS(4204), - [anon_sym_go] = ACTIONS(4204), - [anon_sym_spawn] = ACTIONS(4204), - [anon_sym_json_DOTdecode] = ACTIONS(4204), - [anon_sym_LBRACK2] = ACTIONS(4204), - [anon_sym_TILDE] = ACTIONS(4204), - [anon_sym_CARET] = ACTIONS(4204), - [anon_sym_AMP] = ACTIONS(4204), - [anon_sym_LT_DASH] = ACTIONS(4204), - [sym_none] = ACTIONS(4204), - [sym_true] = ACTIONS(4204), - [sym_false] = ACTIONS(4204), - [sym_nil] = ACTIONS(4204), - [anon_sym_if] = ACTIONS(4204), - [anon_sym_DOLLARif] = ACTIONS(4204), - [anon_sym_match] = ACTIONS(4204), - [anon_sym_select] = ACTIONS(4204), - [anon_sym_lock] = ACTIONS(4204), - [anon_sym_rlock] = ACTIONS(4204), - [anon_sym_unsafe] = ACTIONS(4204), - [anon_sym_sql] = ACTIONS(4204), - [sym_int_literal] = ACTIONS(4204), - [sym_float_literal] = ACTIONS(4204), - [sym_rune_literal] = ACTIONS(4204), - [anon_sym_AT] = ACTIONS(4204), - [anon_sym_shared] = ACTIONS(4204), - [anon_sym_map_LBRACK] = ACTIONS(4204), - [anon_sym_chan] = ACTIONS(4204), - [anon_sym_thread] = ACTIONS(4204), - [anon_sym_atomic] = ACTIONS(4204), - [anon_sym_assert] = ACTIONS(4204), - [anon_sym_defer] = ACTIONS(4204), - [anon_sym_goto] = ACTIONS(4204), - [anon_sym_break] = ACTIONS(4204), - [anon_sym_continue] = ACTIONS(4204), - [anon_sym_return] = ACTIONS(4204), - [anon_sym_DOLLARfor] = ACTIONS(4204), - [anon_sym_for] = ACTIONS(4204), - [anon_sym_POUND] = ACTIONS(4204), - [anon_sym_asm] = ACTIONS(4204), - [anon_sym_AT_LBRACK] = ACTIONS(4204), - [sym___double_quote] = ACTIONS(4204), - [sym___single_quote] = ACTIONS(4204), - [sym___c_double_quote] = ACTIONS(4204), - [sym___c_single_quote] = ACTIONS(4204), - [sym___r_double_quote] = ACTIONS(4204), - [sym___r_single_quote] = ACTIONS(4204), + [ts_builtin_sym_end] = ACTIONS(4253), + [sym_identifier] = ACTIONS(4255), + [anon_sym_LF] = ACTIONS(4255), + [anon_sym_CR] = ACTIONS(4255), + [anon_sym_CR_LF] = ACTIONS(4255), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4255), + [anon_sym_LBRACE] = ACTIONS(4255), + [anon_sym_const] = ACTIONS(4255), + [anon_sym_LPAREN] = ACTIONS(4255), + [anon_sym___global] = ACTIONS(4255), + [anon_sym_type] = ACTIONS(4255), + [anon_sym_fn] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(4255), + [anon_sym_DASH] = ACTIONS(4255), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_struct] = ACTIONS(4255), + [anon_sym_union] = ACTIONS(4255), + [anon_sym_pub] = ACTIONS(4255), + [anon_sym_mut] = ACTIONS(4255), + [anon_sym_enum] = ACTIONS(4255), + [anon_sym_interface] = ACTIONS(4255), + [anon_sym_QMARK] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(4255), + [anon_sym_go] = ACTIONS(4255), + [anon_sym_spawn] = ACTIONS(4255), + [anon_sym_json_DOTdecode] = ACTIONS(4255), + [anon_sym_LBRACK2] = ACTIONS(4255), + [anon_sym_TILDE] = ACTIONS(4255), + [anon_sym_CARET] = ACTIONS(4255), + [anon_sym_AMP] = ACTIONS(4255), + [anon_sym_LT_DASH] = ACTIONS(4255), + [sym_none] = ACTIONS(4255), + [sym_true] = ACTIONS(4255), + [sym_false] = ACTIONS(4255), + [sym_nil] = ACTIONS(4255), + [anon_sym_if] = ACTIONS(4255), + [anon_sym_DOLLARif] = ACTIONS(4255), + [anon_sym_match] = ACTIONS(4255), + [anon_sym_select] = ACTIONS(4255), + [anon_sym_lock] = ACTIONS(4255), + [anon_sym_rlock] = ACTIONS(4255), + [anon_sym_unsafe] = ACTIONS(4255), + [anon_sym_sql] = ACTIONS(4255), + [sym_int_literal] = ACTIONS(4255), + [sym_float_literal] = ACTIONS(4255), + [sym_rune_literal] = ACTIONS(4255), + [anon_sym_AT] = ACTIONS(4255), + [anon_sym_shared] = ACTIONS(4255), + [anon_sym_map_LBRACK] = ACTIONS(4255), + [anon_sym_chan] = ACTIONS(4255), + [anon_sym_thread] = ACTIONS(4255), + [anon_sym_atomic] = ACTIONS(4255), + [anon_sym_assert] = ACTIONS(4255), + [anon_sym_defer] = ACTIONS(4255), + [anon_sym_goto] = ACTIONS(4255), + [anon_sym_break] = ACTIONS(4255), + [anon_sym_continue] = ACTIONS(4255), + [anon_sym_return] = ACTIONS(4255), + [anon_sym_DOLLARfor] = ACTIONS(4255), + [anon_sym_for] = ACTIONS(4255), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_asm] = ACTIONS(4255), + [anon_sym_AT_LBRACK] = ACTIONS(4255), + [sym___double_quote] = ACTIONS(4255), + [sym___single_quote] = ACTIONS(4255), + [sym___c_double_quote] = ACTIONS(4255), + [sym___c_single_quote] = ACTIONS(4255), + [sym___r_double_quote] = ACTIONS(4255), + [sym___r_single_quote] = ACTIONS(4255), }, [1567] = { - [ts_builtin_sym_end] = ACTIONS(4208), - [sym_identifier] = ACTIONS(4210), - [anon_sym_LF] = ACTIONS(4210), - [anon_sym_CR] = ACTIONS(4210), - [anon_sym_CR_LF] = ACTIONS(4210), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_LBRACE] = ACTIONS(4210), - [anon_sym_const] = ACTIONS(4210), - [anon_sym_LPAREN] = ACTIONS(4210), - [anon_sym___global] = ACTIONS(4210), - [anon_sym_type] = ACTIONS(4210), - [anon_sym_fn] = ACTIONS(4210), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_struct] = ACTIONS(4210), - [anon_sym_union] = ACTIONS(4210), - [anon_sym_pub] = ACTIONS(4210), - [anon_sym_mut] = ACTIONS(4210), - [anon_sym_enum] = ACTIONS(4210), - [anon_sym_interface] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_go] = ACTIONS(4210), - [anon_sym_spawn] = ACTIONS(4210), - [anon_sym_json_DOTdecode] = ACTIONS(4210), - [anon_sym_LBRACK2] = ACTIONS(4210), - [anon_sym_TILDE] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_DASH] = ACTIONS(4210), - [sym_none] = ACTIONS(4210), - [sym_true] = ACTIONS(4210), - [sym_false] = ACTIONS(4210), - [sym_nil] = ACTIONS(4210), - [anon_sym_if] = ACTIONS(4210), - [anon_sym_DOLLARif] = ACTIONS(4210), - [anon_sym_match] = ACTIONS(4210), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_lock] = ACTIONS(4210), - [anon_sym_rlock] = ACTIONS(4210), - [anon_sym_unsafe] = ACTIONS(4210), - [anon_sym_sql] = ACTIONS(4210), - [sym_int_literal] = ACTIONS(4210), - [sym_float_literal] = ACTIONS(4210), - [sym_rune_literal] = ACTIONS(4210), - [anon_sym_AT] = ACTIONS(4210), - [anon_sym_shared] = ACTIONS(4210), - [anon_sym_map_LBRACK] = ACTIONS(4210), - [anon_sym_chan] = ACTIONS(4210), - [anon_sym_thread] = ACTIONS(4210), - [anon_sym_atomic] = ACTIONS(4210), - [anon_sym_assert] = ACTIONS(4210), - [anon_sym_defer] = ACTIONS(4210), - [anon_sym_goto] = ACTIONS(4210), - [anon_sym_break] = ACTIONS(4210), - [anon_sym_continue] = ACTIONS(4210), - [anon_sym_return] = ACTIONS(4210), - [anon_sym_DOLLARfor] = ACTIONS(4210), - [anon_sym_for] = ACTIONS(4210), - [anon_sym_POUND] = ACTIONS(4210), - [anon_sym_asm] = ACTIONS(4210), - [anon_sym_AT_LBRACK] = ACTIONS(4210), - [sym___double_quote] = ACTIONS(4210), - [sym___single_quote] = ACTIONS(4210), - [sym___c_double_quote] = ACTIONS(4210), - [sym___c_single_quote] = ACTIONS(4210), - [sym___r_double_quote] = ACTIONS(4210), - [sym___r_single_quote] = ACTIONS(4210), + [ts_builtin_sym_end] = ACTIONS(4257), + [sym_identifier] = ACTIONS(4259), + [anon_sym_LF] = ACTIONS(4259), + [anon_sym_CR] = ACTIONS(4259), + [anon_sym_CR_LF] = ACTIONS(4259), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4259), + [anon_sym_LBRACE] = ACTIONS(4259), + [anon_sym_const] = ACTIONS(4259), + [anon_sym_LPAREN] = ACTIONS(4259), + [anon_sym___global] = ACTIONS(4259), + [anon_sym_type] = ACTIONS(4259), + [anon_sym_fn] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(4259), + [anon_sym_DASH] = ACTIONS(4259), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_struct] = ACTIONS(4259), + [anon_sym_union] = ACTIONS(4259), + [anon_sym_pub] = ACTIONS(4259), + [anon_sym_mut] = ACTIONS(4259), + [anon_sym_enum] = ACTIONS(4259), + [anon_sym_interface] = ACTIONS(4259), + [anon_sym_QMARK] = ACTIONS(4259), + [anon_sym_BANG] = ACTIONS(4259), + [anon_sym_go] = ACTIONS(4259), + [anon_sym_spawn] = ACTIONS(4259), + [anon_sym_json_DOTdecode] = ACTIONS(4259), + [anon_sym_LBRACK2] = ACTIONS(4259), + [anon_sym_TILDE] = ACTIONS(4259), + [anon_sym_CARET] = ACTIONS(4259), + [anon_sym_AMP] = ACTIONS(4259), + [anon_sym_LT_DASH] = ACTIONS(4259), + [sym_none] = ACTIONS(4259), + [sym_true] = ACTIONS(4259), + [sym_false] = ACTIONS(4259), + [sym_nil] = ACTIONS(4259), + [anon_sym_if] = ACTIONS(4259), + [anon_sym_DOLLARif] = ACTIONS(4259), + [anon_sym_match] = ACTIONS(4259), + [anon_sym_select] = ACTIONS(4259), + [anon_sym_lock] = ACTIONS(4259), + [anon_sym_rlock] = ACTIONS(4259), + [anon_sym_unsafe] = ACTIONS(4259), + [anon_sym_sql] = ACTIONS(4259), + [sym_int_literal] = ACTIONS(4259), + [sym_float_literal] = ACTIONS(4259), + [sym_rune_literal] = ACTIONS(4259), + [anon_sym_AT] = ACTIONS(4259), + [anon_sym_shared] = ACTIONS(4259), + [anon_sym_map_LBRACK] = ACTIONS(4259), + [anon_sym_chan] = ACTIONS(4259), + [anon_sym_thread] = ACTIONS(4259), + [anon_sym_atomic] = ACTIONS(4259), + [anon_sym_assert] = ACTIONS(4259), + [anon_sym_defer] = ACTIONS(4259), + [anon_sym_goto] = ACTIONS(4259), + [anon_sym_break] = ACTIONS(4259), + [anon_sym_continue] = ACTIONS(4259), + [anon_sym_return] = ACTIONS(4259), + [anon_sym_DOLLARfor] = ACTIONS(4259), + [anon_sym_for] = ACTIONS(4259), + [anon_sym_POUND] = ACTIONS(4259), + [anon_sym_asm] = ACTIONS(4259), + [anon_sym_AT_LBRACK] = ACTIONS(4259), + [sym___double_quote] = ACTIONS(4259), + [sym___single_quote] = ACTIONS(4259), + [sym___c_double_quote] = ACTIONS(4259), + [sym___c_single_quote] = ACTIONS(4259), + [sym___r_double_quote] = ACTIONS(4259), + [sym___r_single_quote] = ACTIONS(4259), }, [1568] = { - [ts_builtin_sym_end] = ACTIONS(4212), - [sym_identifier] = ACTIONS(4214), - [anon_sym_LF] = ACTIONS(4214), - [anon_sym_CR] = ACTIONS(4214), - [anon_sym_CR_LF] = ACTIONS(4214), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4214), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_const] = ACTIONS(4214), - [anon_sym_LPAREN] = ACTIONS(4214), - [anon_sym___global] = ACTIONS(4214), - [anon_sym_type] = ACTIONS(4214), - [anon_sym_fn] = ACTIONS(4214), - [anon_sym_PLUS] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4214), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_struct] = ACTIONS(4214), - [anon_sym_union] = ACTIONS(4214), - [anon_sym_pub] = ACTIONS(4214), - [anon_sym_mut] = ACTIONS(4214), - [anon_sym_enum] = ACTIONS(4214), - [anon_sym_interface] = ACTIONS(4214), - [anon_sym_QMARK] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_go] = ACTIONS(4214), - [anon_sym_spawn] = ACTIONS(4214), - [anon_sym_json_DOTdecode] = ACTIONS(4214), - [anon_sym_LBRACK2] = ACTIONS(4214), - [anon_sym_TILDE] = ACTIONS(4214), - [anon_sym_CARET] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_LT_DASH] = ACTIONS(4214), - [sym_none] = ACTIONS(4214), - [sym_true] = ACTIONS(4214), - [sym_false] = ACTIONS(4214), - [sym_nil] = ACTIONS(4214), - [anon_sym_if] = ACTIONS(4214), - [anon_sym_DOLLARif] = ACTIONS(4214), - [anon_sym_match] = ACTIONS(4214), - [anon_sym_select] = ACTIONS(4214), - [anon_sym_lock] = ACTIONS(4214), - [anon_sym_rlock] = ACTIONS(4214), - [anon_sym_unsafe] = ACTIONS(4214), - [anon_sym_sql] = ACTIONS(4214), - [sym_int_literal] = ACTIONS(4214), - [sym_float_literal] = ACTIONS(4214), - [sym_rune_literal] = ACTIONS(4214), - [anon_sym_AT] = ACTIONS(4214), - [anon_sym_shared] = ACTIONS(4214), - [anon_sym_map_LBRACK] = ACTIONS(4214), - [anon_sym_chan] = ACTIONS(4214), - [anon_sym_thread] = ACTIONS(4214), - [anon_sym_atomic] = ACTIONS(4214), - [anon_sym_assert] = ACTIONS(4214), - [anon_sym_defer] = ACTIONS(4214), - [anon_sym_goto] = ACTIONS(4214), - [anon_sym_break] = ACTIONS(4214), - [anon_sym_continue] = ACTIONS(4214), - [anon_sym_return] = ACTIONS(4214), - [anon_sym_DOLLARfor] = ACTIONS(4214), - [anon_sym_for] = ACTIONS(4214), - [anon_sym_POUND] = ACTIONS(4214), - [anon_sym_asm] = ACTIONS(4214), - [anon_sym_AT_LBRACK] = ACTIONS(4214), - [sym___double_quote] = ACTIONS(4214), - [sym___single_quote] = ACTIONS(4214), - [sym___c_double_quote] = ACTIONS(4214), - [sym___c_single_quote] = ACTIONS(4214), - [sym___r_double_quote] = ACTIONS(4214), - [sym___r_single_quote] = ACTIONS(4214), + [ts_builtin_sym_end] = ACTIONS(4261), + [sym_identifier] = ACTIONS(4263), + [anon_sym_LF] = ACTIONS(4263), + [anon_sym_CR] = ACTIONS(4263), + [anon_sym_CR_LF] = ACTIONS(4263), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4263), + [anon_sym_LBRACE] = ACTIONS(4263), + [anon_sym_const] = ACTIONS(4263), + [anon_sym_LPAREN] = ACTIONS(4263), + [anon_sym___global] = ACTIONS(4263), + [anon_sym_type] = ACTIONS(4263), + [anon_sym_fn] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_struct] = ACTIONS(4263), + [anon_sym_union] = ACTIONS(4263), + [anon_sym_pub] = ACTIONS(4263), + [anon_sym_mut] = ACTIONS(4263), + [anon_sym_enum] = ACTIONS(4263), + [anon_sym_interface] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(4263), + [anon_sym_go] = ACTIONS(4263), + [anon_sym_spawn] = ACTIONS(4263), + [anon_sym_json_DOTdecode] = ACTIONS(4263), + [anon_sym_LBRACK2] = ACTIONS(4263), + [anon_sym_TILDE] = ACTIONS(4263), + [anon_sym_CARET] = ACTIONS(4263), + [anon_sym_AMP] = ACTIONS(4263), + [anon_sym_LT_DASH] = ACTIONS(4263), + [sym_none] = ACTIONS(4263), + [sym_true] = ACTIONS(4263), + [sym_false] = ACTIONS(4263), + [sym_nil] = ACTIONS(4263), + [anon_sym_if] = ACTIONS(4263), + [anon_sym_DOLLARif] = ACTIONS(4263), + [anon_sym_match] = ACTIONS(4263), + [anon_sym_select] = ACTIONS(4263), + [anon_sym_lock] = ACTIONS(4263), + [anon_sym_rlock] = ACTIONS(4263), + [anon_sym_unsafe] = ACTIONS(4263), + [anon_sym_sql] = ACTIONS(4263), + [sym_int_literal] = ACTIONS(4263), + [sym_float_literal] = ACTIONS(4263), + [sym_rune_literal] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4263), + [anon_sym_shared] = ACTIONS(4263), + [anon_sym_map_LBRACK] = ACTIONS(4263), + [anon_sym_chan] = ACTIONS(4263), + [anon_sym_thread] = ACTIONS(4263), + [anon_sym_atomic] = ACTIONS(4263), + [anon_sym_assert] = ACTIONS(4263), + [anon_sym_defer] = ACTIONS(4263), + [anon_sym_goto] = ACTIONS(4263), + [anon_sym_break] = ACTIONS(4263), + [anon_sym_continue] = ACTIONS(4263), + [anon_sym_return] = ACTIONS(4263), + [anon_sym_DOLLARfor] = ACTIONS(4263), + [anon_sym_for] = ACTIONS(4263), + [anon_sym_POUND] = ACTIONS(4263), + [anon_sym_asm] = ACTIONS(4263), + [anon_sym_AT_LBRACK] = ACTIONS(4263), + [sym___double_quote] = ACTIONS(4263), + [sym___single_quote] = ACTIONS(4263), + [sym___c_double_quote] = ACTIONS(4263), + [sym___c_single_quote] = ACTIONS(4263), + [sym___r_double_quote] = ACTIONS(4263), + [sym___r_single_quote] = ACTIONS(4263), }, [1569] = { - [ts_builtin_sym_end] = ACTIONS(4216), - [sym_identifier] = ACTIONS(4218), - [anon_sym_LF] = ACTIONS(4218), - [anon_sym_CR] = ACTIONS(4218), - [anon_sym_CR_LF] = ACTIONS(4218), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4218), - [anon_sym_const] = ACTIONS(4218), - [anon_sym_LPAREN] = ACTIONS(4218), - [anon_sym___global] = ACTIONS(4218), - [anon_sym_type] = ACTIONS(4218), - [anon_sym_fn] = ACTIONS(4218), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_struct] = ACTIONS(4218), - [anon_sym_union] = ACTIONS(4218), - [anon_sym_pub] = ACTIONS(4218), - [anon_sym_mut] = ACTIONS(4218), - [anon_sym_enum] = ACTIONS(4218), - [anon_sym_interface] = ACTIONS(4218), - [anon_sym_QMARK] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_go] = ACTIONS(4218), - [anon_sym_spawn] = ACTIONS(4218), - [anon_sym_json_DOTdecode] = ACTIONS(4218), - [anon_sym_LBRACK2] = ACTIONS(4218), - [anon_sym_TILDE] = ACTIONS(4218), - [anon_sym_CARET] = ACTIONS(4218), - [anon_sym_AMP] = ACTIONS(4218), - [anon_sym_LT_DASH] = ACTIONS(4218), - [sym_none] = ACTIONS(4218), - [sym_true] = ACTIONS(4218), - [sym_false] = ACTIONS(4218), - [sym_nil] = ACTIONS(4218), - [anon_sym_if] = ACTIONS(4218), - [anon_sym_DOLLARif] = ACTIONS(4218), - [anon_sym_match] = ACTIONS(4218), - [anon_sym_select] = ACTIONS(4218), - [anon_sym_lock] = ACTIONS(4218), - [anon_sym_rlock] = ACTIONS(4218), - [anon_sym_unsafe] = ACTIONS(4218), - [anon_sym_sql] = ACTIONS(4218), - [sym_int_literal] = ACTIONS(4218), - [sym_float_literal] = ACTIONS(4218), - [sym_rune_literal] = ACTIONS(4218), - [anon_sym_AT] = ACTIONS(4218), - [anon_sym_shared] = ACTIONS(4218), - [anon_sym_map_LBRACK] = ACTIONS(4218), - [anon_sym_chan] = ACTIONS(4218), - [anon_sym_thread] = ACTIONS(4218), - [anon_sym_atomic] = ACTIONS(4218), - [anon_sym_assert] = ACTIONS(4218), - [anon_sym_defer] = ACTIONS(4218), - [anon_sym_goto] = ACTIONS(4218), - [anon_sym_break] = ACTIONS(4218), - [anon_sym_continue] = ACTIONS(4218), - [anon_sym_return] = ACTIONS(4218), - [anon_sym_DOLLARfor] = ACTIONS(4218), - [anon_sym_for] = ACTIONS(4218), - [anon_sym_POUND] = ACTIONS(4218), - [anon_sym_asm] = ACTIONS(4218), - [anon_sym_AT_LBRACK] = ACTIONS(4218), - [sym___double_quote] = ACTIONS(4218), - [sym___single_quote] = ACTIONS(4218), - [sym___c_double_quote] = ACTIONS(4218), - [sym___c_single_quote] = ACTIONS(4218), - [sym___r_double_quote] = ACTIONS(4218), - [sym___r_single_quote] = ACTIONS(4218), + [ts_builtin_sym_end] = ACTIONS(4265), + [sym_identifier] = ACTIONS(4267), + [anon_sym_LF] = ACTIONS(4267), + [anon_sym_CR] = ACTIONS(4267), + [anon_sym_CR_LF] = ACTIONS(4267), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4267), + [anon_sym_const] = ACTIONS(4267), + [anon_sym_LPAREN] = ACTIONS(4267), + [anon_sym___global] = ACTIONS(4267), + [anon_sym_type] = ACTIONS(4267), + [anon_sym_fn] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_struct] = ACTIONS(4267), + [anon_sym_union] = ACTIONS(4267), + [anon_sym_pub] = ACTIONS(4267), + [anon_sym_mut] = ACTIONS(4267), + [anon_sym_enum] = ACTIONS(4267), + [anon_sym_interface] = ACTIONS(4267), + [anon_sym_QMARK] = ACTIONS(4267), + [anon_sym_BANG] = ACTIONS(4267), + [anon_sym_go] = ACTIONS(4267), + [anon_sym_spawn] = ACTIONS(4267), + [anon_sym_json_DOTdecode] = ACTIONS(4267), + [anon_sym_LBRACK2] = ACTIONS(4267), + [anon_sym_TILDE] = ACTIONS(4267), + [anon_sym_CARET] = ACTIONS(4267), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_LT_DASH] = ACTIONS(4267), + [sym_none] = ACTIONS(4267), + [sym_true] = ACTIONS(4267), + [sym_false] = ACTIONS(4267), + [sym_nil] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_DOLLARif] = ACTIONS(4267), + [anon_sym_match] = ACTIONS(4267), + [anon_sym_select] = ACTIONS(4267), + [anon_sym_lock] = ACTIONS(4267), + [anon_sym_rlock] = ACTIONS(4267), + [anon_sym_unsafe] = ACTIONS(4267), + [anon_sym_sql] = ACTIONS(4267), + [sym_int_literal] = ACTIONS(4267), + [sym_float_literal] = ACTIONS(4267), + [sym_rune_literal] = ACTIONS(4267), + [anon_sym_AT] = ACTIONS(4267), + [anon_sym_shared] = ACTIONS(4267), + [anon_sym_map_LBRACK] = ACTIONS(4267), + [anon_sym_chan] = ACTIONS(4267), + [anon_sym_thread] = ACTIONS(4267), + [anon_sym_atomic] = ACTIONS(4267), + [anon_sym_assert] = ACTIONS(4267), + [anon_sym_defer] = ACTIONS(4267), + [anon_sym_goto] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_DOLLARfor] = ACTIONS(4267), + [anon_sym_for] = ACTIONS(4267), + [anon_sym_POUND] = ACTIONS(4267), + [anon_sym_asm] = ACTIONS(4267), + [anon_sym_AT_LBRACK] = ACTIONS(4267), + [sym___double_quote] = ACTIONS(4267), + [sym___single_quote] = ACTIONS(4267), + [sym___c_double_quote] = ACTIONS(4267), + [sym___c_single_quote] = ACTIONS(4267), + [sym___r_double_quote] = ACTIONS(4267), + [sym___r_single_quote] = ACTIONS(4267), }, [1570] = { - [ts_builtin_sym_end] = ACTIONS(4220), - [sym_identifier] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_CR] = ACTIONS(4222), - [anon_sym_CR_LF] = ACTIONS(4222), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_const] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym___global] = ACTIONS(4222), - [anon_sym_type] = ACTIONS(4222), - [anon_sym_fn] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_struct] = ACTIONS(4222), - [anon_sym_union] = ACTIONS(4222), - [anon_sym_pub] = ACTIONS(4222), - [anon_sym_mut] = ACTIONS(4222), - [anon_sym_enum] = ACTIONS(4222), - [anon_sym_interface] = ACTIONS(4222), - [anon_sym_QMARK] = ACTIONS(4222), - [anon_sym_BANG] = ACTIONS(4222), - [anon_sym_go] = ACTIONS(4222), - [anon_sym_spawn] = ACTIONS(4222), - [anon_sym_json_DOTdecode] = ACTIONS(4222), - [anon_sym_LBRACK2] = ACTIONS(4222), - [anon_sym_TILDE] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - [anon_sym_LT_DASH] = ACTIONS(4222), - [sym_none] = ACTIONS(4222), - [sym_true] = ACTIONS(4222), - [sym_false] = ACTIONS(4222), - [sym_nil] = ACTIONS(4222), - [anon_sym_if] = ACTIONS(4222), - [anon_sym_DOLLARif] = ACTIONS(4222), - [anon_sym_match] = ACTIONS(4222), - [anon_sym_select] = ACTIONS(4222), - [anon_sym_lock] = ACTIONS(4222), - [anon_sym_rlock] = ACTIONS(4222), - [anon_sym_unsafe] = ACTIONS(4222), - [anon_sym_sql] = ACTIONS(4222), - [sym_int_literal] = ACTIONS(4222), - [sym_float_literal] = ACTIONS(4222), - [sym_rune_literal] = ACTIONS(4222), - [anon_sym_AT] = ACTIONS(4222), - [anon_sym_shared] = ACTIONS(4222), - [anon_sym_map_LBRACK] = ACTIONS(4222), - [anon_sym_chan] = ACTIONS(4222), - [anon_sym_thread] = ACTIONS(4222), - [anon_sym_atomic] = ACTIONS(4222), - [anon_sym_assert] = ACTIONS(4222), - [anon_sym_defer] = ACTIONS(4222), - [anon_sym_goto] = ACTIONS(4222), - [anon_sym_break] = ACTIONS(4222), - [anon_sym_continue] = ACTIONS(4222), - [anon_sym_return] = ACTIONS(4222), - [anon_sym_DOLLARfor] = ACTIONS(4222), - [anon_sym_for] = ACTIONS(4222), - [anon_sym_POUND] = ACTIONS(4222), - [anon_sym_asm] = ACTIONS(4222), - [anon_sym_AT_LBRACK] = ACTIONS(4222), - [sym___double_quote] = ACTIONS(4222), - [sym___single_quote] = ACTIONS(4222), - [sym___c_double_quote] = ACTIONS(4222), - [sym___c_single_quote] = ACTIONS(4222), - [sym___r_double_quote] = ACTIONS(4222), - [sym___r_single_quote] = ACTIONS(4222), + [ts_builtin_sym_end] = ACTIONS(4269), + [sym_identifier] = ACTIONS(4271), + [anon_sym_LF] = ACTIONS(4271), + [anon_sym_CR] = ACTIONS(4271), + [anon_sym_CR_LF] = ACTIONS(4271), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym___global] = ACTIONS(4271), + [anon_sym_type] = ACTIONS(4271), + [anon_sym_fn] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_pub] = ACTIONS(4271), + [anon_sym_mut] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_interface] = ACTIONS(4271), + [anon_sym_QMARK] = ACTIONS(4271), + [anon_sym_BANG] = ACTIONS(4271), + [anon_sym_go] = ACTIONS(4271), + [anon_sym_spawn] = ACTIONS(4271), + [anon_sym_json_DOTdecode] = ACTIONS(4271), + [anon_sym_LBRACK2] = ACTIONS(4271), + [anon_sym_TILDE] = ACTIONS(4271), + [anon_sym_CARET] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_LT_DASH] = ACTIONS(4271), + [sym_none] = ACTIONS(4271), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [sym_nil] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_DOLLARif] = ACTIONS(4271), + [anon_sym_match] = ACTIONS(4271), + [anon_sym_select] = ACTIONS(4271), + [anon_sym_lock] = ACTIONS(4271), + [anon_sym_rlock] = ACTIONS(4271), + [anon_sym_unsafe] = ACTIONS(4271), + [anon_sym_sql] = ACTIONS(4271), + [sym_int_literal] = ACTIONS(4271), + [sym_float_literal] = ACTIONS(4271), + [sym_rune_literal] = ACTIONS(4271), + [anon_sym_AT] = ACTIONS(4271), + [anon_sym_shared] = ACTIONS(4271), + [anon_sym_map_LBRACK] = ACTIONS(4271), + [anon_sym_chan] = ACTIONS(4271), + [anon_sym_thread] = ACTIONS(4271), + [anon_sym_atomic] = ACTIONS(4271), + [anon_sym_assert] = ACTIONS(4271), + [anon_sym_defer] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_DOLLARfor] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_POUND] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym_AT_LBRACK] = ACTIONS(4271), + [sym___double_quote] = ACTIONS(4271), + [sym___single_quote] = ACTIONS(4271), + [sym___c_double_quote] = ACTIONS(4271), + [sym___c_single_quote] = ACTIONS(4271), + [sym___r_double_quote] = ACTIONS(4271), + [sym___r_single_quote] = ACTIONS(4271), }, [1571] = { - [ts_builtin_sym_end] = ACTIONS(4224), - [sym_identifier] = ACTIONS(4226), - [anon_sym_LF] = ACTIONS(4226), - [anon_sym_CR] = ACTIONS(4226), - [anon_sym_CR_LF] = ACTIONS(4226), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4226), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_const] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym___global] = ACTIONS(4226), - [anon_sym_type] = ACTIONS(4226), - [anon_sym_fn] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_struct] = ACTIONS(4226), - [anon_sym_union] = ACTIONS(4226), - [anon_sym_pub] = ACTIONS(4226), - [anon_sym_mut] = ACTIONS(4226), - [anon_sym_enum] = ACTIONS(4226), - [anon_sym_interface] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4226), - [anon_sym_go] = ACTIONS(4226), - [anon_sym_spawn] = ACTIONS(4226), - [anon_sym_json_DOTdecode] = ACTIONS(4226), - [anon_sym_LBRACK2] = ACTIONS(4226), - [anon_sym_TILDE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_LT_DASH] = ACTIONS(4226), - [sym_none] = ACTIONS(4226), - [sym_true] = ACTIONS(4226), - [sym_false] = ACTIONS(4226), - [sym_nil] = ACTIONS(4226), - [anon_sym_if] = ACTIONS(4226), - [anon_sym_DOLLARif] = ACTIONS(4226), - [anon_sym_match] = ACTIONS(4226), - [anon_sym_select] = ACTIONS(4226), - [anon_sym_lock] = ACTIONS(4226), - [anon_sym_rlock] = ACTIONS(4226), - [anon_sym_unsafe] = ACTIONS(4226), - [anon_sym_sql] = ACTIONS(4226), - [sym_int_literal] = ACTIONS(4226), - [sym_float_literal] = ACTIONS(4226), - [sym_rune_literal] = ACTIONS(4226), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_shared] = ACTIONS(4226), - [anon_sym_map_LBRACK] = ACTIONS(4226), - [anon_sym_chan] = ACTIONS(4226), - [anon_sym_thread] = ACTIONS(4226), - [anon_sym_atomic] = ACTIONS(4226), - [anon_sym_assert] = ACTIONS(4226), - [anon_sym_defer] = ACTIONS(4226), - [anon_sym_goto] = ACTIONS(4226), - [anon_sym_break] = ACTIONS(4226), - [anon_sym_continue] = ACTIONS(4226), - [anon_sym_return] = ACTIONS(4226), - [anon_sym_DOLLARfor] = ACTIONS(4226), - [anon_sym_for] = ACTIONS(4226), - [anon_sym_POUND] = ACTIONS(4226), - [anon_sym_asm] = ACTIONS(4226), - [anon_sym_AT_LBRACK] = ACTIONS(4226), - [sym___double_quote] = ACTIONS(4226), - [sym___single_quote] = ACTIONS(4226), - [sym___c_double_quote] = ACTIONS(4226), - [sym___c_single_quote] = ACTIONS(4226), - [sym___r_double_quote] = ACTIONS(4226), - [sym___r_single_quote] = ACTIONS(4226), + [ts_builtin_sym_end] = ACTIONS(4273), + [sym_identifier] = ACTIONS(4275), + [anon_sym_LF] = ACTIONS(4275), + [anon_sym_CR] = ACTIONS(4275), + [anon_sym_CR_LF] = ACTIONS(4275), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_const] = ACTIONS(4275), + [anon_sym_LPAREN] = ACTIONS(4275), + [anon_sym___global] = ACTIONS(4275), + [anon_sym_type] = ACTIONS(4275), + [anon_sym_fn] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_struct] = ACTIONS(4275), + [anon_sym_union] = ACTIONS(4275), + [anon_sym_pub] = ACTIONS(4275), + [anon_sym_mut] = ACTIONS(4275), + [anon_sym_enum] = ACTIONS(4275), + [anon_sym_interface] = ACTIONS(4275), + [anon_sym_QMARK] = ACTIONS(4275), + [anon_sym_BANG] = ACTIONS(4275), + [anon_sym_go] = ACTIONS(4275), + [anon_sym_spawn] = ACTIONS(4275), + [anon_sym_json_DOTdecode] = ACTIONS(4275), + [anon_sym_LBRACK2] = ACTIONS(4275), + [anon_sym_TILDE] = ACTIONS(4275), + [anon_sym_CARET] = ACTIONS(4275), + [anon_sym_AMP] = ACTIONS(4275), + [anon_sym_LT_DASH] = ACTIONS(4275), + [sym_none] = ACTIONS(4275), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [sym_nil] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_DOLLARif] = ACTIONS(4275), + [anon_sym_match] = ACTIONS(4275), + [anon_sym_select] = ACTIONS(4275), + [anon_sym_lock] = ACTIONS(4275), + [anon_sym_rlock] = ACTIONS(4275), + [anon_sym_unsafe] = ACTIONS(4275), + [anon_sym_sql] = ACTIONS(4275), + [sym_int_literal] = ACTIONS(4275), + [sym_float_literal] = ACTIONS(4275), + [sym_rune_literal] = ACTIONS(4275), + [anon_sym_AT] = ACTIONS(4275), + [anon_sym_shared] = ACTIONS(4275), + [anon_sym_map_LBRACK] = ACTIONS(4275), + [anon_sym_chan] = ACTIONS(4275), + [anon_sym_thread] = ACTIONS(4275), + [anon_sym_atomic] = ACTIONS(4275), + [anon_sym_assert] = ACTIONS(4275), + [anon_sym_defer] = ACTIONS(4275), + [anon_sym_goto] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_DOLLARfor] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_POUND] = ACTIONS(4275), + [anon_sym_asm] = ACTIONS(4275), + [anon_sym_AT_LBRACK] = ACTIONS(4275), + [sym___double_quote] = ACTIONS(4275), + [sym___single_quote] = ACTIONS(4275), + [sym___c_double_quote] = ACTIONS(4275), + [sym___c_single_quote] = ACTIONS(4275), + [sym___r_double_quote] = ACTIONS(4275), + [sym___r_single_quote] = ACTIONS(4275), }, [1572] = { - [ts_builtin_sym_end] = ACTIONS(4228), - [sym_identifier] = ACTIONS(4230), - [anon_sym_LF] = ACTIONS(4230), - [anon_sym_CR] = ACTIONS(4230), - [anon_sym_CR_LF] = ACTIONS(4230), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4230), - [anon_sym_const] = ACTIONS(4230), - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym___global] = ACTIONS(4230), - [anon_sym_type] = ACTIONS(4230), - [anon_sym_fn] = ACTIONS(4230), - [anon_sym_PLUS] = ACTIONS(4230), - [anon_sym_DASH] = ACTIONS(4230), - [anon_sym_STAR] = ACTIONS(4230), - [anon_sym_struct] = ACTIONS(4230), - [anon_sym_union] = ACTIONS(4230), - [anon_sym_pub] = ACTIONS(4230), - [anon_sym_mut] = ACTIONS(4230), - [anon_sym_enum] = ACTIONS(4230), - [anon_sym_interface] = ACTIONS(4230), - [anon_sym_QMARK] = ACTIONS(4230), - [anon_sym_BANG] = ACTIONS(4230), - [anon_sym_go] = ACTIONS(4230), - [anon_sym_spawn] = ACTIONS(4230), - [anon_sym_json_DOTdecode] = ACTIONS(4230), - [anon_sym_LBRACK2] = ACTIONS(4230), - [anon_sym_TILDE] = ACTIONS(4230), - [anon_sym_CARET] = ACTIONS(4230), - [anon_sym_AMP] = ACTIONS(4230), - [anon_sym_LT_DASH] = ACTIONS(4230), - [sym_none] = ACTIONS(4230), - [sym_true] = ACTIONS(4230), - [sym_false] = ACTIONS(4230), - [sym_nil] = ACTIONS(4230), - [anon_sym_if] = ACTIONS(4230), - [anon_sym_DOLLARif] = ACTIONS(4230), - [anon_sym_match] = ACTIONS(4230), - [anon_sym_select] = ACTIONS(4230), - [anon_sym_lock] = ACTIONS(4230), - [anon_sym_rlock] = ACTIONS(4230), - [anon_sym_unsafe] = ACTIONS(4230), - [anon_sym_sql] = ACTIONS(4230), - [sym_int_literal] = ACTIONS(4230), - [sym_float_literal] = ACTIONS(4230), - [sym_rune_literal] = ACTIONS(4230), - [anon_sym_AT] = ACTIONS(4230), - [anon_sym_shared] = ACTIONS(4230), - [anon_sym_map_LBRACK] = ACTIONS(4230), - [anon_sym_chan] = ACTIONS(4230), - [anon_sym_thread] = ACTIONS(4230), - [anon_sym_atomic] = ACTIONS(4230), - [anon_sym_assert] = ACTIONS(4230), - [anon_sym_defer] = ACTIONS(4230), - [anon_sym_goto] = ACTIONS(4230), - [anon_sym_break] = ACTIONS(4230), - [anon_sym_continue] = ACTIONS(4230), - [anon_sym_return] = ACTIONS(4230), - [anon_sym_DOLLARfor] = ACTIONS(4230), - [anon_sym_for] = ACTIONS(4230), - [anon_sym_POUND] = ACTIONS(4230), - [anon_sym_asm] = ACTIONS(4230), - [anon_sym_AT_LBRACK] = ACTIONS(4230), - [sym___double_quote] = ACTIONS(4230), - [sym___single_quote] = ACTIONS(4230), - [sym___c_double_quote] = ACTIONS(4230), - [sym___c_single_quote] = ACTIONS(4230), - [sym___r_double_quote] = ACTIONS(4230), - [sym___r_single_quote] = ACTIONS(4230), + [ts_builtin_sym_end] = ACTIONS(4277), + [sym_identifier] = ACTIONS(4279), + [anon_sym_LF] = ACTIONS(4279), + [anon_sym_CR] = ACTIONS(4279), + [anon_sym_CR_LF] = ACTIONS(4279), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4279), + [anon_sym_LBRACE] = ACTIONS(4279), + [anon_sym_const] = ACTIONS(4279), + [anon_sym_LPAREN] = ACTIONS(4279), + [anon_sym___global] = ACTIONS(4279), + [anon_sym_type] = ACTIONS(4279), + [anon_sym_fn] = ACTIONS(4279), + [anon_sym_PLUS] = ACTIONS(4279), + [anon_sym_DASH] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4279), + [anon_sym_struct] = ACTIONS(4279), + [anon_sym_union] = ACTIONS(4279), + [anon_sym_pub] = ACTIONS(4279), + [anon_sym_mut] = ACTIONS(4279), + [anon_sym_enum] = ACTIONS(4279), + [anon_sym_interface] = ACTIONS(4279), + [anon_sym_QMARK] = ACTIONS(4279), + [anon_sym_BANG] = ACTIONS(4279), + [anon_sym_go] = ACTIONS(4279), + [anon_sym_spawn] = ACTIONS(4279), + [anon_sym_json_DOTdecode] = ACTIONS(4279), + [anon_sym_LBRACK2] = ACTIONS(4279), + [anon_sym_TILDE] = ACTIONS(4279), + [anon_sym_CARET] = ACTIONS(4279), + [anon_sym_AMP] = ACTIONS(4279), + [anon_sym_LT_DASH] = ACTIONS(4279), + [sym_none] = ACTIONS(4279), + [sym_true] = ACTIONS(4279), + [sym_false] = ACTIONS(4279), + [sym_nil] = ACTIONS(4279), + [anon_sym_if] = ACTIONS(4279), + [anon_sym_DOLLARif] = ACTIONS(4279), + [anon_sym_match] = ACTIONS(4279), + [anon_sym_select] = ACTIONS(4279), + [anon_sym_lock] = ACTIONS(4279), + [anon_sym_rlock] = ACTIONS(4279), + [anon_sym_unsafe] = ACTIONS(4279), + [anon_sym_sql] = ACTIONS(4279), + [sym_int_literal] = ACTIONS(4279), + [sym_float_literal] = ACTIONS(4279), + [sym_rune_literal] = ACTIONS(4279), + [anon_sym_AT] = ACTIONS(4279), + [anon_sym_shared] = ACTIONS(4279), + [anon_sym_map_LBRACK] = ACTIONS(4279), + [anon_sym_chan] = ACTIONS(4279), + [anon_sym_thread] = ACTIONS(4279), + [anon_sym_atomic] = ACTIONS(4279), + [anon_sym_assert] = ACTIONS(4279), + [anon_sym_defer] = ACTIONS(4279), + [anon_sym_goto] = ACTIONS(4279), + [anon_sym_break] = ACTIONS(4279), + [anon_sym_continue] = ACTIONS(4279), + [anon_sym_return] = ACTIONS(4279), + [anon_sym_DOLLARfor] = ACTIONS(4279), + [anon_sym_for] = ACTIONS(4279), + [anon_sym_POUND] = ACTIONS(4279), + [anon_sym_asm] = ACTIONS(4279), + [anon_sym_AT_LBRACK] = ACTIONS(4279), + [sym___double_quote] = ACTIONS(4279), + [sym___single_quote] = ACTIONS(4279), + [sym___c_double_quote] = ACTIONS(4279), + [sym___c_single_quote] = ACTIONS(4279), + [sym___r_double_quote] = ACTIONS(4279), + [sym___r_single_quote] = ACTIONS(4279), }, [1573] = { - [ts_builtin_sym_end] = ACTIONS(4232), - [sym_identifier] = ACTIONS(4234), - [anon_sym_LF] = ACTIONS(4234), - [anon_sym_CR] = ACTIONS(4234), - [anon_sym_CR_LF] = ACTIONS(4234), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_const] = ACTIONS(4234), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym___global] = ACTIONS(4234), - [anon_sym_type] = ACTIONS(4234), - [anon_sym_fn] = ACTIONS(4234), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_struct] = ACTIONS(4234), - [anon_sym_union] = ACTIONS(4234), - [anon_sym_pub] = ACTIONS(4234), - [anon_sym_mut] = ACTIONS(4234), - [anon_sym_enum] = ACTIONS(4234), - [anon_sym_interface] = ACTIONS(4234), - [anon_sym_QMARK] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_go] = ACTIONS(4234), - [anon_sym_spawn] = ACTIONS(4234), - [anon_sym_json_DOTdecode] = ACTIONS(4234), - [anon_sym_LBRACK2] = ACTIONS(4234), - [anon_sym_TILDE] = ACTIONS(4234), - [anon_sym_CARET] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_LT_DASH] = ACTIONS(4234), - [sym_none] = ACTIONS(4234), - [sym_true] = ACTIONS(4234), - [sym_false] = ACTIONS(4234), - [sym_nil] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_DOLLARif] = ACTIONS(4234), - [anon_sym_match] = ACTIONS(4234), - [anon_sym_select] = ACTIONS(4234), - [anon_sym_lock] = ACTIONS(4234), - [anon_sym_rlock] = ACTIONS(4234), - [anon_sym_unsafe] = ACTIONS(4234), - [anon_sym_sql] = ACTIONS(4234), - [sym_int_literal] = ACTIONS(4234), - [sym_float_literal] = ACTIONS(4234), - [sym_rune_literal] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4234), - [anon_sym_shared] = ACTIONS(4234), - [anon_sym_map_LBRACK] = ACTIONS(4234), - [anon_sym_chan] = ACTIONS(4234), - [anon_sym_thread] = ACTIONS(4234), - [anon_sym_atomic] = ACTIONS(4234), - [anon_sym_assert] = ACTIONS(4234), - [anon_sym_defer] = ACTIONS(4234), - [anon_sym_goto] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_DOLLARfor] = ACTIONS(4234), - [anon_sym_for] = ACTIONS(4234), - [anon_sym_POUND] = ACTIONS(4234), - [anon_sym_asm] = ACTIONS(4234), - [anon_sym_AT_LBRACK] = ACTIONS(4234), - [sym___double_quote] = ACTIONS(4234), - [sym___single_quote] = ACTIONS(4234), - [sym___c_double_quote] = ACTIONS(4234), - [sym___c_single_quote] = ACTIONS(4234), - [sym___r_double_quote] = ACTIONS(4234), - [sym___r_single_quote] = ACTIONS(4234), + [ts_builtin_sym_end] = ACTIONS(4281), + [sym_identifier] = ACTIONS(4283), + [anon_sym_LF] = ACTIONS(4283), + [anon_sym_CR] = ACTIONS(4283), + [anon_sym_CR_LF] = ACTIONS(4283), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4283), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_const] = ACTIONS(4283), + [anon_sym_LPAREN] = ACTIONS(4283), + [anon_sym___global] = ACTIONS(4283), + [anon_sym_type] = ACTIONS(4283), + [anon_sym_fn] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_struct] = ACTIONS(4283), + [anon_sym_union] = ACTIONS(4283), + [anon_sym_pub] = ACTIONS(4283), + [anon_sym_mut] = ACTIONS(4283), + [anon_sym_enum] = ACTIONS(4283), + [anon_sym_interface] = ACTIONS(4283), + [anon_sym_QMARK] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_go] = ACTIONS(4283), + [anon_sym_spawn] = ACTIONS(4283), + [anon_sym_json_DOTdecode] = ACTIONS(4283), + [anon_sym_LBRACK2] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_CARET] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4283), + [anon_sym_LT_DASH] = ACTIONS(4283), + [sym_none] = ACTIONS(4283), + [sym_true] = ACTIONS(4283), + [sym_false] = ACTIONS(4283), + [sym_nil] = ACTIONS(4283), + [anon_sym_if] = ACTIONS(4283), + [anon_sym_DOLLARif] = ACTIONS(4283), + [anon_sym_match] = ACTIONS(4283), + [anon_sym_select] = ACTIONS(4283), + [anon_sym_lock] = ACTIONS(4283), + [anon_sym_rlock] = ACTIONS(4283), + [anon_sym_unsafe] = ACTIONS(4283), + [anon_sym_sql] = ACTIONS(4283), + [sym_int_literal] = ACTIONS(4283), + [sym_float_literal] = ACTIONS(4283), + [sym_rune_literal] = ACTIONS(4283), + [anon_sym_AT] = ACTIONS(4283), + [anon_sym_shared] = ACTIONS(4283), + [anon_sym_map_LBRACK] = ACTIONS(4283), + [anon_sym_chan] = ACTIONS(4283), + [anon_sym_thread] = ACTIONS(4283), + [anon_sym_atomic] = ACTIONS(4283), + [anon_sym_assert] = ACTIONS(4283), + [anon_sym_defer] = ACTIONS(4283), + [anon_sym_goto] = ACTIONS(4283), + [anon_sym_break] = ACTIONS(4283), + [anon_sym_continue] = ACTIONS(4283), + [anon_sym_return] = ACTIONS(4283), + [anon_sym_DOLLARfor] = ACTIONS(4283), + [anon_sym_for] = ACTIONS(4283), + [anon_sym_POUND] = ACTIONS(4283), + [anon_sym_asm] = ACTIONS(4283), + [anon_sym_AT_LBRACK] = ACTIONS(4283), + [sym___double_quote] = ACTIONS(4283), + [sym___single_quote] = ACTIONS(4283), + [sym___c_double_quote] = ACTIONS(4283), + [sym___c_single_quote] = ACTIONS(4283), + [sym___r_double_quote] = ACTIONS(4283), + [sym___r_single_quote] = ACTIONS(4283), }, [1574] = { - [ts_builtin_sym_end] = ACTIONS(4236), - [sym_identifier] = ACTIONS(4238), - [anon_sym_LF] = ACTIONS(4238), - [anon_sym_CR] = ACTIONS(4238), - [anon_sym_CR_LF] = ACTIONS(4238), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(4238), - [anon_sym_const] = ACTIONS(4238), - [anon_sym_LPAREN] = ACTIONS(4238), - [anon_sym___global] = ACTIONS(4238), - [anon_sym_type] = ACTIONS(4238), - [anon_sym_fn] = ACTIONS(4238), - [anon_sym_PLUS] = ACTIONS(4238), - [anon_sym_DASH] = ACTIONS(4238), - [anon_sym_STAR] = ACTIONS(4238), - [anon_sym_struct] = ACTIONS(4238), - [anon_sym_union] = ACTIONS(4238), - [anon_sym_pub] = ACTIONS(4238), - [anon_sym_mut] = ACTIONS(4238), - [anon_sym_enum] = ACTIONS(4238), - [anon_sym_interface] = ACTIONS(4238), - [anon_sym_QMARK] = ACTIONS(4238), - [anon_sym_BANG] = ACTIONS(4238), - [anon_sym_go] = ACTIONS(4238), - [anon_sym_spawn] = ACTIONS(4238), - [anon_sym_json_DOTdecode] = ACTIONS(4238), - [anon_sym_LBRACK2] = ACTIONS(4238), - [anon_sym_TILDE] = ACTIONS(4238), - [anon_sym_CARET] = ACTIONS(4238), - [anon_sym_AMP] = ACTIONS(4238), - [anon_sym_LT_DASH] = ACTIONS(4238), - [sym_none] = ACTIONS(4238), - [sym_true] = ACTIONS(4238), - [sym_false] = ACTIONS(4238), - [sym_nil] = ACTIONS(4238), - [anon_sym_if] = ACTIONS(4238), - [anon_sym_DOLLARif] = ACTIONS(4238), - [anon_sym_match] = ACTIONS(4238), - [anon_sym_select] = ACTIONS(4238), - [anon_sym_lock] = ACTIONS(4238), - [anon_sym_rlock] = ACTIONS(4238), - [anon_sym_unsafe] = ACTIONS(4238), - [anon_sym_sql] = ACTIONS(4238), - [sym_int_literal] = ACTIONS(4238), - [sym_float_literal] = ACTIONS(4238), - [sym_rune_literal] = ACTIONS(4238), - [anon_sym_AT] = ACTIONS(4238), - [anon_sym_shared] = ACTIONS(4238), - [anon_sym_map_LBRACK] = ACTIONS(4238), - [anon_sym_chan] = ACTIONS(4238), - [anon_sym_thread] = ACTIONS(4238), - [anon_sym_atomic] = ACTIONS(4238), - [anon_sym_assert] = ACTIONS(4238), - [anon_sym_defer] = ACTIONS(4238), - [anon_sym_goto] = ACTIONS(4238), - [anon_sym_break] = ACTIONS(4238), - [anon_sym_continue] = ACTIONS(4238), - [anon_sym_return] = ACTIONS(4238), - [anon_sym_DOLLARfor] = ACTIONS(4238), - [anon_sym_for] = ACTIONS(4238), - [anon_sym_POUND] = ACTIONS(4238), - [anon_sym_asm] = ACTIONS(4238), - [anon_sym_AT_LBRACK] = ACTIONS(4238), - [sym___double_quote] = ACTIONS(4238), - [sym___single_quote] = ACTIONS(4238), - [sym___c_double_quote] = ACTIONS(4238), - [sym___c_single_quote] = ACTIONS(4238), - [sym___r_double_quote] = ACTIONS(4238), - [sym___r_single_quote] = ACTIONS(4238), + [ts_builtin_sym_end] = ACTIONS(4285), + [sym_identifier] = ACTIONS(4287), + [anon_sym_LF] = ACTIONS(4287), + [anon_sym_CR] = ACTIONS(4287), + [anon_sym_CR_LF] = ACTIONS(4287), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4287), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_const] = ACTIONS(4287), + [anon_sym_LPAREN] = ACTIONS(4287), + [anon_sym___global] = ACTIONS(4287), + [anon_sym_type] = ACTIONS(4287), + [anon_sym_fn] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_struct] = ACTIONS(4287), + [anon_sym_union] = ACTIONS(4287), + [anon_sym_pub] = ACTIONS(4287), + [anon_sym_mut] = ACTIONS(4287), + [anon_sym_enum] = ACTIONS(4287), + [anon_sym_interface] = ACTIONS(4287), + [anon_sym_QMARK] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_go] = ACTIONS(4287), + [anon_sym_spawn] = ACTIONS(4287), + [anon_sym_json_DOTdecode] = ACTIONS(4287), + [anon_sym_LBRACK2] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_CARET] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4287), + [anon_sym_LT_DASH] = ACTIONS(4287), + [sym_none] = ACTIONS(4287), + [sym_true] = ACTIONS(4287), + [sym_false] = ACTIONS(4287), + [sym_nil] = ACTIONS(4287), + [anon_sym_if] = ACTIONS(4287), + [anon_sym_DOLLARif] = ACTIONS(4287), + [anon_sym_match] = ACTIONS(4287), + [anon_sym_select] = ACTIONS(4287), + [anon_sym_lock] = ACTIONS(4287), + [anon_sym_rlock] = ACTIONS(4287), + [anon_sym_unsafe] = ACTIONS(4287), + [anon_sym_sql] = ACTIONS(4287), + [sym_int_literal] = ACTIONS(4287), + [sym_float_literal] = ACTIONS(4287), + [sym_rune_literal] = ACTIONS(4287), + [anon_sym_AT] = ACTIONS(4287), + [anon_sym_shared] = ACTIONS(4287), + [anon_sym_map_LBRACK] = ACTIONS(4287), + [anon_sym_chan] = ACTIONS(4287), + [anon_sym_thread] = ACTIONS(4287), + [anon_sym_atomic] = ACTIONS(4287), + [anon_sym_assert] = ACTIONS(4287), + [anon_sym_defer] = ACTIONS(4287), + [anon_sym_goto] = ACTIONS(4287), + [anon_sym_break] = ACTIONS(4287), + [anon_sym_continue] = ACTIONS(4287), + [anon_sym_return] = ACTIONS(4287), + [anon_sym_DOLLARfor] = ACTIONS(4287), + [anon_sym_for] = ACTIONS(4287), + [anon_sym_POUND] = ACTIONS(4287), + [anon_sym_asm] = ACTIONS(4287), + [anon_sym_AT_LBRACK] = ACTIONS(4287), + [sym___double_quote] = ACTIONS(4287), + [sym___single_quote] = ACTIONS(4287), + [sym___c_double_quote] = ACTIONS(4287), + [sym___c_single_quote] = ACTIONS(4287), + [sym___r_double_quote] = ACTIONS(4287), + [sym___r_single_quote] = ACTIONS(4287), }, [1575] = { - [ts_builtin_sym_end] = ACTIONS(4240), - [sym_identifier] = ACTIONS(4242), - [anon_sym_LF] = ACTIONS(4242), - [anon_sym_CR] = ACTIONS(4242), - [anon_sym_CR_LF] = ACTIONS(4242), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4242), - [anon_sym_const] = ACTIONS(4242), - [anon_sym_LPAREN] = ACTIONS(4242), - [anon_sym___global] = ACTIONS(4242), - [anon_sym_type] = ACTIONS(4242), - [anon_sym_fn] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_struct] = ACTIONS(4242), - [anon_sym_union] = ACTIONS(4242), - [anon_sym_pub] = ACTIONS(4242), - [anon_sym_mut] = ACTIONS(4242), - [anon_sym_enum] = ACTIONS(4242), - [anon_sym_interface] = ACTIONS(4242), - [anon_sym_QMARK] = ACTIONS(4242), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_go] = ACTIONS(4242), - [anon_sym_spawn] = ACTIONS(4242), - [anon_sym_json_DOTdecode] = ACTIONS(4242), - [anon_sym_LBRACK2] = ACTIONS(4242), - [anon_sym_TILDE] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_AMP] = ACTIONS(4242), - [anon_sym_LT_DASH] = ACTIONS(4242), - [sym_none] = ACTIONS(4242), - [sym_true] = ACTIONS(4242), - [sym_false] = ACTIONS(4242), - [sym_nil] = ACTIONS(4242), - [anon_sym_if] = ACTIONS(4242), - [anon_sym_DOLLARif] = ACTIONS(4242), - [anon_sym_match] = ACTIONS(4242), - [anon_sym_select] = ACTIONS(4242), - [anon_sym_lock] = ACTIONS(4242), - [anon_sym_rlock] = ACTIONS(4242), - [anon_sym_unsafe] = ACTIONS(4242), - [anon_sym_sql] = ACTIONS(4242), - [sym_int_literal] = ACTIONS(4242), - [sym_float_literal] = ACTIONS(4242), - [sym_rune_literal] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4242), - [anon_sym_shared] = ACTIONS(4242), - [anon_sym_map_LBRACK] = ACTIONS(4242), - [anon_sym_chan] = ACTIONS(4242), - [anon_sym_thread] = ACTIONS(4242), - [anon_sym_atomic] = ACTIONS(4242), - [anon_sym_assert] = ACTIONS(4242), - [anon_sym_defer] = ACTIONS(4242), - [anon_sym_goto] = ACTIONS(4242), - [anon_sym_break] = ACTIONS(4242), - [anon_sym_continue] = ACTIONS(4242), - [anon_sym_return] = ACTIONS(4242), - [anon_sym_DOLLARfor] = ACTIONS(4242), - [anon_sym_for] = ACTIONS(4242), - [anon_sym_POUND] = ACTIONS(4242), - [anon_sym_asm] = ACTIONS(4242), - [anon_sym_AT_LBRACK] = ACTIONS(4242), - [sym___double_quote] = ACTIONS(4242), - [sym___single_quote] = ACTIONS(4242), - [sym___c_double_quote] = ACTIONS(4242), - [sym___c_single_quote] = ACTIONS(4242), - [sym___r_double_quote] = ACTIONS(4242), - [sym___r_single_quote] = ACTIONS(4242), + [ts_builtin_sym_end] = ACTIONS(4289), + [sym_identifier] = ACTIONS(4291), + [anon_sym_LF] = ACTIONS(4291), + [anon_sym_CR] = ACTIONS(4291), + [anon_sym_CR_LF] = ACTIONS(4291), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4291), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_const] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym___global] = ACTIONS(4291), + [anon_sym_type] = ACTIONS(4291), + [anon_sym_fn] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4291), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_struct] = ACTIONS(4291), + [anon_sym_union] = ACTIONS(4291), + [anon_sym_pub] = ACTIONS(4291), + [anon_sym_mut] = ACTIONS(4291), + [anon_sym_enum] = ACTIONS(4291), + [anon_sym_interface] = ACTIONS(4291), + [anon_sym_QMARK] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_go] = ACTIONS(4291), + [anon_sym_spawn] = ACTIONS(4291), + [anon_sym_json_DOTdecode] = ACTIONS(4291), + [anon_sym_LBRACK2] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_CARET] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4291), + [anon_sym_LT_DASH] = ACTIONS(4291), + [sym_none] = ACTIONS(4291), + [sym_true] = ACTIONS(4291), + [sym_false] = ACTIONS(4291), + [sym_nil] = ACTIONS(4291), + [anon_sym_if] = ACTIONS(4291), + [anon_sym_DOLLARif] = ACTIONS(4291), + [anon_sym_match] = ACTIONS(4291), + [anon_sym_select] = ACTIONS(4291), + [anon_sym_lock] = ACTIONS(4291), + [anon_sym_rlock] = ACTIONS(4291), + [anon_sym_unsafe] = ACTIONS(4291), + [anon_sym_sql] = ACTIONS(4291), + [sym_int_literal] = ACTIONS(4291), + [sym_float_literal] = ACTIONS(4291), + [sym_rune_literal] = ACTIONS(4291), + [anon_sym_AT] = ACTIONS(4291), + [anon_sym_shared] = ACTIONS(4291), + [anon_sym_map_LBRACK] = ACTIONS(4291), + [anon_sym_chan] = ACTIONS(4291), + [anon_sym_thread] = ACTIONS(4291), + [anon_sym_atomic] = ACTIONS(4291), + [anon_sym_assert] = ACTIONS(4291), + [anon_sym_defer] = ACTIONS(4291), + [anon_sym_goto] = ACTIONS(4291), + [anon_sym_break] = ACTIONS(4291), + [anon_sym_continue] = ACTIONS(4291), + [anon_sym_return] = ACTIONS(4291), + [anon_sym_DOLLARfor] = ACTIONS(4291), + [anon_sym_for] = ACTIONS(4291), + [anon_sym_POUND] = ACTIONS(4291), + [anon_sym_asm] = ACTIONS(4291), + [anon_sym_AT_LBRACK] = ACTIONS(4291), + [sym___double_quote] = ACTIONS(4291), + [sym___single_quote] = ACTIONS(4291), + [sym___c_double_quote] = ACTIONS(4291), + [sym___c_single_quote] = ACTIONS(4291), + [sym___r_double_quote] = ACTIONS(4291), + [sym___r_single_quote] = ACTIONS(4291), }, [1576] = { - [ts_builtin_sym_end] = ACTIONS(4244), - [sym_identifier] = ACTIONS(4246), - [anon_sym_LF] = ACTIONS(4246), - [anon_sym_CR] = ACTIONS(4246), - [anon_sym_CR_LF] = ACTIONS(4246), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4246), - [anon_sym_const] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym___global] = ACTIONS(4246), - [anon_sym_type] = ACTIONS(4246), - [anon_sym_fn] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4246), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_struct] = ACTIONS(4246), - [anon_sym_union] = ACTIONS(4246), - [anon_sym_pub] = ACTIONS(4246), - [anon_sym_mut] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4246), - [anon_sym_interface] = ACTIONS(4246), - [anon_sym_QMARK] = ACTIONS(4246), - [anon_sym_BANG] = ACTIONS(4246), - [anon_sym_go] = ACTIONS(4246), - [anon_sym_spawn] = ACTIONS(4246), - [anon_sym_json_DOTdecode] = ACTIONS(4246), - [anon_sym_LBRACK2] = ACTIONS(4246), - [anon_sym_TILDE] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_AMP] = ACTIONS(4246), - [anon_sym_LT_DASH] = ACTIONS(4246), - [sym_none] = ACTIONS(4246), - [sym_true] = ACTIONS(4246), - [sym_false] = ACTIONS(4246), - [sym_nil] = ACTIONS(4246), - [anon_sym_if] = ACTIONS(4246), - [anon_sym_DOLLARif] = ACTIONS(4246), - [anon_sym_match] = ACTIONS(4246), - [anon_sym_select] = ACTIONS(4246), - [anon_sym_lock] = ACTIONS(4246), - [anon_sym_rlock] = ACTIONS(4246), - [anon_sym_unsafe] = ACTIONS(4246), - [anon_sym_sql] = ACTIONS(4246), - [sym_int_literal] = ACTIONS(4246), - [sym_float_literal] = ACTIONS(4246), - [sym_rune_literal] = ACTIONS(4246), - [anon_sym_AT] = ACTIONS(4246), - [anon_sym_shared] = ACTIONS(4246), - [anon_sym_map_LBRACK] = ACTIONS(4246), - [anon_sym_chan] = ACTIONS(4246), - [anon_sym_thread] = ACTIONS(4246), - [anon_sym_atomic] = ACTIONS(4246), - [anon_sym_assert] = ACTIONS(4246), - [anon_sym_defer] = ACTIONS(4246), - [anon_sym_goto] = ACTIONS(4246), - [anon_sym_break] = ACTIONS(4246), - [anon_sym_continue] = ACTIONS(4246), - [anon_sym_return] = ACTIONS(4246), - [anon_sym_DOLLARfor] = ACTIONS(4246), - [anon_sym_for] = ACTIONS(4246), - [anon_sym_POUND] = ACTIONS(4246), - [anon_sym_asm] = ACTIONS(4246), - [anon_sym_AT_LBRACK] = ACTIONS(4246), - [sym___double_quote] = ACTIONS(4246), - [sym___single_quote] = ACTIONS(4246), - [sym___c_double_quote] = ACTIONS(4246), - [sym___c_single_quote] = ACTIONS(4246), - [sym___r_double_quote] = ACTIONS(4246), - [sym___r_single_quote] = ACTIONS(4246), + [ts_builtin_sym_end] = ACTIONS(4293), + [sym_identifier] = ACTIONS(4295), + [anon_sym_LF] = ACTIONS(4295), + [anon_sym_CR] = ACTIONS(4295), + [anon_sym_CR_LF] = ACTIONS(4295), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4295), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_const] = ACTIONS(4295), + [anon_sym_LPAREN] = ACTIONS(4295), + [anon_sym___global] = ACTIONS(4295), + [anon_sym_type] = ACTIONS(4295), + [anon_sym_fn] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_struct] = ACTIONS(4295), + [anon_sym_union] = ACTIONS(4295), + [anon_sym_pub] = ACTIONS(4295), + [anon_sym_mut] = ACTIONS(4295), + [anon_sym_enum] = ACTIONS(4295), + [anon_sym_interface] = ACTIONS(4295), + [anon_sym_QMARK] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_go] = ACTIONS(4295), + [anon_sym_spawn] = ACTIONS(4295), + [anon_sym_json_DOTdecode] = ACTIONS(4295), + [anon_sym_LBRACK2] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_CARET] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4295), + [anon_sym_LT_DASH] = ACTIONS(4295), + [sym_none] = ACTIONS(4295), + [sym_true] = ACTIONS(4295), + [sym_false] = ACTIONS(4295), + [sym_nil] = ACTIONS(4295), + [anon_sym_if] = ACTIONS(4295), + [anon_sym_DOLLARif] = ACTIONS(4295), + [anon_sym_match] = ACTIONS(4295), + [anon_sym_select] = ACTIONS(4295), + [anon_sym_lock] = ACTIONS(4295), + [anon_sym_rlock] = ACTIONS(4295), + [anon_sym_unsafe] = ACTIONS(4295), + [anon_sym_sql] = ACTIONS(4295), + [sym_int_literal] = ACTIONS(4295), + [sym_float_literal] = ACTIONS(4295), + [sym_rune_literal] = ACTIONS(4295), + [anon_sym_AT] = ACTIONS(4295), + [anon_sym_shared] = ACTIONS(4295), + [anon_sym_map_LBRACK] = ACTIONS(4295), + [anon_sym_chan] = ACTIONS(4295), + [anon_sym_thread] = ACTIONS(4295), + [anon_sym_atomic] = ACTIONS(4295), + [anon_sym_assert] = ACTIONS(4295), + [anon_sym_defer] = ACTIONS(4295), + [anon_sym_goto] = ACTIONS(4295), + [anon_sym_break] = ACTIONS(4295), + [anon_sym_continue] = ACTIONS(4295), + [anon_sym_return] = ACTIONS(4295), + [anon_sym_DOLLARfor] = ACTIONS(4295), + [anon_sym_for] = ACTIONS(4295), + [anon_sym_POUND] = ACTIONS(4295), + [anon_sym_asm] = ACTIONS(4295), + [anon_sym_AT_LBRACK] = ACTIONS(4295), + [sym___double_quote] = ACTIONS(4295), + [sym___single_quote] = ACTIONS(4295), + [sym___c_double_quote] = ACTIONS(4295), + [sym___c_single_quote] = ACTIONS(4295), + [sym___r_double_quote] = ACTIONS(4295), + [sym___r_single_quote] = ACTIONS(4295), }, [1577] = { - [ts_builtin_sym_end] = ACTIONS(4248), - [sym_identifier] = ACTIONS(4250), - [anon_sym_LF] = ACTIONS(4250), - [anon_sym_CR] = ACTIONS(4250), - [anon_sym_CR_LF] = ACTIONS(4250), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4250), - [anon_sym_const] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym___global] = ACTIONS(4250), - [anon_sym_type] = ACTIONS(4250), - [anon_sym_fn] = ACTIONS(4250), - [anon_sym_PLUS] = ACTIONS(4250), - [anon_sym_DASH] = ACTIONS(4250), - [anon_sym_STAR] = ACTIONS(4250), - [anon_sym_struct] = ACTIONS(4250), - [anon_sym_union] = ACTIONS(4250), - [anon_sym_pub] = ACTIONS(4250), - [anon_sym_mut] = ACTIONS(4250), - [anon_sym_enum] = ACTIONS(4250), - [anon_sym_interface] = ACTIONS(4250), - [anon_sym_QMARK] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(4250), - [anon_sym_go] = ACTIONS(4250), - [anon_sym_spawn] = ACTIONS(4250), - [anon_sym_json_DOTdecode] = ACTIONS(4250), - [anon_sym_LBRACK2] = ACTIONS(4250), - [anon_sym_TILDE] = ACTIONS(4250), - [anon_sym_CARET] = ACTIONS(4250), - [anon_sym_AMP] = ACTIONS(4250), - [anon_sym_LT_DASH] = ACTIONS(4250), - [sym_none] = ACTIONS(4250), - [sym_true] = ACTIONS(4250), - [sym_false] = ACTIONS(4250), - [sym_nil] = ACTIONS(4250), - [anon_sym_if] = ACTIONS(4250), - [anon_sym_DOLLARif] = ACTIONS(4250), - [anon_sym_match] = ACTIONS(4250), - [anon_sym_select] = ACTIONS(4250), - [anon_sym_lock] = ACTIONS(4250), - [anon_sym_rlock] = ACTIONS(4250), - [anon_sym_unsafe] = ACTIONS(4250), - [anon_sym_sql] = ACTIONS(4250), - [sym_int_literal] = ACTIONS(4250), - [sym_float_literal] = ACTIONS(4250), - [sym_rune_literal] = ACTIONS(4250), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_shared] = ACTIONS(4250), - [anon_sym_map_LBRACK] = ACTIONS(4250), - [anon_sym_chan] = ACTIONS(4250), - [anon_sym_thread] = ACTIONS(4250), - [anon_sym_atomic] = ACTIONS(4250), - [anon_sym_assert] = ACTIONS(4250), - [anon_sym_defer] = ACTIONS(4250), - [anon_sym_goto] = ACTIONS(4250), - [anon_sym_break] = ACTIONS(4250), - [anon_sym_continue] = ACTIONS(4250), - [anon_sym_return] = ACTIONS(4250), - [anon_sym_DOLLARfor] = ACTIONS(4250), - [anon_sym_for] = ACTIONS(4250), - [anon_sym_POUND] = ACTIONS(4250), - [anon_sym_asm] = ACTIONS(4250), - [anon_sym_AT_LBRACK] = ACTIONS(4250), - [sym___double_quote] = ACTIONS(4250), - [sym___single_quote] = ACTIONS(4250), - [sym___c_double_quote] = ACTIONS(4250), - [sym___c_single_quote] = ACTIONS(4250), - [sym___r_double_quote] = ACTIONS(4250), - [sym___r_single_quote] = ACTIONS(4250), + [ts_builtin_sym_end] = ACTIONS(4297), + [sym_identifier] = ACTIONS(4299), + [anon_sym_LF] = ACTIONS(4299), + [anon_sym_CR] = ACTIONS(4299), + [anon_sym_CR_LF] = ACTIONS(4299), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4299), + [anon_sym_LBRACE] = ACTIONS(4299), + [anon_sym_const] = ACTIONS(4299), + [anon_sym_LPAREN] = ACTIONS(4299), + [anon_sym___global] = ACTIONS(4299), + [anon_sym_type] = ACTIONS(4299), + [anon_sym_fn] = ACTIONS(4299), + [anon_sym_PLUS] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_struct] = ACTIONS(4299), + [anon_sym_union] = ACTIONS(4299), + [anon_sym_pub] = ACTIONS(4299), + [anon_sym_mut] = ACTIONS(4299), + [anon_sym_enum] = ACTIONS(4299), + [anon_sym_interface] = ACTIONS(4299), + [anon_sym_QMARK] = ACTIONS(4299), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_go] = ACTIONS(4299), + [anon_sym_spawn] = ACTIONS(4299), + [anon_sym_json_DOTdecode] = ACTIONS(4299), + [anon_sym_LBRACK2] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_CARET] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4299), + [anon_sym_LT_DASH] = ACTIONS(4299), + [sym_none] = ACTIONS(4299), + [sym_true] = ACTIONS(4299), + [sym_false] = ACTIONS(4299), + [sym_nil] = ACTIONS(4299), + [anon_sym_if] = ACTIONS(4299), + [anon_sym_DOLLARif] = ACTIONS(4299), + [anon_sym_match] = ACTIONS(4299), + [anon_sym_select] = ACTIONS(4299), + [anon_sym_lock] = ACTIONS(4299), + [anon_sym_rlock] = ACTIONS(4299), + [anon_sym_unsafe] = ACTIONS(4299), + [anon_sym_sql] = ACTIONS(4299), + [sym_int_literal] = ACTIONS(4299), + [sym_float_literal] = ACTIONS(4299), + [sym_rune_literal] = ACTIONS(4299), + [anon_sym_AT] = ACTIONS(4299), + [anon_sym_shared] = ACTIONS(4299), + [anon_sym_map_LBRACK] = ACTIONS(4299), + [anon_sym_chan] = ACTIONS(4299), + [anon_sym_thread] = ACTIONS(4299), + [anon_sym_atomic] = ACTIONS(4299), + [anon_sym_assert] = ACTIONS(4299), + [anon_sym_defer] = ACTIONS(4299), + [anon_sym_goto] = ACTIONS(4299), + [anon_sym_break] = ACTIONS(4299), + [anon_sym_continue] = ACTIONS(4299), + [anon_sym_return] = ACTIONS(4299), + [anon_sym_DOLLARfor] = ACTIONS(4299), + [anon_sym_for] = ACTIONS(4299), + [anon_sym_POUND] = ACTIONS(4299), + [anon_sym_asm] = ACTIONS(4299), + [anon_sym_AT_LBRACK] = ACTIONS(4299), + [sym___double_quote] = ACTIONS(4299), + [sym___single_quote] = ACTIONS(4299), + [sym___c_double_quote] = ACTIONS(4299), + [sym___c_single_quote] = ACTIONS(4299), + [sym___r_double_quote] = ACTIONS(4299), + [sym___r_single_quote] = ACTIONS(4299), }, [1578] = { - [ts_builtin_sym_end] = ACTIONS(4252), - [sym_identifier] = ACTIONS(4254), - [anon_sym_LF] = ACTIONS(4254), - [anon_sym_CR] = ACTIONS(4254), - [anon_sym_CR_LF] = ACTIONS(4254), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4254), - [anon_sym_LBRACE] = ACTIONS(4254), - [anon_sym_const] = ACTIONS(4254), - [anon_sym_LPAREN] = ACTIONS(4254), - [anon_sym___global] = ACTIONS(4254), - [anon_sym_type] = ACTIONS(4254), - [anon_sym_fn] = ACTIONS(4254), - [anon_sym_PLUS] = ACTIONS(4254), - [anon_sym_DASH] = ACTIONS(4254), - [anon_sym_STAR] = ACTIONS(4254), - [anon_sym_struct] = ACTIONS(4254), - [anon_sym_union] = ACTIONS(4254), - [anon_sym_pub] = ACTIONS(4254), - [anon_sym_mut] = ACTIONS(4254), - [anon_sym_enum] = ACTIONS(4254), - [anon_sym_interface] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4254), - [anon_sym_BANG] = ACTIONS(4254), - [anon_sym_go] = ACTIONS(4254), - [anon_sym_spawn] = ACTIONS(4254), - [anon_sym_json_DOTdecode] = ACTIONS(4254), - [anon_sym_LBRACK2] = ACTIONS(4254), - [anon_sym_TILDE] = ACTIONS(4254), - [anon_sym_CARET] = ACTIONS(4254), - [anon_sym_AMP] = ACTIONS(4254), - [anon_sym_LT_DASH] = ACTIONS(4254), - [sym_none] = ACTIONS(4254), - [sym_true] = ACTIONS(4254), - [sym_false] = ACTIONS(4254), - [sym_nil] = ACTIONS(4254), - [anon_sym_if] = ACTIONS(4254), - [anon_sym_DOLLARif] = ACTIONS(4254), - [anon_sym_match] = ACTIONS(4254), - [anon_sym_select] = ACTIONS(4254), - [anon_sym_lock] = ACTIONS(4254), - [anon_sym_rlock] = ACTIONS(4254), - [anon_sym_unsafe] = ACTIONS(4254), - [anon_sym_sql] = ACTIONS(4254), - [sym_int_literal] = ACTIONS(4254), - [sym_float_literal] = ACTIONS(4254), - [sym_rune_literal] = ACTIONS(4254), - [anon_sym_AT] = ACTIONS(4254), - [anon_sym_shared] = ACTIONS(4254), - [anon_sym_map_LBRACK] = ACTIONS(4254), - [anon_sym_chan] = ACTIONS(4254), - [anon_sym_thread] = ACTIONS(4254), - [anon_sym_atomic] = ACTIONS(4254), - [anon_sym_assert] = ACTIONS(4254), - [anon_sym_defer] = ACTIONS(4254), - [anon_sym_goto] = ACTIONS(4254), - [anon_sym_break] = ACTIONS(4254), - [anon_sym_continue] = ACTIONS(4254), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_DOLLARfor] = ACTIONS(4254), - [anon_sym_for] = ACTIONS(4254), - [anon_sym_POUND] = ACTIONS(4254), - [anon_sym_asm] = ACTIONS(4254), - [anon_sym_AT_LBRACK] = ACTIONS(4254), - [sym___double_quote] = ACTIONS(4254), - [sym___single_quote] = ACTIONS(4254), - [sym___c_double_quote] = ACTIONS(4254), - [sym___c_single_quote] = ACTIONS(4254), - [sym___r_double_quote] = ACTIONS(4254), - [sym___r_single_quote] = ACTIONS(4254), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_LF] = ACTIONS(1858), + [anon_sym_CR] = ACTIONS(1858), + [anon_sym_CR_LF] = ACTIONS(1858), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym___global] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_mut] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_QMARK] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_go] = ACTIONS(1858), + [anon_sym_spawn] = ACTIONS(1858), + [anon_sym_json_DOTdecode] = ACTIONS(1858), + [anon_sym_LBRACK2] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_LT_DASH] = ACTIONS(1858), + [sym_none] = ACTIONS(1858), + [sym_true] = ACTIONS(1858), + [sym_false] = ACTIONS(1858), + [sym_nil] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_DOLLARif] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_select] = ACTIONS(1858), + [anon_sym_lock] = ACTIONS(1858), + [anon_sym_rlock] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_sql] = ACTIONS(1858), + [sym_int_literal] = ACTIONS(1858), + [sym_float_literal] = ACTIONS(1858), + [sym_rune_literal] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1858), + [anon_sym_shared] = ACTIONS(1858), + [anon_sym_map_LBRACK] = ACTIONS(1858), + [anon_sym_chan] = ACTIONS(1858), + [anon_sym_thread] = ACTIONS(1858), + [anon_sym_atomic] = ACTIONS(1858), + [anon_sym_assert] = ACTIONS(1858), + [anon_sym_defer] = ACTIONS(1858), + [anon_sym_goto] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_DOLLARfor] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_asm] = ACTIONS(1858), + [anon_sym_AT_LBRACK] = ACTIONS(1858), + [sym___double_quote] = ACTIONS(1858), + [sym___single_quote] = ACTIONS(1858), + [sym___c_double_quote] = ACTIONS(1858), + [sym___c_single_quote] = ACTIONS(1858), + [sym___r_double_quote] = ACTIONS(1858), + [sym___r_single_quote] = ACTIONS(1858), }, [1579] = { - [ts_builtin_sym_end] = ACTIONS(4256), - [sym_identifier] = ACTIONS(4258), - [anon_sym_LF] = ACTIONS(4258), - [anon_sym_CR] = ACTIONS(4258), - [anon_sym_CR_LF] = ACTIONS(4258), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym___global] = ACTIONS(4258), - [anon_sym_type] = ACTIONS(4258), - [anon_sym_fn] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4258), - [anon_sym_pub] = ACTIONS(4258), - [anon_sym_mut] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4258), - [anon_sym_interface] = ACTIONS(4258), - [anon_sym_QMARK] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_go] = ACTIONS(4258), - [anon_sym_spawn] = ACTIONS(4258), - [anon_sym_json_DOTdecode] = ACTIONS(4258), - [anon_sym_LBRACK2] = ACTIONS(4258), - [anon_sym_TILDE] = ACTIONS(4258), - [anon_sym_CARET] = ACTIONS(4258), - [anon_sym_AMP] = ACTIONS(4258), - [anon_sym_LT_DASH] = ACTIONS(4258), - [sym_none] = ACTIONS(4258), - [sym_true] = ACTIONS(4258), - [sym_false] = ACTIONS(4258), - [sym_nil] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_DOLLARif] = ACTIONS(4258), - [anon_sym_match] = ACTIONS(4258), - [anon_sym_select] = ACTIONS(4258), - [anon_sym_lock] = ACTIONS(4258), - [anon_sym_rlock] = ACTIONS(4258), - [anon_sym_unsafe] = ACTIONS(4258), - [anon_sym_sql] = ACTIONS(4258), - [sym_int_literal] = ACTIONS(4258), - [sym_float_literal] = ACTIONS(4258), - [sym_rune_literal] = ACTIONS(4258), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_shared] = ACTIONS(4258), - [anon_sym_map_LBRACK] = ACTIONS(4258), - [anon_sym_chan] = ACTIONS(4258), - [anon_sym_thread] = ACTIONS(4258), - [anon_sym_atomic] = ACTIONS(4258), - [anon_sym_assert] = ACTIONS(4258), - [anon_sym_defer] = ACTIONS(4258), - [anon_sym_goto] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_DOLLARfor] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_POUND] = ACTIONS(4258), - [anon_sym_asm] = ACTIONS(4258), - [anon_sym_AT_LBRACK] = ACTIONS(4258), - [sym___double_quote] = ACTIONS(4258), - [sym___single_quote] = ACTIONS(4258), - [sym___c_double_quote] = ACTIONS(4258), - [sym___c_single_quote] = ACTIONS(4258), - [sym___r_double_quote] = ACTIONS(4258), - [sym___r_single_quote] = ACTIONS(4258), + [ts_builtin_sym_end] = ACTIONS(4301), + [sym_identifier] = ACTIONS(4303), + [anon_sym_LF] = ACTIONS(4303), + [anon_sym_CR] = ACTIONS(4303), + [anon_sym_CR_LF] = ACTIONS(4303), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4303), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_const] = ACTIONS(4303), + [anon_sym_LPAREN] = ACTIONS(4303), + [anon_sym___global] = ACTIONS(4303), + [anon_sym_type] = ACTIONS(4303), + [anon_sym_fn] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_struct] = ACTIONS(4303), + [anon_sym_union] = ACTIONS(4303), + [anon_sym_pub] = ACTIONS(4303), + [anon_sym_mut] = ACTIONS(4303), + [anon_sym_enum] = ACTIONS(4303), + [anon_sym_interface] = ACTIONS(4303), + [anon_sym_QMARK] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_go] = ACTIONS(4303), + [anon_sym_spawn] = ACTIONS(4303), + [anon_sym_json_DOTdecode] = ACTIONS(4303), + [anon_sym_LBRACK2] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_CARET] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4303), + [anon_sym_LT_DASH] = ACTIONS(4303), + [sym_none] = ACTIONS(4303), + [sym_true] = ACTIONS(4303), + [sym_false] = ACTIONS(4303), + [sym_nil] = ACTIONS(4303), + [anon_sym_if] = ACTIONS(4303), + [anon_sym_DOLLARif] = ACTIONS(4303), + [anon_sym_match] = ACTIONS(4303), + [anon_sym_select] = ACTIONS(4303), + [anon_sym_lock] = ACTIONS(4303), + [anon_sym_rlock] = ACTIONS(4303), + [anon_sym_unsafe] = ACTIONS(4303), + [anon_sym_sql] = ACTIONS(4303), + [sym_int_literal] = ACTIONS(4303), + [sym_float_literal] = ACTIONS(4303), + [sym_rune_literal] = ACTIONS(4303), + [anon_sym_AT] = ACTIONS(4303), + [anon_sym_shared] = ACTIONS(4303), + [anon_sym_map_LBRACK] = ACTIONS(4303), + [anon_sym_chan] = ACTIONS(4303), + [anon_sym_thread] = ACTIONS(4303), + [anon_sym_atomic] = ACTIONS(4303), + [anon_sym_assert] = ACTIONS(4303), + [anon_sym_defer] = ACTIONS(4303), + [anon_sym_goto] = ACTIONS(4303), + [anon_sym_break] = ACTIONS(4303), + [anon_sym_continue] = ACTIONS(4303), + [anon_sym_return] = ACTIONS(4303), + [anon_sym_DOLLARfor] = ACTIONS(4303), + [anon_sym_for] = ACTIONS(4303), + [anon_sym_POUND] = ACTIONS(4303), + [anon_sym_asm] = ACTIONS(4303), + [anon_sym_AT_LBRACK] = ACTIONS(4303), + [sym___double_quote] = ACTIONS(4303), + [sym___single_quote] = ACTIONS(4303), + [sym___c_double_quote] = ACTIONS(4303), + [sym___c_single_quote] = ACTIONS(4303), + [sym___r_double_quote] = ACTIONS(4303), + [sym___r_single_quote] = ACTIONS(4303), }, [1580] = { - [ts_builtin_sym_end] = ACTIONS(4260), - [sym_identifier] = ACTIONS(4262), - [anon_sym_LF] = ACTIONS(4262), - [anon_sym_CR] = ACTIONS(4262), - [anon_sym_CR_LF] = ACTIONS(4262), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym___global] = ACTIONS(4262), - [anon_sym_type] = ACTIONS(4262), - [anon_sym_fn] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_pub] = ACTIONS(4262), - [anon_sym_mut] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_interface] = ACTIONS(4262), - [anon_sym_QMARK] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4262), - [anon_sym_go] = ACTIONS(4262), - [anon_sym_spawn] = ACTIONS(4262), - [anon_sym_json_DOTdecode] = ACTIONS(4262), - [anon_sym_LBRACK2] = ACTIONS(4262), - [anon_sym_TILDE] = ACTIONS(4262), - [anon_sym_CARET] = ACTIONS(4262), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_LT_DASH] = ACTIONS(4262), - [sym_none] = ACTIONS(4262), - [sym_true] = ACTIONS(4262), - [sym_false] = ACTIONS(4262), - [sym_nil] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_DOLLARif] = ACTIONS(4262), - [anon_sym_match] = ACTIONS(4262), - [anon_sym_select] = ACTIONS(4262), - [anon_sym_lock] = ACTIONS(4262), - [anon_sym_rlock] = ACTIONS(4262), - [anon_sym_unsafe] = ACTIONS(4262), - [anon_sym_sql] = ACTIONS(4262), - [sym_int_literal] = ACTIONS(4262), - [sym_float_literal] = ACTIONS(4262), - [sym_rune_literal] = ACTIONS(4262), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_shared] = ACTIONS(4262), - [anon_sym_map_LBRACK] = ACTIONS(4262), - [anon_sym_chan] = ACTIONS(4262), - [anon_sym_thread] = ACTIONS(4262), - [anon_sym_atomic] = ACTIONS(4262), - [anon_sym_assert] = ACTIONS(4262), - [anon_sym_defer] = ACTIONS(4262), - [anon_sym_goto] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_DOLLARfor] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4262), - [anon_sym_POUND] = ACTIONS(4262), - [anon_sym_asm] = ACTIONS(4262), - [anon_sym_AT_LBRACK] = ACTIONS(4262), - [sym___double_quote] = ACTIONS(4262), - [sym___single_quote] = ACTIONS(4262), - [sym___c_double_quote] = ACTIONS(4262), - [sym___c_single_quote] = ACTIONS(4262), - [sym___r_double_quote] = ACTIONS(4262), - [sym___r_single_quote] = ACTIONS(4262), + [ts_builtin_sym_end] = ACTIONS(4305), + [sym_identifier] = ACTIONS(4307), + [anon_sym_LF] = ACTIONS(4307), + [anon_sym_CR] = ACTIONS(4307), + [anon_sym_CR_LF] = ACTIONS(4307), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_const] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4307), + [anon_sym___global] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4307), + [anon_sym_fn] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_struct] = ACTIONS(4307), + [anon_sym_union] = ACTIONS(4307), + [anon_sym_pub] = ACTIONS(4307), + [anon_sym_mut] = ACTIONS(4307), + [anon_sym_enum] = ACTIONS(4307), + [anon_sym_interface] = ACTIONS(4307), + [anon_sym_QMARK] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_go] = ACTIONS(4307), + [anon_sym_spawn] = ACTIONS(4307), + [anon_sym_json_DOTdecode] = ACTIONS(4307), + [anon_sym_LBRACK2] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_CARET] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4307), + [anon_sym_LT_DASH] = ACTIONS(4307), + [sym_none] = ACTIONS(4307), + [sym_true] = ACTIONS(4307), + [sym_false] = ACTIONS(4307), + [sym_nil] = ACTIONS(4307), + [anon_sym_if] = ACTIONS(4307), + [anon_sym_DOLLARif] = ACTIONS(4307), + [anon_sym_match] = ACTIONS(4307), + [anon_sym_select] = ACTIONS(4307), + [anon_sym_lock] = ACTIONS(4307), + [anon_sym_rlock] = ACTIONS(4307), + [anon_sym_unsafe] = ACTIONS(4307), + [anon_sym_sql] = ACTIONS(4307), + [sym_int_literal] = ACTIONS(4307), + [sym_float_literal] = ACTIONS(4307), + [sym_rune_literal] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_shared] = ACTIONS(4307), + [anon_sym_map_LBRACK] = ACTIONS(4307), + [anon_sym_chan] = ACTIONS(4307), + [anon_sym_thread] = ACTIONS(4307), + [anon_sym_atomic] = ACTIONS(4307), + [anon_sym_assert] = ACTIONS(4307), + [anon_sym_defer] = ACTIONS(4307), + [anon_sym_goto] = ACTIONS(4307), + [anon_sym_break] = ACTIONS(4307), + [anon_sym_continue] = ACTIONS(4307), + [anon_sym_return] = ACTIONS(4307), + [anon_sym_DOLLARfor] = ACTIONS(4307), + [anon_sym_for] = ACTIONS(4307), + [anon_sym_POUND] = ACTIONS(4307), + [anon_sym_asm] = ACTIONS(4307), + [anon_sym_AT_LBRACK] = ACTIONS(4307), + [sym___double_quote] = ACTIONS(4307), + [sym___single_quote] = ACTIONS(4307), + [sym___c_double_quote] = ACTIONS(4307), + [sym___c_single_quote] = ACTIONS(4307), + [sym___r_double_quote] = ACTIONS(4307), + [sym___r_single_quote] = ACTIONS(4307), }, [1581] = { - [ts_builtin_sym_end] = ACTIONS(4264), - [sym_identifier] = ACTIONS(4266), - [anon_sym_LF] = ACTIONS(4266), - [anon_sym_CR] = ACTIONS(4266), - [anon_sym_CR_LF] = ACTIONS(4266), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym___global] = ACTIONS(4266), - [anon_sym_type] = ACTIONS(4266), - [anon_sym_fn] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_pub] = ACTIONS(4266), - [anon_sym_mut] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_interface] = ACTIONS(4266), - [anon_sym_QMARK] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4266), - [anon_sym_go] = ACTIONS(4266), - [anon_sym_spawn] = ACTIONS(4266), - [anon_sym_json_DOTdecode] = ACTIONS(4266), - [anon_sym_LBRACK2] = ACTIONS(4266), - [anon_sym_TILDE] = ACTIONS(4266), - [anon_sym_CARET] = ACTIONS(4266), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_LT_DASH] = ACTIONS(4266), - [sym_none] = ACTIONS(4266), - [sym_true] = ACTIONS(4266), - [sym_false] = ACTIONS(4266), - [sym_nil] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_DOLLARif] = ACTIONS(4266), - [anon_sym_match] = ACTIONS(4266), - [anon_sym_select] = ACTIONS(4266), - [anon_sym_lock] = ACTIONS(4266), - [anon_sym_rlock] = ACTIONS(4266), - [anon_sym_unsafe] = ACTIONS(4266), - [anon_sym_sql] = ACTIONS(4266), - [sym_int_literal] = ACTIONS(4266), - [sym_float_literal] = ACTIONS(4266), - [sym_rune_literal] = ACTIONS(4266), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_shared] = ACTIONS(4266), - [anon_sym_map_LBRACK] = ACTIONS(4266), - [anon_sym_chan] = ACTIONS(4266), - [anon_sym_thread] = ACTIONS(4266), - [anon_sym_atomic] = ACTIONS(4266), - [anon_sym_assert] = ACTIONS(4266), - [anon_sym_defer] = ACTIONS(4266), - [anon_sym_goto] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_DOLLARfor] = ACTIONS(4266), - [anon_sym_for] = ACTIONS(4266), - [anon_sym_POUND] = ACTIONS(4266), - [anon_sym_asm] = ACTIONS(4266), - [anon_sym_AT_LBRACK] = ACTIONS(4266), - [sym___double_quote] = ACTIONS(4266), - [sym___single_quote] = ACTIONS(4266), - [sym___c_double_quote] = ACTIONS(4266), - [sym___c_single_quote] = ACTIONS(4266), - [sym___r_double_quote] = ACTIONS(4266), - [sym___r_single_quote] = ACTIONS(4266), + [ts_builtin_sym_end] = ACTIONS(4309), + [sym_identifier] = ACTIONS(4311), + [anon_sym_LF] = ACTIONS(4311), + [anon_sym_CR] = ACTIONS(4311), + [anon_sym_CR_LF] = ACTIONS(4311), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_LBRACE] = ACTIONS(4311), + [anon_sym_const] = ACTIONS(4311), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym___global] = ACTIONS(4311), + [anon_sym_type] = ACTIONS(4311), + [anon_sym_fn] = ACTIONS(4311), + [anon_sym_PLUS] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_struct] = ACTIONS(4311), + [anon_sym_union] = ACTIONS(4311), + [anon_sym_pub] = ACTIONS(4311), + [anon_sym_mut] = ACTIONS(4311), + [anon_sym_enum] = ACTIONS(4311), + [anon_sym_interface] = ACTIONS(4311), + [anon_sym_QMARK] = ACTIONS(4311), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_go] = ACTIONS(4311), + [anon_sym_spawn] = ACTIONS(4311), + [anon_sym_json_DOTdecode] = ACTIONS(4311), + [anon_sym_LBRACK2] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_CARET] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4311), + [anon_sym_LT_DASH] = ACTIONS(4311), + [sym_none] = ACTIONS(4311), + [sym_true] = ACTIONS(4311), + [sym_false] = ACTIONS(4311), + [sym_nil] = ACTIONS(4311), + [anon_sym_if] = ACTIONS(4311), + [anon_sym_DOLLARif] = ACTIONS(4311), + [anon_sym_match] = ACTIONS(4311), + [anon_sym_select] = ACTIONS(4311), + [anon_sym_lock] = ACTIONS(4311), + [anon_sym_rlock] = ACTIONS(4311), + [anon_sym_unsafe] = ACTIONS(4311), + [anon_sym_sql] = ACTIONS(4311), + [sym_int_literal] = ACTIONS(4311), + [sym_float_literal] = ACTIONS(4311), + [sym_rune_literal] = ACTIONS(4311), + [anon_sym_AT] = ACTIONS(4311), + [anon_sym_shared] = ACTIONS(4311), + [anon_sym_map_LBRACK] = ACTIONS(4311), + [anon_sym_chan] = ACTIONS(4311), + [anon_sym_thread] = ACTIONS(4311), + [anon_sym_atomic] = ACTIONS(4311), + [anon_sym_assert] = ACTIONS(4311), + [anon_sym_defer] = ACTIONS(4311), + [anon_sym_goto] = ACTIONS(4311), + [anon_sym_break] = ACTIONS(4311), + [anon_sym_continue] = ACTIONS(4311), + [anon_sym_return] = ACTIONS(4311), + [anon_sym_DOLLARfor] = ACTIONS(4311), + [anon_sym_for] = ACTIONS(4311), + [anon_sym_POUND] = ACTIONS(4311), + [anon_sym_asm] = ACTIONS(4311), + [anon_sym_AT_LBRACK] = ACTIONS(4311), + [sym___double_quote] = ACTIONS(4311), + [sym___single_quote] = ACTIONS(4311), + [sym___c_double_quote] = ACTIONS(4311), + [sym___c_single_quote] = ACTIONS(4311), + [sym___r_double_quote] = ACTIONS(4311), + [sym___r_single_quote] = ACTIONS(4311), }, [1582] = { - [ts_builtin_sym_end] = ACTIONS(4268), - [sym_identifier] = ACTIONS(4270), - [anon_sym_LF] = ACTIONS(4270), - [anon_sym_CR] = ACTIONS(4270), - [anon_sym_CR_LF] = ACTIONS(4270), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym___global] = ACTIONS(4270), - [anon_sym_type] = ACTIONS(4270), - [anon_sym_fn] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_pub] = ACTIONS(4270), - [anon_sym_mut] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_interface] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_go] = ACTIONS(4270), - [anon_sym_spawn] = ACTIONS(4270), - [anon_sym_json_DOTdecode] = ACTIONS(4270), - [anon_sym_LBRACK2] = ACTIONS(4270), - [anon_sym_TILDE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_LT_DASH] = ACTIONS(4270), - [sym_none] = ACTIONS(4270), - [sym_true] = ACTIONS(4270), - [sym_false] = ACTIONS(4270), - [sym_nil] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_DOLLARif] = ACTIONS(4270), - [anon_sym_match] = ACTIONS(4270), - [anon_sym_select] = ACTIONS(4270), - [anon_sym_lock] = ACTIONS(4270), - [anon_sym_rlock] = ACTIONS(4270), - [anon_sym_unsafe] = ACTIONS(4270), - [anon_sym_sql] = ACTIONS(4270), - [sym_int_literal] = ACTIONS(4270), - [sym_float_literal] = ACTIONS(4270), - [sym_rune_literal] = ACTIONS(4270), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_shared] = ACTIONS(4270), - [anon_sym_map_LBRACK] = ACTIONS(4270), - [anon_sym_chan] = ACTIONS(4270), - [anon_sym_thread] = ACTIONS(4270), - [anon_sym_atomic] = ACTIONS(4270), - [anon_sym_assert] = ACTIONS(4270), - [anon_sym_defer] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_DOLLARfor] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_POUND] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym_AT_LBRACK] = ACTIONS(4270), - [sym___double_quote] = ACTIONS(4270), - [sym___single_quote] = ACTIONS(4270), - [sym___c_double_quote] = ACTIONS(4270), - [sym___c_single_quote] = ACTIONS(4270), - [sym___r_double_quote] = ACTIONS(4270), - [sym___r_single_quote] = ACTIONS(4270), + [ts_builtin_sym_end] = ACTIONS(4313), + [sym_identifier] = ACTIONS(4315), + [anon_sym_LF] = ACTIONS(4315), + [anon_sym_CR] = ACTIONS(4315), + [anon_sym_CR_LF] = ACTIONS(4315), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4315), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_const] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym___global] = ACTIONS(4315), + [anon_sym_type] = ACTIONS(4315), + [anon_sym_fn] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4315), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_struct] = ACTIONS(4315), + [anon_sym_union] = ACTIONS(4315), + [anon_sym_pub] = ACTIONS(4315), + [anon_sym_mut] = ACTIONS(4315), + [anon_sym_enum] = ACTIONS(4315), + [anon_sym_interface] = ACTIONS(4315), + [anon_sym_QMARK] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_go] = ACTIONS(4315), + [anon_sym_spawn] = ACTIONS(4315), + [anon_sym_json_DOTdecode] = ACTIONS(4315), + [anon_sym_LBRACK2] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_CARET] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4315), + [anon_sym_LT_DASH] = ACTIONS(4315), + [sym_none] = ACTIONS(4315), + [sym_true] = ACTIONS(4315), + [sym_false] = ACTIONS(4315), + [sym_nil] = ACTIONS(4315), + [anon_sym_if] = ACTIONS(4315), + [anon_sym_DOLLARif] = ACTIONS(4315), + [anon_sym_match] = ACTIONS(4315), + [anon_sym_select] = ACTIONS(4315), + [anon_sym_lock] = ACTIONS(4315), + [anon_sym_rlock] = ACTIONS(4315), + [anon_sym_unsafe] = ACTIONS(4315), + [anon_sym_sql] = ACTIONS(4315), + [sym_int_literal] = ACTIONS(4315), + [sym_float_literal] = ACTIONS(4315), + [sym_rune_literal] = ACTIONS(4315), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_shared] = ACTIONS(4315), + [anon_sym_map_LBRACK] = ACTIONS(4315), + [anon_sym_chan] = ACTIONS(4315), + [anon_sym_thread] = ACTIONS(4315), + [anon_sym_atomic] = ACTIONS(4315), + [anon_sym_assert] = ACTIONS(4315), + [anon_sym_defer] = ACTIONS(4315), + [anon_sym_goto] = ACTIONS(4315), + [anon_sym_break] = ACTIONS(4315), + [anon_sym_continue] = ACTIONS(4315), + [anon_sym_return] = ACTIONS(4315), + [anon_sym_DOLLARfor] = ACTIONS(4315), + [anon_sym_for] = ACTIONS(4315), + [anon_sym_POUND] = ACTIONS(4315), + [anon_sym_asm] = ACTIONS(4315), + [anon_sym_AT_LBRACK] = ACTIONS(4315), + [sym___double_quote] = ACTIONS(4315), + [sym___single_quote] = ACTIONS(4315), + [sym___c_double_quote] = ACTIONS(4315), + [sym___c_single_quote] = ACTIONS(4315), + [sym___r_double_quote] = ACTIONS(4315), + [sym___r_single_quote] = ACTIONS(4315), }, [1583] = { - [ts_builtin_sym_end] = ACTIONS(4272), - [sym_identifier] = ACTIONS(4274), - [anon_sym_LF] = ACTIONS(4274), - [anon_sym_CR] = ACTIONS(4274), - [anon_sym_CR_LF] = ACTIONS(4274), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4274), - [anon_sym_LBRACE] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym___global] = ACTIONS(4274), - [anon_sym_type] = ACTIONS(4274), - [anon_sym_fn] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4274), - [anon_sym_DASH] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_pub] = ACTIONS(4274), - [anon_sym_mut] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_interface] = ACTIONS(4274), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_BANG] = ACTIONS(4274), - [anon_sym_go] = ACTIONS(4274), - [anon_sym_spawn] = ACTIONS(4274), - [anon_sym_json_DOTdecode] = ACTIONS(4274), - [anon_sym_LBRACK2] = ACTIONS(4274), - [anon_sym_TILDE] = ACTIONS(4274), - [anon_sym_CARET] = ACTIONS(4274), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_LT_DASH] = ACTIONS(4274), - [sym_none] = ACTIONS(4274), - [sym_true] = ACTIONS(4274), - [sym_false] = ACTIONS(4274), - [sym_nil] = ACTIONS(4274), - [anon_sym_if] = ACTIONS(4274), - [anon_sym_DOLLARif] = ACTIONS(4274), - [anon_sym_match] = ACTIONS(4274), - [anon_sym_select] = ACTIONS(4274), - [anon_sym_lock] = ACTIONS(4274), - [anon_sym_rlock] = ACTIONS(4274), - [anon_sym_unsafe] = ACTIONS(4274), - [anon_sym_sql] = ACTIONS(4274), - [sym_int_literal] = ACTIONS(4274), - [sym_float_literal] = ACTIONS(4274), - [sym_rune_literal] = ACTIONS(4274), - [anon_sym_AT] = ACTIONS(4274), - [anon_sym_shared] = ACTIONS(4274), - [anon_sym_map_LBRACK] = ACTIONS(4274), - [anon_sym_chan] = ACTIONS(4274), - [anon_sym_thread] = ACTIONS(4274), - [anon_sym_atomic] = ACTIONS(4274), - [anon_sym_assert] = ACTIONS(4274), - [anon_sym_defer] = ACTIONS(4274), - [anon_sym_goto] = ACTIONS(4274), - [anon_sym_break] = ACTIONS(4274), - [anon_sym_continue] = ACTIONS(4274), - [anon_sym_return] = ACTIONS(4274), - [anon_sym_DOLLARfor] = ACTIONS(4274), - [anon_sym_for] = ACTIONS(4274), - [anon_sym_POUND] = ACTIONS(4274), - [anon_sym_asm] = ACTIONS(4274), - [anon_sym_AT_LBRACK] = ACTIONS(4274), - [sym___double_quote] = ACTIONS(4274), - [sym___single_quote] = ACTIONS(4274), - [sym___c_double_quote] = ACTIONS(4274), - [sym___c_single_quote] = ACTIONS(4274), - [sym___r_double_quote] = ACTIONS(4274), - [sym___r_single_quote] = ACTIONS(4274), + [ts_builtin_sym_end] = ACTIONS(4317), + [sym_identifier] = ACTIONS(4319), + [anon_sym_LF] = ACTIONS(4319), + [anon_sym_CR] = ACTIONS(4319), + [anon_sym_CR_LF] = ACTIONS(4319), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4319), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_const] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym___global] = ACTIONS(4319), + [anon_sym_type] = ACTIONS(4319), + [anon_sym_fn] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4319), + [anon_sym_DASH] = ACTIONS(4319), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_struct] = ACTIONS(4319), + [anon_sym_union] = ACTIONS(4319), + [anon_sym_pub] = ACTIONS(4319), + [anon_sym_mut] = ACTIONS(4319), + [anon_sym_enum] = ACTIONS(4319), + [anon_sym_interface] = ACTIONS(4319), + [anon_sym_QMARK] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_go] = ACTIONS(4319), + [anon_sym_spawn] = ACTIONS(4319), + [anon_sym_json_DOTdecode] = ACTIONS(4319), + [anon_sym_LBRACK2] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_CARET] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4319), + [anon_sym_LT_DASH] = ACTIONS(4319), + [sym_none] = ACTIONS(4319), + [sym_true] = ACTIONS(4319), + [sym_false] = ACTIONS(4319), + [sym_nil] = ACTIONS(4319), + [anon_sym_if] = ACTIONS(4319), + [anon_sym_DOLLARif] = ACTIONS(4319), + [anon_sym_match] = ACTIONS(4319), + [anon_sym_select] = ACTIONS(4319), + [anon_sym_lock] = ACTIONS(4319), + [anon_sym_rlock] = ACTIONS(4319), + [anon_sym_unsafe] = ACTIONS(4319), + [anon_sym_sql] = ACTIONS(4319), + [sym_int_literal] = ACTIONS(4319), + [sym_float_literal] = ACTIONS(4319), + [sym_rune_literal] = ACTIONS(4319), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_shared] = ACTIONS(4319), + [anon_sym_map_LBRACK] = ACTIONS(4319), + [anon_sym_chan] = ACTIONS(4319), + [anon_sym_thread] = ACTIONS(4319), + [anon_sym_atomic] = ACTIONS(4319), + [anon_sym_assert] = ACTIONS(4319), + [anon_sym_defer] = ACTIONS(4319), + [anon_sym_goto] = ACTIONS(4319), + [anon_sym_break] = ACTIONS(4319), + [anon_sym_continue] = ACTIONS(4319), + [anon_sym_return] = ACTIONS(4319), + [anon_sym_DOLLARfor] = ACTIONS(4319), + [anon_sym_for] = ACTIONS(4319), + [anon_sym_POUND] = ACTIONS(4319), + [anon_sym_asm] = ACTIONS(4319), + [anon_sym_AT_LBRACK] = ACTIONS(4319), + [sym___double_quote] = ACTIONS(4319), + [sym___single_quote] = ACTIONS(4319), + [sym___c_double_quote] = ACTIONS(4319), + [sym___c_single_quote] = ACTIONS(4319), + [sym___r_double_quote] = ACTIONS(4319), + [sym___r_single_quote] = ACTIONS(4319), }, [1584] = { - [ts_builtin_sym_end] = ACTIONS(4276), - [sym_identifier] = ACTIONS(4278), - [anon_sym_LF] = ACTIONS(4278), - [anon_sym_CR] = ACTIONS(4278), - [anon_sym_CR_LF] = ACTIONS(4278), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym___global] = ACTIONS(4278), - [anon_sym_type] = ACTIONS(4278), - [anon_sym_fn] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_pub] = ACTIONS(4278), - [anon_sym_mut] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_interface] = ACTIONS(4278), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4278), - [anon_sym_go] = ACTIONS(4278), - [anon_sym_spawn] = ACTIONS(4278), - [anon_sym_json_DOTdecode] = ACTIONS(4278), - [anon_sym_LBRACK2] = ACTIONS(4278), - [anon_sym_TILDE] = ACTIONS(4278), - [anon_sym_CARET] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_LT_DASH] = ACTIONS(4278), - [sym_none] = ACTIONS(4278), - [sym_true] = ACTIONS(4278), - [sym_false] = ACTIONS(4278), - [sym_nil] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_DOLLARif] = ACTIONS(4278), - [anon_sym_match] = ACTIONS(4278), - [anon_sym_select] = ACTIONS(4278), - [anon_sym_lock] = ACTIONS(4278), - [anon_sym_rlock] = ACTIONS(4278), - [anon_sym_unsafe] = ACTIONS(4278), - [anon_sym_sql] = ACTIONS(4278), - [sym_int_literal] = ACTIONS(4278), - [sym_float_literal] = ACTIONS(4278), - [sym_rune_literal] = ACTIONS(4278), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_shared] = ACTIONS(4278), - [anon_sym_map_LBRACK] = ACTIONS(4278), - [anon_sym_chan] = ACTIONS(4278), - [anon_sym_thread] = ACTIONS(4278), - [anon_sym_atomic] = ACTIONS(4278), - [anon_sym_assert] = ACTIONS(4278), - [anon_sym_defer] = ACTIONS(4278), - [anon_sym_goto] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_DOLLARfor] = ACTIONS(4278), - [anon_sym_for] = ACTIONS(4278), - [anon_sym_POUND] = ACTIONS(4278), - [anon_sym_asm] = ACTIONS(4278), - [anon_sym_AT_LBRACK] = ACTIONS(4278), - [sym___double_quote] = ACTIONS(4278), - [sym___single_quote] = ACTIONS(4278), - [sym___c_double_quote] = ACTIONS(4278), - [sym___c_single_quote] = ACTIONS(4278), - [sym___r_double_quote] = ACTIONS(4278), - [sym___r_single_quote] = ACTIONS(4278), + [ts_builtin_sym_end] = ACTIONS(4321), + [sym_identifier] = ACTIONS(4323), + [anon_sym_LF] = ACTIONS(4323), + [anon_sym_CR] = ACTIONS(4323), + [anon_sym_CR_LF] = ACTIONS(4323), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4323), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_const] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym___global] = ACTIONS(4323), + [anon_sym_type] = ACTIONS(4323), + [anon_sym_fn] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4323), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_struct] = ACTIONS(4323), + [anon_sym_union] = ACTIONS(4323), + [anon_sym_pub] = ACTIONS(4323), + [anon_sym_mut] = ACTIONS(4323), + [anon_sym_enum] = ACTIONS(4323), + [anon_sym_interface] = ACTIONS(4323), + [anon_sym_QMARK] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_go] = ACTIONS(4323), + [anon_sym_spawn] = ACTIONS(4323), + [anon_sym_json_DOTdecode] = ACTIONS(4323), + [anon_sym_LBRACK2] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_CARET] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4323), + [anon_sym_LT_DASH] = ACTIONS(4323), + [sym_none] = ACTIONS(4323), + [sym_true] = ACTIONS(4323), + [sym_false] = ACTIONS(4323), + [sym_nil] = ACTIONS(4323), + [anon_sym_if] = ACTIONS(4323), + [anon_sym_DOLLARif] = ACTIONS(4323), + [anon_sym_match] = ACTIONS(4323), + [anon_sym_select] = ACTIONS(4323), + [anon_sym_lock] = ACTIONS(4323), + [anon_sym_rlock] = ACTIONS(4323), + [anon_sym_unsafe] = ACTIONS(4323), + [anon_sym_sql] = ACTIONS(4323), + [sym_int_literal] = ACTIONS(4323), + [sym_float_literal] = ACTIONS(4323), + [sym_rune_literal] = ACTIONS(4323), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_shared] = ACTIONS(4323), + [anon_sym_map_LBRACK] = ACTIONS(4323), + [anon_sym_chan] = ACTIONS(4323), + [anon_sym_thread] = ACTIONS(4323), + [anon_sym_atomic] = ACTIONS(4323), + [anon_sym_assert] = ACTIONS(4323), + [anon_sym_defer] = ACTIONS(4323), + [anon_sym_goto] = ACTIONS(4323), + [anon_sym_break] = ACTIONS(4323), + [anon_sym_continue] = ACTIONS(4323), + [anon_sym_return] = ACTIONS(4323), + [anon_sym_DOLLARfor] = ACTIONS(4323), + [anon_sym_for] = ACTIONS(4323), + [anon_sym_POUND] = ACTIONS(4323), + [anon_sym_asm] = ACTIONS(4323), + [anon_sym_AT_LBRACK] = ACTIONS(4323), + [sym___double_quote] = ACTIONS(4323), + [sym___single_quote] = ACTIONS(4323), + [sym___c_double_quote] = ACTIONS(4323), + [sym___c_single_quote] = ACTIONS(4323), + [sym___r_double_quote] = ACTIONS(4323), + [sym___r_single_quote] = ACTIONS(4323), }, [1585] = { - [sym_reference_expression] = STATE(4578), - [sym_type_reference_expression] = STATE(2667), - [sym_plain_type] = STATE(2738), - [sym__plain_type_without_special] = STATE(2727), - [sym_anon_struct_type] = STATE(2728), - [sym_multi_return_type] = STATE(2727), - [sym_result_type] = STATE(2727), - [sym_option_type] = STATE(2727), - [sym_qualified_type] = STATE(2667), - [sym_fixed_array_type] = STATE(2728), - [sym_array_type] = STATE(2728), - [sym_pointer_type] = STATE(2728), - [sym_wrong_pointer_type] = STATE(2728), - [sym_map_type] = STATE(2728), - [sym_channel_type] = STATE(2728), - [sym_shared_type] = STATE(2728), - [sym_thread_type] = STATE(2728), - [sym_atomic_type] = STATE(2728), - [sym_generic_type] = STATE(2728), - [sym_function_type] = STATE(2728), - [sym_identifier] = ACTIONS(4280), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(4284), - [anon_sym_PLUS] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(561), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(561), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(557), - [anon_sym_LBRACK] = ACTIONS(557), - [anon_sym_struct] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_LBRACK2] = ACTIONS(4294), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(557), - [anon_sym_AMP_CARET] = ACTIONS(557), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_or] = ACTIONS(561), - [anon_sym_QMARK_DOT] = ACTIONS(557), - [anon_sym_POUND_LBRACK] = ACTIONS(557), - [anon_sym_is] = ACTIONS(561), - [anon_sym_BANGis] = ACTIONS(557), - [anon_sym_in] = ACTIONS(561), - [anon_sym_BANGin] = ACTIONS(557), - [anon_sym_shared] = ACTIONS(4298), - [anon_sym_map_LBRACK] = ACTIONS(4300), - [anon_sym_chan] = ACTIONS(4302), - [anon_sym_thread] = ACTIONS(4304), - [anon_sym_atomic] = ACTIONS(4306), - [anon_sym_DOT_DOT] = ACTIONS(561), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_LF] = ACTIONS(2748), + [anon_sym_CR] = ACTIONS(2748), + [anon_sym_CR_LF] = ACTIONS(2748), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym___global] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_mut] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_QMARK] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_go] = ACTIONS(2748), + [anon_sym_spawn] = ACTIONS(2748), + [anon_sym_json_DOTdecode] = ACTIONS(2748), + [anon_sym_LBRACK2] = ACTIONS(2748), + [anon_sym_TILDE] = ACTIONS(2748), + [anon_sym_CARET] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_LT_DASH] = ACTIONS(2748), + [sym_none] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_nil] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_DOLLARif] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_select] = ACTIONS(2748), + [anon_sym_lock] = ACTIONS(2748), + [anon_sym_rlock] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_sql] = ACTIONS(2748), + [sym_int_literal] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), + [sym_rune_literal] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2748), + [anon_sym_shared] = ACTIONS(2748), + [anon_sym_map_LBRACK] = ACTIONS(2748), + [anon_sym_chan] = ACTIONS(2748), + [anon_sym_thread] = ACTIONS(2748), + [anon_sym_atomic] = ACTIONS(2748), + [anon_sym_assert] = ACTIONS(2748), + [anon_sym_defer] = ACTIONS(2748), + [anon_sym_goto] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_DOLLARfor] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_asm] = ACTIONS(2748), + [anon_sym_AT_LBRACK] = ACTIONS(2748), + [sym___double_quote] = ACTIONS(2748), + [sym___single_quote] = ACTIONS(2748), + [sym___c_double_quote] = ACTIONS(2748), + [sym___c_single_quote] = ACTIONS(2748), + [sym___r_double_quote] = ACTIONS(2748), + [sym___r_single_quote] = ACTIONS(2748), }, [1586] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2359), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(615), - [anon_sym_SLASH] = ACTIONS(617), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(615), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(617), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(617), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(617), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(617), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(4325), + [sym_identifier] = ACTIONS(4327), + [anon_sym_LF] = ACTIONS(4327), + [anon_sym_CR] = ACTIONS(4327), + [anon_sym_CR_LF] = ACTIONS(4327), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym___global] = ACTIONS(4327), + [anon_sym_type] = ACTIONS(4327), + [anon_sym_fn] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_pub] = ACTIONS(4327), + [anon_sym_mut] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_interface] = ACTIONS(4327), + [anon_sym_QMARK] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_go] = ACTIONS(4327), + [anon_sym_spawn] = ACTIONS(4327), + [anon_sym_json_DOTdecode] = ACTIONS(4327), + [anon_sym_LBRACK2] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4327), + [anon_sym_CARET] = ACTIONS(4327), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_LT_DASH] = ACTIONS(4327), + [sym_none] = ACTIONS(4327), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [sym_nil] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_DOLLARif] = ACTIONS(4327), + [anon_sym_match] = ACTIONS(4327), + [anon_sym_select] = ACTIONS(4327), + [anon_sym_lock] = ACTIONS(4327), + [anon_sym_rlock] = ACTIONS(4327), + [anon_sym_unsafe] = ACTIONS(4327), + [anon_sym_sql] = ACTIONS(4327), + [sym_int_literal] = ACTIONS(4327), + [sym_float_literal] = ACTIONS(4327), + [sym_rune_literal] = ACTIONS(4327), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_shared] = ACTIONS(4327), + [anon_sym_map_LBRACK] = ACTIONS(4327), + [anon_sym_chan] = ACTIONS(4327), + [anon_sym_thread] = ACTIONS(4327), + [anon_sym_atomic] = ACTIONS(4327), + [anon_sym_assert] = ACTIONS(4327), + [anon_sym_defer] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_DOLLARfor] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_POUND] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym_AT_LBRACK] = ACTIONS(4327), + [sym___double_quote] = ACTIONS(4327), + [sym___single_quote] = ACTIONS(4327), + [sym___c_double_quote] = ACTIONS(4327), + [sym___c_single_quote] = ACTIONS(4327), + [sym___r_double_quote] = ACTIONS(4327), + [sym___r_single_quote] = ACTIONS(4327), }, [1587] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(609), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(593), + [ts_builtin_sym_end] = ACTIONS(4329), + [sym_identifier] = ACTIONS(4331), + [anon_sym_LF] = ACTIONS(4331), + [anon_sym_CR] = ACTIONS(4331), + [anon_sym_CR_LF] = ACTIONS(4331), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_LPAREN] = ACTIONS(4331), + [anon_sym___global] = ACTIONS(4331), + [anon_sym_type] = ACTIONS(4331), + [anon_sym_fn] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_pub] = ACTIONS(4331), + [anon_sym_mut] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_interface] = ACTIONS(4331), + [anon_sym_QMARK] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_go] = ACTIONS(4331), + [anon_sym_spawn] = ACTIONS(4331), + [anon_sym_json_DOTdecode] = ACTIONS(4331), + [anon_sym_LBRACK2] = ACTIONS(4331), + [anon_sym_TILDE] = ACTIONS(4331), + [anon_sym_CARET] = ACTIONS(4331), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_LT_DASH] = ACTIONS(4331), + [sym_none] = ACTIONS(4331), + [sym_true] = ACTIONS(4331), + [sym_false] = ACTIONS(4331), + [sym_nil] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_DOLLARif] = ACTIONS(4331), + [anon_sym_match] = ACTIONS(4331), + [anon_sym_select] = ACTIONS(4331), + [anon_sym_lock] = ACTIONS(4331), + [anon_sym_rlock] = ACTIONS(4331), + [anon_sym_unsafe] = ACTIONS(4331), + [anon_sym_sql] = ACTIONS(4331), + [sym_int_literal] = ACTIONS(4331), + [sym_float_literal] = ACTIONS(4331), + [sym_rune_literal] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4331), + [anon_sym_shared] = ACTIONS(4331), + [anon_sym_map_LBRACK] = ACTIONS(4331), + [anon_sym_chan] = ACTIONS(4331), + [anon_sym_thread] = ACTIONS(4331), + [anon_sym_atomic] = ACTIONS(4331), + [anon_sym_assert] = ACTIONS(4331), + [anon_sym_defer] = ACTIONS(4331), + [anon_sym_goto] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_DOLLARfor] = ACTIONS(4331), + [anon_sym_for] = ACTIONS(4331), + [anon_sym_POUND] = ACTIONS(4331), + [anon_sym_asm] = ACTIONS(4331), + [anon_sym_AT_LBRACK] = ACTIONS(4331), + [sym___double_quote] = ACTIONS(4331), + [sym___single_quote] = ACTIONS(4331), + [sym___c_double_quote] = ACTIONS(4331), + [sym___c_single_quote] = ACTIONS(4331), + [sym___r_double_quote] = ACTIONS(4331), + [sym___r_single_quote] = ACTIONS(4331), }, [1588] = { - [sym_reference_expression] = STATE(4578), - [sym_type_reference_expression] = STATE(2667), - [sym_plain_type] = STATE(2754), - [sym__plain_type_without_special] = STATE(2727), - [sym_anon_struct_type] = STATE(2728), - [sym_multi_return_type] = STATE(2727), - [sym_result_type] = STATE(2727), - [sym_option_type] = STATE(2727), - [sym_qualified_type] = STATE(2667), - [sym_fixed_array_type] = STATE(2728), - [sym_array_type] = STATE(2728), - [sym_pointer_type] = STATE(2728), - [sym_wrong_pointer_type] = STATE(2728), - [sym_map_type] = STATE(2728), - [sym_channel_type] = STATE(2728), - [sym_shared_type] = STATE(2728), - [sym_thread_type] = STATE(2728), - [sym_atomic_type] = STATE(2728), - [sym_generic_type] = STATE(2728), - [sym_function_type] = STATE(2728), - [sym_identifier] = ACTIONS(4280), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(621), - [anon_sym_fn] = ACTIONS(4284), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_struct] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_LBRACK2] = ACTIONS(4294), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(621), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(621), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(621), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(621), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(4298), - [anon_sym_map_LBRACK] = ACTIONS(4300), - [anon_sym_chan] = ACTIONS(4302), - [anon_sym_thread] = ACTIONS(4304), - [anon_sym_atomic] = ACTIONS(4306), - [anon_sym_DOT_DOT] = ACTIONS(621), + [ts_builtin_sym_end] = ACTIONS(4333), + [sym_identifier] = ACTIONS(4335), + [anon_sym_LF] = ACTIONS(4335), + [anon_sym_CR] = ACTIONS(4335), + [anon_sym_CR_LF] = ACTIONS(4335), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_LPAREN] = ACTIONS(4335), + [anon_sym___global] = ACTIONS(4335), + [anon_sym_type] = ACTIONS(4335), + [anon_sym_fn] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_pub] = ACTIONS(4335), + [anon_sym_mut] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_interface] = ACTIONS(4335), + [anon_sym_QMARK] = ACTIONS(4335), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_go] = ACTIONS(4335), + [anon_sym_spawn] = ACTIONS(4335), + [anon_sym_json_DOTdecode] = ACTIONS(4335), + [anon_sym_LBRACK2] = ACTIONS(4335), + [anon_sym_TILDE] = ACTIONS(4335), + [anon_sym_CARET] = ACTIONS(4335), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_LT_DASH] = ACTIONS(4335), + [sym_none] = ACTIONS(4335), + [sym_true] = ACTIONS(4335), + [sym_false] = ACTIONS(4335), + [sym_nil] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_DOLLARif] = ACTIONS(4335), + [anon_sym_match] = ACTIONS(4335), + [anon_sym_select] = ACTIONS(4335), + [anon_sym_lock] = ACTIONS(4335), + [anon_sym_rlock] = ACTIONS(4335), + [anon_sym_unsafe] = ACTIONS(4335), + [anon_sym_sql] = ACTIONS(4335), + [sym_int_literal] = ACTIONS(4335), + [sym_float_literal] = ACTIONS(4335), + [sym_rune_literal] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4335), + [anon_sym_shared] = ACTIONS(4335), + [anon_sym_map_LBRACK] = ACTIONS(4335), + [anon_sym_chan] = ACTIONS(4335), + [anon_sym_thread] = ACTIONS(4335), + [anon_sym_atomic] = ACTIONS(4335), + [anon_sym_assert] = ACTIONS(4335), + [anon_sym_defer] = ACTIONS(4335), + [anon_sym_goto] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_DOLLARfor] = ACTIONS(4335), + [anon_sym_for] = ACTIONS(4335), + [anon_sym_POUND] = ACTIONS(4335), + [anon_sym_asm] = ACTIONS(4335), + [anon_sym_AT_LBRACK] = ACTIONS(4335), + [sym___double_quote] = ACTIONS(4335), + [sym___single_quote] = ACTIONS(4335), + [sym___c_double_quote] = ACTIONS(4335), + [sym___c_single_quote] = ACTIONS(4335), + [sym___r_double_quote] = ACTIONS(4335), + [sym___r_single_quote] = ACTIONS(4335), }, [1589] = { - [sym_reference_expression] = STATE(4578), - [sym_type_reference_expression] = STATE(2667), - [sym_plain_type] = STATE(2750), - [sym__plain_type_without_special] = STATE(2727), - [sym_anon_struct_type] = STATE(2728), - [sym_multi_return_type] = STATE(2727), - [sym_result_type] = STATE(2727), - [sym_option_type] = STATE(2727), - [sym_qualified_type] = STATE(2667), - [sym_fixed_array_type] = STATE(2728), - [sym_array_type] = STATE(2728), - [sym_pointer_type] = STATE(2728), - [sym_wrong_pointer_type] = STATE(2728), - [sym_map_type] = STATE(2728), - [sym_channel_type] = STATE(2728), - [sym_shared_type] = STATE(2728), - [sym_thread_type] = STATE(2728), - [sym_atomic_type] = STATE(2728), - [sym_generic_type] = STATE(2728), - [sym_function_type] = STATE(2728), - [sym_identifier] = ACTIONS(4280), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(4284), - [anon_sym_PLUS] = ACTIONS(613), - [anon_sym_DASH] = ACTIONS(613), - [anon_sym_STAR] = ACTIONS(4286), - [anon_sym_SLASH] = ACTIONS(613), - [anon_sym_PERCENT] = ACTIONS(611), - [anon_sym_LT] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), - [anon_sym_BANG_EQ] = ACTIONS(611), - [anon_sym_LT_EQ] = ACTIONS(611), - [anon_sym_GT_EQ] = ACTIONS(611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(611), - [anon_sym_LBRACK] = ACTIONS(611), - [anon_sym_struct] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(611), - [anon_sym_DASH_DASH] = ACTIONS(611), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_LBRACK2] = ACTIONS(4294), - [anon_sym_CARET] = ACTIONS(611), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_LT_LT] = ACTIONS(611), - [anon_sym_GT_GT] = ACTIONS(613), - [anon_sym_GT_GT_GT] = ACTIONS(611), - [anon_sym_AMP_CARET] = ACTIONS(611), - [anon_sym_AMP_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(611), - [anon_sym_or] = ACTIONS(613), - [anon_sym_QMARK_DOT] = ACTIONS(611), - [anon_sym_POUND_LBRACK] = ACTIONS(611), - [anon_sym_is] = ACTIONS(613), - [anon_sym_BANGis] = ACTIONS(611), - [anon_sym_in] = ACTIONS(613), - [anon_sym_BANGin] = ACTIONS(611), - [anon_sym_shared] = ACTIONS(4298), - [anon_sym_map_LBRACK] = ACTIONS(4300), - [anon_sym_chan] = ACTIONS(4302), - [anon_sym_thread] = ACTIONS(4304), - [anon_sym_atomic] = ACTIONS(4306), - [anon_sym_DOT_DOT] = ACTIONS(613), + [ts_builtin_sym_end] = ACTIONS(4337), + [sym_identifier] = ACTIONS(4339), + [anon_sym_LF] = ACTIONS(4339), + [anon_sym_CR] = ACTIONS(4339), + [anon_sym_CR_LF] = ACTIONS(4339), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym___global] = ACTIONS(4339), + [anon_sym_type] = ACTIONS(4339), + [anon_sym_fn] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_pub] = ACTIONS(4339), + [anon_sym_mut] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_interface] = ACTIONS(4339), + [anon_sym_QMARK] = ACTIONS(4339), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_go] = ACTIONS(4339), + [anon_sym_spawn] = ACTIONS(4339), + [anon_sym_json_DOTdecode] = ACTIONS(4339), + [anon_sym_LBRACK2] = ACTIONS(4339), + [anon_sym_TILDE] = ACTIONS(4339), + [anon_sym_CARET] = ACTIONS(4339), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_LT_DASH] = ACTIONS(4339), + [sym_none] = ACTIONS(4339), + [sym_true] = ACTIONS(4339), + [sym_false] = ACTIONS(4339), + [sym_nil] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_DOLLARif] = ACTIONS(4339), + [anon_sym_match] = ACTIONS(4339), + [anon_sym_select] = ACTIONS(4339), + [anon_sym_lock] = ACTIONS(4339), + [anon_sym_rlock] = ACTIONS(4339), + [anon_sym_unsafe] = ACTIONS(4339), + [anon_sym_sql] = ACTIONS(4339), + [sym_int_literal] = ACTIONS(4339), + [sym_float_literal] = ACTIONS(4339), + [sym_rune_literal] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4339), + [anon_sym_shared] = ACTIONS(4339), + [anon_sym_map_LBRACK] = ACTIONS(4339), + [anon_sym_chan] = ACTIONS(4339), + [anon_sym_thread] = ACTIONS(4339), + [anon_sym_atomic] = ACTIONS(4339), + [anon_sym_assert] = ACTIONS(4339), + [anon_sym_defer] = ACTIONS(4339), + [anon_sym_goto] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_DOLLARfor] = ACTIONS(4339), + [anon_sym_for] = ACTIONS(4339), + [anon_sym_POUND] = ACTIONS(4339), + [anon_sym_asm] = ACTIONS(4339), + [anon_sym_AT_LBRACK] = ACTIONS(4339), + [sym___double_quote] = ACTIONS(4339), + [sym___single_quote] = ACTIONS(4339), + [sym___c_double_quote] = ACTIONS(4339), + [sym___c_single_quote] = ACTIONS(4339), + [sym___r_double_quote] = ACTIONS(4339), + [sym___r_single_quote] = ACTIONS(4339), }, [1590] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2348), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(4310), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4312), - [anon_sym_fn] = ACTIONS(4310), - [anon_sym_PLUS] = ACTIONS(4312), - [anon_sym_DASH] = ACTIONS(4312), - [anon_sym_STAR] = ACTIONS(4312), - [anon_sym_struct] = ACTIONS(4310), - [anon_sym_mut] = ACTIONS(4310), - [anon_sym_QMARK] = ACTIONS(4312), - [anon_sym_BANG] = ACTIONS(4312), - [anon_sym_go] = ACTIONS(4310), - [anon_sym_spawn] = ACTIONS(4310), - [anon_sym_json_DOTdecode] = ACTIONS(4312), - [anon_sym_LBRACK2] = ACTIONS(4312), - [anon_sym_TILDE] = ACTIONS(4312), - [anon_sym_CARET] = ACTIONS(4312), - [anon_sym_AMP] = ACTIONS(4312), - [anon_sym_LT_DASH] = ACTIONS(4312), - [sym_none] = ACTIONS(4310), - [sym_true] = ACTIONS(4310), - [sym_false] = ACTIONS(4310), - [sym_nil] = ACTIONS(4310), - [anon_sym_if] = ACTIONS(4310), - [anon_sym_DOLLARif] = ACTIONS(4310), - [anon_sym_match] = ACTIONS(4310), - [anon_sym_select] = ACTIONS(4310), - [anon_sym_lock] = ACTIONS(4310), - [anon_sym_rlock] = ACTIONS(4310), - [anon_sym_unsafe] = ACTIONS(4310), - [anon_sym_sql] = ACTIONS(4310), - [sym_int_literal] = ACTIONS(4310), - [sym_float_literal] = ACTIONS(4312), - [sym_rune_literal] = ACTIONS(4312), - [anon_sym_AT] = ACTIONS(4310), - [anon_sym_shared] = ACTIONS(4310), - [anon_sym_map_LBRACK] = ACTIONS(4312), - [anon_sym_chan] = ACTIONS(4310), - [anon_sym_thread] = ACTIONS(4310), - [anon_sym_atomic] = ACTIONS(4310), - [sym___double_quote] = ACTIONS(4312), - [sym___single_quote] = ACTIONS(4312), - [sym___c_double_quote] = ACTIONS(4312), - [sym___c_single_quote] = ACTIONS(4312), - [sym___r_double_quote] = ACTIONS(4312), - [sym___r_single_quote] = ACTIONS(4312), + [ts_builtin_sym_end] = ACTIONS(4341), + [sym_identifier] = ACTIONS(4343), + [anon_sym_LF] = ACTIONS(4343), + [anon_sym_CR] = ACTIONS(4343), + [anon_sym_CR_LF] = ACTIONS(4343), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_LPAREN] = ACTIONS(4343), + [anon_sym___global] = ACTIONS(4343), + [anon_sym_type] = ACTIONS(4343), + [anon_sym_fn] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_pub] = ACTIONS(4343), + [anon_sym_mut] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_interface] = ACTIONS(4343), + [anon_sym_QMARK] = ACTIONS(4343), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_go] = ACTIONS(4343), + [anon_sym_spawn] = ACTIONS(4343), + [anon_sym_json_DOTdecode] = ACTIONS(4343), + [anon_sym_LBRACK2] = ACTIONS(4343), + [anon_sym_TILDE] = ACTIONS(4343), + [anon_sym_CARET] = ACTIONS(4343), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_LT_DASH] = ACTIONS(4343), + [sym_none] = ACTIONS(4343), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_nil] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_DOLLARif] = ACTIONS(4343), + [anon_sym_match] = ACTIONS(4343), + [anon_sym_select] = ACTIONS(4343), + [anon_sym_lock] = ACTIONS(4343), + [anon_sym_rlock] = ACTIONS(4343), + [anon_sym_unsafe] = ACTIONS(4343), + [anon_sym_sql] = ACTIONS(4343), + [sym_int_literal] = ACTIONS(4343), + [sym_float_literal] = ACTIONS(4343), + [sym_rune_literal] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4343), + [anon_sym_shared] = ACTIONS(4343), + [anon_sym_map_LBRACK] = ACTIONS(4343), + [anon_sym_chan] = ACTIONS(4343), + [anon_sym_thread] = ACTIONS(4343), + [anon_sym_atomic] = ACTIONS(4343), + [anon_sym_assert] = ACTIONS(4343), + [anon_sym_defer] = ACTIONS(4343), + [anon_sym_goto] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_DOLLARfor] = ACTIONS(4343), + [anon_sym_for] = ACTIONS(4343), + [anon_sym_POUND] = ACTIONS(4343), + [anon_sym_asm] = ACTIONS(4343), + [anon_sym_AT_LBRACK] = ACTIONS(4343), + [sym___double_quote] = ACTIONS(4343), + [sym___single_quote] = ACTIONS(4343), + [sym___c_double_quote] = ACTIONS(4343), + [sym___c_single_quote] = ACTIONS(4343), + [sym___r_double_quote] = ACTIONS(4343), + [sym___r_single_quote] = ACTIONS(4343), }, [1591] = { - [ts_builtin_sym_end] = ACTIONS(4314), - [sym_identifier] = ACTIONS(4316), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4316), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_LBRACE] = ACTIONS(4314), - [anon_sym_const] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4314), - [anon_sym___global] = ACTIONS(4316), - [anon_sym_type] = ACTIONS(4316), - [anon_sym_fn] = ACTIONS(4316), - [anon_sym_PLUS] = ACTIONS(4314), - [anon_sym_DASH] = ACTIONS(4314), - [anon_sym_STAR] = ACTIONS(4314), - [anon_sym_struct] = ACTIONS(4316), - [anon_sym_union] = ACTIONS(4316), - [anon_sym_pub] = ACTIONS(4316), - [anon_sym_mut] = ACTIONS(4316), - [anon_sym_enum] = ACTIONS(4316), - [anon_sym_interface] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4314), - [anon_sym_BANG] = ACTIONS(4314), - [anon_sym_go] = ACTIONS(4316), - [anon_sym_spawn] = ACTIONS(4316), - [anon_sym_json_DOTdecode] = ACTIONS(4314), - [anon_sym_LBRACK2] = ACTIONS(4314), - [anon_sym_TILDE] = ACTIONS(4314), - [anon_sym_CARET] = ACTIONS(4314), - [anon_sym_AMP] = ACTIONS(4314), - [anon_sym_LT_DASH] = ACTIONS(4314), - [sym_none] = ACTIONS(4316), - [sym_true] = ACTIONS(4316), - [sym_false] = ACTIONS(4316), - [sym_nil] = ACTIONS(4316), - [anon_sym_if] = ACTIONS(4316), - [anon_sym_DOLLARif] = ACTIONS(4316), - [anon_sym_match] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_lock] = ACTIONS(4316), - [anon_sym_rlock] = ACTIONS(4316), - [anon_sym_unsafe] = ACTIONS(4316), - [anon_sym_sql] = ACTIONS(4316), - [sym_int_literal] = ACTIONS(4316), - [sym_float_literal] = ACTIONS(4314), - [sym_rune_literal] = ACTIONS(4314), - [anon_sym_AT] = ACTIONS(4316), - [anon_sym_shared] = ACTIONS(4316), - [anon_sym_map_LBRACK] = ACTIONS(4314), - [anon_sym_chan] = ACTIONS(4316), - [anon_sym_thread] = ACTIONS(4316), - [anon_sym_atomic] = ACTIONS(4316), - [anon_sym_assert] = ACTIONS(4316), - [anon_sym_defer] = ACTIONS(4316), - [anon_sym_goto] = ACTIONS(4316), - [anon_sym_break] = ACTIONS(4316), - [anon_sym_continue] = ACTIONS(4316), - [anon_sym_return] = ACTIONS(4316), - [anon_sym_DOLLARfor] = ACTIONS(4316), - [anon_sym_for] = ACTIONS(4316), - [anon_sym_POUND] = ACTIONS(4314), - [anon_sym_asm] = ACTIONS(4316), - [anon_sym_AT_LBRACK] = ACTIONS(4314), - [sym___double_quote] = ACTIONS(4314), - [sym___single_quote] = ACTIONS(4314), - [sym___c_double_quote] = ACTIONS(4314), - [sym___c_single_quote] = ACTIONS(4314), - [sym___r_double_quote] = ACTIONS(4314), - [sym___r_single_quote] = ACTIONS(4314), + [ts_builtin_sym_end] = ACTIONS(4345), + [sym_identifier] = ACTIONS(4347), + [anon_sym_LF] = ACTIONS(4347), + [anon_sym_CR] = ACTIONS(4347), + [anon_sym_CR_LF] = ACTIONS(4347), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym___global] = ACTIONS(4347), + [anon_sym_type] = ACTIONS(4347), + [anon_sym_fn] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_pub] = ACTIONS(4347), + [anon_sym_mut] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_interface] = ACTIONS(4347), + [anon_sym_QMARK] = ACTIONS(4347), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_go] = ACTIONS(4347), + [anon_sym_spawn] = ACTIONS(4347), + [anon_sym_json_DOTdecode] = ACTIONS(4347), + [anon_sym_LBRACK2] = ACTIONS(4347), + [anon_sym_TILDE] = ACTIONS(4347), + [anon_sym_CARET] = ACTIONS(4347), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_LT_DASH] = ACTIONS(4347), + [sym_none] = ACTIONS(4347), + [sym_true] = ACTIONS(4347), + [sym_false] = ACTIONS(4347), + [sym_nil] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_DOLLARif] = ACTIONS(4347), + [anon_sym_match] = ACTIONS(4347), + [anon_sym_select] = ACTIONS(4347), + [anon_sym_lock] = ACTIONS(4347), + [anon_sym_rlock] = ACTIONS(4347), + [anon_sym_unsafe] = ACTIONS(4347), + [anon_sym_sql] = ACTIONS(4347), + [sym_int_literal] = ACTIONS(4347), + [sym_float_literal] = ACTIONS(4347), + [sym_rune_literal] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_shared] = ACTIONS(4347), + [anon_sym_map_LBRACK] = ACTIONS(4347), + [anon_sym_chan] = ACTIONS(4347), + [anon_sym_thread] = ACTIONS(4347), + [anon_sym_atomic] = ACTIONS(4347), + [anon_sym_assert] = ACTIONS(4347), + [anon_sym_defer] = ACTIONS(4347), + [anon_sym_goto] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_DOLLARfor] = ACTIONS(4347), + [anon_sym_for] = ACTIONS(4347), + [anon_sym_POUND] = ACTIONS(4347), + [anon_sym_asm] = ACTIONS(4347), + [anon_sym_AT_LBRACK] = ACTIONS(4347), + [sym___double_quote] = ACTIONS(4347), + [sym___single_quote] = ACTIONS(4347), + [sym___c_double_quote] = ACTIONS(4347), + [sym___c_single_quote] = ACTIONS(4347), + [sym___r_double_quote] = ACTIONS(4347), + [sym___r_single_quote] = ACTIONS(4347), }, [1592] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), + [ts_builtin_sym_end] = ACTIONS(4349), + [sym_identifier] = ACTIONS(4351), + [anon_sym_LF] = ACTIONS(4351), + [anon_sym_CR] = ACTIONS(4351), + [anon_sym_CR_LF] = ACTIONS(4351), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_LBRACE] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym___global] = ACTIONS(4351), + [anon_sym_type] = ACTIONS(4351), + [anon_sym_fn] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_pub] = ACTIONS(4351), + [anon_sym_mut] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_interface] = ACTIONS(4351), + [anon_sym_QMARK] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_go] = ACTIONS(4351), + [anon_sym_spawn] = ACTIONS(4351), + [anon_sym_json_DOTdecode] = ACTIONS(4351), + [anon_sym_LBRACK2] = ACTIONS(4351), + [anon_sym_TILDE] = ACTIONS(4351), + [anon_sym_CARET] = ACTIONS(4351), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_LT_DASH] = ACTIONS(4351), + [sym_none] = ACTIONS(4351), + [sym_true] = ACTIONS(4351), + [sym_false] = ACTIONS(4351), + [sym_nil] = ACTIONS(4351), + [anon_sym_if] = ACTIONS(4351), + [anon_sym_DOLLARif] = ACTIONS(4351), + [anon_sym_match] = ACTIONS(4351), + [anon_sym_select] = ACTIONS(4351), + [anon_sym_lock] = ACTIONS(4351), + [anon_sym_rlock] = ACTIONS(4351), + [anon_sym_unsafe] = ACTIONS(4351), + [anon_sym_sql] = ACTIONS(4351), + [sym_int_literal] = ACTIONS(4351), + [sym_float_literal] = ACTIONS(4351), + [sym_rune_literal] = ACTIONS(4351), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_shared] = ACTIONS(4351), + [anon_sym_map_LBRACK] = ACTIONS(4351), + [anon_sym_chan] = ACTIONS(4351), + [anon_sym_thread] = ACTIONS(4351), + [anon_sym_atomic] = ACTIONS(4351), + [anon_sym_assert] = ACTIONS(4351), + [anon_sym_defer] = ACTIONS(4351), + [anon_sym_goto] = ACTIONS(4351), + [anon_sym_break] = ACTIONS(4351), + [anon_sym_continue] = ACTIONS(4351), + [anon_sym_return] = ACTIONS(4351), + [anon_sym_DOLLARfor] = ACTIONS(4351), + [anon_sym_for] = ACTIONS(4351), + [anon_sym_POUND] = ACTIONS(4351), + [anon_sym_asm] = ACTIONS(4351), + [anon_sym_AT_LBRACK] = ACTIONS(4351), + [sym___double_quote] = ACTIONS(4351), + [sym___single_quote] = ACTIONS(4351), + [sym___c_double_quote] = ACTIONS(4351), + [sym___c_single_quote] = ACTIONS(4351), + [sym___r_double_quote] = ACTIONS(4351), + [sym___r_single_quote] = ACTIONS(4351), + }, + [1593] = { + [ts_builtin_sym_end] = ACTIONS(4353), + [sym_identifier] = ACTIONS(4355), + [anon_sym_LF] = ACTIONS(4355), + [anon_sym_CR] = ACTIONS(4355), + [anon_sym_CR_LF] = ACTIONS(4355), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4355), + [anon_sym_LBRACE] = ACTIONS(4355), + [anon_sym_const] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym___global] = ACTIONS(4355), + [anon_sym_type] = ACTIONS(4355), + [anon_sym_fn] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4355), + [anon_sym_DASH] = ACTIONS(4355), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_struct] = ACTIONS(4355), + [anon_sym_union] = ACTIONS(4355), + [anon_sym_pub] = ACTIONS(4355), + [anon_sym_mut] = ACTIONS(4355), + [anon_sym_enum] = ACTIONS(4355), + [anon_sym_interface] = ACTIONS(4355), + [anon_sym_QMARK] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4355), + [anon_sym_go] = ACTIONS(4355), + [anon_sym_spawn] = ACTIONS(4355), + [anon_sym_json_DOTdecode] = ACTIONS(4355), + [anon_sym_LBRACK2] = ACTIONS(4355), + [anon_sym_TILDE] = ACTIONS(4355), + [anon_sym_CARET] = ACTIONS(4355), + [anon_sym_AMP] = ACTIONS(4355), + [anon_sym_LT_DASH] = ACTIONS(4355), + [sym_none] = ACTIONS(4355), + [sym_true] = ACTIONS(4355), + [sym_false] = ACTIONS(4355), + [sym_nil] = ACTIONS(4355), + [anon_sym_if] = ACTIONS(4355), + [anon_sym_DOLLARif] = ACTIONS(4355), + [anon_sym_match] = ACTIONS(4355), + [anon_sym_select] = ACTIONS(4355), + [anon_sym_lock] = ACTIONS(4355), + [anon_sym_rlock] = ACTIONS(4355), + [anon_sym_unsafe] = ACTIONS(4355), + [anon_sym_sql] = ACTIONS(4355), + [sym_int_literal] = ACTIONS(4355), + [sym_float_literal] = ACTIONS(4355), + [sym_rune_literal] = ACTIONS(4355), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_shared] = ACTIONS(4355), + [anon_sym_map_LBRACK] = ACTIONS(4355), + [anon_sym_chan] = ACTIONS(4355), + [anon_sym_thread] = ACTIONS(4355), + [anon_sym_atomic] = ACTIONS(4355), + [anon_sym_assert] = ACTIONS(4355), + [anon_sym_defer] = ACTIONS(4355), + [anon_sym_goto] = ACTIONS(4355), + [anon_sym_break] = ACTIONS(4355), + [anon_sym_continue] = ACTIONS(4355), + [anon_sym_return] = ACTIONS(4355), + [anon_sym_DOLLARfor] = ACTIONS(4355), + [anon_sym_for] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(4355), + [anon_sym_asm] = ACTIONS(4355), + [anon_sym_AT_LBRACK] = ACTIONS(4355), + [sym___double_quote] = ACTIONS(4355), + [sym___single_quote] = ACTIONS(4355), + [sym___c_double_quote] = ACTIONS(4355), + [sym___c_single_quote] = ACTIONS(4355), + [sym___r_double_quote] = ACTIONS(4355), + [sym___r_single_quote] = ACTIONS(4355), + }, + [1594] = { + [ts_builtin_sym_end] = ACTIONS(4357), + [sym_identifier] = ACTIONS(4359), + [anon_sym_LF] = ACTIONS(4359), + [anon_sym_CR] = ACTIONS(4359), + [anon_sym_CR_LF] = ACTIONS(4359), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4359), + [anon_sym_const] = ACTIONS(4359), + [anon_sym_LPAREN] = ACTIONS(4359), + [anon_sym___global] = ACTIONS(4359), + [anon_sym_type] = ACTIONS(4359), + [anon_sym_fn] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_struct] = ACTIONS(4359), + [anon_sym_union] = ACTIONS(4359), + [anon_sym_pub] = ACTIONS(4359), + [anon_sym_mut] = ACTIONS(4359), + [anon_sym_enum] = ACTIONS(4359), + [anon_sym_interface] = ACTIONS(4359), + [anon_sym_QMARK] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_go] = ACTIONS(4359), + [anon_sym_spawn] = ACTIONS(4359), + [anon_sym_json_DOTdecode] = ACTIONS(4359), + [anon_sym_LBRACK2] = ACTIONS(4359), + [anon_sym_TILDE] = ACTIONS(4359), + [anon_sym_CARET] = ACTIONS(4359), + [anon_sym_AMP] = ACTIONS(4359), + [anon_sym_LT_DASH] = ACTIONS(4359), + [sym_none] = ACTIONS(4359), + [sym_true] = ACTIONS(4359), + [sym_false] = ACTIONS(4359), + [sym_nil] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_DOLLARif] = ACTIONS(4359), + [anon_sym_match] = ACTIONS(4359), + [anon_sym_select] = ACTIONS(4359), + [anon_sym_lock] = ACTIONS(4359), + [anon_sym_rlock] = ACTIONS(4359), + [anon_sym_unsafe] = ACTIONS(4359), + [anon_sym_sql] = ACTIONS(4359), + [sym_int_literal] = ACTIONS(4359), + [sym_float_literal] = ACTIONS(4359), + [sym_rune_literal] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4359), + [anon_sym_shared] = ACTIONS(4359), + [anon_sym_map_LBRACK] = ACTIONS(4359), + [anon_sym_chan] = ACTIONS(4359), + [anon_sym_thread] = ACTIONS(4359), + [anon_sym_atomic] = ACTIONS(4359), + [anon_sym_assert] = ACTIONS(4359), + [anon_sym_defer] = ACTIONS(4359), + [anon_sym_goto] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_DOLLARfor] = ACTIONS(4359), + [anon_sym_for] = ACTIONS(4359), + [anon_sym_POUND] = ACTIONS(4359), + [anon_sym_asm] = ACTIONS(4359), + [anon_sym_AT_LBRACK] = ACTIONS(4359), + [sym___double_quote] = ACTIONS(4359), + [sym___single_quote] = ACTIONS(4359), + [sym___c_double_quote] = ACTIONS(4359), + [sym___c_single_quote] = ACTIONS(4359), + [sym___r_double_quote] = ACTIONS(4359), + [sym___r_single_quote] = ACTIONS(4359), + }, + [1595] = { + [ts_builtin_sym_end] = ACTIONS(4361), + [sym_identifier] = ACTIONS(4363), + [anon_sym_LF] = ACTIONS(4363), + [anon_sym_CR] = ACTIONS(4363), + [anon_sym_CR_LF] = ACTIONS(4363), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4363), + [anon_sym_const] = ACTIONS(4363), + [anon_sym_LPAREN] = ACTIONS(4363), + [anon_sym___global] = ACTIONS(4363), + [anon_sym_type] = ACTIONS(4363), + [anon_sym_fn] = ACTIONS(4363), + [anon_sym_PLUS] = ACTIONS(4363), + [anon_sym_DASH] = ACTIONS(4363), + [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_struct] = ACTIONS(4363), + [anon_sym_union] = ACTIONS(4363), + [anon_sym_pub] = ACTIONS(4363), + [anon_sym_mut] = ACTIONS(4363), + [anon_sym_enum] = ACTIONS(4363), + [anon_sym_interface] = ACTIONS(4363), + [anon_sym_QMARK] = ACTIONS(4363), + [anon_sym_BANG] = ACTIONS(4363), + [anon_sym_go] = ACTIONS(4363), + [anon_sym_spawn] = ACTIONS(4363), + [anon_sym_json_DOTdecode] = ACTIONS(4363), + [anon_sym_LBRACK2] = ACTIONS(4363), + [anon_sym_TILDE] = ACTIONS(4363), + [anon_sym_CARET] = ACTIONS(4363), + [anon_sym_AMP] = ACTIONS(4363), + [anon_sym_LT_DASH] = ACTIONS(4363), + [sym_none] = ACTIONS(4363), + [sym_true] = ACTIONS(4363), + [sym_false] = ACTIONS(4363), + [sym_nil] = ACTIONS(4363), + [anon_sym_if] = ACTIONS(4363), + [anon_sym_DOLLARif] = ACTIONS(4363), + [anon_sym_match] = ACTIONS(4363), + [anon_sym_select] = ACTIONS(4363), + [anon_sym_lock] = ACTIONS(4363), + [anon_sym_rlock] = ACTIONS(4363), + [anon_sym_unsafe] = ACTIONS(4363), + [anon_sym_sql] = ACTIONS(4363), + [sym_int_literal] = ACTIONS(4363), + [sym_float_literal] = ACTIONS(4363), + [sym_rune_literal] = ACTIONS(4363), + [anon_sym_AT] = ACTIONS(4363), + [anon_sym_shared] = ACTIONS(4363), + [anon_sym_map_LBRACK] = ACTIONS(4363), + [anon_sym_chan] = ACTIONS(4363), + [anon_sym_thread] = ACTIONS(4363), + [anon_sym_atomic] = ACTIONS(4363), + [anon_sym_assert] = ACTIONS(4363), + [anon_sym_defer] = ACTIONS(4363), + [anon_sym_goto] = ACTIONS(4363), + [anon_sym_break] = ACTIONS(4363), + [anon_sym_continue] = ACTIONS(4363), + [anon_sym_return] = ACTIONS(4363), + [anon_sym_DOLLARfor] = ACTIONS(4363), + [anon_sym_for] = ACTIONS(4363), + [anon_sym_POUND] = ACTIONS(4363), + [anon_sym_asm] = ACTIONS(4363), + [anon_sym_AT_LBRACK] = ACTIONS(4363), + [sym___double_quote] = ACTIONS(4363), + [sym___single_quote] = ACTIONS(4363), + [sym___c_double_quote] = ACTIONS(4363), + [sym___c_single_quote] = ACTIONS(4363), + [sym___r_double_quote] = ACTIONS(4363), + [sym___r_single_quote] = ACTIONS(4363), + }, + [1596] = { + [ts_builtin_sym_end] = ACTIONS(4365), + [sym_identifier] = ACTIONS(4367), + [anon_sym_LF] = ACTIONS(4367), + [anon_sym_CR] = ACTIONS(4367), + [anon_sym_CR_LF] = ACTIONS(4367), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym___global] = ACTIONS(4367), + [anon_sym_type] = ACTIONS(4367), + [anon_sym_fn] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_pub] = ACTIONS(4367), + [anon_sym_mut] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_interface] = ACTIONS(4367), + [anon_sym_QMARK] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_go] = ACTIONS(4367), + [anon_sym_spawn] = ACTIONS(4367), + [anon_sym_json_DOTdecode] = ACTIONS(4367), + [anon_sym_LBRACK2] = ACTIONS(4367), + [anon_sym_TILDE] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_LT_DASH] = ACTIONS(4367), + [sym_none] = ACTIONS(4367), + [sym_true] = ACTIONS(4367), + [sym_false] = ACTIONS(4367), + [sym_nil] = ACTIONS(4367), + [anon_sym_if] = ACTIONS(4367), + [anon_sym_DOLLARif] = ACTIONS(4367), + [anon_sym_match] = ACTIONS(4367), + [anon_sym_select] = ACTIONS(4367), + [anon_sym_lock] = ACTIONS(4367), + [anon_sym_rlock] = ACTIONS(4367), + [anon_sym_unsafe] = ACTIONS(4367), + [anon_sym_sql] = ACTIONS(4367), + [sym_int_literal] = ACTIONS(4367), + [sym_float_literal] = ACTIONS(4367), + [sym_rune_literal] = ACTIONS(4367), + [anon_sym_AT] = ACTIONS(4367), + [anon_sym_shared] = ACTIONS(4367), + [anon_sym_map_LBRACK] = ACTIONS(4367), + [anon_sym_chan] = ACTIONS(4367), + [anon_sym_thread] = ACTIONS(4367), + [anon_sym_atomic] = ACTIONS(4367), + [anon_sym_assert] = ACTIONS(4367), + [anon_sym_defer] = ACTIONS(4367), + [anon_sym_goto] = ACTIONS(4367), + [anon_sym_break] = ACTIONS(4367), + [anon_sym_continue] = ACTIONS(4367), + [anon_sym_return] = ACTIONS(4367), + [anon_sym_DOLLARfor] = ACTIONS(4367), + [anon_sym_for] = ACTIONS(4367), + [anon_sym_POUND] = ACTIONS(4367), + [anon_sym_asm] = ACTIONS(4367), + [anon_sym_AT_LBRACK] = ACTIONS(4367), + [sym___double_quote] = ACTIONS(4367), + [sym___single_quote] = ACTIONS(4367), + [sym___c_double_quote] = ACTIONS(4367), + [sym___c_single_quote] = ACTIONS(4367), + [sym___r_double_quote] = ACTIONS(4367), + [sym___r_single_quote] = ACTIONS(4367), + }, + [1597] = { + [ts_builtin_sym_end] = ACTIONS(4369), + [sym_identifier] = ACTIONS(4371), + [anon_sym_LF] = ACTIONS(4371), + [anon_sym_CR] = ACTIONS(4371), + [anon_sym_CR_LF] = ACTIONS(4371), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4371), + [anon_sym_const] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym___global] = ACTIONS(4371), + [anon_sym_type] = ACTIONS(4371), + [anon_sym_fn] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4371), + [anon_sym_struct] = ACTIONS(4371), + [anon_sym_union] = ACTIONS(4371), + [anon_sym_pub] = ACTIONS(4371), + [anon_sym_mut] = ACTIONS(4371), + [anon_sym_enum] = ACTIONS(4371), + [anon_sym_interface] = ACTIONS(4371), + [anon_sym_QMARK] = ACTIONS(4371), + [anon_sym_BANG] = ACTIONS(4371), + [anon_sym_go] = ACTIONS(4371), + [anon_sym_spawn] = ACTIONS(4371), + [anon_sym_json_DOTdecode] = ACTIONS(4371), + [anon_sym_LBRACK2] = ACTIONS(4371), + [anon_sym_TILDE] = ACTIONS(4371), + [anon_sym_CARET] = ACTIONS(4371), + [anon_sym_AMP] = ACTIONS(4371), + [anon_sym_LT_DASH] = ACTIONS(4371), + [sym_none] = ACTIONS(4371), + [sym_true] = ACTIONS(4371), + [sym_false] = ACTIONS(4371), + [sym_nil] = ACTIONS(4371), + [anon_sym_if] = ACTIONS(4371), + [anon_sym_DOLLARif] = ACTIONS(4371), + [anon_sym_match] = ACTIONS(4371), + [anon_sym_select] = ACTIONS(4371), + [anon_sym_lock] = ACTIONS(4371), + [anon_sym_rlock] = ACTIONS(4371), + [anon_sym_unsafe] = ACTIONS(4371), + [anon_sym_sql] = ACTIONS(4371), + [sym_int_literal] = ACTIONS(4371), + [sym_float_literal] = ACTIONS(4371), + [sym_rune_literal] = ACTIONS(4371), + [anon_sym_AT] = ACTIONS(4371), + [anon_sym_shared] = ACTIONS(4371), + [anon_sym_map_LBRACK] = ACTIONS(4371), + [anon_sym_chan] = ACTIONS(4371), + [anon_sym_thread] = ACTIONS(4371), + [anon_sym_atomic] = ACTIONS(4371), + [anon_sym_assert] = ACTIONS(4371), + [anon_sym_defer] = ACTIONS(4371), + [anon_sym_goto] = ACTIONS(4371), + [anon_sym_break] = ACTIONS(4371), + [anon_sym_continue] = ACTIONS(4371), + [anon_sym_return] = ACTIONS(4371), + [anon_sym_DOLLARfor] = ACTIONS(4371), + [anon_sym_for] = ACTIONS(4371), + [anon_sym_POUND] = ACTIONS(4371), + [anon_sym_asm] = ACTIONS(4371), + [anon_sym_AT_LBRACK] = ACTIONS(4371), + [sym___double_quote] = ACTIONS(4371), + [sym___single_quote] = ACTIONS(4371), + [sym___c_double_quote] = ACTIONS(4371), + [sym___c_single_quote] = ACTIONS(4371), + [sym___r_double_quote] = ACTIONS(4371), + [sym___r_single_quote] = ACTIONS(4371), + }, + [1598] = { + [ts_builtin_sym_end] = ACTIONS(4373), + [sym_identifier] = ACTIONS(4375), + [anon_sym_LF] = ACTIONS(4375), + [anon_sym_CR] = ACTIONS(4375), + [anon_sym_CR_LF] = ACTIONS(4375), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_const] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym___global] = ACTIONS(4375), + [anon_sym_type] = ACTIONS(4375), + [anon_sym_fn] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4375), + [anon_sym_struct] = ACTIONS(4375), + [anon_sym_union] = ACTIONS(4375), + [anon_sym_pub] = ACTIONS(4375), + [anon_sym_mut] = ACTIONS(4375), + [anon_sym_enum] = ACTIONS(4375), + [anon_sym_interface] = ACTIONS(4375), + [anon_sym_QMARK] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4375), + [anon_sym_go] = ACTIONS(4375), + [anon_sym_spawn] = ACTIONS(4375), + [anon_sym_json_DOTdecode] = ACTIONS(4375), + [anon_sym_LBRACK2] = ACTIONS(4375), + [anon_sym_TILDE] = ACTIONS(4375), + [anon_sym_CARET] = ACTIONS(4375), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_LT_DASH] = ACTIONS(4375), + [sym_none] = ACTIONS(4375), + [sym_true] = ACTIONS(4375), + [sym_false] = ACTIONS(4375), + [sym_nil] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_DOLLARif] = ACTIONS(4375), + [anon_sym_match] = ACTIONS(4375), + [anon_sym_select] = ACTIONS(4375), + [anon_sym_lock] = ACTIONS(4375), + [anon_sym_rlock] = ACTIONS(4375), + [anon_sym_unsafe] = ACTIONS(4375), + [anon_sym_sql] = ACTIONS(4375), + [sym_int_literal] = ACTIONS(4375), + [sym_float_literal] = ACTIONS(4375), + [sym_rune_literal] = ACTIONS(4375), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_shared] = ACTIONS(4375), + [anon_sym_map_LBRACK] = ACTIONS(4375), + [anon_sym_chan] = ACTIONS(4375), + [anon_sym_thread] = ACTIONS(4375), + [anon_sym_atomic] = ACTIONS(4375), + [anon_sym_assert] = ACTIONS(4375), + [anon_sym_defer] = ACTIONS(4375), + [anon_sym_goto] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_DOLLARfor] = ACTIONS(4375), + [anon_sym_for] = ACTIONS(4375), + [anon_sym_POUND] = ACTIONS(4375), + [anon_sym_asm] = ACTIONS(4375), + [anon_sym_AT_LBRACK] = ACTIONS(4375), + [sym___double_quote] = ACTIONS(4375), + [sym___single_quote] = ACTIONS(4375), + [sym___c_double_quote] = ACTIONS(4375), + [sym___c_single_quote] = ACTIONS(4375), + [sym___r_double_quote] = ACTIONS(4375), + [sym___r_single_quote] = ACTIONS(4375), + }, + [1599] = { + [ts_builtin_sym_end] = ACTIONS(4377), + [sym_identifier] = ACTIONS(4379), + [anon_sym_LF] = ACTIONS(4379), + [anon_sym_CR] = ACTIONS(4379), + [anon_sym_CR_LF] = ACTIONS(4379), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4379), + [anon_sym_LBRACE] = ACTIONS(4379), + [anon_sym_const] = ACTIONS(4379), + [anon_sym_LPAREN] = ACTIONS(4379), + [anon_sym___global] = ACTIONS(4379), + [anon_sym_type] = ACTIONS(4379), + [anon_sym_fn] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(4379), + [anon_sym_DASH] = ACTIONS(4379), + [anon_sym_STAR] = ACTIONS(4379), + [anon_sym_struct] = ACTIONS(4379), + [anon_sym_union] = ACTIONS(4379), + [anon_sym_pub] = ACTIONS(4379), + [anon_sym_mut] = ACTIONS(4379), + [anon_sym_enum] = ACTIONS(4379), + [anon_sym_interface] = ACTIONS(4379), + [anon_sym_QMARK] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(4379), + [anon_sym_go] = ACTIONS(4379), + [anon_sym_spawn] = ACTIONS(4379), + [anon_sym_json_DOTdecode] = ACTIONS(4379), + [anon_sym_LBRACK2] = ACTIONS(4379), + [anon_sym_TILDE] = ACTIONS(4379), + [anon_sym_CARET] = ACTIONS(4379), + [anon_sym_AMP] = ACTIONS(4379), + [anon_sym_LT_DASH] = ACTIONS(4379), + [sym_none] = ACTIONS(4379), + [sym_true] = ACTIONS(4379), + [sym_false] = ACTIONS(4379), + [sym_nil] = ACTIONS(4379), + [anon_sym_if] = ACTIONS(4379), + [anon_sym_DOLLARif] = ACTIONS(4379), + [anon_sym_match] = ACTIONS(4379), + [anon_sym_select] = ACTIONS(4379), + [anon_sym_lock] = ACTIONS(4379), + [anon_sym_rlock] = ACTIONS(4379), + [anon_sym_unsafe] = ACTIONS(4379), + [anon_sym_sql] = ACTIONS(4379), + [sym_int_literal] = ACTIONS(4379), + [sym_float_literal] = ACTIONS(4379), + [sym_rune_literal] = ACTIONS(4379), + [anon_sym_AT] = ACTIONS(4379), + [anon_sym_shared] = ACTIONS(4379), + [anon_sym_map_LBRACK] = ACTIONS(4379), + [anon_sym_chan] = ACTIONS(4379), + [anon_sym_thread] = ACTIONS(4379), + [anon_sym_atomic] = ACTIONS(4379), + [anon_sym_assert] = ACTIONS(4379), + [anon_sym_defer] = ACTIONS(4379), + [anon_sym_goto] = ACTIONS(4379), + [anon_sym_break] = ACTIONS(4379), + [anon_sym_continue] = ACTIONS(4379), + [anon_sym_return] = ACTIONS(4379), + [anon_sym_DOLLARfor] = ACTIONS(4379), + [anon_sym_for] = ACTIONS(4379), + [anon_sym_POUND] = ACTIONS(4379), + [anon_sym_asm] = ACTIONS(4379), + [anon_sym_AT_LBRACK] = ACTIONS(4379), + [sym___double_quote] = ACTIONS(4379), + [sym___single_quote] = ACTIONS(4379), + [sym___c_double_quote] = ACTIONS(4379), + [sym___c_single_quote] = ACTIONS(4379), + [sym___r_double_quote] = ACTIONS(4379), + [sym___r_single_quote] = ACTIONS(4379), + }, + [1600] = { + [ts_builtin_sym_end] = ACTIONS(4381), + [sym_identifier] = ACTIONS(4383), + [anon_sym_LF] = ACTIONS(4383), + [anon_sym_CR] = ACTIONS(4383), + [anon_sym_CR_LF] = ACTIONS(4383), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4383), + [anon_sym_LBRACE] = ACTIONS(4383), + [anon_sym_const] = ACTIONS(4383), + [anon_sym_LPAREN] = ACTIONS(4383), + [anon_sym___global] = ACTIONS(4383), + [anon_sym_type] = ACTIONS(4383), + [anon_sym_fn] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(4383), + [anon_sym_DASH] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(4383), + [anon_sym_struct] = ACTIONS(4383), + [anon_sym_union] = ACTIONS(4383), + [anon_sym_pub] = ACTIONS(4383), + [anon_sym_mut] = ACTIONS(4383), + [anon_sym_enum] = ACTIONS(4383), + [anon_sym_interface] = ACTIONS(4383), + [anon_sym_QMARK] = ACTIONS(4383), + [anon_sym_BANG] = ACTIONS(4383), + [anon_sym_go] = ACTIONS(4383), + [anon_sym_spawn] = ACTIONS(4383), + [anon_sym_json_DOTdecode] = ACTIONS(4383), + [anon_sym_LBRACK2] = ACTIONS(4383), + [anon_sym_TILDE] = ACTIONS(4383), + [anon_sym_CARET] = ACTIONS(4383), + [anon_sym_AMP] = ACTIONS(4383), + [anon_sym_LT_DASH] = ACTIONS(4383), + [sym_none] = ACTIONS(4383), + [sym_true] = ACTIONS(4383), + [sym_false] = ACTIONS(4383), + [sym_nil] = ACTIONS(4383), + [anon_sym_if] = ACTIONS(4383), + [anon_sym_DOLLARif] = ACTIONS(4383), + [anon_sym_match] = ACTIONS(4383), + [anon_sym_select] = ACTIONS(4383), + [anon_sym_lock] = ACTIONS(4383), + [anon_sym_rlock] = ACTIONS(4383), + [anon_sym_unsafe] = ACTIONS(4383), + [anon_sym_sql] = ACTIONS(4383), + [sym_int_literal] = ACTIONS(4383), + [sym_float_literal] = ACTIONS(4383), + [sym_rune_literal] = ACTIONS(4383), + [anon_sym_AT] = ACTIONS(4383), + [anon_sym_shared] = ACTIONS(4383), + [anon_sym_map_LBRACK] = ACTIONS(4383), + [anon_sym_chan] = ACTIONS(4383), + [anon_sym_thread] = ACTIONS(4383), + [anon_sym_atomic] = ACTIONS(4383), + [anon_sym_assert] = ACTIONS(4383), + [anon_sym_defer] = ACTIONS(4383), + [anon_sym_goto] = ACTIONS(4383), + [anon_sym_break] = ACTIONS(4383), + [anon_sym_continue] = ACTIONS(4383), + [anon_sym_return] = ACTIONS(4383), + [anon_sym_DOLLARfor] = ACTIONS(4383), + [anon_sym_for] = ACTIONS(4383), + [anon_sym_POUND] = ACTIONS(4383), + [anon_sym_asm] = ACTIONS(4383), + [anon_sym_AT_LBRACK] = ACTIONS(4383), + [sym___double_quote] = ACTIONS(4383), + [sym___single_quote] = ACTIONS(4383), + [sym___c_double_quote] = ACTIONS(4383), + [sym___c_single_quote] = ACTIONS(4383), + [sym___r_double_quote] = ACTIONS(4383), + [sym___r_single_quote] = ACTIONS(4383), + }, + [1601] = { + [ts_builtin_sym_end] = ACTIONS(4385), + [sym_identifier] = ACTIONS(4387), + [anon_sym_LF] = ACTIONS(4387), + [anon_sym_CR] = ACTIONS(4387), + [anon_sym_CR_LF] = ACTIONS(4387), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_LPAREN] = ACTIONS(4387), + [anon_sym___global] = ACTIONS(4387), + [anon_sym_type] = ACTIONS(4387), + [anon_sym_fn] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4387), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_pub] = ACTIONS(4387), + [anon_sym_mut] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_interface] = ACTIONS(4387), + [anon_sym_QMARK] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_go] = ACTIONS(4387), + [anon_sym_spawn] = ACTIONS(4387), + [anon_sym_json_DOTdecode] = ACTIONS(4387), + [anon_sym_LBRACK2] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_CARET] = ACTIONS(4387), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_LT_DASH] = ACTIONS(4387), + [sym_none] = ACTIONS(4387), + [sym_true] = ACTIONS(4387), + [sym_false] = ACTIONS(4387), + [sym_nil] = ACTIONS(4387), + [anon_sym_if] = ACTIONS(4387), + [anon_sym_DOLLARif] = ACTIONS(4387), + [anon_sym_match] = ACTIONS(4387), + [anon_sym_select] = ACTIONS(4387), + [anon_sym_lock] = ACTIONS(4387), + [anon_sym_rlock] = ACTIONS(4387), + [anon_sym_unsafe] = ACTIONS(4387), + [anon_sym_sql] = ACTIONS(4387), + [sym_int_literal] = ACTIONS(4387), + [sym_float_literal] = ACTIONS(4387), + [sym_rune_literal] = ACTIONS(4387), + [anon_sym_AT] = ACTIONS(4387), + [anon_sym_shared] = ACTIONS(4387), + [anon_sym_map_LBRACK] = ACTIONS(4387), + [anon_sym_chan] = ACTIONS(4387), + [anon_sym_thread] = ACTIONS(4387), + [anon_sym_atomic] = ACTIONS(4387), + [anon_sym_assert] = ACTIONS(4387), + [anon_sym_defer] = ACTIONS(4387), + [anon_sym_goto] = ACTIONS(4387), + [anon_sym_break] = ACTIONS(4387), + [anon_sym_continue] = ACTIONS(4387), + [anon_sym_return] = ACTIONS(4387), + [anon_sym_DOLLARfor] = ACTIONS(4387), + [anon_sym_for] = ACTIONS(4387), + [anon_sym_POUND] = ACTIONS(4387), + [anon_sym_asm] = ACTIONS(4387), + [anon_sym_AT_LBRACK] = ACTIONS(4387), + [sym___double_quote] = ACTIONS(4387), + [sym___single_quote] = ACTIONS(4387), + [sym___c_double_quote] = ACTIONS(4387), + [sym___c_single_quote] = ACTIONS(4387), + [sym___r_double_quote] = ACTIONS(4387), + [sym___r_single_quote] = ACTIONS(4387), + }, + [1602] = { + [ts_builtin_sym_end] = ACTIONS(4389), + [sym_identifier] = ACTIONS(4391), + [anon_sym_LF] = ACTIONS(4391), + [anon_sym_CR] = ACTIONS(4391), + [anon_sym_CR_LF] = ACTIONS(4391), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_const] = ACTIONS(4391), + [anon_sym_LPAREN] = ACTIONS(4391), + [anon_sym___global] = ACTIONS(4391), + [anon_sym_type] = ACTIONS(4391), + [anon_sym_fn] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_struct] = ACTIONS(4391), + [anon_sym_union] = ACTIONS(4391), + [anon_sym_pub] = ACTIONS(4391), + [anon_sym_mut] = ACTIONS(4391), + [anon_sym_enum] = ACTIONS(4391), + [anon_sym_interface] = ACTIONS(4391), + [anon_sym_QMARK] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_go] = ACTIONS(4391), + [anon_sym_spawn] = ACTIONS(4391), + [anon_sym_json_DOTdecode] = ACTIONS(4391), + [anon_sym_LBRACK2] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_CARET] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4391), + [anon_sym_LT_DASH] = ACTIONS(4391), + [sym_none] = ACTIONS(4391), + [sym_true] = ACTIONS(4391), + [sym_false] = ACTIONS(4391), + [sym_nil] = ACTIONS(4391), + [anon_sym_if] = ACTIONS(4391), + [anon_sym_DOLLARif] = ACTIONS(4391), + [anon_sym_match] = ACTIONS(4391), + [anon_sym_select] = ACTIONS(4391), + [anon_sym_lock] = ACTIONS(4391), + [anon_sym_rlock] = ACTIONS(4391), + [anon_sym_unsafe] = ACTIONS(4391), + [anon_sym_sql] = ACTIONS(4391), + [sym_int_literal] = ACTIONS(4391), + [sym_float_literal] = ACTIONS(4391), + [sym_rune_literal] = ACTIONS(4391), + [anon_sym_AT] = ACTIONS(4391), + [anon_sym_shared] = ACTIONS(4391), + [anon_sym_map_LBRACK] = ACTIONS(4391), + [anon_sym_chan] = ACTIONS(4391), + [anon_sym_thread] = ACTIONS(4391), + [anon_sym_atomic] = ACTIONS(4391), + [anon_sym_assert] = ACTIONS(4391), + [anon_sym_defer] = ACTIONS(4391), + [anon_sym_goto] = ACTIONS(4391), + [anon_sym_break] = ACTIONS(4391), + [anon_sym_continue] = ACTIONS(4391), + [anon_sym_return] = ACTIONS(4391), + [anon_sym_DOLLARfor] = ACTIONS(4391), + [anon_sym_for] = ACTIONS(4391), + [anon_sym_POUND] = ACTIONS(4391), + [anon_sym_asm] = ACTIONS(4391), + [anon_sym_AT_LBRACK] = ACTIONS(4391), + [sym___double_quote] = ACTIONS(4391), + [sym___single_quote] = ACTIONS(4391), + [sym___c_double_quote] = ACTIONS(4391), + [sym___c_single_quote] = ACTIONS(4391), + [sym___r_double_quote] = ACTIONS(4391), + [sym___r_single_quote] = ACTIONS(4391), + }, + [1603] = { + [ts_builtin_sym_end] = ACTIONS(4393), + [sym_identifier] = ACTIONS(4395), + [anon_sym_LF] = ACTIONS(4395), + [anon_sym_CR] = ACTIONS(4395), + [anon_sym_CR_LF] = ACTIONS(4395), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4395), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_const] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym___global] = ACTIONS(4395), + [anon_sym_type] = ACTIONS(4395), + [anon_sym_fn] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4395), + [anon_sym_STAR] = ACTIONS(4395), + [anon_sym_struct] = ACTIONS(4395), + [anon_sym_union] = ACTIONS(4395), + [anon_sym_pub] = ACTIONS(4395), + [anon_sym_mut] = ACTIONS(4395), + [anon_sym_enum] = ACTIONS(4395), + [anon_sym_interface] = ACTIONS(4395), + [anon_sym_QMARK] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_go] = ACTIONS(4395), + [anon_sym_spawn] = ACTIONS(4395), + [anon_sym_json_DOTdecode] = ACTIONS(4395), + [anon_sym_LBRACK2] = ACTIONS(4395), + [anon_sym_TILDE] = ACTIONS(4395), + [anon_sym_CARET] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(4395), + [anon_sym_LT_DASH] = ACTIONS(4395), + [sym_none] = ACTIONS(4395), + [sym_true] = ACTIONS(4395), + [sym_false] = ACTIONS(4395), + [sym_nil] = ACTIONS(4395), + [anon_sym_if] = ACTIONS(4395), + [anon_sym_DOLLARif] = ACTIONS(4395), + [anon_sym_match] = ACTIONS(4395), + [anon_sym_select] = ACTIONS(4395), + [anon_sym_lock] = ACTIONS(4395), + [anon_sym_rlock] = ACTIONS(4395), + [anon_sym_unsafe] = ACTIONS(4395), + [anon_sym_sql] = ACTIONS(4395), + [sym_int_literal] = ACTIONS(4395), + [sym_float_literal] = ACTIONS(4395), + [sym_rune_literal] = ACTIONS(4395), + [anon_sym_AT] = ACTIONS(4395), + [anon_sym_shared] = ACTIONS(4395), + [anon_sym_map_LBRACK] = ACTIONS(4395), + [anon_sym_chan] = ACTIONS(4395), + [anon_sym_thread] = ACTIONS(4395), + [anon_sym_atomic] = ACTIONS(4395), + [anon_sym_assert] = ACTIONS(4395), + [anon_sym_defer] = ACTIONS(4395), + [anon_sym_goto] = ACTIONS(4395), + [anon_sym_break] = ACTIONS(4395), + [anon_sym_continue] = ACTIONS(4395), + [anon_sym_return] = ACTIONS(4395), + [anon_sym_DOLLARfor] = ACTIONS(4395), + [anon_sym_for] = ACTIONS(4395), + [anon_sym_POUND] = ACTIONS(4395), + [anon_sym_asm] = ACTIONS(4395), + [anon_sym_AT_LBRACK] = ACTIONS(4395), + [sym___double_quote] = ACTIONS(4395), + [sym___single_quote] = ACTIONS(4395), + [sym___c_double_quote] = ACTIONS(4395), + [sym___c_single_quote] = ACTIONS(4395), + [sym___r_double_quote] = ACTIONS(4395), + [sym___r_single_quote] = ACTIONS(4395), + }, + [1604] = { + [ts_builtin_sym_end] = ACTIONS(4397), + [sym_identifier] = ACTIONS(4399), + [anon_sym_LF] = ACTIONS(4399), + [anon_sym_CR] = ACTIONS(4399), + [anon_sym_CR_LF] = ACTIONS(4399), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4399), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_const] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym___global] = ACTIONS(4399), + [anon_sym_type] = ACTIONS(4399), + [anon_sym_fn] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_STAR] = ACTIONS(4399), + [anon_sym_struct] = ACTIONS(4399), + [anon_sym_union] = ACTIONS(4399), + [anon_sym_pub] = ACTIONS(4399), + [anon_sym_mut] = ACTIONS(4399), + [anon_sym_enum] = ACTIONS(4399), + [anon_sym_interface] = ACTIONS(4399), + [anon_sym_QMARK] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_go] = ACTIONS(4399), + [anon_sym_spawn] = ACTIONS(4399), + [anon_sym_json_DOTdecode] = ACTIONS(4399), + [anon_sym_LBRACK2] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_CARET] = ACTIONS(4399), + [anon_sym_AMP] = ACTIONS(4399), + [anon_sym_LT_DASH] = ACTIONS(4399), + [sym_none] = ACTIONS(4399), + [sym_true] = ACTIONS(4399), + [sym_false] = ACTIONS(4399), + [sym_nil] = ACTIONS(4399), + [anon_sym_if] = ACTIONS(4399), + [anon_sym_DOLLARif] = ACTIONS(4399), + [anon_sym_match] = ACTIONS(4399), + [anon_sym_select] = ACTIONS(4399), + [anon_sym_lock] = ACTIONS(4399), + [anon_sym_rlock] = ACTIONS(4399), + [anon_sym_unsafe] = ACTIONS(4399), + [anon_sym_sql] = ACTIONS(4399), + [sym_int_literal] = ACTIONS(4399), + [sym_float_literal] = ACTIONS(4399), + [sym_rune_literal] = ACTIONS(4399), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_shared] = ACTIONS(4399), + [anon_sym_map_LBRACK] = ACTIONS(4399), + [anon_sym_chan] = ACTIONS(4399), + [anon_sym_thread] = ACTIONS(4399), + [anon_sym_atomic] = ACTIONS(4399), + [anon_sym_assert] = ACTIONS(4399), + [anon_sym_defer] = ACTIONS(4399), + [anon_sym_goto] = ACTIONS(4399), + [anon_sym_break] = ACTIONS(4399), + [anon_sym_continue] = ACTIONS(4399), + [anon_sym_return] = ACTIONS(4399), + [anon_sym_DOLLARfor] = ACTIONS(4399), + [anon_sym_for] = ACTIONS(4399), + [anon_sym_POUND] = ACTIONS(4399), + [anon_sym_asm] = ACTIONS(4399), + [anon_sym_AT_LBRACK] = ACTIONS(4399), + [sym___double_quote] = ACTIONS(4399), + [sym___single_quote] = ACTIONS(4399), + [sym___c_double_quote] = ACTIONS(4399), + [sym___c_single_quote] = ACTIONS(4399), + [sym___r_double_quote] = ACTIONS(4399), + [sym___r_single_quote] = ACTIONS(4399), + }, + [1605] = { + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3289), + [anon_sym_LF] = ACTIONS(3289), + [anon_sym_CR] = ACTIONS(3289), + [anon_sym_CR_LF] = ACTIONS(3289), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym___global] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_fn] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_struct] = ACTIONS(3289), + [anon_sym_union] = ACTIONS(3289), + [anon_sym_pub] = ACTIONS(3289), + [anon_sym_mut] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_go] = ACTIONS(3289), + [anon_sym_spawn] = ACTIONS(3289), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_LT_DASH] = ACTIONS(3289), + [sym_none] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_nil] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_DOLLARif] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3289), + [anon_sym_select] = ACTIONS(3289), + [anon_sym_lock] = ACTIONS(3289), + [anon_sym_rlock] = ACTIONS(3289), + [anon_sym_unsafe] = ACTIONS(3289), + [anon_sym_sql] = ACTIONS(3289), + [sym_int_literal] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_shared] = ACTIONS(3289), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3289), + [anon_sym_thread] = ACTIONS(3289), + [anon_sym_atomic] = ACTIONS(3289), + [anon_sym_assert] = ACTIONS(3289), + [anon_sym_defer] = ACTIONS(3289), + [anon_sym_goto] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_DOLLARfor] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_asm] = ACTIONS(3289), + [anon_sym_AT_LBRACK] = ACTIONS(3289), + [sym___double_quote] = ACTIONS(3289), + [sym___single_quote] = ACTIONS(3289), + [sym___c_double_quote] = ACTIONS(3289), + [sym___c_single_quote] = ACTIONS(3289), + [sym___r_double_quote] = ACTIONS(3289), + [sym___r_single_quote] = ACTIONS(3289), + }, + [1606] = { + [ts_builtin_sym_end] = ACTIONS(4401), + [sym_identifier] = ACTIONS(4403), + [anon_sym_LF] = ACTIONS(4403), + [anon_sym_CR] = ACTIONS(4403), + [anon_sym_CR_LF] = ACTIONS(4403), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4403), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_const] = ACTIONS(4403), + [anon_sym_LPAREN] = ACTIONS(4403), + [anon_sym___global] = ACTIONS(4403), + [anon_sym_type] = ACTIONS(4403), + [anon_sym_fn] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4403), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_struct] = ACTIONS(4403), + [anon_sym_union] = ACTIONS(4403), + [anon_sym_pub] = ACTIONS(4403), + [anon_sym_mut] = ACTIONS(4403), + [anon_sym_enum] = ACTIONS(4403), + [anon_sym_interface] = ACTIONS(4403), + [anon_sym_QMARK] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_go] = ACTIONS(4403), + [anon_sym_spawn] = ACTIONS(4403), + [anon_sym_json_DOTdecode] = ACTIONS(4403), + [anon_sym_LBRACK2] = ACTIONS(4403), + [anon_sym_TILDE] = ACTIONS(4403), + [anon_sym_CARET] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4403), + [anon_sym_LT_DASH] = ACTIONS(4403), + [sym_none] = ACTIONS(4403), + [sym_true] = ACTIONS(4403), + [sym_false] = ACTIONS(4403), + [sym_nil] = ACTIONS(4403), + [anon_sym_if] = ACTIONS(4403), + [anon_sym_DOLLARif] = ACTIONS(4403), + [anon_sym_match] = ACTIONS(4403), + [anon_sym_select] = ACTIONS(4403), + [anon_sym_lock] = ACTIONS(4403), + [anon_sym_rlock] = ACTIONS(4403), + [anon_sym_unsafe] = ACTIONS(4403), + [anon_sym_sql] = ACTIONS(4403), + [sym_int_literal] = ACTIONS(4403), + [sym_float_literal] = ACTIONS(4403), + [sym_rune_literal] = ACTIONS(4403), + [anon_sym_AT] = ACTIONS(4403), + [anon_sym_shared] = ACTIONS(4403), + [anon_sym_map_LBRACK] = ACTIONS(4403), + [anon_sym_chan] = ACTIONS(4403), + [anon_sym_thread] = ACTIONS(4403), + [anon_sym_atomic] = ACTIONS(4403), + [anon_sym_assert] = ACTIONS(4403), + [anon_sym_defer] = ACTIONS(4403), + [anon_sym_goto] = ACTIONS(4403), + [anon_sym_break] = ACTIONS(4403), + [anon_sym_continue] = ACTIONS(4403), + [anon_sym_return] = ACTIONS(4403), + [anon_sym_DOLLARfor] = ACTIONS(4403), + [anon_sym_for] = ACTIONS(4403), + [anon_sym_POUND] = ACTIONS(4403), + [anon_sym_asm] = ACTIONS(4403), + [anon_sym_AT_LBRACK] = ACTIONS(4403), + [sym___double_quote] = ACTIONS(4403), + [sym___single_quote] = ACTIONS(4403), + [sym___c_double_quote] = ACTIONS(4403), + [sym___c_single_quote] = ACTIONS(4403), + [sym___r_double_quote] = ACTIONS(4403), + [sym___r_single_quote] = ACTIONS(4403), + }, + [1607] = { + [sym_import_declaration] = STATE(1607), + [aux_sym_import_list_repeat1] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(4405), + [sym_identifier] = ACTIONS(4407), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(609), + [anon_sym_import] = ACTIONS(4409), + [anon_sym_DOT] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_const] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym___global] = ACTIONS(4407), + [anon_sym_type] = ACTIONS(4407), + [anon_sym_fn] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4405), + [anon_sym_struct] = ACTIONS(4407), + [anon_sym_union] = ACTIONS(4407), + [anon_sym_pub] = ACTIONS(4407), + [anon_sym_mut] = ACTIONS(4407), + [anon_sym_enum] = ACTIONS(4407), + [anon_sym_interface] = ACTIONS(4407), + [anon_sym_QMARK] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4405), + [anon_sym_go] = ACTIONS(4407), + [anon_sym_spawn] = ACTIONS(4407), + [anon_sym_json_DOTdecode] = ACTIONS(4405), + [anon_sym_LBRACK2] = ACTIONS(4405), + [anon_sym_TILDE] = ACTIONS(4405), + [anon_sym_CARET] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(4405), + [anon_sym_LT_DASH] = ACTIONS(4405), + [sym_none] = ACTIONS(4407), + [sym_true] = ACTIONS(4407), + [sym_false] = ACTIONS(4407), + [sym_nil] = ACTIONS(4407), + [anon_sym_if] = ACTIONS(4407), + [anon_sym_DOLLARif] = ACTIONS(4407), + [anon_sym_match] = ACTIONS(4407), + [anon_sym_select] = ACTIONS(4407), + [anon_sym_lock] = ACTIONS(4407), + [anon_sym_rlock] = ACTIONS(4407), + [anon_sym_unsafe] = ACTIONS(4407), + [anon_sym_sql] = ACTIONS(4407), + [sym_int_literal] = ACTIONS(4407), + [sym_float_literal] = ACTIONS(4405), + [sym_rune_literal] = ACTIONS(4405), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_shared] = ACTIONS(4407), + [anon_sym_map_LBRACK] = ACTIONS(4405), + [anon_sym_chan] = ACTIONS(4407), + [anon_sym_thread] = ACTIONS(4407), + [anon_sym_atomic] = ACTIONS(4407), + [anon_sym_assert] = ACTIONS(4407), + [anon_sym_defer] = ACTIONS(4407), + [anon_sym_goto] = ACTIONS(4407), + [anon_sym_break] = ACTIONS(4407), + [anon_sym_continue] = ACTIONS(4407), + [anon_sym_return] = ACTIONS(4407), + [anon_sym_DOLLARfor] = ACTIONS(4407), + [anon_sym_for] = ACTIONS(4407), + [anon_sym_POUND] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(4407), + [anon_sym_AT_LBRACK] = ACTIONS(4405), + [sym___double_quote] = ACTIONS(4405), + [sym___single_quote] = ACTIONS(4405), + [sym___c_double_quote] = ACTIONS(4405), + [sym___c_single_quote] = ACTIONS(4405), + [sym___r_double_quote] = ACTIONS(4405), + [sym___r_single_quote] = ACTIONS(4405), + }, + [1608] = { + [ts_builtin_sym_end] = ACTIONS(4412), + [sym_identifier] = ACTIONS(4414), + [anon_sym_LF] = ACTIONS(4414), + [anon_sym_CR] = ACTIONS(4414), + [anon_sym_CR_LF] = ACTIONS(4414), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4414), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_const] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym___global] = ACTIONS(4414), + [anon_sym_type] = ACTIONS(4414), + [anon_sym_fn] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_STAR] = ACTIONS(4414), + [anon_sym_struct] = ACTIONS(4414), + [anon_sym_union] = ACTIONS(4414), + [anon_sym_pub] = ACTIONS(4414), + [anon_sym_mut] = ACTIONS(4414), + [anon_sym_enum] = ACTIONS(4414), + [anon_sym_interface] = ACTIONS(4414), + [anon_sym_QMARK] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4414), + [anon_sym_go] = ACTIONS(4414), + [anon_sym_spawn] = ACTIONS(4414), + [anon_sym_json_DOTdecode] = ACTIONS(4414), + [anon_sym_LBRACK2] = ACTIONS(4414), + [anon_sym_TILDE] = ACTIONS(4414), + [anon_sym_CARET] = ACTIONS(4414), + [anon_sym_AMP] = ACTIONS(4414), + [anon_sym_LT_DASH] = ACTIONS(4414), + [sym_none] = ACTIONS(4414), + [sym_true] = ACTIONS(4414), + [sym_false] = ACTIONS(4414), + [sym_nil] = ACTIONS(4414), + [anon_sym_if] = ACTIONS(4414), + [anon_sym_DOLLARif] = ACTIONS(4414), + [anon_sym_match] = ACTIONS(4414), + [anon_sym_select] = ACTIONS(4414), + [anon_sym_lock] = ACTIONS(4414), + [anon_sym_rlock] = ACTIONS(4414), + [anon_sym_unsafe] = ACTIONS(4414), + [anon_sym_sql] = ACTIONS(4414), + [sym_int_literal] = ACTIONS(4414), + [sym_float_literal] = ACTIONS(4414), + [sym_rune_literal] = ACTIONS(4414), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_shared] = ACTIONS(4414), + [anon_sym_map_LBRACK] = ACTIONS(4414), + [anon_sym_chan] = ACTIONS(4414), + [anon_sym_thread] = ACTIONS(4414), + [anon_sym_atomic] = ACTIONS(4414), + [anon_sym_assert] = ACTIONS(4414), + [anon_sym_defer] = ACTIONS(4414), + [anon_sym_goto] = ACTIONS(4414), + [anon_sym_break] = ACTIONS(4414), + [anon_sym_continue] = ACTIONS(4414), + [anon_sym_return] = ACTIONS(4414), + [anon_sym_DOLLARfor] = ACTIONS(4414), + [anon_sym_for] = ACTIONS(4414), + [anon_sym_POUND] = ACTIONS(4414), + [anon_sym_asm] = ACTIONS(4414), + [anon_sym_AT_LBRACK] = ACTIONS(4414), + [sym___double_quote] = ACTIONS(4414), + [sym___single_quote] = ACTIONS(4414), + [sym___c_double_quote] = ACTIONS(4414), + [sym___c_single_quote] = ACTIONS(4414), + [sym___r_double_quote] = ACTIONS(4414), + [sym___r_single_quote] = ACTIONS(4414), + }, + [1609] = { + [ts_builtin_sym_end] = ACTIONS(4416), + [sym_identifier] = ACTIONS(4418), + [anon_sym_LF] = ACTIONS(4418), + [anon_sym_CR] = ACTIONS(4418), + [anon_sym_CR_LF] = ACTIONS(4418), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_const] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym___global] = ACTIONS(4418), + [anon_sym_type] = ACTIONS(4418), + [anon_sym_fn] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4418), + [anon_sym_DASH] = ACTIONS(4418), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_struct] = ACTIONS(4418), + [anon_sym_union] = ACTIONS(4418), + [anon_sym_pub] = ACTIONS(4418), + [anon_sym_mut] = ACTIONS(4418), + [anon_sym_enum] = ACTIONS(4418), + [anon_sym_interface] = ACTIONS(4418), + [anon_sym_QMARK] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4418), + [anon_sym_go] = ACTIONS(4418), + [anon_sym_spawn] = ACTIONS(4418), + [anon_sym_json_DOTdecode] = ACTIONS(4418), + [anon_sym_LBRACK2] = ACTIONS(4418), + [anon_sym_TILDE] = ACTIONS(4418), + [anon_sym_CARET] = ACTIONS(4418), + [anon_sym_AMP] = ACTIONS(4418), + [anon_sym_LT_DASH] = ACTIONS(4418), + [sym_none] = ACTIONS(4418), + [sym_true] = ACTIONS(4418), + [sym_false] = ACTIONS(4418), + [sym_nil] = ACTIONS(4418), + [anon_sym_if] = ACTIONS(4418), + [anon_sym_DOLLARif] = ACTIONS(4418), + [anon_sym_match] = ACTIONS(4418), + [anon_sym_select] = ACTIONS(4418), + [anon_sym_lock] = ACTIONS(4418), + [anon_sym_rlock] = ACTIONS(4418), + [anon_sym_unsafe] = ACTIONS(4418), + [anon_sym_sql] = ACTIONS(4418), + [sym_int_literal] = ACTIONS(4418), + [sym_float_literal] = ACTIONS(4418), + [sym_rune_literal] = ACTIONS(4418), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_shared] = ACTIONS(4418), + [anon_sym_map_LBRACK] = ACTIONS(4418), + [anon_sym_chan] = ACTIONS(4418), + [anon_sym_thread] = ACTIONS(4418), + [anon_sym_atomic] = ACTIONS(4418), + [anon_sym_assert] = ACTIONS(4418), + [anon_sym_defer] = ACTIONS(4418), + [anon_sym_goto] = ACTIONS(4418), + [anon_sym_break] = ACTIONS(4418), + [anon_sym_continue] = ACTIONS(4418), + [anon_sym_return] = ACTIONS(4418), + [anon_sym_DOLLARfor] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(4418), + [anon_sym_POUND] = ACTIONS(4418), + [anon_sym_asm] = ACTIONS(4418), + [anon_sym_AT_LBRACK] = ACTIONS(4418), + [sym___double_quote] = ACTIONS(4418), + [sym___single_quote] = ACTIONS(4418), + [sym___c_double_quote] = ACTIONS(4418), + [sym___c_single_quote] = ACTIONS(4418), + [sym___r_double_quote] = ACTIONS(4418), + [sym___r_single_quote] = ACTIONS(4418), + }, + [1610] = { + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), + }, + [1611] = { + [ts_builtin_sym_end] = ACTIONS(4420), + [sym_identifier] = ACTIONS(4422), + [anon_sym_LF] = ACTIONS(4422), + [anon_sym_CR] = ACTIONS(4422), + [anon_sym_CR_LF] = ACTIONS(4422), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4422), + [anon_sym_LBRACE] = ACTIONS(4422), + [anon_sym_const] = ACTIONS(4422), + [anon_sym_LPAREN] = ACTIONS(4422), + [anon_sym___global] = ACTIONS(4422), + [anon_sym_type] = ACTIONS(4422), + [anon_sym_fn] = ACTIONS(4422), + [anon_sym_PLUS] = ACTIONS(4422), + [anon_sym_DASH] = ACTIONS(4422), + [anon_sym_STAR] = ACTIONS(4422), + [anon_sym_struct] = ACTIONS(4422), + [anon_sym_union] = ACTIONS(4422), + [anon_sym_pub] = ACTIONS(4422), + [anon_sym_mut] = ACTIONS(4422), + [anon_sym_enum] = ACTIONS(4422), + [anon_sym_interface] = ACTIONS(4422), + [anon_sym_QMARK] = ACTIONS(4422), + [anon_sym_BANG] = ACTIONS(4422), + [anon_sym_go] = ACTIONS(4422), + [anon_sym_spawn] = ACTIONS(4422), + [anon_sym_json_DOTdecode] = ACTIONS(4422), + [anon_sym_LBRACK2] = ACTIONS(4422), + [anon_sym_TILDE] = ACTIONS(4422), + [anon_sym_CARET] = ACTIONS(4422), + [anon_sym_AMP] = ACTIONS(4422), + [anon_sym_LT_DASH] = ACTIONS(4422), + [sym_none] = ACTIONS(4422), + [sym_true] = ACTIONS(4422), + [sym_false] = ACTIONS(4422), + [sym_nil] = ACTIONS(4422), + [anon_sym_if] = ACTIONS(4422), + [anon_sym_DOLLARif] = ACTIONS(4422), + [anon_sym_match] = ACTIONS(4422), + [anon_sym_select] = ACTIONS(4422), + [anon_sym_lock] = ACTIONS(4422), + [anon_sym_rlock] = ACTIONS(4422), + [anon_sym_unsafe] = ACTIONS(4422), + [anon_sym_sql] = ACTIONS(4422), + [sym_int_literal] = ACTIONS(4422), + [sym_float_literal] = ACTIONS(4422), + [sym_rune_literal] = ACTIONS(4422), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_shared] = ACTIONS(4422), + [anon_sym_map_LBRACK] = ACTIONS(4422), + [anon_sym_chan] = ACTIONS(4422), + [anon_sym_thread] = ACTIONS(4422), + [anon_sym_atomic] = ACTIONS(4422), + [anon_sym_assert] = ACTIONS(4422), + [anon_sym_defer] = ACTIONS(4422), + [anon_sym_goto] = ACTIONS(4422), + [anon_sym_break] = ACTIONS(4422), + [anon_sym_continue] = ACTIONS(4422), + [anon_sym_return] = ACTIONS(4422), + [anon_sym_DOLLARfor] = ACTIONS(4422), + [anon_sym_for] = ACTIONS(4422), + [anon_sym_POUND] = ACTIONS(4422), + [anon_sym_asm] = ACTIONS(4422), + [anon_sym_AT_LBRACK] = ACTIONS(4422), + [sym___double_quote] = ACTIONS(4422), + [sym___single_quote] = ACTIONS(4422), + [sym___c_double_quote] = ACTIONS(4422), + [sym___c_single_quote] = ACTIONS(4422), + [sym___r_double_quote] = ACTIONS(4422), + [sym___r_single_quote] = ACTIONS(4422), + }, + [1612] = { + [ts_builtin_sym_end] = ACTIONS(4424), + [sym_identifier] = ACTIONS(4426), + [anon_sym_LF] = ACTIONS(4426), + [anon_sym_CR] = ACTIONS(4426), + [anon_sym_CR_LF] = ACTIONS(4426), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4426), + [anon_sym_LBRACE] = ACTIONS(4426), + [anon_sym_const] = ACTIONS(4426), + [anon_sym_LPAREN] = ACTIONS(4426), + [anon_sym___global] = ACTIONS(4426), + [anon_sym_type] = ACTIONS(4426), + [anon_sym_fn] = ACTIONS(4426), + [anon_sym_PLUS] = ACTIONS(4426), + [anon_sym_DASH] = ACTIONS(4426), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_struct] = ACTIONS(4426), + [anon_sym_union] = ACTIONS(4426), + [anon_sym_pub] = ACTIONS(4426), + [anon_sym_mut] = ACTIONS(4426), + [anon_sym_enum] = ACTIONS(4426), + [anon_sym_interface] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_go] = ACTIONS(4426), + [anon_sym_spawn] = ACTIONS(4426), + [anon_sym_json_DOTdecode] = ACTIONS(4426), + [anon_sym_LBRACK2] = ACTIONS(4426), + [anon_sym_TILDE] = ACTIONS(4426), + [anon_sym_CARET] = ACTIONS(4426), + [anon_sym_AMP] = ACTIONS(4426), + [anon_sym_LT_DASH] = ACTIONS(4426), + [sym_none] = ACTIONS(4426), + [sym_true] = ACTIONS(4426), + [sym_false] = ACTIONS(4426), + [sym_nil] = ACTIONS(4426), + [anon_sym_if] = ACTIONS(4426), + [anon_sym_DOLLARif] = ACTIONS(4426), + [anon_sym_match] = ACTIONS(4426), + [anon_sym_select] = ACTIONS(4426), + [anon_sym_lock] = ACTIONS(4426), + [anon_sym_rlock] = ACTIONS(4426), + [anon_sym_unsafe] = ACTIONS(4426), + [anon_sym_sql] = ACTIONS(4426), + [sym_int_literal] = ACTIONS(4426), + [sym_float_literal] = ACTIONS(4426), + [sym_rune_literal] = ACTIONS(4426), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_shared] = ACTIONS(4426), + [anon_sym_map_LBRACK] = ACTIONS(4426), + [anon_sym_chan] = ACTIONS(4426), + [anon_sym_thread] = ACTIONS(4426), + [anon_sym_atomic] = ACTIONS(4426), + [anon_sym_assert] = ACTIONS(4426), + [anon_sym_defer] = ACTIONS(4426), + [anon_sym_goto] = ACTIONS(4426), + [anon_sym_break] = ACTIONS(4426), + [anon_sym_continue] = ACTIONS(4426), + [anon_sym_return] = ACTIONS(4426), + [anon_sym_DOLLARfor] = ACTIONS(4426), + [anon_sym_for] = ACTIONS(4426), + [anon_sym_POUND] = ACTIONS(4426), + [anon_sym_asm] = ACTIONS(4426), + [anon_sym_AT_LBRACK] = ACTIONS(4426), + [sym___double_quote] = ACTIONS(4426), + [sym___single_quote] = ACTIONS(4426), + [sym___c_double_quote] = ACTIONS(4426), + [sym___c_single_quote] = ACTIONS(4426), + [sym___r_double_quote] = ACTIONS(4426), + [sym___r_single_quote] = ACTIONS(4426), + }, + [1613] = { + [ts_builtin_sym_end] = ACTIONS(4428), + [sym_identifier] = ACTIONS(4430), + [anon_sym_LF] = ACTIONS(4430), + [anon_sym_CR] = ACTIONS(4430), + [anon_sym_CR_LF] = ACTIONS(4430), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4430), + [anon_sym_const] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(4430), + [anon_sym___global] = ACTIONS(4430), + [anon_sym_type] = ACTIONS(4430), + [anon_sym_fn] = ACTIONS(4430), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_struct] = ACTIONS(4430), + [anon_sym_union] = ACTIONS(4430), + [anon_sym_pub] = ACTIONS(4430), + [anon_sym_mut] = ACTIONS(4430), + [anon_sym_enum] = ACTIONS(4430), + [anon_sym_interface] = ACTIONS(4430), + [anon_sym_QMARK] = ACTIONS(4430), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_go] = ACTIONS(4430), + [anon_sym_spawn] = ACTIONS(4430), + [anon_sym_json_DOTdecode] = ACTIONS(4430), + [anon_sym_LBRACK2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_CARET] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4430), + [anon_sym_LT_DASH] = ACTIONS(4430), + [sym_none] = ACTIONS(4430), + [sym_true] = ACTIONS(4430), + [sym_false] = ACTIONS(4430), + [sym_nil] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_DOLLARif] = ACTIONS(4430), + [anon_sym_match] = ACTIONS(4430), + [anon_sym_select] = ACTIONS(4430), + [anon_sym_lock] = ACTIONS(4430), + [anon_sym_rlock] = ACTIONS(4430), + [anon_sym_unsafe] = ACTIONS(4430), + [anon_sym_sql] = ACTIONS(4430), + [sym_int_literal] = ACTIONS(4430), + [sym_float_literal] = ACTIONS(4430), + [sym_rune_literal] = ACTIONS(4430), + [anon_sym_AT] = ACTIONS(4430), + [anon_sym_shared] = ACTIONS(4430), + [anon_sym_map_LBRACK] = ACTIONS(4430), + [anon_sym_chan] = ACTIONS(4430), + [anon_sym_thread] = ACTIONS(4430), + [anon_sym_atomic] = ACTIONS(4430), + [anon_sym_assert] = ACTIONS(4430), + [anon_sym_defer] = ACTIONS(4430), + [anon_sym_goto] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_DOLLARfor] = ACTIONS(4430), + [anon_sym_for] = ACTIONS(4430), + [anon_sym_POUND] = ACTIONS(4430), + [anon_sym_asm] = ACTIONS(4430), + [anon_sym_AT_LBRACK] = ACTIONS(4430), + [sym___double_quote] = ACTIONS(4430), + [sym___single_quote] = ACTIONS(4430), + [sym___c_double_quote] = ACTIONS(4430), + [sym___c_single_quote] = ACTIONS(4430), + [sym___r_double_quote] = ACTIONS(4430), + [sym___r_single_quote] = ACTIONS(4430), + }, + [1614] = { + [ts_builtin_sym_end] = ACTIONS(4432), + [sym_identifier] = ACTIONS(4434), + [anon_sym_LF] = ACTIONS(4434), + [anon_sym_CR] = ACTIONS(4434), + [anon_sym_CR_LF] = ACTIONS(4434), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4434), + [anon_sym_LBRACE] = ACTIONS(4434), + [anon_sym_const] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym___global] = ACTIONS(4434), + [anon_sym_type] = ACTIONS(4434), + [anon_sym_fn] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4434), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_STAR] = ACTIONS(4434), + [anon_sym_struct] = ACTIONS(4434), + [anon_sym_union] = ACTIONS(4434), + [anon_sym_pub] = ACTIONS(4434), + [anon_sym_mut] = ACTIONS(4434), + [anon_sym_enum] = ACTIONS(4434), + [anon_sym_interface] = ACTIONS(4434), + [anon_sym_QMARK] = ACTIONS(4434), + [anon_sym_BANG] = ACTIONS(4434), + [anon_sym_go] = ACTIONS(4434), + [anon_sym_spawn] = ACTIONS(4434), + [anon_sym_json_DOTdecode] = ACTIONS(4434), + [anon_sym_LBRACK2] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_CARET] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4434), + [anon_sym_LT_DASH] = ACTIONS(4434), + [sym_none] = ACTIONS(4434), + [sym_true] = ACTIONS(4434), + [sym_false] = ACTIONS(4434), + [sym_nil] = ACTIONS(4434), + [anon_sym_if] = ACTIONS(4434), + [anon_sym_DOLLARif] = ACTIONS(4434), + [anon_sym_match] = ACTIONS(4434), + [anon_sym_select] = ACTIONS(4434), + [anon_sym_lock] = ACTIONS(4434), + [anon_sym_rlock] = ACTIONS(4434), + [anon_sym_unsafe] = ACTIONS(4434), + [anon_sym_sql] = ACTIONS(4434), + [sym_int_literal] = ACTIONS(4434), + [sym_float_literal] = ACTIONS(4434), + [sym_rune_literal] = ACTIONS(4434), + [anon_sym_AT] = ACTIONS(4434), + [anon_sym_shared] = ACTIONS(4434), + [anon_sym_map_LBRACK] = ACTIONS(4434), + [anon_sym_chan] = ACTIONS(4434), + [anon_sym_thread] = ACTIONS(4434), + [anon_sym_atomic] = ACTIONS(4434), + [anon_sym_assert] = ACTIONS(4434), + [anon_sym_defer] = ACTIONS(4434), + [anon_sym_goto] = ACTIONS(4434), + [anon_sym_break] = ACTIONS(4434), + [anon_sym_continue] = ACTIONS(4434), + [anon_sym_return] = ACTIONS(4434), + [anon_sym_DOLLARfor] = ACTIONS(4434), + [anon_sym_for] = ACTIONS(4434), + [anon_sym_POUND] = ACTIONS(4434), + [anon_sym_asm] = ACTIONS(4434), + [anon_sym_AT_LBRACK] = ACTIONS(4434), + [sym___double_quote] = ACTIONS(4434), + [sym___single_quote] = ACTIONS(4434), + [sym___c_double_quote] = ACTIONS(4434), + [sym___c_single_quote] = ACTIONS(4434), + [sym___r_double_quote] = ACTIONS(4434), + [sym___r_single_quote] = ACTIONS(4434), + }, + [1615] = { + [ts_builtin_sym_end] = ACTIONS(4436), + [sym_identifier] = ACTIONS(4438), + [anon_sym_LF] = ACTIONS(4438), + [anon_sym_CR] = ACTIONS(4438), + [anon_sym_CR_LF] = ACTIONS(4438), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_const] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4438), + [anon_sym___global] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_fn] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_union] = ACTIONS(4438), + [anon_sym_pub] = ACTIONS(4438), + [anon_sym_mut] = ACTIONS(4438), + [anon_sym_enum] = ACTIONS(4438), + [anon_sym_interface] = ACTIONS(4438), + [anon_sym_QMARK] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_go] = ACTIONS(4438), + [anon_sym_spawn] = ACTIONS(4438), + [anon_sym_json_DOTdecode] = ACTIONS(4438), + [anon_sym_LBRACK2] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4438), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_LT_DASH] = ACTIONS(4438), + [sym_none] = ACTIONS(4438), + [sym_true] = ACTIONS(4438), + [sym_false] = ACTIONS(4438), + [sym_nil] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_DOLLARif] = ACTIONS(4438), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_select] = ACTIONS(4438), + [anon_sym_lock] = ACTIONS(4438), + [anon_sym_rlock] = ACTIONS(4438), + [anon_sym_unsafe] = ACTIONS(4438), + [anon_sym_sql] = ACTIONS(4438), + [sym_int_literal] = ACTIONS(4438), + [sym_float_literal] = ACTIONS(4438), + [sym_rune_literal] = ACTIONS(4438), + [anon_sym_AT] = ACTIONS(4438), + [anon_sym_shared] = ACTIONS(4438), + [anon_sym_map_LBRACK] = ACTIONS(4438), + [anon_sym_chan] = ACTIONS(4438), + [anon_sym_thread] = ACTIONS(4438), + [anon_sym_atomic] = ACTIONS(4438), + [anon_sym_assert] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_goto] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_DOLLARfor] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_POUND] = ACTIONS(4438), + [anon_sym_asm] = ACTIONS(4438), + [anon_sym_AT_LBRACK] = ACTIONS(4438), + [sym___double_quote] = ACTIONS(4438), + [sym___single_quote] = ACTIONS(4438), + [sym___c_double_quote] = ACTIONS(4438), + [sym___c_single_quote] = ACTIONS(4438), + [sym___r_double_quote] = ACTIONS(4438), + [sym___r_single_quote] = ACTIONS(4438), + }, + [1616] = { + [ts_builtin_sym_end] = ACTIONS(4440), + [sym_identifier] = ACTIONS(4442), + [anon_sym_LF] = ACTIONS(4442), + [anon_sym_CR] = ACTIONS(4442), + [anon_sym_CR_LF] = ACTIONS(4442), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4442), + [anon_sym_const] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4442), + [anon_sym___global] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_fn] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_union] = ACTIONS(4442), + [anon_sym_pub] = ACTIONS(4442), + [anon_sym_mut] = ACTIONS(4442), + [anon_sym_enum] = ACTIONS(4442), + [anon_sym_interface] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_go] = ACTIONS(4442), + [anon_sym_spawn] = ACTIONS(4442), + [anon_sym_json_DOTdecode] = ACTIONS(4442), + [anon_sym_LBRACK2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_LT_DASH] = ACTIONS(4442), + [sym_none] = ACTIONS(4442), + [sym_true] = ACTIONS(4442), + [sym_false] = ACTIONS(4442), + [sym_nil] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_DOLLARif] = ACTIONS(4442), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_select] = ACTIONS(4442), + [anon_sym_lock] = ACTIONS(4442), + [anon_sym_rlock] = ACTIONS(4442), + [anon_sym_unsafe] = ACTIONS(4442), + [anon_sym_sql] = ACTIONS(4442), + [sym_int_literal] = ACTIONS(4442), + [sym_float_literal] = ACTIONS(4442), + [sym_rune_literal] = ACTIONS(4442), + [anon_sym_AT] = ACTIONS(4442), + [anon_sym_shared] = ACTIONS(4442), + [anon_sym_map_LBRACK] = ACTIONS(4442), + [anon_sym_chan] = ACTIONS(4442), + [anon_sym_thread] = ACTIONS(4442), + [anon_sym_atomic] = ACTIONS(4442), + [anon_sym_assert] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_goto] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_DOLLARfor] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_POUND] = ACTIONS(4442), + [anon_sym_asm] = ACTIONS(4442), + [anon_sym_AT_LBRACK] = ACTIONS(4442), + [sym___double_quote] = ACTIONS(4442), + [sym___single_quote] = ACTIONS(4442), + [sym___c_double_quote] = ACTIONS(4442), + [sym___c_single_quote] = ACTIONS(4442), + [sym___r_double_quote] = ACTIONS(4442), + [sym___r_single_quote] = ACTIONS(4442), + }, + [1617] = { + [ts_builtin_sym_end] = ACTIONS(4444), + [sym_identifier] = ACTIONS(4446), + [anon_sym_LF] = ACTIONS(4446), + [anon_sym_CR] = ACTIONS(4446), + [anon_sym_CR_LF] = ACTIONS(4446), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_LBRACE] = ACTIONS(4446), + [anon_sym_const] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4446), + [anon_sym___global] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_fn] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_union] = ACTIONS(4446), + [anon_sym_pub] = ACTIONS(4446), + [anon_sym_mut] = ACTIONS(4446), + [anon_sym_enum] = ACTIONS(4446), + [anon_sym_interface] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_go] = ACTIONS(4446), + [anon_sym_spawn] = ACTIONS(4446), + [anon_sym_json_DOTdecode] = ACTIONS(4446), + [anon_sym_LBRACK2] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_LT_DASH] = ACTIONS(4446), + [sym_none] = ACTIONS(4446), + [sym_true] = ACTIONS(4446), + [sym_false] = ACTIONS(4446), + [sym_nil] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_DOLLARif] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_select] = ACTIONS(4446), + [anon_sym_lock] = ACTIONS(4446), + [anon_sym_rlock] = ACTIONS(4446), + [anon_sym_unsafe] = ACTIONS(4446), + [anon_sym_sql] = ACTIONS(4446), + [sym_int_literal] = ACTIONS(4446), + [sym_float_literal] = ACTIONS(4446), + [sym_rune_literal] = ACTIONS(4446), + [anon_sym_AT] = ACTIONS(4446), + [anon_sym_shared] = ACTIONS(4446), + [anon_sym_map_LBRACK] = ACTIONS(4446), + [anon_sym_chan] = ACTIONS(4446), + [anon_sym_thread] = ACTIONS(4446), + [anon_sym_atomic] = ACTIONS(4446), + [anon_sym_assert] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_goto] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_DOLLARfor] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_POUND] = ACTIONS(4446), + [anon_sym_asm] = ACTIONS(4446), + [anon_sym_AT_LBRACK] = ACTIONS(4446), + [sym___double_quote] = ACTIONS(4446), + [sym___single_quote] = ACTIONS(4446), + [sym___c_double_quote] = ACTIONS(4446), + [sym___c_single_quote] = ACTIONS(4446), + [sym___r_double_quote] = ACTIONS(4446), + [sym___r_single_quote] = ACTIONS(4446), + }, + [1618] = { + [ts_builtin_sym_end] = ACTIONS(4448), + [sym_identifier] = ACTIONS(4450), + [anon_sym_LF] = ACTIONS(4450), + [anon_sym_CR] = ACTIONS(4450), + [anon_sym_CR_LF] = ACTIONS(4450), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_const] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym___global] = ACTIONS(4450), + [anon_sym_type] = ACTIONS(4450), + [anon_sym_fn] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4450), + [anon_sym_union] = ACTIONS(4450), + [anon_sym_pub] = ACTIONS(4450), + [anon_sym_mut] = ACTIONS(4450), + [anon_sym_enum] = ACTIONS(4450), + [anon_sym_interface] = ACTIONS(4450), + [anon_sym_QMARK] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4450), + [anon_sym_go] = ACTIONS(4450), + [anon_sym_spawn] = ACTIONS(4450), + [anon_sym_json_DOTdecode] = ACTIONS(4450), + [anon_sym_LBRACK2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_CARET] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_LT_DASH] = ACTIONS(4450), + [sym_none] = ACTIONS(4450), + [sym_true] = ACTIONS(4450), + [sym_false] = ACTIONS(4450), + [sym_nil] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_DOLLARif] = ACTIONS(4450), + [anon_sym_match] = ACTIONS(4450), + [anon_sym_select] = ACTIONS(4450), + [anon_sym_lock] = ACTIONS(4450), + [anon_sym_rlock] = ACTIONS(4450), + [anon_sym_unsafe] = ACTIONS(4450), + [anon_sym_sql] = ACTIONS(4450), + [sym_int_literal] = ACTIONS(4450), + [sym_float_literal] = ACTIONS(4450), + [sym_rune_literal] = ACTIONS(4450), + [anon_sym_AT] = ACTIONS(4450), + [anon_sym_shared] = ACTIONS(4450), + [anon_sym_map_LBRACK] = ACTIONS(4450), + [anon_sym_chan] = ACTIONS(4450), + [anon_sym_thread] = ACTIONS(4450), + [anon_sym_atomic] = ACTIONS(4450), + [anon_sym_assert] = ACTIONS(4450), + [anon_sym_defer] = ACTIONS(4450), + [anon_sym_goto] = ACTIONS(4450), + [anon_sym_break] = ACTIONS(4450), + [anon_sym_continue] = ACTIONS(4450), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_DOLLARfor] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_POUND] = ACTIONS(4450), + [anon_sym_asm] = ACTIONS(4450), + [anon_sym_AT_LBRACK] = ACTIONS(4450), + [sym___double_quote] = ACTIONS(4450), + [sym___single_quote] = ACTIONS(4450), + [sym___c_double_quote] = ACTIONS(4450), + [sym___c_single_quote] = ACTIONS(4450), + [sym___r_double_quote] = ACTIONS(4450), + [sym___r_single_quote] = ACTIONS(4450), + }, + [1619] = { + [sym_reference_expression] = STATE(4589), + [sym_type_reference_expression] = STATE(2671), + [sym_plain_type] = STATE(2760), + [sym__plain_type_without_special] = STATE(2703), + [sym_anon_struct_type] = STATE(2734), + [sym_multi_return_type] = STATE(2703), + [sym_result_type] = STATE(2703), + [sym_option_type] = STATE(2703), + [sym_qualified_type] = STATE(2671), + [sym_fixed_array_type] = STATE(2734), + [sym_array_type] = STATE(2734), + [sym_pointer_type] = STATE(2734), + [sym_wrong_pointer_type] = STATE(2734), + [sym_map_type] = STATE(2734), + [sym_channel_type] = STATE(2734), + [sym_shared_type] = STATE(2734), + [sym_thread_type] = STATE(2734), + [sym_atomic_type] = STATE(2734), + [sym_generic_type] = STATE(2734), + [sym_function_type] = STATE(2734), + [sym_identifier] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_LBRACK2] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(4470), + [anon_sym_map_LBRACK] = ACTIONS(4472), + [anon_sym_chan] = ACTIONS(4474), + [anon_sym_thread] = ACTIONS(4476), + [anon_sym_atomic] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(615), + }, + [1620] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4480), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - }, - [1593] = { - [sym_reference_expression] = STATE(4655), - [sym_type_reference_expression] = STATE(3547), - [sym_plain_type] = STATE(2393), - [sym__plain_type_without_special] = STATE(2415), - [sym_anon_struct_type] = STATE(2417), - [sym_multi_return_type] = STATE(2415), - [sym_result_type] = STATE(2415), - [sym_option_type] = STATE(2415), - [sym_qualified_type] = STATE(3547), - [sym_fixed_array_type] = STATE(2417), - [sym_array_type] = STATE(2417), - [sym_pointer_type] = STATE(2417), - [sym_wrong_pointer_type] = STATE(2417), - [sym_map_type] = STATE(2417), - [sym_channel_type] = STATE(2417), - [sym_shared_type] = STATE(2417), - [sym_thread_type] = STATE(2417), - [sym_atomic_type] = STATE(2417), - [sym_generic_type] = STATE(2417), - [sym_function_type] = STATE(2417), - [sym_identifier] = ACTIONS(591), + [anon_sym_DOT_DOT] = ACTIONS(563), + }, + [1621] = { + [sym_reference_expression] = STATE(4589), + [sym_type_reference_expression] = STATE(2671), + [sym_plain_type] = STATE(2744), + [sym__plain_type_without_special] = STATE(2703), + [sym_anon_struct_type] = STATE(2734), + [sym_multi_return_type] = STATE(2703), + [sym_result_type] = STATE(2703), + [sym_option_type] = STATE(2703), + [sym_qualified_type] = STATE(2671), + [sym_fixed_array_type] = STATE(2734), + [sym_array_type] = STATE(2734), + [sym_pointer_type] = STATE(2734), + [sym_wrong_pointer_type] = STATE(2734), + [sym_map_type] = STATE(2734), + [sym_channel_type] = STATE(2734), + [sym_shared_type] = STATE(2734), + [sym_thread_type] = STATE(2734), + [sym_atomic_type] = STATE(2734), + [sym_generic_type] = STATE(2734), + [sym_function_type] = STATE(2734), + [sym_identifier] = ACTIONS(4452), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(589), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_LBRACK2] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(593), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_LBRACK2] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(4470), + [anon_sym_map_LBRACK] = ACTIONS(4472), + [anon_sym_chan] = ACTIONS(4474), + [anon_sym_thread] = ACTIONS(4476), + [anon_sym_atomic] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(623), + }, + [1622] = { + [sym_reference_expression] = STATE(4589), + [sym_type_reference_expression] = STATE(2671), + [sym_plain_type] = STATE(2756), + [sym__plain_type_without_special] = STATE(2703), + [sym_anon_struct_type] = STATE(2734), + [sym_multi_return_type] = STATE(2703), + [sym_result_type] = STATE(2703), + [sym_option_type] = STATE(2703), + [sym_qualified_type] = STATE(2671), + [sym_fixed_array_type] = STATE(2734), + [sym_array_type] = STATE(2734), + [sym_pointer_type] = STATE(2734), + [sym_wrong_pointer_type] = STATE(2734), + [sym_map_type] = STATE(2734), + [sym_channel_type] = STATE(2734), + [sym_shared_type] = STATE(2734), + [sym_thread_type] = STATE(2734), + [sym_atomic_type] = STATE(2734), + [sym_generic_type] = STATE(2734), + [sym_function_type] = STATE(2734), + [sym_identifier] = ACTIONS(4452), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4464), + [anon_sym_LBRACK2] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(581), + [anon_sym_AMP_CARET] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_shared] = ACTIONS(4470), + [anon_sym_map_LBRACK] = ACTIONS(4472), + [anon_sym_chan] = ACTIONS(4474), + [anon_sym_thread] = ACTIONS(4476), + [anon_sym_atomic] = ACTIONS(4478), + [anon_sym_DOT_DOT] = ACTIONS(585), + }, + [1623] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2477), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), }, - [1594] = { - [ts_builtin_sym_end] = ACTIONS(4320), - [sym_identifier] = ACTIONS(4322), + [1624] = { + [ts_builtin_sym_end] = ACTIONS(4482), + [sym_identifier] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4484), + [anon_sym_DOT] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4482), + [anon_sym_const] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4482), + [anon_sym___global] = ACTIONS(4484), + [anon_sym_type] = ACTIONS(4484), + [anon_sym_fn] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4482), + [anon_sym_DASH] = ACTIONS(4482), + [anon_sym_STAR] = ACTIONS(4482), + [anon_sym_struct] = ACTIONS(4484), + [anon_sym_union] = ACTIONS(4484), + [anon_sym_pub] = ACTIONS(4484), + [anon_sym_mut] = ACTIONS(4484), + [anon_sym_enum] = ACTIONS(4484), + [anon_sym_interface] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(4482), + [anon_sym_BANG] = ACTIONS(4482), + [anon_sym_go] = ACTIONS(4484), + [anon_sym_spawn] = ACTIONS(4484), + [anon_sym_json_DOTdecode] = ACTIONS(4482), + [anon_sym_LBRACK2] = ACTIONS(4482), + [anon_sym_TILDE] = ACTIONS(4482), + [anon_sym_CARET] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + [anon_sym_LT_DASH] = ACTIONS(4482), + [sym_none] = ACTIONS(4484), + [sym_true] = ACTIONS(4484), + [sym_false] = ACTIONS(4484), + [sym_nil] = ACTIONS(4484), + [anon_sym_if] = ACTIONS(4484), + [anon_sym_DOLLARif] = ACTIONS(4484), + [anon_sym_match] = ACTIONS(4484), + [anon_sym_select] = ACTIONS(4484), + [anon_sym_lock] = ACTIONS(4484), + [anon_sym_rlock] = ACTIONS(4484), + [anon_sym_unsafe] = ACTIONS(4484), + [anon_sym_sql] = ACTIONS(4484), + [sym_int_literal] = ACTIONS(4484), + [sym_float_literal] = ACTIONS(4482), + [sym_rune_literal] = ACTIONS(4482), + [anon_sym_AT] = ACTIONS(4484), + [anon_sym_shared] = ACTIONS(4484), + [anon_sym_map_LBRACK] = ACTIONS(4482), + [anon_sym_chan] = ACTIONS(4484), + [anon_sym_thread] = ACTIONS(4484), + [anon_sym_atomic] = ACTIONS(4484), + [anon_sym_assert] = ACTIONS(4484), + [anon_sym_defer] = ACTIONS(4484), + [anon_sym_goto] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4484), + [anon_sym_continue] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4484), + [anon_sym_DOLLARfor] = ACTIONS(4484), + [anon_sym_for] = ACTIONS(4484), + [anon_sym_POUND] = ACTIONS(4482), + [anon_sym_asm] = ACTIONS(4484), + [anon_sym_AT_LBRACK] = ACTIONS(4482), + [sym___double_quote] = ACTIONS(4482), + [sym___single_quote] = ACTIONS(4482), + [sym___c_double_quote] = ACTIONS(4482), + [sym___c_single_quote] = ACTIONS(4482), + [sym___r_double_quote] = ACTIONS(4482), + [sym___r_single_quote] = ACTIONS(4482), + }, + [1625] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4322), - [anon_sym_DOT] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4320), - [anon_sym_const] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4320), - [anon_sym___global] = ACTIONS(4322), - [anon_sym_type] = ACTIONS(4322), - [anon_sym_fn] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4320), - [anon_sym_struct] = ACTIONS(4322), - [anon_sym_union] = ACTIONS(4322), - [anon_sym_pub] = ACTIONS(4322), - [anon_sym_mut] = ACTIONS(4322), - [anon_sym_enum] = ACTIONS(4322), - [anon_sym_interface] = ACTIONS(4322), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_go] = ACTIONS(4322), - [anon_sym_spawn] = ACTIONS(4322), - [anon_sym_json_DOTdecode] = ACTIONS(4320), - [anon_sym_LBRACK2] = ACTIONS(4320), - [anon_sym_TILDE] = ACTIONS(4320), - [anon_sym_CARET] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_DASH] = ACTIONS(4320), - [sym_none] = ACTIONS(4322), - [sym_true] = ACTIONS(4322), - [sym_false] = ACTIONS(4322), - [sym_nil] = ACTIONS(4322), - [anon_sym_if] = ACTIONS(4322), - [anon_sym_DOLLARif] = ACTIONS(4322), - [anon_sym_match] = ACTIONS(4322), - [anon_sym_select] = ACTIONS(4322), - [anon_sym_lock] = ACTIONS(4322), - [anon_sym_rlock] = ACTIONS(4322), - [anon_sym_unsafe] = ACTIONS(4322), - [anon_sym_sql] = ACTIONS(4322), - [sym_int_literal] = ACTIONS(4322), - [sym_float_literal] = ACTIONS(4320), - [sym_rune_literal] = ACTIONS(4320), - [anon_sym_AT] = ACTIONS(4322), - [anon_sym_shared] = ACTIONS(4322), - [anon_sym_map_LBRACK] = ACTIONS(4320), - [anon_sym_chan] = ACTIONS(4322), - [anon_sym_thread] = ACTIONS(4322), - [anon_sym_atomic] = ACTIONS(4322), - [anon_sym_assert] = ACTIONS(4322), - [anon_sym_defer] = ACTIONS(4322), - [anon_sym_goto] = ACTIONS(4322), - [anon_sym_break] = ACTIONS(4322), - [anon_sym_continue] = ACTIONS(4322), - [anon_sym_return] = ACTIONS(4322), - [anon_sym_DOLLARfor] = ACTIONS(4322), - [anon_sym_for] = ACTIONS(4322), - [anon_sym_POUND] = ACTIONS(4320), - [anon_sym_asm] = ACTIONS(4322), - [anon_sym_AT_LBRACK] = ACTIONS(4320), - [sym___double_quote] = ACTIONS(4320), - [sym___single_quote] = ACTIONS(4320), - [sym___c_double_quote] = ACTIONS(4320), - [sym___c_single_quote] = ACTIONS(4320), - [sym___r_double_quote] = ACTIONS(4320), - [sym___r_single_quote] = ACTIONS(4320), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_COLON_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1595] = { - [ts_builtin_sym_end] = ACTIONS(4324), - [sym_identifier] = ACTIONS(4326), + [1626] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2421), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(4488), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4324), - [anon_sym_const] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4324), - [anon_sym___global] = ACTIONS(4326), - [anon_sym_type] = ACTIONS(4326), - [anon_sym_fn] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4324), - [anon_sym_struct] = ACTIONS(4326), - [anon_sym_union] = ACTIONS(4326), - [anon_sym_pub] = ACTIONS(4326), - [anon_sym_mut] = ACTIONS(4326), - [anon_sym_enum] = ACTIONS(4326), - [anon_sym_interface] = ACTIONS(4326), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_go] = ACTIONS(4326), - [anon_sym_spawn] = ACTIONS(4326), - [anon_sym_json_DOTdecode] = ACTIONS(4324), - [anon_sym_LBRACK2] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(4324), - [anon_sym_CARET] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_DASH] = ACTIONS(4324), - [sym_none] = ACTIONS(4326), - [sym_true] = ACTIONS(4326), - [sym_false] = ACTIONS(4326), - [sym_nil] = ACTIONS(4326), - [anon_sym_if] = ACTIONS(4326), - [anon_sym_DOLLARif] = ACTIONS(4326), - [anon_sym_match] = ACTIONS(4326), - [anon_sym_select] = ACTIONS(4326), - [anon_sym_lock] = ACTIONS(4326), - [anon_sym_rlock] = ACTIONS(4326), - [anon_sym_unsafe] = ACTIONS(4326), - [anon_sym_sql] = ACTIONS(4326), - [sym_int_literal] = ACTIONS(4326), - [sym_float_literal] = ACTIONS(4324), - [sym_rune_literal] = ACTIONS(4324), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_shared] = ACTIONS(4326), - [anon_sym_map_LBRACK] = ACTIONS(4324), - [anon_sym_chan] = ACTIONS(4326), - [anon_sym_thread] = ACTIONS(4326), - [anon_sym_atomic] = ACTIONS(4326), - [anon_sym_assert] = ACTIONS(4326), - [anon_sym_defer] = ACTIONS(4326), - [anon_sym_goto] = ACTIONS(4326), - [anon_sym_break] = ACTIONS(4326), - [anon_sym_continue] = ACTIONS(4326), - [anon_sym_return] = ACTIONS(4326), - [anon_sym_DOLLARfor] = ACTIONS(4326), - [anon_sym_for] = ACTIONS(4326), - [anon_sym_POUND] = ACTIONS(4324), - [anon_sym_asm] = ACTIONS(4326), - [anon_sym_AT_LBRACK] = ACTIONS(4324), - [sym___double_quote] = ACTIONS(4324), - [sym___single_quote] = ACTIONS(4324), - [sym___c_double_quote] = ACTIONS(4324), - [sym___c_single_quote] = ACTIONS(4324), - [sym___r_double_quote] = ACTIONS(4324), - [sym___r_single_quote] = ACTIONS(4324), + [anon_sym_DOT] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_LPAREN] = ACTIONS(4490), + [anon_sym_fn] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4490), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_mut] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_go] = ACTIONS(4488), + [anon_sym_spawn] = ACTIONS(4488), + [anon_sym_json_DOTdecode] = ACTIONS(4490), + [anon_sym_LBRACK2] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_CARET] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4490), + [anon_sym_LT_DASH] = ACTIONS(4490), + [sym_none] = ACTIONS(4488), + [sym_true] = ACTIONS(4488), + [sym_false] = ACTIONS(4488), + [sym_nil] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_DOLLARif] = ACTIONS(4488), + [anon_sym_match] = ACTIONS(4488), + [anon_sym_select] = ACTIONS(4488), + [anon_sym_lock] = ACTIONS(4488), + [anon_sym_rlock] = ACTIONS(4488), + [anon_sym_unsafe] = ACTIONS(4488), + [anon_sym_sql] = ACTIONS(4488), + [sym_int_literal] = ACTIONS(4488), + [sym_float_literal] = ACTIONS(4490), + [sym_rune_literal] = ACTIONS(4490), + [anon_sym_AT] = ACTIONS(4488), + [anon_sym_shared] = ACTIONS(4488), + [anon_sym_map_LBRACK] = ACTIONS(4490), + [anon_sym_chan] = ACTIONS(4488), + [anon_sym_thread] = ACTIONS(4488), + [anon_sym_atomic] = ACTIONS(4488), + [sym___double_quote] = ACTIONS(4490), + [sym___single_quote] = ACTIONS(4490), + [sym___c_double_quote] = ACTIONS(4490), + [sym___c_single_quote] = ACTIONS(4490), + [sym___r_double_quote] = ACTIONS(4490), + [sym___r_single_quote] = ACTIONS(4490), + }, + [1627] = { + [ts_builtin_sym_end] = ACTIONS(4492), + [sym_identifier] = ACTIONS(4494), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4494), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4494), + [anon_sym_LPAREN] = ACTIONS(4492), + [anon_sym___global] = ACTIONS(4494), + [anon_sym_type] = ACTIONS(4494), + [anon_sym_fn] = ACTIONS(4494), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_struct] = ACTIONS(4494), + [anon_sym_union] = ACTIONS(4494), + [anon_sym_pub] = ACTIONS(4494), + [anon_sym_mut] = ACTIONS(4494), + [anon_sym_enum] = ACTIONS(4494), + [anon_sym_interface] = ACTIONS(4494), + [anon_sym_QMARK] = ACTIONS(4492), + [anon_sym_BANG] = ACTIONS(4492), + [anon_sym_go] = ACTIONS(4494), + [anon_sym_spawn] = ACTIONS(4494), + [anon_sym_json_DOTdecode] = ACTIONS(4492), + [anon_sym_LBRACK2] = ACTIONS(4492), + [anon_sym_TILDE] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4492), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_LT_DASH] = ACTIONS(4492), + [sym_none] = ACTIONS(4494), + [sym_true] = ACTIONS(4494), + [sym_false] = ACTIONS(4494), + [sym_nil] = ACTIONS(4494), + [anon_sym_if] = ACTIONS(4494), + [anon_sym_DOLLARif] = ACTIONS(4494), + [anon_sym_match] = ACTIONS(4494), + [anon_sym_select] = ACTIONS(4494), + [anon_sym_lock] = ACTIONS(4494), + [anon_sym_rlock] = ACTIONS(4494), + [anon_sym_unsafe] = ACTIONS(4494), + [anon_sym_sql] = ACTIONS(4494), + [sym_int_literal] = ACTIONS(4494), + [sym_float_literal] = ACTIONS(4492), + [sym_rune_literal] = ACTIONS(4492), + [anon_sym_AT] = ACTIONS(4494), + [anon_sym_shared] = ACTIONS(4494), + [anon_sym_map_LBRACK] = ACTIONS(4492), + [anon_sym_chan] = ACTIONS(4494), + [anon_sym_thread] = ACTIONS(4494), + [anon_sym_atomic] = ACTIONS(4494), + [anon_sym_assert] = ACTIONS(4494), + [anon_sym_defer] = ACTIONS(4494), + [anon_sym_goto] = ACTIONS(4494), + [anon_sym_break] = ACTIONS(4494), + [anon_sym_continue] = ACTIONS(4494), + [anon_sym_return] = ACTIONS(4494), + [anon_sym_DOLLARfor] = ACTIONS(4494), + [anon_sym_for] = ACTIONS(4494), + [anon_sym_POUND] = ACTIONS(4492), + [anon_sym_asm] = ACTIONS(4494), + [anon_sym_AT_LBRACK] = ACTIONS(4492), + [sym___double_quote] = ACTIONS(4492), + [sym___single_quote] = ACTIONS(4492), + [sym___c_double_quote] = ACTIONS(4492), + [sym___c_single_quote] = ACTIONS(4492), + [sym___r_double_quote] = ACTIONS(4492), + [sym___r_single_quote] = ACTIONS(4492), + }, + [1628] = { + [ts_builtin_sym_end] = ACTIONS(4496), + [sym_identifier] = ACTIONS(4498), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4498), + [anon_sym_DOT] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym___global] = ACTIONS(4498), + [anon_sym_type] = ACTIONS(4498), + [anon_sym_fn] = ACTIONS(4498), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4498), + [anon_sym_union] = ACTIONS(4498), + [anon_sym_pub] = ACTIONS(4498), + [anon_sym_mut] = ACTIONS(4498), + [anon_sym_enum] = ACTIONS(4498), + [anon_sym_interface] = ACTIONS(4498), + [anon_sym_QMARK] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4496), + [anon_sym_go] = ACTIONS(4498), + [anon_sym_spawn] = ACTIONS(4498), + [anon_sym_json_DOTdecode] = ACTIONS(4496), + [anon_sym_LBRACK2] = ACTIONS(4496), + [anon_sym_TILDE] = ACTIONS(4496), + [anon_sym_CARET] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_LT_DASH] = ACTIONS(4496), + [sym_none] = ACTIONS(4498), + [sym_true] = ACTIONS(4498), + [sym_false] = ACTIONS(4498), + [sym_nil] = ACTIONS(4498), + [anon_sym_if] = ACTIONS(4498), + [anon_sym_DOLLARif] = ACTIONS(4498), + [anon_sym_match] = ACTIONS(4498), + [anon_sym_select] = ACTIONS(4498), + [anon_sym_lock] = ACTIONS(4498), + [anon_sym_rlock] = ACTIONS(4498), + [anon_sym_unsafe] = ACTIONS(4498), + [anon_sym_sql] = ACTIONS(4498), + [sym_int_literal] = ACTIONS(4498), + [sym_float_literal] = ACTIONS(4496), + [sym_rune_literal] = ACTIONS(4496), + [anon_sym_AT] = ACTIONS(4498), + [anon_sym_shared] = ACTIONS(4498), + [anon_sym_map_LBRACK] = ACTIONS(4496), + [anon_sym_chan] = ACTIONS(4498), + [anon_sym_thread] = ACTIONS(4498), + [anon_sym_atomic] = ACTIONS(4498), + [anon_sym_assert] = ACTIONS(4498), + [anon_sym_defer] = ACTIONS(4498), + [anon_sym_goto] = ACTIONS(4498), + [anon_sym_break] = ACTIONS(4498), + [anon_sym_continue] = ACTIONS(4498), + [anon_sym_return] = ACTIONS(4498), + [anon_sym_DOLLARfor] = ACTIONS(4498), + [anon_sym_for] = ACTIONS(4498), + [anon_sym_POUND] = ACTIONS(4496), + [anon_sym_asm] = ACTIONS(4498), + [anon_sym_AT_LBRACK] = ACTIONS(4496), + [sym___double_quote] = ACTIONS(4496), + [sym___single_quote] = ACTIONS(4496), + [sym___c_double_quote] = ACTIONS(4496), + [sym___c_single_quote] = ACTIONS(4496), + [sym___r_double_quote] = ACTIONS(4496), + [sym___r_single_quote] = ACTIONS(4496), + }, + [1629] = { + [sym_reference_expression] = STATE(4638), + [sym_type_reference_expression] = STATE(3642), + [sym_plain_type] = STATE(2481), + [sym__plain_type_without_special] = STATE(2410), + [sym_anon_struct_type] = STATE(2408), + [sym_multi_return_type] = STATE(2410), + [sym_result_type] = STATE(2410), + [sym_option_type] = STATE(2410), + [sym_qualified_type] = STATE(3642), + [sym_fixed_array_type] = STATE(2408), + [sym_array_type] = STATE(2408), + [sym_pointer_type] = STATE(2408), + [sym_wrong_pointer_type] = STATE(2408), + [sym_map_type] = STATE(2408), + [sym_channel_type] = STATE(2408), + [sym_shared_type] = STATE(2408), + [sym_thread_type] = STATE(2408), + [sym_atomic_type] = STATE(2408), + [sym_generic_type] = STATE(2408), + [sym_function_type] = STATE(2408), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4480), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_COLON_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1596] = { + [1630] = { [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(4328), + [sym_identifier] = ACTIONS(4500), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4500), [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(4328), + [anon_sym_const] = ACTIONS(4500), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym___global] = ACTIONS(4328), - [anon_sym_type] = ACTIONS(4328), - [anon_sym_fn] = ACTIONS(4328), + [anon_sym___global] = ACTIONS(4500), + [anon_sym_type] = ACTIONS(4500), + [anon_sym_fn] = ACTIONS(4500), [anon_sym_PLUS] = ACTIONS(135), [anon_sym_DASH] = ACTIONS(135), [anon_sym_STAR] = ACTIONS(135), - [anon_sym_struct] = ACTIONS(4328), - [anon_sym_union] = ACTIONS(4328), - [anon_sym_pub] = ACTIONS(4328), - [anon_sym_mut] = ACTIONS(4328), - [anon_sym_enum] = ACTIONS(4328), - [anon_sym_interface] = ACTIONS(4328), + [anon_sym_struct] = ACTIONS(4500), + [anon_sym_union] = ACTIONS(4500), + [anon_sym_pub] = ACTIONS(4500), + [anon_sym_mut] = ACTIONS(4500), + [anon_sym_enum] = ACTIONS(4500), + [anon_sym_interface] = ACTIONS(4500), [anon_sym_QMARK] = ACTIONS(135), [anon_sym_BANG] = ACTIONS(135), - [anon_sym_go] = ACTIONS(4328), - [anon_sym_spawn] = ACTIONS(4328), + [anon_sym_go] = ACTIONS(4500), + [anon_sym_spawn] = ACTIONS(4500), [anon_sym_json_DOTdecode] = ACTIONS(135), [anon_sym_LBRACK2] = ACTIONS(135), [anon_sym_TILDE] = ACTIONS(135), [anon_sym_CARET] = ACTIONS(135), [anon_sym_AMP] = ACTIONS(135), [anon_sym_LT_DASH] = ACTIONS(135), - [sym_none] = ACTIONS(4328), - [sym_true] = ACTIONS(4328), - [sym_false] = ACTIONS(4328), - [sym_nil] = ACTIONS(4328), - [anon_sym_if] = ACTIONS(4328), - [anon_sym_DOLLARif] = ACTIONS(4328), - [anon_sym_match] = ACTIONS(4328), - [anon_sym_select] = ACTIONS(4328), - [anon_sym_lock] = ACTIONS(4328), - [anon_sym_rlock] = ACTIONS(4328), - [anon_sym_unsafe] = ACTIONS(4328), - [anon_sym_sql] = ACTIONS(4328), - [sym_int_literal] = ACTIONS(4328), + [sym_none] = ACTIONS(4500), + [sym_true] = ACTIONS(4500), + [sym_false] = ACTIONS(4500), + [sym_nil] = ACTIONS(4500), + [anon_sym_if] = ACTIONS(4500), + [anon_sym_DOLLARif] = ACTIONS(4500), + [anon_sym_match] = ACTIONS(4500), + [anon_sym_select] = ACTIONS(4500), + [anon_sym_lock] = ACTIONS(4500), + [anon_sym_rlock] = ACTIONS(4500), + [anon_sym_unsafe] = ACTIONS(4500), + [anon_sym_sql] = ACTIONS(4500), + [sym_int_literal] = ACTIONS(4500), [sym_float_literal] = ACTIONS(135), [sym_rune_literal] = ACTIONS(135), - [anon_sym_AT] = ACTIONS(4328), - [anon_sym_shared] = ACTIONS(4328), + [anon_sym_AT] = ACTIONS(4500), + [anon_sym_shared] = ACTIONS(4500), [anon_sym_map_LBRACK] = ACTIONS(135), - [anon_sym_chan] = ACTIONS(4328), - [anon_sym_thread] = ACTIONS(4328), - [anon_sym_atomic] = ACTIONS(4328), - [anon_sym_assert] = ACTIONS(4328), - [anon_sym_defer] = ACTIONS(4328), - [anon_sym_goto] = ACTIONS(4328), - [anon_sym_break] = ACTIONS(4328), - [anon_sym_continue] = ACTIONS(4328), - [anon_sym_return] = ACTIONS(4328), - [anon_sym_DOLLARfor] = ACTIONS(4328), - [anon_sym_for] = ACTIONS(4328), + [anon_sym_chan] = ACTIONS(4500), + [anon_sym_thread] = ACTIONS(4500), + [anon_sym_atomic] = ACTIONS(4500), + [anon_sym_assert] = ACTIONS(4500), + [anon_sym_defer] = ACTIONS(4500), + [anon_sym_goto] = ACTIONS(4500), + [anon_sym_break] = ACTIONS(4500), + [anon_sym_continue] = ACTIONS(4500), + [anon_sym_return] = ACTIONS(4500), + [anon_sym_DOLLARfor] = ACTIONS(4500), + [anon_sym_for] = ACTIONS(4500), [anon_sym_POUND] = ACTIONS(135), - [anon_sym_asm] = ACTIONS(4328), + [anon_sym_asm] = ACTIONS(4500), [anon_sym_AT_LBRACK] = ACTIONS(135), [sym___double_quote] = ACTIONS(135), [sym___single_quote] = ACTIONS(135), @@ -189545,355 +193370,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(135), [sym___r_single_quote] = ACTIONS(135), }, - [1597] = { - [sym_identifier] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2922), - [anon_sym_CR] = ACTIONS(2922), - [anon_sym_CR_LF] = ACTIONS(2922), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2922), - [anon_sym_as] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_fn] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_STAR] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_PERCENT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_EQ_EQ] = ACTIONS(2922), - [anon_sym_BANG_EQ] = ACTIONS(2922), - [anon_sym_LT_EQ] = ACTIONS(2922), - [anon_sym_GT_EQ] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2920), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2922), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_LBRACK2] = ACTIONS(2922), - [anon_sym_CARET] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_LT_DASH] = ACTIONS(2922), - [anon_sym_LT_LT] = ACTIONS(2922), - [anon_sym_GT_GT] = ACTIONS(2922), - [anon_sym_GT_GT_GT] = ACTIONS(2922), - [anon_sym_AMP_CARET] = ACTIONS(2922), - [anon_sym_AMP_AMP] = ACTIONS(2922), - [anon_sym_PIPE_PIPE] = ACTIONS(2922), - [anon_sym_or] = ACTIONS(2922), - [anon_sym_QMARK_DOT] = ACTIONS(2922), - [anon_sym_POUND_LBRACK] = ACTIONS(2922), - [anon_sym_is] = ACTIONS(2922), - [anon_sym_BANGis] = ACTIONS(2922), - [anon_sym_in] = ACTIONS(2922), - [anon_sym_BANGin] = ACTIONS(2922), - [anon_sym_STAR_EQ] = ACTIONS(2922), - [anon_sym_SLASH_EQ] = ACTIONS(2922), - [anon_sym_PERCENT_EQ] = ACTIONS(2922), - [anon_sym_LT_LT_EQ] = ACTIONS(2922), - [anon_sym_GT_GT_EQ] = ACTIONS(2922), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2922), - [anon_sym_AMP_EQ] = ACTIONS(2922), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2922), - [anon_sym_PLUS_EQ] = ACTIONS(2922), - [anon_sym_DASH_EQ] = ACTIONS(2922), - [anon_sym_PIPE_EQ] = ACTIONS(2922), - [anon_sym_CARET_EQ] = ACTIONS(2922), - [anon_sym_COLON_EQ] = ACTIONS(2922), - [anon_sym_shared] = ACTIONS(2922), - [anon_sym_map_LBRACK] = ACTIONS(2922), - [anon_sym_chan] = ACTIONS(2922), - [anon_sym_thread] = ACTIONS(2922), - [anon_sym_atomic] = ACTIONS(2922), - }, - [1598] = { - [sym_identifier] = ACTIONS(2858), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_CR] = ACTIONS(2858), - [anon_sym_CR_LF] = ACTIONS(2858), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_EQ] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_fn] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_GT] = ACTIONS(2858), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2858), - [anon_sym_COLON] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2858), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2858), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_is] = ACTIONS(2858), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2858), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_STAR_EQ] = ACTIONS(2858), - [anon_sym_SLASH_EQ] = ACTIONS(2858), - [anon_sym_PERCENT_EQ] = ACTIONS(2858), - [anon_sym_LT_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_GT_EQ] = ACTIONS(2858), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2858), - [anon_sym_AMP_EQ] = ACTIONS(2858), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2858), - [anon_sym_PLUS_EQ] = ACTIONS(2858), - [anon_sym_DASH_EQ] = ACTIONS(2858), - [anon_sym_PIPE_EQ] = ACTIONS(2858), - [anon_sym_CARET_EQ] = ACTIONS(2858), - [anon_sym_COLON_EQ] = ACTIONS(2858), - [anon_sym_shared] = ACTIONS(2858), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2858), - [anon_sym_thread] = ACTIONS(2858), - [anon_sym_atomic] = ACTIONS(2858), - }, - [1599] = { - [sym_identifier] = ACTIONS(2854), - [anon_sym_LF] = ACTIONS(2854), - [anon_sym_CR] = ACTIONS(2854), - [anon_sym_CR_LF] = ACTIONS(2854), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2854), - [anon_sym_as] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_fn] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_GT] = ACTIONS(2854), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2854), - [anon_sym_COLON] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2854), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2854), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_is] = ACTIONS(2854), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2854), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_STAR_EQ] = ACTIONS(2854), - [anon_sym_SLASH_EQ] = ACTIONS(2854), - [anon_sym_PERCENT_EQ] = ACTIONS(2854), - [anon_sym_LT_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_GT_EQ] = ACTIONS(2854), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2854), - [anon_sym_AMP_EQ] = ACTIONS(2854), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2854), - [anon_sym_PLUS_EQ] = ACTIONS(2854), - [anon_sym_DASH_EQ] = ACTIONS(2854), - [anon_sym_PIPE_EQ] = ACTIONS(2854), - [anon_sym_CARET_EQ] = ACTIONS(2854), - [anon_sym_COLON_EQ] = ACTIONS(2854), - [anon_sym_shared] = ACTIONS(2854), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2854), - [anon_sym_thread] = ACTIONS(2854), - [anon_sym_atomic] = ACTIONS(2854), - }, - [1600] = { - [sym_identifier] = ACTIONS(2810), - [anon_sym_LF] = ACTIONS(2810), - [anon_sym_CR] = ACTIONS(2810), - [anon_sym_CR_LF] = ACTIONS(2810), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2810), - [anon_sym_as] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_EQ] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_fn] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_GT] = ACTIONS(2810), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_COLON] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2810), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2810), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_is] = ACTIONS(2810), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2810), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_STAR_EQ] = ACTIONS(2810), - [anon_sym_SLASH_EQ] = ACTIONS(2810), - [anon_sym_PERCENT_EQ] = ACTIONS(2810), - [anon_sym_LT_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), - [anon_sym_AMP_EQ] = ACTIONS(2810), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), - [anon_sym_PLUS_EQ] = ACTIONS(2810), - [anon_sym_DASH_EQ] = ACTIONS(2810), - [anon_sym_PIPE_EQ] = ACTIONS(2810), - [anon_sym_CARET_EQ] = ACTIONS(2810), - [anon_sym_COLON_EQ] = ACTIONS(2810), - [anon_sym_shared] = ACTIONS(2810), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2810), - [anon_sym_thread] = ACTIONS(2810), - [anon_sym_atomic] = ACTIONS(2810), - }, - [1601] = { - [sym_identifier] = ACTIONS(2814), - [anon_sym_LF] = ACTIONS(2814), - [anon_sym_CR] = ACTIONS(2814), - [anon_sym_CR_LF] = ACTIONS(2814), - [sym_comment] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(2814), - [anon_sym_as] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_EQ] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_fn] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_COLON] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2814), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_or] = ACTIONS(2814), - [anon_sym_QMARK_DOT] = ACTIONS(2814), - [anon_sym_POUND_LBRACK] = ACTIONS(2814), - [anon_sym_is] = ACTIONS(2814), - [anon_sym_BANGis] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2814), - [anon_sym_BANGin] = ACTIONS(2814), - [anon_sym_STAR_EQ] = ACTIONS(2814), - [anon_sym_SLASH_EQ] = ACTIONS(2814), - [anon_sym_PERCENT_EQ] = ACTIONS(2814), - [anon_sym_LT_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_GT_EQ] = ACTIONS(2814), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2814), - [anon_sym_AMP_EQ] = ACTIONS(2814), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2814), - [anon_sym_PLUS_EQ] = ACTIONS(2814), - [anon_sym_DASH_EQ] = ACTIONS(2814), - [anon_sym_PIPE_EQ] = ACTIONS(2814), - [anon_sym_CARET_EQ] = ACTIONS(2814), - [anon_sym_COLON_EQ] = ACTIONS(2814), - [anon_sym_shared] = ACTIONS(2814), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2814), - [anon_sym_thread] = ACTIONS(2814), - [anon_sym_atomic] = ACTIONS(2814), + [1631] = { + [sym_identifier] = ACTIONS(3337), + [anon_sym_LF] = ACTIONS(3337), + [anon_sym_CR] = ACTIONS(3337), + [anon_sym_CR_LF] = ACTIONS(3337), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_as] = ACTIONS(3337), + [anon_sym_COMMA] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3337), + [anon_sym_fn] = ACTIONS(3337), + [anon_sym_PLUS] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3337), + [anon_sym_COLON] = ACTIONS(3337), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_LBRACK2] = ACTIONS(3337), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_LT_DASH] = ACTIONS(3337), + [anon_sym_LT_LT] = ACTIONS(3337), + [anon_sym_GT_GT] = ACTIONS(3337), + [anon_sym_GT_GT_GT] = ACTIONS(3337), + [anon_sym_AMP_CARET] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_or] = ACTIONS(3337), + [anon_sym_QMARK_DOT] = ACTIONS(3337), + [anon_sym_POUND_LBRACK] = ACTIONS(3337), + [anon_sym_is] = ACTIONS(3337), + [anon_sym_BANGis] = ACTIONS(3337), + [anon_sym_in] = ACTIONS(3337), + [anon_sym_BANGin] = ACTIONS(3337), + [anon_sym_STAR_EQ] = ACTIONS(3337), + [anon_sym_SLASH_EQ] = ACTIONS(3337), + [anon_sym_PERCENT_EQ] = ACTIONS(3337), + [anon_sym_LT_LT_EQ] = ACTIONS(3337), + [anon_sym_GT_GT_EQ] = ACTIONS(3337), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3337), + [anon_sym_AMP_EQ] = ACTIONS(3337), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3337), + [anon_sym_PLUS_EQ] = ACTIONS(3337), + [anon_sym_DASH_EQ] = ACTIONS(3337), + [anon_sym_PIPE_EQ] = ACTIONS(3337), + [anon_sym_CARET_EQ] = ACTIONS(3337), + [anon_sym_COLON_EQ] = ACTIONS(3337), + [anon_sym_shared] = ACTIONS(3337), + [anon_sym_map_LBRACK] = ACTIONS(3337), + [anon_sym_chan] = ACTIONS(3337), + [anon_sym_thread] = ACTIONS(3337), + [anon_sym_atomic] = ACTIONS(3337), + }, + [1632] = { + [sym_identifier] = ACTIONS(3317), + [anon_sym_LF] = ACTIONS(3317), + [anon_sym_CR] = ACTIONS(3317), + [anon_sym_CR_LF] = ACTIONS(3317), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3317), + [anon_sym_as] = ACTIONS(3317), + [anon_sym_COMMA] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_EQ] = ACTIONS(3317), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3317), + [anon_sym_COLON] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_QMARK] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_LBRACK2] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_LT_DASH] = ACTIONS(3317), + [anon_sym_LT_LT] = ACTIONS(3317), + [anon_sym_GT_GT] = ACTIONS(3317), + [anon_sym_GT_GT_GT] = ACTIONS(3317), + [anon_sym_AMP_CARET] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_or] = ACTIONS(3317), + [anon_sym_QMARK_DOT] = ACTIONS(3317), + [anon_sym_POUND_LBRACK] = ACTIONS(3317), + [anon_sym_is] = ACTIONS(3317), + [anon_sym_BANGis] = ACTIONS(3317), + [anon_sym_in] = ACTIONS(3317), + [anon_sym_BANGin] = ACTIONS(3317), + [anon_sym_STAR_EQ] = ACTIONS(3317), + [anon_sym_SLASH_EQ] = ACTIONS(3317), + [anon_sym_PERCENT_EQ] = ACTIONS(3317), + [anon_sym_LT_LT_EQ] = ACTIONS(3317), + [anon_sym_GT_GT_EQ] = ACTIONS(3317), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3317), + [anon_sym_AMP_EQ] = ACTIONS(3317), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3317), + [anon_sym_PLUS_EQ] = ACTIONS(3317), + [anon_sym_DASH_EQ] = ACTIONS(3317), + [anon_sym_PIPE_EQ] = ACTIONS(3317), + [anon_sym_CARET_EQ] = ACTIONS(3317), + [anon_sym_COLON_EQ] = ACTIONS(3317), + [anon_sym_shared] = ACTIONS(3317), + [anon_sym_map_LBRACK] = ACTIONS(3317), + [anon_sym_chan] = ACTIONS(3317), + [anon_sym_thread] = ACTIONS(3317), + [anon_sym_atomic] = ACTIONS(3317), + }, + [1633] = { + [sym_identifier] = ACTIONS(2980), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_CR] = ACTIONS(2980), + [anon_sym_CR_LF] = ACTIONS(2980), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2980), + [anon_sym_as] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(2980), + [anon_sym_RBRACE] = ACTIONS(2980), + [anon_sym_LPAREN] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2980), + [anon_sym_fn] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2980), + [anon_sym_SLASH] = ACTIONS(2980), + [anon_sym_PERCENT] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2980), + [anon_sym_GT] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2978), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_LBRACK2] = ACTIONS(2980), + [anon_sym_CARET] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2980), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_GT_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_CARET] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_or] = ACTIONS(2980), + [anon_sym_QMARK_DOT] = ACTIONS(2980), + [anon_sym_POUND_LBRACK] = ACTIONS(2980), + [anon_sym_is] = ACTIONS(2980), + [anon_sym_BANGis] = ACTIONS(2980), + [anon_sym_in] = ACTIONS(2980), + [anon_sym_BANGin] = ACTIONS(2980), + [anon_sym_STAR_EQ] = ACTIONS(2980), + [anon_sym_SLASH_EQ] = ACTIONS(2980), + [anon_sym_PERCENT_EQ] = ACTIONS(2980), + [anon_sym_LT_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_GT_EQ] = ACTIONS(2980), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2980), + [anon_sym_AMP_EQ] = ACTIONS(2980), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(2980), + [anon_sym_DASH_EQ] = ACTIONS(2980), + [anon_sym_PIPE_EQ] = ACTIONS(2980), + [anon_sym_CARET_EQ] = ACTIONS(2980), + [anon_sym_COLON_EQ] = ACTIONS(2980), + [anon_sym_shared] = ACTIONS(2980), + [anon_sym_map_LBRACK] = ACTIONS(2980), + [anon_sym_chan] = ACTIONS(2980), + [anon_sym_thread] = ACTIONS(2980), + [anon_sym_atomic] = ACTIONS(2980), + }, + [1634] = { + [sym_identifier] = ACTIONS(3140), + [anon_sym_LF] = ACTIONS(3140), + [anon_sym_CR] = ACTIONS(3140), + [anon_sym_CR_LF] = ACTIONS(3140), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3140), + [anon_sym_as] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3140), + [anon_sym_fn] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_GT] = ACTIONS(3140), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_struct] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_LBRACK2] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3140), + [anon_sym_LT_DASH] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3140), + [anon_sym_GT_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_CARET] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_or] = ACTIONS(3140), + [anon_sym_QMARK_DOT] = ACTIONS(3140), + [anon_sym_POUND_LBRACK] = ACTIONS(3140), + [anon_sym_is] = ACTIONS(3140), + [anon_sym_BANGis] = ACTIONS(3140), + [anon_sym_in] = ACTIONS(3140), + [anon_sym_BANGin] = ACTIONS(3140), + [anon_sym_STAR_EQ] = ACTIONS(3140), + [anon_sym_SLASH_EQ] = ACTIONS(3140), + [anon_sym_PERCENT_EQ] = ACTIONS(3140), + [anon_sym_LT_LT_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3140), + [anon_sym_AMP_EQ] = ACTIONS(3140), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3140), + [anon_sym_PLUS_EQ] = ACTIONS(3140), + [anon_sym_DASH_EQ] = ACTIONS(3140), + [anon_sym_PIPE_EQ] = ACTIONS(3140), + [anon_sym_CARET_EQ] = ACTIONS(3140), + [anon_sym_COLON_EQ] = ACTIONS(3140), + [anon_sym_shared] = ACTIONS(3140), + [anon_sym_map_LBRACK] = ACTIONS(3140), + [anon_sym_chan] = ACTIONS(3140), + [anon_sym_thread] = ACTIONS(3140), + [anon_sym_atomic] = ACTIONS(3140), + }, + [1635] = { + [sym_identifier] = ACTIONS(3152), + [anon_sym_LF] = ACTIONS(3152), + [anon_sym_CR] = ACTIONS(3152), + [anon_sym_CR_LF] = ACTIONS(3152), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3152), + [anon_sym_as] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_GT] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3152), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_LBRACK2] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_LT_DASH] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_GT_GT] = ACTIONS(3152), + [anon_sym_GT_GT_GT] = ACTIONS(3152), + [anon_sym_AMP_CARET] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_PIPE_PIPE] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3152), + [anon_sym_QMARK_DOT] = ACTIONS(3152), + [anon_sym_POUND_LBRACK] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3152), + [anon_sym_BANGis] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3152), + [anon_sym_BANGin] = ACTIONS(3152), + [anon_sym_STAR_EQ] = ACTIONS(3152), + [anon_sym_SLASH_EQ] = ACTIONS(3152), + [anon_sym_PERCENT_EQ] = ACTIONS(3152), + [anon_sym_LT_LT_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3152), + [anon_sym_AMP_EQ] = ACTIONS(3152), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3152), + [anon_sym_PLUS_EQ] = ACTIONS(3152), + [anon_sym_DASH_EQ] = ACTIONS(3152), + [anon_sym_PIPE_EQ] = ACTIONS(3152), + [anon_sym_CARET_EQ] = ACTIONS(3152), + [anon_sym_COLON_EQ] = ACTIONS(3152), + [anon_sym_shared] = ACTIONS(3152), + [anon_sym_map_LBRACK] = ACTIONS(3152), + [anon_sym_chan] = ACTIONS(3152), + [anon_sym_thread] = ACTIONS(3152), + [anon_sym_atomic] = ACTIONS(3152), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(3315), 1, anon_sym_LBRACK, - ACTIONS(2814), 62, + ACTIONS(3317), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189957,11 +193782,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [71] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(3335), 1, anon_sym_LBRACK, - ACTIONS(2858), 62, + ACTIONS(3337), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190025,11 +193850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [142] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(2978), 1, anon_sym_LBRACK, - ACTIONS(2854), 62, + ACTIONS(2980), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190093,11 +193918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [213] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(3138), 1, anon_sym_LBRACK, - ACTIONS(2810), 62, + ACTIONS(3140), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190161,11 +193986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [284] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2920), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(2922), 62, + ACTIONS(3152), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190228,10 +194053,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [355] = 3, + [355] = 30, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_as, + ACTIONS(4506), 1, + anon_sym_COMMA, + ACTIONS(4508), 1, + anon_sym_LPAREN, + ACTIONS(4516), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_COLON, + ACTIONS(4520), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4522), 1, + anon_sym_DASH_DASH, + ACTIONS(4524), 1, + anon_sym_QMARK, + ACTIONS(4526), 1, + anon_sym_BANG, + ACTIONS(4530), 1, + anon_sym_LT_DASH, + ACTIONS(4532), 1, + anon_sym_LT_LT, + ACTIONS(4534), 1, + anon_sym_AMP_AMP, + ACTIONS(4536), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4538), 1, + anon_sym_or, + ACTIONS(4540), 1, + anon_sym_is, + ACTIONS(4542), 1, + anon_sym_BANGis, + ACTIONS(4544), 1, + anon_sym_in, + ACTIONS(4546), 1, + anon_sym_BANGin, + STATE(1723), 1, + sym_or_block, + STATE(1724), 1, + sym_argument_list, + STATE(3389), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4242), 1, + sym_type_parameters, + ACTIONS(4502), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4528), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1858), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4510), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4514), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4512), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1868), 14, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 29, + ACTIONS(3140), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190261,7 +194179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2856), 32, + ACTIONS(3138), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190294,10 +194212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_map_LBRACK, - [424] = 3, + [547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 29, + ACTIONS(3152), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190327,8 +194245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2852), 32, - anon_sym_SEMI, + ACTIONS(3150), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190338,8 +194255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOT, @@ -190358,12 +194277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [493] = 3, + [616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 29, + ACTIONS(2980), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190393,7 +194311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2808), 32, + ACTIONS(2978), 32, anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, @@ -190426,86 +194344,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [562] = 30, - ACTIONS(493), 1, + [685] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(2980), 29, anon_sym_as, - ACTIONS(4334), 1, - anon_sym_COMMA, - ACTIONS(4336), 1, - anon_sym_LPAREN, - ACTIONS(4344), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_COLON, - ACTIONS(4348), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4350), 1, - anon_sym_DASH_DASH, - ACTIONS(4352), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, anon_sym_QMARK, - ACTIONS(4354), 1, anon_sym_BANG, - ACTIONS(4358), 1, - anon_sym_LT_DASH, - ACTIONS(4360), 1, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, - ACTIONS(4362), 1, - anon_sym_AMP_AMP, - ACTIONS(4364), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4366), 1, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_or, - ACTIONS(4368), 1, anon_sym_is, - ACTIONS(4370), 1, - anon_sym_BANGis, - ACTIONS(4372), 1, anon_sym_in, - ACTIONS(4374), 1, - anon_sym_BANGin, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, - sym_or_block, - STATE(3357), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4097), 1, - sym_type_parameters, - ACTIONS(4330), 2, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2978), 32, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4356), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1776), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4338), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4342), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4340), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1780), 14, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190518,11 +194409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [685] = 3, + anon_sym_map_LBRACK, + [754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 29, + ACTIONS(3317), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190552,7 +194443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2812), 32, + ACTIONS(3315), 32, anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, @@ -190585,10 +194476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [754] = 3, + [823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 29, + ACTIONS(3140), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190618,7 +194509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2856), 32, + ACTIONS(3138), 32, anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, @@ -190651,10 +194542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [823] = 3, + [892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 29, + ACTIONS(3152), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190684,7 +194575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2920), 32, + ACTIONS(3150), 32, anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, @@ -190717,76 +194608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2920), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, [961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 29, + ACTIONS(3337), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190816,7 +194641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2852), 32, + ACTIONS(3335), 32, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190826,10 +194652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOT, @@ -190848,11 +194672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, anon_sym_map_LBRACK, [1030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 29, + ACTIONS(3317), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190882,7 +194707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2812), 32, + ACTIONS(3315), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190918,7 +194743,7 @@ static const uint16_t ts_small_parse_table[] = { [1099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 29, + ACTIONS(3337), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190948,7 +194773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2808), 32, + ACTIONS(3335), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190981,150 +194806,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_map_LBRACK, - [1168] = 13, - ACTIONS(493), 1, + [1168] = 29, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_LPAREN, - ACTIONS(4344), 1, - anon_sym_LBRACK, - ACTIONS(4352), 1, - anon_sym_QMARK, - ACTIONS(4354), 1, - anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, - sym_or_block, - STATE(4097), 1, - sym_type_parameters, - ACTIONS(4330), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4356), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4338), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4340), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2144), 37, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1256] = 29, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4332), 1, + ACTIONS(4504), 1, anon_sym_as, - ACTIONS(4334), 1, + ACTIONS(4506), 1, anon_sym_COMMA, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4348), 1, + ACTIONS(4520), 1, anon_sym_PLUS_PLUS, - ACTIONS(4350), 1, + ACTIONS(4522), 1, anon_sym_DASH_DASH, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - ACTIONS(4358), 1, + ACTIONS(4530), 1, anon_sym_LT_DASH, - ACTIONS(4360), 1, + ACTIONS(4532), 1, anon_sym_LT_LT, - ACTIONS(4362), 1, + ACTIONS(4534), 1, anon_sym_AMP_AMP, - ACTIONS(4364), 1, + ACTIONS(4536), 1, anon_sym_PIPE_PIPE, - ACTIONS(4366), 1, + ACTIONS(4538), 1, anon_sym_or, - ACTIONS(4368), 1, + ACTIONS(4540), 1, anon_sym_is, - ACTIONS(4370), 1, + ACTIONS(4542), 1, anon_sym_BANGis, - ACTIONS(4372), 1, + ACTIONS(4544), 1, anon_sym_in, - ACTIONS(4374), 1, + ACTIONS(4546), 1, anon_sym_BANGin, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(3357), 1, + STATE(1724), 1, + sym_argument_list, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4097), 1, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1776), 4, + ACTIONS(1858), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4338), 4, + ACTIONS(4510), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4342), 6, + ACTIONS(4514), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4340), 7, + ACTIONS(4512), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191132,7 +194882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1780), 14, + ACTIONS(1868), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -191147,35 +194897,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1376] = 13, - ACTIONS(493), 1, + [1288] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4338), 4, + ACTIONS(4510), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4340), 8, + ACTIONS(4512), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191184,7 +194934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2156), 37, + ACTIONS(2342), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191222,30 +194972,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1464] = 11, - ACTIONS(493), 1, + [1376] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2224), 49, + ACTIONS(2392), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191295,62 +195045,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1548] = 24, - ACTIONS(493), 1, + [1460] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(4504), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4348), 1, + ACTIONS(4520), 1, anon_sym_PLUS_PLUS, - ACTIONS(4350), 1, + ACTIONS(4522), 1, anon_sym_DASH_DASH, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - ACTIONS(4362), 1, + ACTIONS(4534), 1, anon_sym_AMP_AMP, - ACTIONS(4364), 1, + ACTIONS(4536), 1, anon_sym_PIPE_PIPE, - ACTIONS(4366), 1, + ACTIONS(4538), 1, anon_sym_or, - ACTIONS(4368), 1, + ACTIONS(4540), 1, anon_sym_is, - ACTIONS(4370), 1, + ACTIONS(4542), 1, anon_sym_BANGis, - ACTIONS(4372), 1, + ACTIONS(4544), 1, anon_sym_in, - ACTIONS(4374), 1, + ACTIONS(4546), 1, anon_sym_BANGin, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4338), 4, + ACTIONS(4510), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4342), 6, + ACTIONS(4514), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4340), 8, + ACTIONS(4512), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191381,135 +195131,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1658] = 11, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4336), 1, - anon_sym_LPAREN, - ACTIONS(4344), 1, - anon_sym_LBRACK, - ACTIONS(4352), 1, - anon_sym_QMARK, - ACTIONS(4354), 1, - anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, - sym_or_block, - STATE(4097), 1, - sym_type_parameters, - ACTIONS(4330), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4356), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2162), 49, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1742] = 24, - ACTIONS(493), 1, + [1570] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(4504), 1, anon_sym_as, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4348), 1, + ACTIONS(4520), 1, anon_sym_PLUS_PLUS, - ACTIONS(4350), 1, + ACTIONS(4522), 1, anon_sym_DASH_DASH, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - ACTIONS(4362), 1, + ACTIONS(4534), 1, anon_sym_AMP_AMP, - ACTIONS(4364), 1, + ACTIONS(4536), 1, anon_sym_PIPE_PIPE, - ACTIONS(4366), 1, + ACTIONS(4538), 1, anon_sym_or, - ACTIONS(4368), 1, + ACTIONS(4540), 1, anon_sym_is, - ACTIONS(4370), 1, + ACTIONS(4542), 1, anon_sym_BANGis, - ACTIONS(4372), 1, + ACTIONS(4544), 1, anon_sym_in, - ACTIONS(4374), 1, + ACTIONS(4546), 1, anon_sym_BANGin, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4338), 4, + ACTIONS(4510), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4342), 6, + ACTIONS(4514), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4340), 8, + ACTIONS(4512), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191518,7 +195195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2052), 21, + ACTIONS(2220), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191540,37 +195217,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1852] = 12, - ACTIONS(493), 1, + [1680] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2184), 4, + ACTIONS(2314), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2162), 45, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -191614,46 +195290,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1938] = 16, - ACTIONS(493), 1, + [1764] = 12, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - ACTIONS(4372), 1, - anon_sym_in, - ACTIONS(4374), 1, - anon_sym_BANGin, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4338), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4342), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4340), 8, + ACTIONS(4512), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191662,7 +195322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 29, + ACTIONS(2360), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191670,15 +195330,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191692,39 +195364,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2032] = 12, - ACTIONS(493), 1, + [1850] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4340), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 41, + ACTIONS(2360), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191735,6 +195398,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -191745,7 +195411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -191766,35 +195437,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2118] = 13, - ACTIONS(493), 1, + [1934] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4338), 4, + ACTIONS(4510), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4340), 8, + ACTIONS(4512), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191803,7 +195474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 37, + ACTIONS(2360), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191841,48 +195512,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2206] = 17, - ACTIONS(493), 1, + [2022] = 12, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - ACTIONS(4362), 1, + STATE(1723), 1, + sym_or_block, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, + sym_type_parameters, + ACTIONS(4502), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4528), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2378), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2360), 45, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4372), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(4374), 1, anon_sym_BANGin, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [2108] = 16, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4508), 1, + anon_sym_LPAREN, + ACTIONS(4516), 1, + anon_sym_LBRACK, + ACTIONS(4524), 1, + anon_sym_QMARK, + ACTIONS(4526), 1, + anon_sym_BANG, + ACTIONS(4544), 1, + anon_sym_in, + ACTIONS(4546), 1, + anon_sym_BANGin, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4338), 4, + ACTIONS(4510), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4342), 6, + ACTIONS(4514), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4340), 8, + ACTIONS(4512), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191891,7 +195634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 28, + ACTIONS(2360), 29, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191903,6 +195646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LT_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -191920,30 +195664,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2302] = 11, - ACTIONS(493), 1, + [2202] = 17, + ACTIONS(495), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4352), 1, + ACTIONS(4524), 1, anon_sym_QMARK, - ACTIONS(4354), 1, + ACTIONS(4526), 1, anon_sym_BANG, - STATE(1733), 1, - sym_argument_list, - STATE(1748), 1, + ACTIONS(4534), 1, + anon_sym_AMP_AMP, + ACTIONS(4544), 1, + anon_sym_in, + ACTIONS(4546), 1, + anon_sym_BANGin, + STATE(1723), 1, sym_or_block, - STATE(4097), 1, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, sym_type_parameters, - ACTIONS(4330), 2, + ACTIONS(4502), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4356), 2, + ACTIONS(4528), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2246), 49, + ACTIONS(4510), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4514), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4512), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191951,12 +195722,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [2298] = 13, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4508), 1, + anon_sym_LPAREN, + ACTIONS(4516), 1, + anon_sym_LBRACK, + ACTIONS(4524), 1, + anon_sym_QMARK, + ACTIONS(4526), 1, + anon_sym_BANG, + STATE(1723), 1, + sym_or_block, + STATE(1724), 1, + sym_argument_list, + STATE(4242), 1, + sym_type_parameters, + ACTIONS(4502), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4528), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4510), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4512), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2346), 37, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -191966,13 +195797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -191993,16 +195818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2386] = 5, - ACTIONS(493), 1, + [2386] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(4376), 1, - anon_sym_else, - STATE(1702), 1, - sym_else_branch, - ACTIONS(2398), 56, + ACTIONS(2748), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192042,6 +195863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -192059,12 +195882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2457] = 3, - ACTIONS(493), 1, + [2453] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - ACTIONS(2694), 58, + ACTIONS(2798), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192123,80 +195946,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2524] = 26, - ACTIONS(493), 1, + [2520] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(4380), 1, - anon_sym_as, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(4392), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4394), 1, - anon_sym_DASH_DASH, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - ACTIONS(4402), 1, - anon_sym_AMP_AMP, - ACTIONS(4404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4406), 1, - anon_sym_or, - ACTIONS(4408), 1, - anon_sym_is, - ACTIONS(4410), 1, - anon_sym_BANGis, - ACTIONS(4412), 1, - anon_sym_in, - ACTIONS(4414), 1, - anon_sym_BANGin, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(3561), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1710), 4, + ACTIONS(4548), 1, + anon_sym_else, + STATE(1766), 1, + sym_else_branch, + ACTIONS(2558), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4384), 4, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4388), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4386), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1716), 15, - anon_sym_COMMA, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192210,16 +196012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2637] = 5, - ACTIONS(493), 1, + [2591] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(2546), 1, anon_sym_LBRACK, - ACTIONS(4376), 1, + ACTIONS(4548), 1, anon_sym_else, - STATE(1704), 1, + STATE(1763), 1, sym_else_branch, - ACTIONS(2392), 56, + ACTIONS(2548), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192276,57 +196078,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2708] = 3, - ACTIONS(493), 1, + [2662] = 26, + ACTIONS(495), 1, sym_comment, - ACTIONS(2734), 1, + ACTIONS(4552), 1, + anon_sym_as, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(2736), 58, + ACTIONS(4564), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4566), 1, + anon_sym_DASH_DASH, + ACTIONS(4568), 1, + anon_sym_QMARK, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_AMP_AMP, + ACTIONS(4576), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4578), 1, + anon_sym_or, + ACTIONS(4580), 1, + anon_sym_is, + ACTIONS(4582), 1, + anon_sym_BANGis, + ACTIONS(4584), 1, + anon_sym_in, + ACTIONS(4586), 1, + anon_sym_BANGin, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(3671), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1928), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4556), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4560), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4558), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1930), 15, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192341,11 +196166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [2775] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3176), 1, anon_sym_LBRACK, - ACTIONS(3129), 57, + ACTIONS(3178), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192403,62 +196228,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2841] = 13, - ACTIONS(493), 1, + [2841] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(3212), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4386), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2156), 35, + ACTIONS(3214), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -192476,46 +196291,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2927] = 16, - ACTIONS(493), 1, + [2907] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(4552), 1, + anon_sym_as, + ACTIONS(4554), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4564), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4566), 1, + anon_sym_DASH_DASH, + ACTIONS(4568), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4412), 1, + ACTIONS(4574), 1, + anon_sym_AMP_AMP, + ACTIONS(4576), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4578), 1, + anon_sym_or, + ACTIONS(4584), 1, anon_sym_in, - ACTIONS(4414), 1, + ACTIONS(4586), 1, anon_sym_BANGin, - STATE(1839), 1, + ACTIONS(4588), 1, + anon_sym_is, + ACTIONS(4590), 1, + anon_sym_BANGis, + STATE(1914), 1, sym_argument_list, - STATE(1840), 1, + STATE(1915), 1, sym_or_block, - STATE(4269), 1, + STATE(4369), 1, sym_type_parameters, - ACTIONS(4378), 2, + ACTIONS(4550), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4400), 2, + ACTIONS(4572), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, + ACTIONS(4556), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4388), 6, + ACTIONS(4560), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4386), 8, + ACTIONS(4558), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192524,21 +196355,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 27, + ACTIONS(2270), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192552,16 +196375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3019] = 3, - ACTIONS(493), 1, + [3015] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(3106), 57, + ACTIONS(4592), 1, + anon_sym_DOLLARelse, + ACTIONS(2926), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192615,17 +196439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3085] = 4, - ACTIONS(493), 1, + [3083] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2740), 56, + ACTIONS(3241), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192679,19 +196502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3153] = 5, - ACTIONS(493), 1, + [3149] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(2748), 1, - anon_sym_COLON, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2740), 55, + ACTIONS(3245), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192710,6 +196530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -192744,85 +196565,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3223] = 32, - ACTIONS(3), 1, + [3215] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(1774), 1, + ACTIONS(3146), 1, + anon_sym_LBRACK, + ACTIONS(3148), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(1780), 1, - anon_sym_EQ, - ACTIONS(4418), 1, + anon_sym_DOT, anon_sym_as, - ACTIONS(4420), 1, - anon_sym_LBRACE, - ACTIONS(4422), 1, anon_sym_COMMA, - ACTIONS(4424), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, anon_sym_DASH_DASH, - ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4446), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4448), 1, anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, anon_sym_or, - ACTIONS(4452), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, anon_sym_is, - ACTIONS(4456), 1, anon_sym_BANGis, - ACTIONS(4458), 1, anon_sym_in, - ACTIONS(4460), 1, anon_sym_BANGin, - STATE(1561), 1, - sym_block, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(3357), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4430), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4426), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4428), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3233), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192836,76 +196628,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3347] = 32, + [3281] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1774), 1, + ACTIONS(1856), 1, anon_sym_SEMI, - ACTIONS(1780), 1, + ACTIONS(1868), 1, anon_sym_EQ, - ACTIONS(4418), 1, + ACTIONS(4596), 1, anon_sym_as, - ACTIONS(4422), 1, + ACTIONS(4598), 1, + anon_sym_LBRACE, + ACTIONS(4600), 1, anon_sym_COMMA, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, + ACTIONS(4614), 1, anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, + ACTIONS(4616), 1, anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4446), 1, + ACTIONS(4624), 1, anon_sym_AMP_AMP, - ACTIONS(4448), 1, + ACTIONS(4626), 1, anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, + ACTIONS(4628), 1, anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4632), 1, anon_sym_is, - ACTIONS(4456), 1, + ACTIONS(4634), 1, anon_sym_BANGis, - ACTIONS(4458), 1, + ACTIONS(4636), 1, anon_sym_in, - ACTIONS(4460), 1, + ACTIONS(4638), 1, anon_sym_BANGin, - ACTIONS(4462), 1, - anon_sym_LBRACE, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(3357), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3780), 1, + STATE(3872), 1, sym_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4430), 2, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4432), 4, + ACTIONS(4610), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4428), 8, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192914,7 +196706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3233), 13, + ACTIONS(3379), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192928,145 +196720,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3471] = 24, - ACTIONS(493), 1, + [3405] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4380), 1, - anon_sym_as, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - ACTIONS(4392), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4394), 1, - anon_sym_DASH_DASH, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - ACTIONS(4402), 1, - anon_sym_AMP_AMP, - ACTIONS(4404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4406), 1, - anon_sym_or, - ACTIONS(4412), 1, - anon_sym_in, - ACTIONS(4414), 1, - anon_sym_BANGin, - ACTIONS(4464), 1, - anon_sym_is, - ACTIONS(4466), 1, - anon_sym_BANGis, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4388), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4386), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2172), 19, + ACTIONS(3222), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3579] = 12, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4386), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -193084,12 +196783,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3663] = 3, - ACTIONS(493), 1, + [3471] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2866), 57, + ACTIONS(3313), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193147,70 +196846,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3729] = 17, - ACTIONS(493), 1, + [3537] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(3295), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - ACTIONS(4402), 1, - anon_sym_AMP_AMP, - ACTIONS(4412), 1, - anon_sym_in, - ACTIONS(4414), 1, - anon_sym_BANGin, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, + ACTIONS(3297), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4388), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4386), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 26, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193224,62 +196909,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3823] = 13, - ACTIONS(493), 1, + [3603] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, + ACTIONS(2922), 1, + anon_sym_COLON, + ACTIONS(3072), 1, + anon_sym_LBRACE, + ACTIONS(2914), 55, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4386), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2144), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [3673] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3259), 1, + anon_sym_LBRACK, + ACTIONS(3261), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -193297,62 +197037,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3909] = 13, - ACTIONS(493), 1, + [3739] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(4642), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(4396), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(4398), 1, anon_sym_BANG, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_TILDE, anon_sym_CARET, - ACTIONS(4386), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 35, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + anon_sym_POUND, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4640), 34, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_assert, + anon_sym_defer, + anon_sym_goto, + anon_sym_break, + anon_sym_continue, + anon_sym_return, + anon_sym_DOLLARfor, + anon_sym_for, + anon_sym_asm, + [3805] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3154), 1, + anon_sym_LBRACK, + ACTIONS(3156), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -193370,12 +197163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3995] = 3, - ACTIONS(493), 1, + [3871] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2954), 1, anon_sym_LBRACK, - ACTIONS(2874), 57, + ACTIONS(2956), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193433,12 +197226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4061] = 3, - ACTIONS(493), 1, + [3937] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2764), 57, + ACTIONS(2976), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193496,12 +197289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4127] = 3, - ACTIONS(493), 1, + [4003] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(3086), 57, + ACTIONS(2984), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193559,12 +197352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4193] = 3, - ACTIONS(493), 1, + [4069] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3044), 1, + ACTIONS(3086), 1, anon_sym_LBRACK, - ACTIONS(3046), 57, + ACTIONS(3088), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193622,17 +197415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4259] = 4, - ACTIONS(493), 1, + [4135] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, + ACTIONS(3090), 1, anon_sym_LBRACK, - ACTIONS(2838), 56, + ACTIONS(3092), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193686,12 +197478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4327] = 3, - ACTIONS(493), 1, + [4201] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3094), 1, anon_sym_LBRACK, - ACTIONS(3042), 57, + ACTIONS(3096), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193749,16 +197541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4393] = 3, - ACTIONS(493), 1, + [4267] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3036), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(3038), 57, + ACTIONS(3072), 1, + anon_sym_LBRACE, + ACTIONS(2914), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193812,14 +197605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4459] = 4, - ACTIONS(493), 1, + [4335] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACK, - ACTIONS(2784), 1, + ACTIONS(2750), 1, anon_sym_LBRACE, - ACTIONS(2694), 56, + ACTIONS(3116), 1, + anon_sym_LBRACK, + ACTIONS(3118), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193876,36 +197669,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4527] = 11, - ACTIONS(493), 1, + [4403] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(2882), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2246), 47, + ACTIONS(4644), 1, + anon_sym_DOLLARelse, + ACTIONS(2884), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -193919,10 +197698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -193930,6 +197714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -193947,12 +197733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4609] = 3, - ACTIONS(493), 1, + [4471] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(3098), 1, anon_sym_LBRACK, - ACTIONS(3030), 57, + ACTIONS(3100), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194010,12 +197796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4675] = 3, - ACTIONS(493), 1, + [4537] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3102), 1, anon_sym_LBRACK, - ACTIONS(2882), 57, + ACTIONS(3104), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194073,52 +197859,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4741] = 3, - ACTIONS(493), 1, + [4603] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(2806), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4568), 1, + anon_sym_QMARK, + ACTIONS(4570), 1, + anon_sym_BANG, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4556), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4558), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2342), 35, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [4689] = 13, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, + anon_sym_LBRACK, + ACTIONS(4568), 1, anon_sym_QMARK, + ACTIONS(4570), 1, anon_sym_BANG, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4556), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4558), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2346), 35, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -194136,12 +198005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4807] = 3, - ACTIONS(493), 1, + [4775] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(3134), 1, anon_sym_LBRACK, - ACTIONS(2910), 57, + ACTIONS(3136), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194199,62 +198068,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4873] = 24, - ACTIONS(493), 1, + [4841] = 17, + ACTIONS(495), 1, sym_comment, - ACTIONS(4380), 1, - anon_sym_as, - ACTIONS(4382), 1, + ACTIONS(4554), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(4392), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4394), 1, - anon_sym_DASH_DASH, - ACTIONS(4396), 1, + ACTIONS(4568), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4402), 1, + ACTIONS(4574), 1, anon_sym_AMP_AMP, - ACTIONS(4404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4406), 1, - anon_sym_or, - ACTIONS(4408), 1, - anon_sym_is, - ACTIONS(4410), 1, - anon_sym_BANGis, - ACTIONS(4412), 1, + ACTIONS(4584), 1, anon_sym_in, - ACTIONS(4414), 1, + ACTIONS(4586), 1, anon_sym_BANGin, - STATE(1839), 1, + STATE(1914), 1, sym_argument_list, - STATE(1840), 1, + STATE(1915), 1, sym_or_block, - STATE(4269), 1, + STATE(4369), 1, sym_type_parameters, - ACTIONS(4378), 2, + ACTIONS(4550), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4400), 2, + ACTIONS(4572), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, + ACTIONS(4556), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4388), 6, + ACTIONS(4560), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4386), 8, + ACTIONS(4558), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -194263,13 +198118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2052), 19, + ACTIONS(2360), 26, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194283,62 +198145,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4981] = 24, - ACTIONS(493), 1, + [4935] = 16, + ACTIONS(495), 1, sym_comment, - ACTIONS(4380), 1, - anon_sym_as, - ACTIONS(4382), 1, + ACTIONS(4554), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(4392), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4394), 1, - anon_sym_DASH_DASH, - ACTIONS(4396), 1, + ACTIONS(4568), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4570), 1, anon_sym_BANG, - ACTIONS(4402), 1, - anon_sym_AMP_AMP, - ACTIONS(4404), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4406), 1, - anon_sym_or, - ACTIONS(4408), 1, - anon_sym_is, - ACTIONS(4410), 1, - anon_sym_BANGis, - ACTIONS(4412), 1, + ACTIONS(4584), 1, anon_sym_in, - ACTIONS(4414), 1, + ACTIONS(4586), 1, anon_sym_BANGin, - STATE(1839), 1, + STATE(1914), 1, sym_argument_list, - STATE(1840), 1, + STATE(1915), 1, sym_or_block, - STATE(4269), 1, + STATE(4369), 1, sym_type_parameters, - ACTIONS(4378), 2, + ACTIONS(4550), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4400), 2, + ACTIONS(4572), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4384), 4, + ACTIONS(4556), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4388), 6, + ACTIONS(4560), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4386), 8, + ACTIONS(4558), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -194347,13 +198193,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2234), 19, + ACTIONS(2360), 27, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194367,52 +198221,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5089] = 3, - ACTIONS(493), 1, + [5027] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(3082), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4568), 1, + anon_sym_QMARK, + ACTIONS(4570), 1, + anon_sym_BANG, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4556), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4558), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 35, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [5113] = 12, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, + anon_sym_LBRACK, + ACTIONS(4568), 1, anon_sym_QMARK, + ACTIONS(4570), 1, anon_sym_BANG, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, anon_sym_LBRACK2, - anon_sym_CARET, + anon_sym_POUND_LBRACK, + ACTIONS(4558), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2360), 39, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -194430,14 +198366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5155] = 4, - ACTIONS(493), 1, + [5197] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2756), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(4468), 1, - anon_sym_DOLLARelse, - ACTIONS(2758), 56, + ACTIONS(2750), 1, + anon_sym_LBRACE, + ACTIONS(2748), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194494,36 +198430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5223] = 11, - ACTIONS(493), 1, + [5265] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4382), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_BANG, - STATE(1839), 1, - sym_argument_list, - STATE(1840), 1, - sym_or_block, - STATE(4269), 1, - sym_type_parameters, - ACTIONS(4378), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4400), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2224), 47, + ACTIONS(2890), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -194537,10 +198458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -194548,6 +198474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -194565,12 +198493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5305] = 3, - ACTIONS(493), 1, + [5331] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2820), 1, + ACTIONS(3196), 1, anon_sym_LBRACK, - ACTIONS(2822), 57, + ACTIONS(3198), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194628,14 +198556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5371] = 4, - ACTIONS(493), 1, + [5397] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - STATE(1764), 1, + STATE(1734), 1, sym_type_parameters, - ACTIONS(2764), 56, + ACTIONS(2890), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194692,56 +198620,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5439] = 3, - ACTIONS(493), 1, + [5465] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_LBRACK, - ACTIONS(2886), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4552), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4554), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4562), 1, + anon_sym_LBRACK, + ACTIONS(4564), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4566), 1, + anon_sym_DASH_DASH, + ACTIONS(4568), 1, + anon_sym_QMARK, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4574), 1, + anon_sym_AMP_AMP, + ACTIONS(4576), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4578), 1, + anon_sym_or, + ACTIONS(4580), 1, + anon_sym_is, + ACTIONS(4582), 1, + anon_sym_BANGis, + ACTIONS(4584), 1, + anon_sym_in, + ACTIONS(4586), 1, + anon_sym_BANGin, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4556), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4560), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4558), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2220), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [5573] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_as, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, + anon_sym_LBRACK, + ACTIONS(4564), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4566), 1, + anon_sym_DASH_DASH, + ACTIONS(4568), 1, + anon_sym_QMARK, + ACTIONS(4570), 1, + anon_sym_BANG, + ACTIONS(4574), 1, anon_sym_AMP_AMP, + ACTIONS(4576), 1, anon_sym_PIPE_PIPE, + ACTIONS(4578), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4580), 1, anon_sym_is, + ACTIONS(4582), 1, anon_sym_BANGis, + ACTIONS(4584), 1, anon_sym_in, + ACTIONS(4586), 1, anon_sym_BANGin, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4556), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4560), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4558), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2234), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194755,30 +198788,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5505] = 11, - ACTIONS(493), 1, + [5681] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4382), 1, + ACTIONS(4554), 1, anon_sym_LPAREN, - ACTIONS(4390), 1, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4568), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4570), 1, anon_sym_BANG, - STATE(1839), 1, + STATE(1914), 1, sym_argument_list, - STATE(1840), 1, + STATE(1915), 1, sym_or_block, - STATE(4269), 1, + STATE(4369), 1, sym_type_parameters, - ACTIONS(4378), 2, + ACTIONS(4550), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4400), 2, + ACTIONS(4572), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2162), 47, + ACTIONS(2392), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194826,21 +198859,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5587] = 3, - ACTIONS(493), 1, + [5763] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(2834), 57, + ACTIONS(4568), 1, + anon_sym_QMARK, + ACTIONS(4570), 1, + anon_sym_BANG, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2360), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -194854,15 +198902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -194870,8 +198913,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -194889,56 +198930,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5653] = 3, - ACTIONS(493), 1, + [5845] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - anon_sym_LBRACK, - ACTIONS(2842), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1856), 1, anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1868), 1, + anon_sym_EQ, + ACTIONS(4596), 1, anon_sym_as, + ACTIONS(4600), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4602), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4614), 1, anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, anon_sym_DASH_DASH, + ACTIONS(4618), 1, anon_sym_QMARK, + ACTIONS(4620), 1, anon_sym_BANG, + ACTIONS(4622), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4624), 1, anon_sym_AMP_AMP, + ACTIONS(4626), 1, anon_sym_PIPE_PIPE, + ACTIONS(4628), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, + ACTIONS(4632), 1, anon_sym_is, + ACTIONS(4634), 1, anon_sym_BANGis, + ACTIONS(4636), 1, anon_sym_in, + ACTIONS(4638), 1, anon_sym_BANGin, + ACTIONS(4646), 1, + anon_sym_LBRACE, + STATE(1530), 1, + sym_block, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(3389), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4608), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4604), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4610), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4606), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3379), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194952,21 +199022,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5719] = 3, - ACTIONS(493), 1, + [5969] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(4554), 1, + anon_sym_LPAREN, + ACTIONS(4562), 1, anon_sym_LBRACK, - ACTIONS(2926), 57, + ACTIONS(4568), 1, + anon_sym_QMARK, + ACTIONS(4570), 1, + anon_sym_BANG, + STATE(1914), 1, + sym_argument_list, + STATE(1915), 1, + sym_or_block, + STATE(4369), 1, + sym_type_parameters, + ACTIONS(4550), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4572), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2314), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -194980,15 +199065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -194996,8 +199076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -195015,14 +199093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5785] = 4, - ACTIONS(493), 1, + [6051] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2614), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(4470), 1, - anon_sym_DOLLARelse, - ACTIONS(2616), 56, + ACTIONS(3072), 1, + anon_sym_LBRACE, + ACTIONS(2914), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195079,16 +199157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5853] = 3, - ACTIONS(493), 1, + [6119] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(3184), 1, anon_sym_LBRACK, - ACTIONS(2894), 57, + ACTIONS(3186), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195142,14 +199219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5919] = 4, - ACTIONS(493), 1, + [6184] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2740), 56, + ACTIONS(3269), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195206,16 +199281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5987] = 3, - ACTIONS(493), 1, + [6249] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(3002), 1, anon_sym_LBRACK, - ACTIONS(2914), 57, + ACTIONS(3004), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195269,75 +199343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 24, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - anon_sym_POUND, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4472), 34, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_assert, - anon_sym_defer, - anon_sym_goto, - anon_sym_break, - anon_sym_continue, - anon_sym_return, - anon_sym_DOLLARfor, - anon_sym_for, - anon_sym_asm, - [6119] = 3, - ACTIONS(493), 1, + [6314] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3271), 1, anon_sym_LBRACK, - ACTIONS(3010), 56, + ACTIONS(3273), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195394,12 +199405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6184] = 3, - ACTIONS(493), 1, + [6379] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(2752), 1, anon_sym_LBRACK, - ACTIONS(3167), 56, + ACTIONS(2750), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195456,12 +199467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6249] = 3, - ACTIONS(493), 1, + [6444] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(3307), 1, anon_sym_LBRACK, - ACTIONS(2890), 56, + ACTIONS(3309), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195518,12 +199529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6314] = 3, - ACTIONS(493), 1, + [6509] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(3050), 56, + ACTIONS(3301), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195580,12 +199591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6379] = 3, - ACTIONS(493), 1, + [6574] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2848), 1, + ACTIONS(2938), 1, anon_sym_LBRACK, - ACTIONS(2850), 56, + ACTIONS(2940), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195642,12 +199653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6444] = 3, - ACTIONS(493), 1, + [6639] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3070), 56, + ACTIONS(3008), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195704,12 +199715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6509] = 3, - ACTIONS(493), 1, + [6704] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3060), 1, + ACTIONS(2958), 1, anon_sym_LBRACK, - ACTIONS(3062), 56, + ACTIONS(2960), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195766,12 +199777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6574] = 3, - ACTIONS(493), 1, + [6769] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(2962), 1, anon_sym_LBRACK, - ACTIONS(3054), 56, + ACTIONS(2964), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195828,85 +199839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6639] = 4, - ACTIONS(493), 1, + [6834] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3030), 1, anon_sym_LBRACK, - ACTIONS(2982), 6, + ACTIONS(3032), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2984), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6706] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2997), 1, - anon_sym_LBRACK, - ACTIONS(2992), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2994), 50, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -195921,6 +199866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -195928,6 +199874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -195954,12 +199901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6773] = 3, - ACTIONS(493), 1, + [6899] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3032), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(3034), 56, + ACTIONS(3012), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196016,12 +199963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6838] = 3, - ACTIONS(493), 1, + [6964] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(3018), 1, anon_sym_LBRACK, - ACTIONS(2862), 56, + ACTIONS(3020), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196078,12 +200025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6903] = 3, - ACTIONS(493), 1, + [7029] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(3006), 56, + ACTIONS(3024), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196140,12 +200087,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6968] = 3, - ACTIONS(493), 1, + [7094] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(3331), 1, anon_sym_LBRACK, - ACTIONS(3026), 56, + ACTIONS(3333), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196202,12 +200149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7033] = 3, - ACTIONS(493), 1, + [7159] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3112), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(3114), 56, + ACTIONS(2948), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196264,12 +200211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7098] = 3, - ACTIONS(493), 1, + [7224] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(2970), 56, + ACTIONS(2952), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196326,19 +200273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7163] = 3, - ACTIONS(493), 1, + [7289] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(2752), 1, anon_sym_LBRACK, - ACTIONS(3066), 56, + ACTIONS(2748), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2750), 52, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -196353,7 +200303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -196361,7 +200310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -196388,12 +200336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7228] = 3, - ACTIONS(493), 1, + [7356] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(2994), 1, anon_sym_LBRACK, - ACTIONS(3094), 56, + ACTIONS(2996), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196450,12 +200398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7293] = 3, - ACTIONS(493), 1, + [7421] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(3058), 1, anon_sym_LBRACK, - ACTIONS(3133), 56, + ACTIONS(3060), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196512,17 +200460,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7358] = 4, - ACTIONS(493), 1, + [7486] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2742), 1, - anon_sym_DOT, - ACTIONS(2844), 1, + ACTIONS(2998), 1, anon_sym_LBRACK, - ACTIONS(2846), 55, + ACTIONS(3000), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -196575,12 +200522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7425] = 3, - ACTIONS(493), 1, + [7551] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(3275), 1, anon_sym_LBRACK, - ACTIONS(2954), 56, + ACTIONS(3277), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196637,12 +200584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7490] = 3, - ACTIONS(493), 1, + [7616] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(3151), 56, + ACTIONS(3265), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196699,12 +200646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7555] = 3, - ACTIONS(493), 1, + [7681] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3153), 1, + ACTIONS(3188), 1, anon_sym_LBRACK, - ACTIONS(3155), 56, + ACTIONS(3190), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196761,12 +200708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7620] = 3, - ACTIONS(493), 1, + [7746] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(3180), 1, anon_sym_LBRACK, - ACTIONS(2974), 56, + ACTIONS(3182), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196823,12 +200770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7685] = 3, - ACTIONS(493), 1, + [7811] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(3172), 1, anon_sym_LBRACK, - ACTIONS(3159), 56, + ACTIONS(3174), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196885,12 +200832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7750] = 3, - ACTIONS(493), 1, + [7876] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3171), 56, + ACTIONS(3040), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196947,12 +200894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7815] = 3, - ACTIONS(493), 1, + [7941] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3168), 1, anon_sym_LBRACK, - ACTIONS(3090), 56, + ACTIONS(3170), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197009,12 +200956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7880] = 3, - ACTIONS(493), 1, + [8006] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(2942), 1, anon_sym_LBRACK, - ACTIONS(2950), 56, + ACTIONS(2944), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197071,12 +201018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7945] = 3, - ACTIONS(493), 1, + [8071] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(2978), 56, + ACTIONS(3048), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197133,12 +201080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8010] = 3, - ACTIONS(493), 1, + [8136] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2546), 1, anon_sym_LBRACK, - ACTIONS(2694), 56, + ACTIONS(4648), 1, + anon_sym_else, + STATE(1861), 1, + sym_else_branch, + ACTIONS(2548), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197176,8 +201127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -197195,12 +201144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8075] = 3, - ACTIONS(493), 1, + [8205] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(2946), 56, + ACTIONS(4648), 1, + anon_sym_else, + STATE(1865), 1, + sym_else_branch, + ACTIONS(2558), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197222,7 +201175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -197230,7 +201182,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -197257,12 +201208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8140] = 3, - ACTIONS(493), 1, + [8274] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(3142), 1, anon_sym_LBRACK, - ACTIONS(3058), 56, + ACTIONS(3144), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197319,16 +201270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8205] = 3, - ACTIONS(493), 1, + [8339] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(3070), 1, anon_sym_LBRACK, - ACTIONS(2794), 56, + ACTIONS(3072), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -197381,12 +201333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8270] = 3, - ACTIONS(493), 1, + [8406] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(3125), 56, + ACTIONS(3044), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197443,12 +201395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8335] = 3, - ACTIONS(493), 1, + [8471] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(3130), 1, anon_sym_LBRACK, - ACTIONS(2942), 56, + ACTIONS(3132), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197505,17 +201457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8400] = 4, - ACTIONS(493), 1, + [8536] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3116), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_DOT, - ACTIONS(3118), 55, + ACTIONS(3052), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -197568,81 +201519,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8467] = 3, - ACTIONS(493), 1, + [8601] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(3113), 1, anon_sym_LBRACK, - ACTIONS(2938), 56, + ACTIONS(3108), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8532] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2816), 1, - anon_sym_LBRACK, - ACTIONS(2818), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3110), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -197657,7 +201549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -197665,7 +201556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -197692,19 +201582,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8597] = 3, - ACTIONS(493), 1, + [8668] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2734), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(2736), 56, + ACTIONS(3160), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(3162), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -197735,8 +201628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -197754,12 +201645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8662] = 3, - ACTIONS(493), 1, + [8735] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(2918), 56, + ACTIONS(3249), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197816,12 +201707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8727] = 3, - ACTIONS(493), 1, + [8800] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3175), 56, + ACTIONS(3253), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197878,12 +201769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8792] = 3, - ACTIONS(493), 1, + [8865] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2896), 1, + ACTIONS(3347), 1, anon_sym_LBRACK, - ACTIONS(2898), 56, + ACTIONS(3349), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197940,12 +201831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8857] = 3, - ACTIONS(493), 1, + [8930] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2904), 1, + ACTIONS(3287), 1, anon_sym_LBRACK, - ACTIONS(2906), 56, + ACTIONS(3289), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198002,12 +201893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8922] = 3, - ACTIONS(493), 1, + [8995] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(3283), 1, anon_sym_LBRACK, - ACTIONS(3102), 56, + ACTIONS(3285), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198064,75 +201955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8987] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK, - ACTIONS(2694), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2784), 52, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9054] = 3, - ACTIONS(493), 1, + [9060] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(3279), 1, anon_sym_LBRACK, - ACTIONS(2846), 56, + ACTIONS(3281), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198189,12 +202017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9119] = 3, - ACTIONS(493), 1, + [9125] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(2966), 1, anon_sym_LBRACK, - ACTIONS(3098), 56, + ACTIONS(2968), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198251,12 +202079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9184] = 3, - ACTIONS(493), 1, + [9190] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(2784), 56, + ACTIONS(3257), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198313,12 +202141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9249] = 3, - ACTIONS(493), 1, + [9255] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(3074), 56, + ACTIONS(2972), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198375,12 +202203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9314] = 3, - ACTIONS(493), 1, + [9320] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2788), 1, + ACTIONS(3192), 1, anon_sym_LBRACK, - ACTIONS(2790), 56, + ACTIONS(3194), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198437,12 +202265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9379] = 3, - ACTIONS(493), 1, + [9385] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - ACTIONS(3179), 56, + ACTIONS(2798), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198464,7 +202292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -198472,7 +202299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -198482,6 +202308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -198499,12 +202327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9444] = 3, - ACTIONS(493), 1, + [9450] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3000), 1, + ACTIONS(2986), 1, anon_sym_LBRACK, - ACTIONS(3002), 56, + ACTIONS(2988), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198561,12 +202389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9509] = 3, - ACTIONS(493), 1, + [9515] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3026), 1, anon_sym_LBRACK, - ACTIONS(3183), 56, + ACTIONS(3028), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198623,12 +202451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9574] = 3, - ACTIONS(493), 1, + [9580] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(2934), 1, anon_sym_LBRACK, - ACTIONS(3137), 56, + ACTIONS(2936), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198685,16 +202513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9639] = 5, - ACTIONS(493), 1, + [9645] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(3291), 1, anon_sym_LBRACK, - ACTIONS(4476), 1, - anon_sym_else, - STATE(1881), 1, - sym_else_branch, - ACTIONS(2392), 54, + ACTIONS(3293), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198716,6 +202540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -198723,6 +202548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -198749,12 +202575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9708] = 3, - ACTIONS(493), 1, + [9710] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3012), 1, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(3014), 56, + ACTIONS(3237), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198811,12 +202637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9773] = 3, - ACTIONS(493), 1, + [9775] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3208), 1, anon_sym_LBRACK, - ACTIONS(3195), 56, + ACTIONS(3210), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198873,12 +202699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9838] = 3, - ACTIONS(493), 1, + [9840] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2964), 1, + ACTIONS(3204), 1, anon_sym_LBRACK, - ACTIONS(2966), 56, + ACTIONS(3206), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198935,12 +202761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9903] = 3, - ACTIONS(493), 1, + [9905] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3200), 1, anon_sym_LBRACK, - ACTIONS(3203), 56, + ACTIONS(3202), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198997,12 +202823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9968] = 3, - ACTIONS(493), 1, + [9970] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3108), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(3110), 56, + ACTIONS(2914), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199059,12 +202885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10033] = 3, - ACTIONS(493), 1, + [10035] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3082), 1, anon_sym_LBRACK, - ACTIONS(3018), 56, + ACTIONS(3084), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199121,20 +202947,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10098] = 4, - ACTIONS(493), 1, + [10100] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(3124), 1, anon_sym_LBRACK, - ACTIONS(2694), 4, + ACTIONS(4650), 1, + anon_sym_BANG, + ACTIONS(3126), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2784), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -199153,7 +202980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -199184,12 +203010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10165] = 3, - ACTIONS(493), 1, + [10167] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(3078), 1, anon_sym_LBRACK, - ACTIONS(2740), 56, + ACTIONS(3080), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199246,12 +203072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10230] = 3, - ACTIONS(493), 1, + [10232] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(2990), 1, anon_sym_LBRACK, - ACTIONS(3078), 56, + ACTIONS(2992), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199308,16 +203134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10295] = 5, - ACTIONS(493), 1, + [10297] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(3216), 1, anon_sym_LBRACK, - ACTIONS(4476), 1, - anon_sym_else, - STATE(1888), 1, - sym_else_branch, - ACTIONS(2398), 54, + ACTIONS(3218), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199339,6 +203161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -199346,6 +203169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199372,12 +203196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10364] = 3, - ACTIONS(493), 1, + [10362] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3224), 1, anon_sym_LBRACK, - ACTIONS(3199), 56, + ACTIONS(3226), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199434,16 +203258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10429] = 3, - ACTIONS(493), 1, + [10427] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(3228), 1, anon_sym_LBRACK, - ACTIONS(2878), 56, + ACTIONS(3232), 1, + anon_sym_DOT, + ACTIONS(3230), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -199497,11 +203322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [10494] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(2902), 56, + ACTIONS(3122), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199558,19 +203383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10559] = 3, - ACTIONS(493), 1, + [10559] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(2752), 1, anon_sym_LBRACK, - ACTIONS(3147), 56, + ACTIONS(2748), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2750), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -199620,12 +203446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10624] = 3, - ACTIONS(493), 1, + [10626] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3074), 1, anon_sym_LBRACK, - ACTIONS(3191), 56, + ACTIONS(3076), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199682,12 +203508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10689] = 3, - ACTIONS(493), 1, + [10691] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, - ACTIONS(2798), 56, + ACTIONS(3068), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199744,12 +203570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10754] = 3, - ACTIONS(493), 1, + [10756] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3303), 1, anon_sym_LBRACK, - ACTIONS(3187), 56, + ACTIONS(3305), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199806,12 +203632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10819] = 3, - ACTIONS(493), 1, + [10821] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2930), 56, + ACTIONS(3064), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199868,12 +203694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10884] = 3, - ACTIONS(493), 1, + [10886] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(3022), 56, + ACTIONS(3016), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199930,12 +203756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10949] = 4, - ACTIONS(493), 1, + [10951] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3113), 1, anon_sym_LBRACK, - ACTIONS(2982), 21, + ACTIONS(3108), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199957,7 +203783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2984), 35, + ACTIONS(3110), 35, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -199993,12 +203819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [11016] = 3, - ACTIONS(493), 1, + [11018] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(3034), 1, anon_sym_LBRACK, - ACTIONS(3163), 56, + ACTIONS(3036), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200055,12 +203881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11081] = 4, - ACTIONS(493), 1, + [11083] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(2992), 21, + ACTIONS(3160), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200082,7 +203908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2994), 35, + ACTIONS(3162), 35, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -200118,12 +203944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [11148] = 3, - ACTIONS(493), 1, + [11150] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(3054), 1, anon_sym_LBRACK, - ACTIONS(2830), 56, + ACTIONS(3056), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200180,12 +204006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11213] = 3, - ACTIONS(493), 1, + [11215] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2960), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2962), 56, + ACTIONS(2748), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200207,7 +204033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -200215,7 +204040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -200225,6 +204049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -200242,12 +204068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11278] = 3, - ACTIONS(493), 1, + [11280] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2932), 1, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(2934), 56, + ACTIONS(3321), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200304,12 +204130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11343] = 3, - ACTIONS(493), 1, + [11345] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(3327), 1, anon_sym_LBRACK, - ACTIONS(2826), 56, + ACTIONS(3329), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200366,12 +204192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11408] = 3, - ACTIONS(493), 1, + [11410] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2800), 1, + ACTIONS(3070), 1, anon_sym_LBRACK, - ACTIONS(2802), 56, + ACTIONS(3072), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200428,12 +204254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11473] = 3, - ACTIONS(493), 1, + [11475] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3323), 1, anon_sym_LBRACK, - ACTIONS(2870), 56, + ACTIONS(3325), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200490,14 +204316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11538] = 4, - ACTIONS(493), 1, + [11540] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3343), 1, anon_sym_LBRACK, - ACTIONS(4478), 1, - anon_sym_BANG, - ACTIONS(3141), 55, + ACTIONS(3345), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200523,6 +204347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -200554,11 +204379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [11605] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3339), 1, anon_sym_LBRACK, - ACTIONS(2958), 56, + ACTIONS(3341), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200615,55 +204440,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11670] = 13, + [11670] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(2360), 1, + anon_sym_EQ, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + ACTIONS(4636), 1, + anon_sym_in, + ACTIONS(4638), 1, + anon_sym_BANGin, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2224), 15, - anon_sym_EQ, + ACTIONS(4608), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4610), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2222), 30, + ACTIONS(2358), 24, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -200671,8 +204504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200686,40 +204517,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11754] = 15, + [11766] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2156), 3, + ACTIONS(2360), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4428), 8, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200728,7 +204559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2154), 30, + ACTIONS(2358), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -200759,70 +204590,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11842] = 29, + [11854] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1708), 1, - anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(2360), 1, anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4446), 1, + ACTIONS(4624), 1, anon_sym_AMP_AMP, - ACTIONS(4448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, - anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, - anon_sym_is, - ACTIONS(4456), 1, - anon_sym_BANGis, - ACTIONS(4458), 1, + ACTIONS(4636), 1, anon_sym_in, - ACTIONS(4460), 1, + ACTIONS(4638), 1, anon_sym_BANGin, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(3927), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4430), 2, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4432), 4, + ACTIONS(4610), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4428), 8, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200831,8 +204644,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 14, + ACTIONS(2358), 23, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200846,25 +204668,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11958] = 3, - ACTIONS(493), 1, + [11952] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(2858), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(2360), 15, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -200872,107 +204702,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2358), 30, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [12022] = 30, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [12036] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1774), 1, - anon_sym_LBRACE, - ACTIONS(1780), 1, - anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4446), 1, - anon_sym_AMP_AMP, - ACTIONS(4448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, - anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, - anon_sym_is, - ACTIONS(4456), 1, - anon_sym_BANGis, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_BANGin, - ACTIONS(4480), 1, - anon_sym_COMMA, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(3357), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4430), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(2360), 7, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4428), 8, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200981,7 +204780,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3233), 13, + ACTIONS(2358), 30, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200995,12 +204811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12140] = 3, - ACTIONS(493), 1, + [12122] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2852), 1, + ACTIONS(3150), 1, anon_sym_LBRACK, - ACTIONS(2854), 55, + ACTIONS(3152), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201056,24 +204872,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [12204] = 4, - ACTIONS(493), 1, + [12186] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2756), 1, + ACTIONS(3138), 1, anon_sym_LBRACK, - ACTIONS(4482), 1, - anon_sym_DOLLARelse, - ACTIONS(2758), 54, + ACTIONS(3140), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201085,6 +204902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -201105,93 +204926,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12270] = 29, - ACTIONS(3), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [12250] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(1708), 1, - anon_sym_SEMI, - ACTIONS(1716), 1, - anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_or, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, - anon_sym_is, - ACTIONS(4456), 1, - anon_sym_BANGis, - ACTIONS(4492), 1, - anon_sym_AMP_AMP, - ACTIONS(4494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, - anon_sym_in, - ACTIONS(4498), 1, - anon_sym_BANGin, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4045), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(3072), 1, + anon_sym_LBRACE, + ACTIONS(2914), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4488), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4484), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4490), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 14, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201205,14 +204995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12386] = 4, - ACTIONS(493), 1, + [12316] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(2750), 1, + anon_sym_LBRACE, + ACTIONS(3116), 1, anon_sym_LBRACK, - STATE(1858), 1, - sym_type_parameters, - ACTIONS(2764), 54, + ACTIONS(3118), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201267,31 +205057,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12452] = 13, + [12382] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - STATE(2085), 1, + STATE(2091), 1, sym_argument_list, - STATE(2086), 1, + STATE(2092), 1, sym_or_block, - STATE(4280), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2162), 15, + ACTIONS(2360), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -201307,7 +205097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 30, + ACTIONS(2358), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201338,25 +205128,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12536] = 3, - ACTIONS(493), 1, + [12466] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(2814), 55, + STATE(1844), 1, + sym_type_parameters, + ACTIONS(2890), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -201368,10 +205157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -201392,19 +205177,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [12600] = 3, - ACTIONS(493), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [12532] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(2978), 1, anon_sym_LBRACK, - ACTIONS(2810), 55, + ACTIONS(2980), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201460,40 +205251,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [12664] = 15, + [12596] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(1856), 1, + anon_sym_LBRACE, + ACTIONS(1868), 1, + anon_sym_EQ, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4624), 1, + anon_sym_AMP_AMP, + ACTIONS(4626), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(2085), 1, + ACTIONS(4632), 1, + anon_sym_is, + ACTIONS(4634), 1, + anon_sym_BANGis, + ACTIONS(4636), 1, + anon_sym_in, + ACTIONS(4638), 1, + anon_sym_BANGin, + ACTIONS(4666), 1, + anon_sym_COMMA, + STATE(1983), 1, sym_argument_list, - STATE(2086), 1, + STATE(1984), 1, sym_or_block, - STATE(4280), 1, + STATE(3389), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4594), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4608), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4604), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4610), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4606), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3379), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [12714] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_LBRACK, + ACTIONS(4668), 1, + anon_sym_DOLLARelse, + ACTIONS(2884), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(2144), 3, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [12780] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2746), 1, + anon_sym_LBRACK, + ACTIONS(2750), 1, + anon_sym_LBRACE, + ACTIONS(2748), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - ACTIONS(4514), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [12846] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_LBRACK, + ACTIONS(4658), 1, + anon_sym_QMARK, + ACTIONS(4660), 1, + anon_sym_BANG, + ACTIONS(4662), 1, + anon_sym_LBRACK2, + ACTIONS(4664), 1, + anon_sym_POUND_LBRACK, + STATE(2091), 1, + sym_argument_list, + STATE(2092), 1, + sym_or_block, + STATE(4184), 1, + sym_type_parameters, + ACTIONS(4652), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2360), 7, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4516), 8, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201502,7 +205504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 30, + ACTIONS(2358), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201533,51 +205535,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12752] = 4, - ACTIONS(493), 1, + [12932] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(2784), 1, - anon_sym_LBRACE, - ACTIONS(2694), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4658), 1, + anon_sym_QMARK, + ACTIONS(4660), 1, + anon_sym_BANG, + ACTIONS(4662), 1, + anon_sym_LBRACK2, + ACTIONS(4664), 1, + anon_sym_POUND_LBRACK, + STATE(2091), 1, + sym_argument_list, + STATE(2092), 1, + sym_or_block, + STATE(4184), 1, + sym_type_parameters, + ACTIONS(4652), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2360), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4672), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201594,50 +205608,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12818] = 15, + [13020] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - STATE(2085), 1, + STATE(2091), 1, sym_argument_list, - STATE(2086), 1, + STATE(2092), 1, sym_or_block, - STATE(4280), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2156), 3, + ACTIONS(2392), 15, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4514), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4516), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2154), 30, + ACTIONS(2390), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201668,31 +205679,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12906] = 13, + [13104] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2246), 15, + ACTIONS(2392), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -201708,7 +205719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2244), 30, + ACTIONS(2390), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -201739,52 +205750,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12990] = 20, + [13188] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(2360), 1, anon_sym_EQ, - ACTIONS(4502), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - ACTIONS(4522), 1, - anon_sym_AMP_AMP, - ACTIONS(4524), 1, + ACTIONS(4678), 1, anon_sym_in, - ACTIONS(4526), 1, + ACTIONS(4680), 1, anon_sym_BANGin, - STATE(2085), 1, + STATE(2091), 1, sym_argument_list, - STATE(2086), 1, + STATE(2092), 1, sym_or_block, - STATE(4280), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4518), 2, + ACTIONS(4674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4514), 4, + ACTIONS(4672), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4520), 4, + ACTIONS(4676), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4516), 8, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201793,7 +205802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 23, + ACTIONS(2358), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201801,6 +205810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LT_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -201817,50 +205827,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13088] = 19, + [13284] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(2360), 1, anon_sym_EQ, - ACTIONS(4502), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, + ACTIONS(4678), 1, anon_sym_in, - ACTIONS(4526), 1, + ACTIONS(4680), 1, anon_sym_BANGin, - STATE(2085), 1, + ACTIONS(4682), 1, + anon_sym_AMP_AMP, + STATE(2091), 1, sym_argument_list, - STATE(2086), 1, + STATE(2092), 1, sym_or_block, - STATE(4280), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4518), 2, + ACTIONS(4674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4514), 4, + ACTIONS(4672), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4520), 4, + ACTIONS(4676), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4516), 8, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201869,7 +205881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 24, + ACTIONS(2358), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201877,7 +205889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -201894,66 +205905,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13184] = 27, + [13382] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(2234), 1, anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4446), 1, + ACTIONS(4664), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4678), 1, + anon_sym_in, + ACTIONS(4680), 1, + anon_sym_BANGin, + ACTIONS(4682), 1, anon_sym_AMP_AMP, - ACTIONS(4448), 1, + ACTIONS(4684), 1, + anon_sym_as, + ACTIONS(4686), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4688), 1, + anon_sym_DASH_DASH, + ACTIONS(4690), 1, anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, + ACTIONS(4692), 1, anon_sym_or, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4694), 1, anon_sym_is, - ACTIONS(4456), 1, + ACTIONS(4696), 1, anon_sym_BANGis, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_BANGin, - STATE(1979), 1, + STATE(2091), 1, sym_argument_list, - STATE(1980), 1, + STATE(2092), 1, sym_or_block, - STATE(4384), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4430), 2, + ACTIONS(4674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(4672), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4432), 4, + ACTIONS(4676), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4428), 8, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201962,10 +205973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2050), 16, - anon_sym_SEMI, + ACTIONS(2232), 16, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201978,67 +205990,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13296] = 27, + [13494] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, + ACTIONS(2220), 1, anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4446), 1, + ACTIONS(4664), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4678), 1, + anon_sym_in, + ACTIONS(4680), 1, + anon_sym_BANGin, + ACTIONS(4682), 1, anon_sym_AMP_AMP, - ACTIONS(4448), 1, + ACTIONS(4684), 1, + anon_sym_as, + ACTIONS(4686), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4688), 1, + anon_sym_DASH_DASH, + ACTIONS(4690), 1, anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, + ACTIONS(4692), 1, anon_sym_or, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4694), 1, anon_sym_is, - ACTIONS(4456), 1, + ACTIONS(4696), 1, anon_sym_BANGis, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_BANGin, - STATE(1979), 1, + STATE(2091), 1, sym_argument_list, - STATE(1980), 1, + STATE(2092), 1, sym_or_block, - STATE(4384), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4430), 2, + ACTIONS(4674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(4672), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4432), 4, + ACTIONS(4676), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4428), 8, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202047,10 +206058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2232), 16, - anon_sym_SEMI, + ACTIONS(2218), 16, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202063,41 +206075,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13408] = 15, + [13606] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(2085), 1, + STATE(1983), 1, sym_argument_list, - STATE(2086), 1, + STATE(1984), 1, sym_or_block, - STATE(4280), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2162), 3, + ACTIONS(2346), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4514), 4, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4516), 8, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202106,7 +206117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 30, + ACTIONS(2344), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202114,10 +206126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -202137,39 +206147,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13496] = 14, + anon_sym_COLON_EQ, + [13694] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - STATE(2085), 1, + STATE(2091), 1, sym_argument_list, - STATE(2086), 1, + STATE(2092), 1, sym_or_block, - STATE(4280), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2162), 7, + ACTIONS(2346), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4672), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_CARET, - ACTIONS(4516), 8, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202178,7 +206190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 30, + ACTIONS(2344), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202209,113 +206221,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13582] = 4, - ACTIONS(493), 1, + [13782] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 1, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4528), 1, - anon_sym_DOLLARelse, - ACTIONS(2616), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2342), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13648] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2784), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, - anon_sym_LBRACK, - ACTIONS(2838), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2340), 30, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202333,25 +206294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13714] = 3, - ACTIONS(493), 1, + [13870] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2920), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(2922), 55, + ACTIONS(4698), 1, + anon_sym_DOLLARelse, + ACTIONS(2926), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202363,10 +206323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -202387,78 +206343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [13778] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2162), 1, - anon_sym_EQ, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4446), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_BANGin, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4430), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4426), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4428), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202472,124 +206356,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13876] = 19, + [13936] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, - anon_sym_EQ, - ACTIONS(4424), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_BANGin, - STATE(1979), 1, + STATE(2091), 1, sym_argument_list, - STATE(1980), 1, + STATE(2092), 1, sym_or_block, - STATE(4384), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4430), 2, + ACTIONS(2342), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(4672), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4428), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 24, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13972] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_LPAREN, - ACTIONS(4504), 1, - anon_sym_LBRACK, - ACTIONS(4506), 1, - anon_sym_QMARK, - ACTIONS(4508), 1, - anon_sym_BANG, - ACTIONS(4510), 1, - anon_sym_LBRACK2, - ACTIONS(4512), 1, - anon_sym_POUND_LBRACK, - STATE(2085), 1, - sym_argument_list, - STATE(2086), 1, - sym_or_block, - STATE(4280), 1, - sym_type_parameters, - ACTIONS(4500), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2224), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4670), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2222), 30, + ACTIONS(2340), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202620,50 +206429,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14056] = 15, + [14024] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + STATE(2091), 1, sym_argument_list, - STATE(1980), 1, + STATE(2092), 1, sym_or_block, - STATE(4384), 1, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2162), 3, + ACTIONS(2314), 15, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 30, - anon_sym_SEMI, + ACTIONS(2312), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202671,8 +206477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -202692,67 +206500,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14144] = 27, + [14108] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, + ACTIONS(1926), 1, + anon_sym_LBRACE, + ACTIONS(1930), 1, anon_sym_EQ, - ACTIONS(4502), 1, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4624), 1, anon_sym_AMP_AMP, - ACTIONS(4524), 1, - anon_sym_in, - ACTIONS(4526), 1, - anon_sym_BANGin, - ACTIONS(4530), 1, - anon_sym_as, - ACTIONS(4532), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4534), 1, - anon_sym_DASH_DASH, - ACTIONS(4536), 1, + ACTIONS(4626), 1, anon_sym_PIPE_PIPE, - ACTIONS(4538), 1, + ACTIONS(4628), 1, anon_sym_or, - ACTIONS(4540), 1, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4632), 1, anon_sym_is, - ACTIONS(4542), 1, + ACTIONS(4634), 1, anon_sym_BANGis, - STATE(2085), 1, + ACTIONS(4636), 1, + anon_sym_in, + ACTIONS(4638), 1, + anon_sym_BANGin, + STATE(1983), 1, sym_argument_list, - STATE(2086), 1, + STATE(1984), 1, sym_or_block, - STATE(4280), 1, + STATE(3991), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4518), 2, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4514), 4, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4520), 4, + ACTIONS(4610), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4516), 8, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202761,11 +206572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2232), 16, - anon_sym_LBRACE, + ACTIONS(3461), 14, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202778,66 +206586,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14256] = 27, + anon_sym_COLON_EQ, + [14224] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(1926), 1, + anon_sym_SEMI, + ACTIONS(1930), 1, anon_sym_EQ, - ACTIONS(4502), 1, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4522), 1, + ACTIONS(4632), 1, + anon_sym_is, + ACTIONS(4634), 1, + anon_sym_BANGis, + ACTIONS(4708), 1, anon_sym_AMP_AMP, - ACTIONS(4524), 1, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, anon_sym_in, - ACTIONS(4526), 1, + ACTIONS(4714), 1, anon_sym_BANGin, - ACTIONS(4530), 1, - anon_sym_as, - ACTIONS(4532), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4534), 1, - anon_sym_DASH_DASH, - ACTIONS(4536), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4538), 1, - anon_sym_or, - ACTIONS(4540), 1, - anon_sym_is, - ACTIONS(4542), 1, - anon_sym_BANGis, - STATE(2085), 1, + STATE(1983), 1, sym_argument_list, - STATE(2086), 1, + STATE(1984), 1, sym_or_block, - STATE(4280), 1, + STATE(4116), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4518), 2, + ACTIONS(4704), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4514), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4520), 4, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4516), 8, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202846,11 +206659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2050), 16, - anon_sym_LBRACE, + ACTIONS(3461), 14, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202863,64 +206673,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14368] = 13, + anon_sym_COLON_EQ, + [14340] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(2220), 1, + anon_sym_EQ, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4624), 1, + anon_sym_AMP_AMP, + ACTIONS(4626), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + ACTIONS(4632), 1, + anon_sym_is, + ACTIONS(4634), 1, + anon_sym_BANGis, + ACTIONS(4636), 1, + anon_sym_in, + ACTIONS(4638), 1, + anon_sym_BANGin, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2162), 15, - anon_sym_EQ, + ACTIONS(4608), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4610), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 30, + ACTIONS(2218), 16, anon_sym_SEMI, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202934,24 +206759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14452] = 4, - ACTIONS(493), 1, + [14452] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(3315), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, - anon_sym_LBRACE, - ACTIONS(2740), 54, + ACTIONS(3317), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202963,6 +206789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -202983,46 +206813,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14518] = 13, - ACTIONS(3), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [14516] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(3335), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, - anon_sym_QMARK, - ACTIONS(4508), 1, - anon_sym_BANG, - ACTIONS(4510), 1, - anon_sym_LBRACK2, - ACTIONS(4512), 1, - anon_sym_POUND_LBRACK, - STATE(2085), 1, - sym_argument_list, - STATE(2086), 1, - sym_or_block, - STATE(4280), 1, - sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(3337), 55, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2246), 15, - anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -203030,85 +206846,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2244), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14602] = 14, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [14580] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2162), 7, + ACTIONS(2314), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 30, + ACTIONS(2312), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -203139,40 +206952,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14688] = 15, + [14664] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(2234), 1, + anon_sym_EQ, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4624), 1, + anon_sym_AMP_AMP, + ACTIONS(4626), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + ACTIONS(4632), 1, + anon_sym_is, + ACTIONS(4634), 1, + anon_sym_BANGis, + ACTIONS(4636), 1, + anon_sym_in, + ACTIONS(4638), 1, + anon_sym_BANGin, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2144), 3, - anon_sym_EQ, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 4, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4428), 8, + ACTIONS(4610), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203181,24 +207020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 30, + ACTIONS(2232), 16, anon_sym_SEMI, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203213,11 +207038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [14776] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2964), 1, + ACTIONS(3098), 1, anon_sym_LBRACK, - ACTIONS(2966), 54, + ACTIONS(3100), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203273,11 +207098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [14839] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(2910), 54, + ACTIONS(3265), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203333,11 +207158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [14902] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(3086), 1, anon_sym_LBRACK, - ACTIONS(3030), 54, + ACTIONS(3088), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203393,11 +207218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [14965] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(3036), 1, + ACTIONS(3090), 1, anon_sym_LBRACK, - ACTIONS(3038), 54, + ACTIONS(3092), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203453,11 +207278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, [15028] = 3, - ACTIONS(493), 1, + ACTIONS(495), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3094), 1, anon_sym_LBRACK, - ACTIONS(3042), 54, + ACTIONS(3096), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203512,78 +207337,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15091] = 3, - ACTIONS(493), 1, + [15091] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 1, - anon_sym_LBRACK, - ACTIONS(3046), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_EQ, + ACTIONS(4596), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4602), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4632), 1, + anon_sym_is, + ACTIONS(4634), 1, + anon_sym_BANGis, + ACTIONS(4708), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4714), 1, + anon_sym_BANGin, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4704), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4702), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15154] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2997), 1, - anon_sym_LBRACK, - ACTIONS(2992), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2232), 15, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203597,48 +207421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2994), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [15219] = 3, - ACTIONS(493), 1, + [15202] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3283), 1, anon_sym_LBRACK, - ACTIONS(3086), 54, + ACTIONS(3285), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203693,12 +207481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15282] = 3, - ACTIONS(493), 1, + [15265] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3200), 1, anon_sym_LBRACK, - ACTIONS(3106), 54, + ACTIONS(3202), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203753,12 +207541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15345] = 3, - ACTIONS(493), 1, + [15328] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(3347), 1, anon_sym_LBRACK, - ACTIONS(2764), 54, + ACTIONS(3349), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203813,12 +207601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15408] = 3, - ACTIONS(493), 1, + [15391] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3058), 1, anon_sym_LBRACK, - ACTIONS(3129), 54, + ACTIONS(3060), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203873,12 +207661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15471] = 3, - ACTIONS(493), 1, + [15454] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2820), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(2822), 54, + ACTIONS(2984), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203933,17 +207721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15534] = 4, - ACTIONS(493), 1, + [15517] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3116), 1, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_DOT, - ACTIONS(3118), 53, + ACTIONS(2976), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -203994,12 +207781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15599] = 3, - ACTIONS(493), 1, + [15580] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(2954), 1, anon_sym_LBRACK, - ACTIONS(3125), 54, + ACTIONS(2956), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204054,12 +207841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15662] = 3, - ACTIONS(493), 1, + [15643] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3102), 1, anon_sym_LBRACK, - ACTIONS(2978), 54, + ACTIONS(3104), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204114,17 +207901,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15725] = 4, - ACTIONS(493), 1, + [15706] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2742), 1, - anon_sym_DOT, - ACTIONS(2844), 1, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(2846), 53, + ACTIONS(3253), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -204175,12 +207961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15790] = 3, - ACTIONS(493), 1, + [15769] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(2842), 54, + ACTIONS(3241), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204235,12 +208021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15853] = 3, - ACTIONS(493), 1, + [15832] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3000), 1, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3002), 54, + ACTIONS(3245), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204295,12 +208081,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15916] = 3, - ACTIONS(493), 1, + [15895] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(4716), 1, + anon_sym_else, + STATE(2168), 1, + sym_else_branch, + ACTIONS(2558), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2556), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [15962] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3134), 1, anon_sym_LBRACK, - ACTIONS(3171), 54, + ACTIONS(3136), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204355,12 +208203,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15979] = 3, - ACTIONS(493), 1, + [16025] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(4716), 1, + anon_sym_else, + STATE(2169), 1, + sym_else_branch, + ACTIONS(2548), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2546), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [16092] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(2794), 54, + ACTIONS(3148), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204415,12 +208325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16042] = 3, - ACTIONS(493), 1, + [16155] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3184), 1, anon_sym_LBRACK, - ACTIONS(3179), 54, + ACTIONS(3186), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204475,12 +208385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16105] = 3, - ACTIONS(493), 1, + [16218] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(3018), 54, + ACTIONS(2890), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204535,77 +208445,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16168] = 27, - ACTIONS(3), 1, + [16281] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2052), 1, - anon_sym_EQ, - ACTIONS(4418), 1, + ACTIONS(3196), 1, + anon_sym_LBRACK, + ACTIONS(3198), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4424), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, anon_sym_DASH_DASH, - ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4452), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, anon_sym_is, - ACTIONS(4456), 1, anon_sym_BANGis, - ACTIONS(4492), 1, - anon_sym_AMP_AMP, - ACTIONS(4494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, anon_sym_in, - ACTIONS(4498), 1, anon_sym_BANGin, - STATE(1979), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [16344] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4488), 2, + ACTIONS(2342), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4490), 4, + ACTIONS(4702), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2340), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [16431] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3228), 1, + anon_sym_LBRACK, + ACTIONS(3232), 1, + anon_sym_DOT, + ACTIONS(3230), 53, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2050), 15, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204619,12 +208638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16279] = 3, - ACTIONS(493), 1, + [16496] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2848), 1, + ACTIONS(3192), 1, anon_sym_LBRACK, - ACTIONS(2850), 54, + ACTIONS(3194), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204679,12 +208698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16342] = 3, - ACTIONS(493), 1, + [16559] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(2890), 54, + ACTIONS(3249), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204739,12 +208758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16405] = 3, - ACTIONS(493), 1, + [16622] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2896), 1, + ACTIONS(3212), 1, anon_sym_LBRACK, - ACTIONS(2898), 54, + ACTIONS(3214), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204799,12 +208818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16468] = 3, - ACTIONS(493), 1, + [16685] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - ACTIONS(2902), 54, + ACTIONS(3222), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204859,12 +208878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16531] = 3, - ACTIONS(493), 1, + [16748] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(3026), 1, anon_sym_LBRACK, - ACTIONS(2930), 54, + ACTIONS(3028), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204919,12 +208938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16594] = 3, - ACTIONS(493), 1, + [16811] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(2934), 1, anon_sym_LBRACK, - ACTIONS(3058), 54, + ACTIONS(2936), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204979,12 +208998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16657] = 3, - ACTIONS(493), 1, + [16874] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3070), 1, anon_sym_LBRACK, - ACTIONS(3066), 54, + ACTIONS(3072), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205039,12 +209058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16720] = 3, - ACTIONS(493), 1, + [16937] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(3327), 1, anon_sym_LBRACK, - ACTIONS(3074), 54, + ACTIONS(3329), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205099,12 +209118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16783] = 3, - ACTIONS(493), 1, + [17000] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2788), 1, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(2790), 54, + ACTIONS(3313), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205159,20 +209178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16846] = 3, - ACTIONS(493), 1, + [17063] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, - anon_sym_LBRACK, - ACTIONS(3090), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2748), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -205182,12 +209191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -205197,11 +209200,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2746), 37, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205219,12 +209238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16909] = 3, - ACTIONS(493), 1, + [17126] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3295), 1, anon_sym_LBRACK, - ACTIONS(3098), 54, + ACTIONS(3297), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205279,12 +209298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16972] = 3, - ACTIONS(493), 1, + [17189] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3108), 1, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(3110), 54, + ACTIONS(3261), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205339,98 +209358,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17035] = 27, - ACTIONS(3), 1, + [17252] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2234), 1, - anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_or, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, - anon_sym_is, - ACTIONS(4456), 1, - anon_sym_BANGis, - ACTIONS(4492), 1, - anon_sym_AMP_AMP, - ACTIONS(4494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, - anon_sym_in, - ACTIONS(4498), 1, - anon_sym_BANGin, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(3237), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4488), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4484), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4490), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4486), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2232), 15, - anon_sym_SEMI, + anon_sym_as, anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17146] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - anon_sym_else, - STATE(2022), 1, - sym_else_branch, - ACTIONS(2398), 18, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -205440,68 +209381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2396), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17213] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - anon_sym_else, - STATE(1931), 1, - sym_else_branch, - ACTIONS(2392), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -205511,20 +209396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2390), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -205547,12 +209418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17280] = 3, - ACTIONS(493), 1, + [17315] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(3176), 1, anon_sym_LBRACK, - ACTIONS(3137), 54, + ACTIONS(3178), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205607,12 +209478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17343] = 3, - ACTIONS(493), 1, + [17378] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(3303), 1, anon_sym_LBRACK, - ACTIONS(3147), 54, + ACTIONS(3305), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205667,12 +209538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17406] = 3, - ACTIONS(493), 1, + [17441] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(3130), 1, anon_sym_LBRACK, - ACTIONS(3163), 54, + ACTIONS(3132), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205727,12 +209598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17469] = 3, - ACTIONS(493), 1, + [17504] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(3195), 54, + ACTIONS(3044), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205787,12 +209658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17532] = 3, - ACTIONS(493), 1, + [17567] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(3287), 1, anon_sym_LBRACK, - ACTIONS(2784), 54, + ACTIONS(3289), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205847,12 +209718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17595] = 3, - ACTIONS(493), 1, + [17630] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3154), 1, anon_sym_LBRACK, - ACTIONS(3183), 54, + ACTIONS(3156), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205907,12 +209778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17658] = 3, - ACTIONS(493), 1, + [17693] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3208), 1, anon_sym_LBRACK, - ACTIONS(3175), 54, + ACTIONS(3210), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205967,14 +209838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17721] = 4, - ACTIONS(493), 1, + [17756] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3204), 1, anon_sym_LBRACK, - ACTIONS(4546), 1, - anon_sym_BANG, - ACTIONS(3141), 53, + ACTIONS(3206), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205999,6 +209868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206028,19 +209898,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17786] = 7, - ACTIONS(3), 1, + [17819] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4548), 1, - anon_sym_COMMA, - ACTIONS(4550), 1, - anon_sym_COLON_EQ, - STATE(3900), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2745), 2, - anon_sym_LBRACE, + ACTIONS(3279), 1, anon_sym_LBRACK, - ACTIONS(2740), 19, + ACTIONS(3281), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206050,102 +209921,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2738), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [17857] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2162), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_CARET, - ACTIONS(4486), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -206163,12 +209958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17942] = 3, - ACTIONS(493), 1, + [17882] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(3142), 1, anon_sym_LBRACK, - ACTIONS(2834), 54, + ACTIONS(3144), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206223,12 +210018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18005] = 3, - ACTIONS(493), 1, + [17945] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3012), 1, + ACTIONS(3168), 1, anon_sym_LBRACK, - ACTIONS(3014), 54, + ACTIONS(3170), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206283,12 +210078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18068] = 3, - ACTIONS(493), 1, + [18008] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(3291), 1, anon_sym_LBRACK, - ACTIONS(2970), 54, + ACTIONS(3293), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206343,12 +210138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18131] = 3, - ACTIONS(493), 1, + [18071] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(3006), 54, + ACTIONS(3269), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206403,12 +210198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18194] = 3, - ACTIONS(493), 1, + [18134] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3216), 1, anon_sym_LBRACK, - ACTIONS(3010), 54, + ACTIONS(3218), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206463,12 +210258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18257] = 3, - ACTIONS(493), 1, + [18197] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3224), 1, anon_sym_LBRACK, - ACTIONS(3050), 54, + ACTIONS(3226), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206523,12 +210318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18320] = 3, - ACTIONS(493), 1, + [18260] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(3094), 54, + ACTIONS(3122), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206583,12 +210378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18383] = 3, - ACTIONS(493), 1, + [18323] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(3034), 1, anon_sym_LBRACK, - ACTIONS(2818), 54, + ACTIONS(3036), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206643,12 +210438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18446] = 3, - ACTIONS(493), 1, + [18386] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(2984), 54, + ACTIONS(3321), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206703,12 +210498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18509] = 3, - ACTIONS(493), 1, + [18449] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3323), 1, anon_sym_LBRACK, - ACTIONS(2958), 54, + ACTIONS(3325), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206763,18 +210558,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18572] = 4, - ACTIONS(493), 1, + [18512] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3172), 1, anon_sym_LBRACK, - ACTIONS(2982), 19, + ACTIONS(3174), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -206788,10 +210618,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2984), 35, + [18575] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3339), 1, + anon_sym_LBRACK, + ACTIONS(3341), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -206824,12 +210665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [18637] = 3, - ACTIONS(493), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18638] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(3343), 1, anon_sym_LBRACK, - ACTIONS(2926), 54, + ACTIONS(3345), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206884,10 +210738,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18700] = 3, - ACTIONS(3), 1, + [18701] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2694), 18, + ACTIONS(3180), 1, + anon_sym_LBRACK, + ACTIONS(3182), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206897,6 +210761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -206906,27 +210776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2692), 37, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -206944,12 +210798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18763] = 3, - ACTIONS(493), 1, + [18764] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(3188), 1, anon_sym_LBRACK, - ACTIONS(2914), 54, + ACTIONS(3190), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207004,10 +210858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18826] = 3, - ACTIONS(3), 1, + [18827] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2694), 18, + ACTIONS(3014), 1, + anon_sym_LBRACK, + ACTIONS(3016), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207017,6 +210881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -207026,28 +210896,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2692), 37, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18890] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2990), 1, + anon_sym_LBRACK, + ACTIONS(2992), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207064,12 +210977,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18889] = 3, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + [18953] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(2862), 54, + ACTIONS(3257), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207124,12 +211038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18952] = 3, - ACTIONS(493), 1, + [19016] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3082), 1, anon_sym_LBRACK, - ACTIONS(2870), 54, + ACTIONS(3084), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207184,61 +211098,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19015] = 15, + [19079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2162), 3, + ACTIONS(4718), 1, + anon_sym_else, + STATE(2024), 1, + sym_else_branch, + ACTIONS(2548), 18, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4486), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 29, + ACTIONS(2546), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207256,12 +211160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19102] = 3, - ACTIONS(493), 1, + [19146] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2932), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(2934), 54, + ACTIONS(2914), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207316,10 +211220,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19165] = 3, + [19209] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LBRACK, + ACTIONS(2988), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [19272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 18, + ACTIONS(4718), 1, + anon_sym_else, + STATE(2023), 1, + sym_else_branch, + ACTIONS(2558), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207338,7 +211306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2734), 37, + ACTIONS(2556), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -207349,17 +211318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207376,12 +211341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [19228] = 3, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + [19339] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(3275), 1, anon_sym_LBRACK, - ACTIONS(2894), 54, + ACTIONS(3277), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207436,12 +211402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19291] = 3, - ACTIONS(493), 1, + [19402] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(3331), 1, anon_sym_LBRACK, - ACTIONS(2886), 54, + ACTIONS(3333), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207496,12 +211462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19354] = 3, - ACTIONS(493), 1, + [19465] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2960), 1, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(2962), 54, + ACTIONS(3024), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207556,12 +211522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19417] = 3, - ACTIONS(493), 1, + [19528] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3018), 1, anon_sym_LBRACK, - ACTIONS(3022), 54, + ACTIONS(3020), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207616,12 +211582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19480] = 3, - ACTIONS(493), 1, + [19591] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(2882), 54, + ACTIONS(2972), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207676,12 +211642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19543] = 3, - ACTIONS(493), 1, + [19654] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(2966), 1, anon_sym_LBRACK, - ACTIONS(2874), 54, + ACTIONS(2968), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207736,12 +211702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19606] = 3, - ACTIONS(493), 1, + [19717] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(2942), 1, anon_sym_LBRACK, - ACTIONS(3187), 54, + ACTIONS(2944), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207796,12 +211762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19669] = 3, - ACTIONS(493), 1, + [19780] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3030), 1, anon_sym_LBRACK, - ACTIONS(3191), 54, + ACTIONS(3032), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207856,12 +211822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19732] = 3, - ACTIONS(493), 1, + [19843] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(2962), 1, anon_sym_LBRACK, - ACTIONS(3199), 54, + ACTIONS(2964), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207916,12 +211882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19795] = 3, - ACTIONS(493), 1, + [19906] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(2958), 1, anon_sym_LBRACK, - ACTIONS(3203), 54, + ACTIONS(2960), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207976,12 +211942,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19858] = 3, - ACTIONS(493), 1, + [19969] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(2878), 54, + ACTIONS(3012), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208036,12 +212002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19921] = 3, - ACTIONS(493), 1, + [20032] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3167), 54, + ACTIONS(3008), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208096,12 +212062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19984] = 3, - ACTIONS(493), 1, + [20095] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(3002), 1, anon_sym_LBRACK, - ACTIONS(3159), 54, + ACTIONS(3004), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208156,12 +212122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20047] = 3, - ACTIONS(493), 1, + [20158] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2938), 1, anon_sym_LBRACK, - ACTIONS(2866), 54, + ACTIONS(2940), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208216,69 +212182,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20110] = 19, - ACTIONS(3), 1, + [20221] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2162), 1, - anon_sym_EQ, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4496), 1, - anon_sym_in, - ACTIONS(4498), 1, - anon_sym_BANGin, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(3301), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4488), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4484), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4490), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208292,52 +212242,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20205] = 20, + [20284] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(2270), 1, anon_sym_EQ, - ACTIONS(4424), 1, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4492), 1, + ACTIONS(4624), 1, anon_sym_AMP_AMP, - ACTIONS(4496), 1, + ACTIONS(4626), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4636), 1, anon_sym_in, - ACTIONS(4498), 1, + ACTIONS(4638), 1, anon_sym_BANGin, - STATE(1979), 1, + ACTIONS(4720), 1, + anon_sym_is, + ACTIONS(4722), 1, + anon_sym_BANGis, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4488), 2, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4604), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4490), 4, + ACTIONS(4610), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, + ACTIONS(4606), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -208346,16 +212310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 22, - anon_sym_SEMI, - anon_sym_as, + ACTIONS(2268), 15, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208369,10 +212326,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20302] = 3, - ACTIONS(3), 1, + [20395] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2736), 18, + ACTIONS(3165), 1, + anon_sym_LBRACK, + ACTIONS(3162), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -208382,6 +212349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -208391,27 +212364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2734), 37, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -208429,12 +212386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20365] = 3, - ACTIONS(493), 1, + [20458] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(3113), 1, anon_sym_LBRACK, - ACTIONS(2994), 54, + ACTIONS(3110), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208489,56 +212446,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20428] = 5, + [20521] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 1, - anon_sym_else, - STATE(2135), 1, - sym_else_branch, - ACTIONS(2398), 18, + ACTIONS(2220), 1, anon_sym_EQ, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4632), 1, + anon_sym_is, + ACTIONS(4634), 1, + anon_sym_BANGis, + ACTIONS(4708), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4714), 1, + anon_sym_BANGin, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4704), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4706), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2396), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2218), 15, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208551,12 +212529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [20495] = 3, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + [20632] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3153), 1, + ACTIONS(2752), 1, anon_sym_LBRACK, - ACTIONS(3155), 54, + ACTIONS(2750), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208611,53 +212590,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20558] = 3, - ACTIONS(493), 1, + [20695] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2270), 1, + anon_sym_EQ, + ACTIONS(4596), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4602), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4708), 1, + anon_sym_AMP_AMP, + ACTIONS(4710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4714), 1, + anon_sym_BANGin, + ACTIONS(4720), 1, + anon_sym_is, + ACTIONS(4722), 1, + anon_sym_BANGis, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4704), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4702), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(2268), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208671,40 +212674,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20621] = 15, + [20806] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2156), 3, + ACTIONS(2346), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4486), 8, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -208713,7 +212716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2154), 29, + ACTIONS(2344), 29, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, @@ -208743,20 +212746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20708] = 3, - ACTIONS(493), 1, + [20893] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, - anon_sym_LBRACK, - ACTIONS(3151), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4724), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4726), 1, + anon_sym_COLON_EQ, + STATE(4036), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(2919), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2914), 19, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -208766,12 +212768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -208781,66 +212778,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20771] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2912), 31, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -208862,97 +212810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20834] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2172), 1, - anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4446), 1, - anon_sym_AMP_AMP, - ACTIONS(4448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, - anon_sym_or, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_BANGin, - ACTIONS(4554), 1, - anon_sym_is, - ACTIONS(4556), 1, - anon_sym_BANGis, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4430), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4426), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4432), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4428), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2170), 15, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20945] = 3, - ACTIONS(493), 1, + [20964] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3112), 1, + ACTIONS(3078), 1, anon_sym_LBRACK, - ACTIONS(3114), 54, + ACTIONS(3080), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209007,20 +212870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21008] = 3, - ACTIONS(493), 1, + [21027] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, - anon_sym_LBRACK, - ACTIONS(3070), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2798), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209030,12 +212883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -209045,71 +212892,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21071] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3060), 1, - anon_sym_LBRACK, - ACTIONS(3062), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2796), 37, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -209126,13 +212930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21134] = 3, - ACTIONS(493), 1, + [21090] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(3307), 1, anon_sym_LBRACK, - ACTIONS(2740), 54, + ACTIONS(3309), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209187,12 +212990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21197] = 3, - ACTIONS(493), 1, + [21153] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3271), 1, anon_sym_LBRACK, - ACTIONS(3054), 54, + ACTIONS(3273), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209247,124 +213050,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21260] = 27, + [21216] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2360), 1, anon_sym_EQ, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4492), 1, + ACTIONS(4708), 1, anon_sym_AMP_AMP, - ACTIONS(4494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, + ACTIONS(4712), 1, anon_sym_in, - ACTIONS(4498), 1, + ACTIONS(4714), 1, anon_sym_BANGin, - ACTIONS(4554), 1, - anon_sym_is, - ACTIONS(4556), 1, - anon_sym_BANGis, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4488), 2, + ACTIONS(4704), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4490), 4, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2170), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21371] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, - sym_or_block, - STATE(4384), 1, - sym_type_parameters, - ACTIONS(4416), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2144), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4484), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4486), 8, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -209373,23 +213104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 29, + ACTIONS(2358), 22, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209403,20 +213127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21458] = 3, - ACTIONS(493), 1, + [21313] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, - anon_sym_LBRACK, - ACTIONS(3034), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2748), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209426,12 +213140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -209441,71 +213149,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21521] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3024), 1, - anon_sym_LBRACK, - ACTIONS(3026), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2746), 37, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -209522,13 +213187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21584] = 3, - ACTIONS(493), 1, + [21376] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(3124), 1, anon_sym_LBRACK, - ACTIONS(2974), 54, + ACTIONS(4728), 1, + anon_sym_BANG, + ACTIONS(3126), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209553,7 +213219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209583,12 +213248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21647] = 3, - ACTIONS(493), 1, + [21441] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2806), 54, + ACTIONS(2948), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209643,12 +213308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21710] = 3, - ACTIONS(493), 1, + [21504] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(2830), 54, + ACTIONS(2952), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209703,12 +213368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21773] = 3, - ACTIONS(493), 1, + [21567] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(2994), 1, anon_sym_LBRACK, - ACTIONS(3102), 54, + ACTIONS(2996), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209762,75 +213427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 1, - anon_sym_else, - STATE(2141), 1, - sym_else_branch, - ACTIONS(2392), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2390), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [21903] = 3, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + [21630] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(2998), 1, anon_sym_LBRACK, - ACTIONS(3082), 54, + ACTIONS(3000), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209885,12 +213488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21966] = 3, - ACTIONS(493), 1, + [21693] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(2954), 54, + ACTIONS(3040), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209945,12 +213548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22029] = 3, - ACTIONS(493), 1, + [21756] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(2950), 54, + ACTIONS(3048), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210005,21 +213608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22092] = 3, - ACTIONS(493), 1, + [21819] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(2946), 54, + ACTIONS(3160), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(3162), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -210052,6 +213669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + [21884] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3113), 1, + anon_sym_LBRACK, + ACTIONS(3108), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -210065,12 +213694,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22155] = 3, - ACTIONS(493), 1, + ACTIONS(3110), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [21949] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - ACTIONS(2942), 54, + ACTIONS(3052), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210125,12 +213790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22218] = 3, - ACTIONS(493), 1, + [22012] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(3054), 1, anon_sym_LBRACK, - ACTIONS(2938), 54, + ACTIONS(3056), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210185,12 +213850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22281] = 3, - ACTIONS(493), 1, + [22075] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(2918), 54, + ACTIONS(3064), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210245,12 +213910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22344] = 3, - ACTIONS(493), 1, + [22138] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2904), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, - ACTIONS(2906), 54, + ACTIONS(3068), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210305,12 +213970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22407] = 3, - ACTIONS(493), 1, + [22201] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(3074), 1, anon_sym_LBRACK, - ACTIONS(2826), 54, + ACTIONS(3076), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210365,20 +214030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22470] = 3, - ACTIONS(493), 1, + [22264] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 1, - anon_sym_LBRACK, - ACTIONS(2798), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2798), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210388,12 +214043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -210403,11 +214052,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2796), 37, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -210425,49 +214090,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22533] = 3, - ACTIONS(493), 1, + [22327] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(3078), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2360), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [22412] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4618), 1, anon_sym_QMARK, + ACTIONS(4620), 1, anon_sym_BANG, + ACTIONS(4622), 1, anon_sym_LBRACK2, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2360), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4700), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4702), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2358), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -210485,16 +214233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22596] = 3, - ACTIONS(493), 1, + [22499] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2800), 1, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(3070), 1, anon_sym_LBRACK, - ACTIONS(2802), 54, + ACTIONS(3072), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -210545,66 +214294,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, + [22564] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2360), 1, + anon_sym_EQ, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4714), 1, + anon_sym_BANGin, + STATE(1983), 1, + sym_argument_list, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, + sym_type_parameters, + ACTIONS(4594), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4704), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4700), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4706), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4702), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 23, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [22659] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2270), 1, anon_sym_EQ, - ACTIONS(4418), 1, + ACTIONS(4596), 1, anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, + ACTIONS(4614), 1, anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, + ACTIONS(4616), 1, anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, + ACTIONS(4628), 1, anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4492), 1, + ACTIONS(4708), 1, anon_sym_AMP_AMP, - ACTIONS(4494), 1, + ACTIONS(4710), 1, anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, + ACTIONS(4712), 1, anon_sym_in, - ACTIONS(4498), 1, + ACTIONS(4714), 1, anon_sym_BANGin, - ACTIONS(4558), 1, + ACTIONS(4730), 1, anon_sym_is, - ACTIONS(4560), 1, + ACTIONS(4732), 1, anon_sym_BANGis, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4488), 2, + ACTIONS(4704), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4490), 4, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -210613,7 +214438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2170), 14, + ACTIONS(2268), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -210631,63 +214456,63 @@ static const uint16_t ts_small_parse_table[] = { [22769] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(1930), 1, anon_sym_EQ, - ACTIONS(4418), 1, + ACTIONS(4596), 1, anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, + ACTIONS(4614), 1, anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, + ACTIONS(4616), 1, anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, + ACTIONS(4628), 1, anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4632), 1, anon_sym_is, - ACTIONS(4456), 1, + ACTIONS(4634), 1, anon_sym_BANGis, - ACTIONS(4492), 1, + ACTIONS(4708), 1, anon_sym_AMP_AMP, - ACTIONS(4494), 1, + ACTIONS(4710), 1, anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, + ACTIONS(4712), 1, anon_sym_in, - ACTIONS(4498), 1, + ACTIONS(4714), 1, anon_sym_BANGin, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4488), 2, + ACTIONS(4704), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4490), 4, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -210696,7 +214521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 14, + ACTIONS(3461), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -210714,63 +214539,63 @@ static const uint16_t ts_small_parse_table[] = { [22879] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2270), 1, anon_sym_EQ, - ACTIONS(4418), 1, + ACTIONS(4596), 1, anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, + ACTIONS(4614), 1, anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, + ACTIONS(4616), 1, anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, + ACTIONS(4628), 1, anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4492), 1, + ACTIONS(4708), 1, anon_sym_AMP_AMP, - ACTIONS(4494), 1, + ACTIONS(4710), 1, anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, + ACTIONS(4712), 1, anon_sym_in, - ACTIONS(4498), 1, + ACTIONS(4714), 1, anon_sym_BANGin, - ACTIONS(4562), 1, + ACTIONS(4734), 1, anon_sym_is, - ACTIONS(4564), 1, + ACTIONS(4736), 1, anon_sym_BANGis, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4488), 2, + ACTIONS(4704), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4490), 4, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -210779,7 +214604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2170), 14, + ACTIONS(2268), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -210794,114 +214619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22989] = 4, + [22989] = 7, ACTIONS(3), 1, sym_comment, - STATE(2059), 1, - sym_type_parameters, - ACTIONS(2764), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2762), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4740), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 1, - anon_sym_DOLLARelse, - ACTIONS(2616), 18, + ACTIONS(4742), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2614), 35, - anon_sym_DOT, - anon_sym_as, + STATE(3391), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4738), 13, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -210914,13 +214642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 1, - anon_sym_DOLLARelse, - ACTIONS(2758), 18, - anon_sym_EQ, + ACTIONS(3218), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -210938,11 +214660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2756), 35, + ACTIONS(3216), 21, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -210962,78 +214682,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23181] = 27, + [23059] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2270), 1, anon_sym_EQ, - ACTIONS(4418), 1, + ACTIONS(4596), 1, anon_sym_as, - ACTIONS(4424), 1, + ACTIONS(4602), 1, anon_sym_LPAREN, - ACTIONS(4434), 1, + ACTIONS(4612), 1, anon_sym_LBRACK, - ACTIONS(4436), 1, + ACTIONS(4614), 1, anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, + ACTIONS(4616), 1, anon_sym_DASH_DASH, - ACTIONS(4440), 1, + ACTIONS(4618), 1, anon_sym_QMARK, - ACTIONS(4442), 1, + ACTIONS(4620), 1, anon_sym_BANG, - ACTIONS(4444), 1, + ACTIONS(4622), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, + ACTIONS(4628), 1, anon_sym_or, - ACTIONS(4452), 1, + ACTIONS(4630), 1, anon_sym_POUND_LBRACK, - ACTIONS(4492), 1, + ACTIONS(4708), 1, anon_sym_AMP_AMP, - ACTIONS(4494), 1, + ACTIONS(4710), 1, anon_sym_PIPE_PIPE, - ACTIONS(4496), 1, + ACTIONS(4712), 1, anon_sym_in, - ACTIONS(4498), 1, + ACTIONS(4714), 1, anon_sym_BANGin, - ACTIONS(4570), 1, + ACTIONS(4744), 1, anon_sym_is, - ACTIONS(4572), 1, + ACTIONS(4746), 1, anon_sym_BANGis, - STATE(1979), 1, + STATE(1983), 1, sym_argument_list, - STATE(1980), 1, + STATE(1984), 1, sym_or_block, - STATE(4384), 1, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4488), 2, + ACTIONS(4704), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4484), 4, + ACTIONS(4700), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4490), 4, + ACTIONS(4706), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4486), 8, + ACTIONS(4702), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -211042,7 +214750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2170), 14, + ACTIONS(2268), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -211057,75 +214765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23291] = 7, + [23169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, - anon_sym_COMMA, - ACTIONS(4578), 1, - anon_sym_EQ, - STATE(3356), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4574), 13, - anon_sym_LBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2794), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2792), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [23361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 1, + ACTIONS(4748), 1, anon_sym_DOLLARelse, - ACTIONS(2616), 18, + ACTIONS(2884), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211144,7 +214789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2614), 35, + ACTIONS(2882), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211180,12 +214825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23425] = 4, + [23233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4750), 1, anon_sym_DOLLARelse, - ACTIONS(2758), 18, + ACTIONS(2926), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211204,7 +214849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2756), 35, + ACTIONS(2924), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211240,12 +214885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23489] = 4, + [23297] = 4, ACTIONS(3), 1, sym_comment, - STATE(1989), 1, - sym_type_parameters, - ACTIONS(2764), 18, + ACTIONS(4752), 1, + anon_sym_DOLLARelse, + ACTIONS(2926), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211264,8 +214909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2762), 35, - anon_sym_SEMI, + ACTIONS(2924), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211276,8 +214920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211299,11 +214945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23553] = 3, + [23361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 18, + STATE(2008), 1, + sym_type_parameters, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211322,8 +214969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3157), 35, - anon_sym_SEMI, + ACTIONS(2888), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211334,8 +214980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211357,11 +215005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23614] = 3, + [23425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 18, + STATE(2067), 1, + sym_type_parameters, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211380,7 +215029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2864), 35, + ACTIONS(2888), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211416,16 +215065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23675] = 5, + [23489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4584), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(2740), 18, + ACTIONS(4754), 1, + anon_sym_DOLLARelse, + ACTIONS(2884), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211444,17 +215089,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 31, - anon_sym_SEMI, + ACTIONS(2882), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211462,6 +215111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -211475,11 +215125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23740] = 3, + [23553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 18, + ACTIONS(2750), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211498,8 +215147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2692), 35, - anon_sym_SEMI, + ACTIONS(2752), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211510,8 +215158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211533,11 +215183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23801] = 3, + [23614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 18, + ACTIONS(3277), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211556,7 +215205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 35, + ACTIONS(3275), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211592,12 +215241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23862] = 4, + [23675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(2919), 1, anon_sym_DOT, - ACTIONS(3118), 18, + ACTIONS(3072), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211616,8 +215265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3116), 34, - anon_sym_SEMI, + ACTIONS(3070), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211627,8 +215275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211650,11 +215300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23925] = 3, + [23738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 18, + ACTIONS(3309), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211673,7 +215322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2786), 35, + ACTIONS(3307), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211709,70 +215358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2920), 29, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24047] = 4, + [23799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(3118), 18, + ACTIONS(3321), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211791,7 +215380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3116), 34, + ACTIONS(3319), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211801,10 +215392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211826,10 +215415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24110] = 3, + anon_sym_COLON_EQ, + [23860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 18, + ACTIONS(2972), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211848,7 +215438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2792), 35, + ACTIONS(2970), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211859,10 +215450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211884,184 +215473,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24171] = 3, + anon_sym_COLON_EQ, + [23921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 24, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3273), 18, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2812), 29, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3271), 35, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24232] = 3, + [23982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 24, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2968), 18, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2852), 29, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2966), 35, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24293] = 3, + [24043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 24, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2944), 18, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2856), 29, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2942), 35, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [24104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2748), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2746), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24354] = 3, + [24165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 18, + ACTIONS(2914), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212080,7 +215728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3123), 35, + ACTIONS(2912), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212091,10 +215740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -212116,10 +215763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24415] = 3, + anon_sym_COLON_EQ, + [24226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 18, + ACTIONS(3118), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212138,7 +215786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3169), 35, + ACTIONS(3116), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212174,10 +215822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24476] = 3, + [24287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 18, + ACTIONS(3032), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212196,7 +215844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3127), 35, + ACTIONS(3030), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212232,10 +215880,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24537] = 3, + [24348] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4758), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4756), 48, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [24409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 18, + ACTIONS(3325), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212254,7 +215960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2762), 35, + ACTIONS(3323), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212290,10 +215996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24598] = 3, + [24470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 18, + ACTIONS(3341), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212312,7 +216018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2792), 35, + ACTIONS(3339), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212348,10 +216054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24659] = 3, + [24531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 18, + ACTIONS(3016), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212370,7 +216076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3123), 35, + ACTIONS(3014), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212406,12 +216112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24720] = 4, + [24592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACE, - ACTIONS(2694), 18, + ACTIONS(2992), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212430,10 +216134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2692), 34, + ACTIONS(2990), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -212465,13 +216170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24783] = 4, + [24653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2740), 18, + ACTIONS(2964), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212490,16 +216192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 33, + ACTIONS(2962), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -212524,10 +216228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24846] = 3, + [24714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 18, + ACTIONS(2960), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212546,7 +216250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3016), 35, + ACTIONS(2958), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212582,10 +216286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24907] = 3, + [24775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 18, + ACTIONS(2988), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212604,7 +216308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3104), 35, + ACTIONS(2986), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212640,10 +216344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24968] = 3, + [24836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 18, + ACTIONS(4760), 1, + anon_sym_BANG, + ACTIONS(3126), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212654,7 +216360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -212662,7 +216367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3084), 35, + ACTIONS(3124), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212698,10 +216403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25029] = 3, + [24899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 18, + ACTIONS(2940), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212720,7 +216425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2888), 35, + ACTIONS(2938), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212731,10 +216437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -212756,10 +216460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25090] = 3, + anon_sym_COLON_EQ, + [24960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 18, + ACTIONS(2919), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2914), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212778,17 +216486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2896), 35, + ACTIONS(2912), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -212814,10 +216520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25151] = 3, + [25023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 18, + ACTIONS(2948), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212836,7 +216542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2848), 35, + ACTIONS(2946), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212872,10 +216578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25212] = 3, + [25084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 18, + ACTIONS(2748), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212894,7 +216600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2900), 35, + ACTIONS(2746), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212930,10 +216636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25273] = 3, + [25145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 18, + ACTIONS(3345), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212952,7 +216658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3044), 35, + ACTIONS(3343), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212988,10 +216694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25334] = 3, + [25206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 18, + ACTIONS(2952), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213010,7 +216716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2888), 35, + ACTIONS(2950), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213046,10 +216752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25395] = 3, + [25267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 18, + ACTIONS(3088), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213068,8 +216774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2896), 35, - anon_sym_SEMI, + ACTIONS(3086), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213080,8 +216785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -213103,11 +216810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25456] = 3, + [25328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 18, + ACTIONS(3118), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213126,8 +216832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2900), 35, - anon_sym_SEMI, + ACTIONS(3116), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213138,8 +216843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -213161,11 +216868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25517] = 3, + [25389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 18, + ACTIONS(2996), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213184,7 +216890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2928), 35, + ACTIONS(2994), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213220,10 +216926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25578] = 3, + [25450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 18, + ACTIONS(3000), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213242,7 +216948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2836), 35, + ACTIONS(2998), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213278,68 +216984,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25639] = 3, - ACTIONS(493), 1, + [25511] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4589), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, + ACTIONS(3110), 18, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [25700] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3113), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [25572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 18, + ACTIONS(3162), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213358,7 +217064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3056), 35, + ACTIONS(3165), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213394,10 +217100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25761] = 3, + [25633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 18, + ACTIONS(3040), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213416,7 +217122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3064), 35, + ACTIONS(3038), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213452,10 +217158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25822] = 3, + [25694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 18, + ACTIONS(3048), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213474,7 +217180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3072), 35, + ACTIONS(3046), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213510,10 +217216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25883] = 3, + [25755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 18, + ACTIONS(3052), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213532,7 +217238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3040), 35, + ACTIONS(3050), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213568,10 +217274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25944] = 3, + [25816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 18, + ACTIONS(3056), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213590,7 +217296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2788), 35, + ACTIONS(3054), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213626,12 +217332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26005] = 4, + [25877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_DOT, - ACTIONS(2846), 18, + ACTIONS(3064), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213650,7 +217354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 34, + ACTIONS(3062), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213660,10 +217366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -213685,10 +217389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26068] = 3, + anon_sym_COLON_EQ, + [25938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 18, + ACTIONS(3068), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213707,7 +217412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3088), 35, + ACTIONS(3066), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213743,12 +217448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26129] = 4, + [25999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_DOT, - ACTIONS(2846), 18, + ACTIONS(3076), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213767,8 +217470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 34, + ACTIONS(3074), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213802,71 +217506,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26192] = 3, + [26060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 24, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3080), 18, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(2808), 29, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3078), 35, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [26121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2956), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2954), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [26253] = 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [26182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2740), 18, + ACTIONS(3060), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213885,15 +217644,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 33, + ACTIONS(3058), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -213919,10 +217680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26316] = 3, + [26243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 18, + ACTIONS(3084), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213941,7 +217702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3036), 35, + ACTIONS(3082), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213977,10 +217738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26377] = 3, + [26304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 18, + ACTIONS(2948), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213999,7 +217760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2692), 35, + ACTIONS(2946), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214035,10 +217796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26438] = 3, + [26365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 18, + ACTIONS(3036), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214057,7 +217818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3108), 35, + ACTIONS(3034), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214093,10 +217854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26499] = 3, + [26426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 18, + ACTIONS(3092), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214115,8 +217876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3135), 35, - anon_sym_SEMI, + ACTIONS(3090), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214127,8 +217887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -214150,11 +217912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26560] = 3, + [26487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 18, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(3230), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214173,9 +217936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3145), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3228), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214185,8 +217946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -214208,11 +217971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26621] = 3, + [26550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 18, + ACTIONS(3096), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214231,8 +217993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3161), 35, - anon_sym_SEMI, + ACTIONS(3094), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214243,8 +218004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -214266,11 +218029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26682] = 3, + [26611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 18, + ACTIONS(3186), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214289,7 +218051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3028), 35, + ACTIONS(3184), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214325,10 +218087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26743] = 3, + [26672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 18, + ACTIONS(3202), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214347,7 +218109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3193), 35, + ACTIONS(3200), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214383,10 +218145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26804] = 3, + [26733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 18, + ACTIONS(3206), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214405,7 +218167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2997), 35, + ACTIONS(3204), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214441,10 +218203,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26865] = 3, + [26794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 18, + ACTIONS(3158), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3162), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214463,11 +218228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 35, - anon_sym_SEMI, + ACTIONS(3165), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214499,10 +218262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26926] = 3, + [26857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 18, + ACTIONS(3106), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3110), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214521,10 +218287,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2836), 35, + ACTIONS(3113), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214532,10 +218297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -214557,10 +218320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26987] = 3, + anon_sym_COLON_EQ, + [26920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 18, + ACTIONS(3210), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214579,7 +218343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3181), 35, + ACTIONS(3208), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214615,10 +218379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27048] = 3, + [26981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 18, + ACTIONS(3237), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214637,7 +218401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3173), 35, + ACTIONS(3235), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214673,10 +218437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27109] = 3, + [27042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 18, + ACTIONS(2936), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214695,7 +218459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2956), 35, + ACTIONS(2934), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214731,12 +218495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27170] = 4, + [27103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, - anon_sym_BANG, - ACTIONS(3141), 17, + ACTIONS(3028), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214747,6 +218509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -214754,7 +218517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3139), 35, + ACTIONS(3026), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214790,10 +218553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27233] = 3, + [27164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 18, + ACTIONS(3194), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214812,7 +218575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3096), 35, + ACTIONS(3192), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214848,10 +218611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27294] = 3, + [27225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 18, + ACTIONS(3257), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214870,7 +218633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2964), 35, + ACTIONS(3255), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214906,10 +218669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27355] = 3, + [27286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 18, + ACTIONS(3281), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214928,7 +218691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3012), 35, + ACTIONS(3279), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214964,10 +218727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27416] = 3, + [27347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 18, + ACTIONS(3285), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214986,7 +218749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2968), 35, + ACTIONS(3283), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215022,10 +218785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27477] = 3, + [27408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 18, + ACTIONS(3289), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215044,7 +218807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3004), 35, + ACTIONS(3287), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215080,10 +218843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27538] = 3, + [27469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 18, + ACTIONS(3349), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215102,7 +218865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3008), 35, + ACTIONS(3347), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215138,10 +218901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27599] = 3, + [27530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 18, + ACTIONS(3253), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215160,7 +218923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3048), 35, + ACTIONS(3251), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215196,10 +218959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27660] = 3, + [27591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 18, + ACTIONS(2984), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215218,8 +218981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3092), 35, - anon_sym_SEMI, + ACTIONS(2982), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215230,8 +218992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215253,11 +219017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27721] = 3, + [27652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 18, + ACTIONS(3218), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215276,8 +219039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2816), 35, - anon_sym_SEMI, + ACTIONS(3216), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215288,8 +219050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215311,11 +219075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27782] = 3, + [27713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 18, + ACTIONS(3226), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215334,8 +219097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2860), 35, - anon_sym_SEMI, + ACTIONS(3224), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215346,8 +219108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215369,11 +219133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27843] = 3, + [27774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(3230), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215392,9 +219157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2868), 35, + ACTIONS(3228), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215428,10 +219192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27904] = 3, + [27837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 18, + ACTIONS(3198), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215450,7 +219214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2932), 35, + ACTIONS(3196), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215486,10 +219250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27965] = 3, + [27898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 18, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215508,7 +219272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2960), 35, + ACTIONS(2888), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215544,10 +219308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28026] = 3, + [27959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 18, + ACTIONS(2752), 1, + anon_sym_LBRACE, + ACTIONS(2748), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215566,11 +219332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3020), 35, + ACTIONS(2746), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215602,10 +219367,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28087] = 3, + [28022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 18, + ACTIONS(2919), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2914), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215624,21 +219392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3161), 35, + ACTIONS(2912), 33, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215660,10 +219425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28148] = 3, + anon_sym_COLON_EQ, + [28085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 18, + ACTIONS(3249), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215682,7 +219448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3193), 35, + ACTIONS(3247), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215693,10 +219460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215718,29 +219483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28209] = 5, + anon_sym_COLON_EQ, + [28146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 1, + ACTIONS(3269), 18, anon_sym_EQ, - ACTIONS(2990), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2994), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -215758,17 +219506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2997), 19, + ACTIONS(3267), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215778,16 +219530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [28274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2982), 1, - anon_sym_EQ, - ACTIONS(2980), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -215800,48 +219542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2984), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2987), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [28339] = 3, + [28207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 18, + ACTIONS(3136), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215860,7 +219564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3185), 35, + ACTIONS(3134), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215896,10 +219600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28400] = 3, + [28268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 18, + ACTIONS(2976), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215918,8 +219622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3189), 35, - anon_sym_SEMI, + ACTIONS(2974), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215930,8 +219633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215953,11 +219658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28461] = 3, + [28329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 18, + ACTIONS(3132), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215976,7 +219680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3197), 35, + ACTIONS(3130), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216012,13 +219716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28522] = 4, + [28390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2984), 18, + ACTIONS(3044), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216037,68 +219738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2990), 2, + ACTIONS(3042), 35, anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2994), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2997), 33, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -216130,10 +219774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28648] = 3, + [28451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 18, + ACTIONS(3100), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216152,7 +219796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2786), 35, + ACTIONS(3098), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216188,10 +219832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28709] = 3, + [28512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 18, + ACTIONS(3104), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216210,7 +219854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2924), 35, + ACTIONS(3102), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216246,10 +219890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28770] = 3, + [28573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 18, + ACTIONS(3321), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216268,8 +219912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3201), 35, - anon_sym_SEMI, + ACTIONS(3319), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216280,8 +219923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -216303,11 +219948,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28831] = 3, + [28634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 18, + ACTIONS(3325), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216326,8 +219970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3177), 35, - anon_sym_SEMI, + ACTIONS(3323), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216338,8 +219981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -216361,11 +220006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28892] = 3, + [28695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 18, + ACTIONS(3341), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216384,8 +220028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3165), 35, - anon_sym_SEMI, + ACTIONS(3339), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216396,8 +220039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -216419,11 +220064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28953] = 3, + [28756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 18, + ACTIONS(3104), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216442,8 +220086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2912), 35, - anon_sym_SEMI, + ACTIONS(3102), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216454,8 +220097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -216477,11 +220122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29014] = 3, + [28817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 18, + ACTIONS(3122), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216500,8 +220144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2908), 35, - anon_sym_SEMI, + ACTIONS(3120), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216512,8 +220155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -216535,11 +220180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29075] = 3, + [28878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 18, + ACTIONS(3100), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216558,7 +220202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2892), 35, + ACTIONS(3098), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216594,10 +220238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29136] = 3, + [28939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 18, + ACTIONS(3144), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216616,7 +220260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3153), 35, + ACTIONS(3142), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216652,10 +220296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29197] = 3, + [29000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 18, + ACTIONS(3096), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216674,7 +220318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2884), 35, + ACTIONS(3094), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216710,10 +220354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29258] = 3, + [29061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 18, + ACTIONS(3092), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216732,7 +220376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3149), 35, + ACTIONS(3090), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216768,10 +220412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29319] = 3, + [29122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 18, + ACTIONS(3088), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216790,7 +220434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3131), 35, + ACTIONS(3086), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216826,10 +220470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29380] = 3, + [29183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 18, + ACTIONS(3170), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216848,7 +220492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2880), 35, + ACTIONS(3168), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216884,52 +220528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29441] = 3, + [29244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 18, + ACTIONS(3108), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3000), 35, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3106), 16, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -216942,11 +220550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 18, - anon_sym_EQ, + ACTIONS(3110), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -216964,12 +220568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3112), 35, - anon_sym_SEMI, + ACTIONS(3113), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -216987,6 +220588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + [29309] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 1, + anon_sym_EQ, + ACTIONS(3158), 16, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -216999,12 +220610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3102), 18, - anon_sym_EQ, + ACTIONS(3162), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -217022,12 +220628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3100), 35, - anon_sym_SEMI, + ACTIONS(3165), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -217045,23 +220648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29624] = 3, + [29374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(3174), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217080,7 +220670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2840), 35, + ACTIONS(3172), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217091,10 +220682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217116,10 +220705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29685] = 3, + anon_sym_COLON_EQ, + [29435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 18, + ACTIONS(3182), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217138,7 +220728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3068), 35, + ACTIONS(3180), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217174,10 +220764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29746] = 3, + [29496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 18, + ACTIONS(3190), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217196,7 +220786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2872), 35, + ACTIONS(3188), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217232,10 +220822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29807] = 3, + [29557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 18, + ACTIONS(3265), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217254,7 +220844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2976), 35, + ACTIONS(3263), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217265,10 +220856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217290,10 +220879,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29868] = 3, + anon_sym_COLON_EQ, + [29618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 18, + ACTIONS(3036), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217312,7 +220902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3169), 35, + ACTIONS(3034), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217348,10 +220938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29929] = 3, + [29679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 18, + ACTIONS(2919), 1, + anon_sym_DOT, + ACTIONS(3072), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217370,8 +220962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2832), 35, - anon_sym_DOT, + ACTIONS(3070), 34, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217381,10 +220973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217406,10 +220996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29990] = 3, + anon_sym_COLON_EQ, + [29742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 18, + ACTIONS(3333), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217428,7 +221019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3100), 35, + ACTIONS(3331), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217439,10 +221031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217464,10 +221054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30051] = 3, + anon_sym_COLON_EQ, + [29803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 18, + ACTIONS(3060), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217486,7 +221077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2820), 35, + ACTIONS(3058), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217497,10 +221089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217522,10 +221112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30112] = 3, + anon_sym_COLON_EQ, + [29864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 18, + ACTIONS(3241), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217544,7 +221135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3080), 35, + ACTIONS(3239), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217580,10 +221171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30173] = 3, + [29925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 18, + ACTIONS(3024), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217602,7 +221193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3060), 35, + ACTIONS(3022), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217638,10 +221229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30234] = 3, + [29986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 18, + ACTIONS(3020), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217660,7 +221251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3052), 35, + ACTIONS(3018), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217696,10 +221287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30295] = 3, + [30047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 18, + ACTIONS(2940), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217718,7 +221309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2804), 35, + ACTIONS(2938), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217754,10 +221345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30356] = 3, + [30108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 18, + ACTIONS(3345), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217776,7 +221367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2972), 35, + ACTIONS(3343), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217812,10 +221403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30417] = 3, + [30169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 18, + ACTIONS(2750), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217834,7 +221425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 35, + ACTIONS(2752), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217845,10 +221437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217870,10 +221460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30478] = 3, + anon_sym_COLON_EQ, + [30230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 18, + ACTIONS(3301), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217892,8 +221483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3032), 35, - anon_sym_SEMI, + ACTIONS(3299), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217904,8 +221494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217927,11 +221519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30539] = 3, + [30291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 18, + ACTIONS(3012), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217950,7 +221541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3016), 35, + ACTIONS(3010), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217961,10 +221553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217986,10 +221576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30600] = 3, + anon_sym_COLON_EQ, + [30352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 18, + ACTIONS(3008), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218008,7 +221599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3024), 35, + ACTIONS(3006), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218044,10 +221635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30661] = 3, + [30413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 18, + ACTIONS(3016), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218066,7 +221657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2828), 35, + ACTIONS(3014), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218102,10 +221693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30722] = 3, + [30474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 18, + ACTIONS(2992), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218124,7 +221715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2864), 35, + ACTIONS(2990), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218160,10 +221751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30783] = 3, + [30535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 18, + ACTIONS(2988), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218182,7 +221773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2824), 35, + ACTIONS(2986), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218218,10 +221809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30844] = 3, + [30596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 18, + ACTIONS(3004), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218240,7 +221831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2872), 35, + ACTIONS(3002), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218251,10 +221843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -218276,10 +221866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30905] = 3, + anon_sym_COLON_EQ, + [30657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 18, + ACTIONS(3122), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218298,7 +221889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2880), 35, + ACTIONS(3120), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218309,10 +221901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -218334,10 +221924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30966] = 3, + anon_sym_COLON_EQ, + [30718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 18, + ACTIONS(3245), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218356,7 +221947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2884), 35, + ACTIONS(3243), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218392,10 +221983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31027] = 3, + [30779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 18, + ACTIONS(2972), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218414,7 +222005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2892), 35, + ACTIONS(2970), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218450,10 +222041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31088] = 3, + [30840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 18, + ACTIONS(2968), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218472,7 +222063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2908), 35, + ACTIONS(2966), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218508,10 +222099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31149] = 3, + [30901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 18, + ACTIONS(2944), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218530,7 +222121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2912), 35, + ACTIONS(2942), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218566,10 +222157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31210] = 3, + [30962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 18, + ACTIONS(3032), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218588,7 +222179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2924), 35, + ACTIONS(3030), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218624,10 +222215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31271] = 3, + [31023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 18, + ACTIONS(2984), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218646,7 +222237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2964), 35, + ACTIONS(2982), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218657,10 +222249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -218682,10 +222272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31332] = 3, + anon_sym_COLON_EQ, + [31084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 18, + ACTIONS(3136), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218704,7 +222295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2848), 35, + ACTIONS(3134), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218740,10 +222331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31393] = 3, + [31145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 18, + ACTIONS(2976), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218762,7 +222353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2956), 35, + ACTIONS(2974), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218773,10 +222365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -218798,10 +222388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31454] = 3, + anon_sym_COLON_EQ, + [31206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 18, + ACTIONS(2956), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218820,7 +222411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3012), 35, + ACTIONS(2954), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218831,10 +222423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -218856,10 +222446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31515] = 3, + anon_sym_COLON_EQ, + [31267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 18, + ACTIONS(2964), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218878,7 +222469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2796), 35, + ACTIONS(2962), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218914,10 +222505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31576] = 3, + [31328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 18, + ACTIONS(2960), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218936,7 +222527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2876), 35, + ACTIONS(2958), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218972,10 +222563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31637] = 3, + [31389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 18, + ACTIONS(3241), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218994,7 +222585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2844), 35, + ACTIONS(3239), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219030,10 +222621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31698] = 3, + [31450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 18, + ACTIONS(3148), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219052,7 +222643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2952), 35, + ACTIONS(3146), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219088,10 +222679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31759] = 3, + [31511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 18, + ACTIONS(3226), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219110,7 +222701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3028), 35, + ACTIONS(3224), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219121,10 +222713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219146,10 +222736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31820] = 3, + anon_sym_COLON_EQ, + [31572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 18, + ACTIONS(3245), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219168,7 +222759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2928), 35, + ACTIONS(3243), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219179,10 +222771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219204,10 +222794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31881] = 3, + anon_sym_COLON_EQ, + [31633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 18, + ACTIONS(2914), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219226,7 +222817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3036), 35, + ACTIONS(2912), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219262,10 +222853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31942] = 3, + [31694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 18, + ACTIONS(3148), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219284,7 +222875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3040), 35, + ACTIONS(3146), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219295,10 +222887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219320,10 +222910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32003] = 3, + anon_sym_COLON_EQ, + [31755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 18, + ACTIONS(3309), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219342,7 +222933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3044), 35, + ACTIONS(3307), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219378,10 +222969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32064] = 3, + [31816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 18, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219400,7 +222991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3084), 35, + ACTIONS(2888), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219436,10 +223027,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32125] = 3, + [31877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3214), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3212), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [31938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 18, + ACTIONS(3273), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219458,7 +223107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3056), 35, + ACTIONS(3271), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219494,10 +223143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32186] = 3, + [31999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 18, + ACTIONS(3293), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219516,7 +223165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3064), 35, + ACTIONS(3291), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219552,10 +223201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32247] = 3, + [32060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 18, + ACTIONS(3156), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219574,7 +223223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3072), 35, + ACTIONS(3154), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219610,10 +223259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32308] = 3, + [32121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 18, + ACTIONS(3218), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219632,7 +223281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2952), 35, + ACTIONS(3216), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219668,10 +223317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32369] = 3, + [32182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 18, + ACTIONS(3301), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219690,7 +223339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2948), 35, + ACTIONS(3299), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219726,10 +223375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32430] = 3, + [32243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 18, + ACTIONS(3222), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219748,7 +223397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2944), 35, + ACTIONS(3220), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219784,10 +223433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32491] = 3, + [32304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 18, + ACTIONS(3305), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219806,7 +223455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2788), 35, + ACTIONS(3303), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219842,10 +223491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32552] = 3, + [32365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 18, + ACTIONS(3285), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219864,7 +223513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3088), 35, + ACTIONS(3283), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219900,10 +223549,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32613] = 3, + [32426] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4767), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4765), 48, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [32487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 18, + ACTIONS(2952), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219922,7 +223629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3096), 35, + ACTIONS(2950), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219958,10 +223665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32674] = 3, + [32548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 18, + ACTIONS(3198), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219980,7 +223687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3108), 35, + ACTIONS(3196), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220016,10 +223723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32735] = 3, + [32609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 18, + ACTIONS(4769), 1, + anon_sym_BANG, + ACTIONS(3126), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220030,7 +223739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220038,7 +223746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3104), 35, + ACTIONS(3124), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220074,10 +223782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32796] = 3, + [32672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 18, + ACTIONS(3222), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220096,8 +223804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2972), 35, - anon_sym_SEMI, + ACTIONS(3220), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220108,8 +223815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220131,11 +223840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32857] = 3, + [32733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 18, + ACTIONS(3012), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220154,7 +223862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3020), 35, + ACTIONS(3010), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220190,10 +223898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32918] = 3, + [32794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 18, + ACTIONS(3269), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220212,7 +223920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 35, + ACTIONS(3267), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220223,10 +223932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220248,10 +223955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32979] = 3, + anon_sym_COLON_EQ, + [32855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 18, + ACTIONS(2752), 1, + anon_sym_LBRACE, + ACTIONS(3118), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220270,10 +223980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3135), 35, + ACTIONS(3116), 34, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -220281,10 +223991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220306,10 +224014,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33040] = 3, + anon_sym_COLON_EQ, + [32918] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + anon_sym_LBRACK, + ACTIONS(3070), 1, + anon_sym_LBRACE, + ACTIONS(2914), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2912), 33, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [32983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 18, + ACTIONS(3020), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220328,7 +224097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3145), 35, + ACTIONS(3018), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220364,10 +224133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33101] = 3, + [33044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 18, + ACTIONS(3293), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220386,7 +224155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2762), 35, + ACTIONS(3291), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220397,10 +224167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220422,10 +224190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33162] = 3, + anon_sym_COLON_EQ, + [33105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 18, + ACTIONS(3277), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220444,7 +224213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3127), 35, + ACTIONS(3275), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220480,29 +224249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33223] = 5, + [33166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 1, + ACTIONS(2996), 18, anon_sym_EQ, - ACTIONS(2990), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2994), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -220520,17 +224271,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2997), 19, + ACTIONS(2994), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220540,15 +224295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [33288] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2982), 1, - anon_sym_EQ, - ACTIONS(2980), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -220561,8 +224307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2984), 17, + [33227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -220580,17 +224329,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 19, + ACTIONS(2998), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220600,10 +224353,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [33353] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [33288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 18, + ACTIONS(3040), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220622,7 +224387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2800), 35, + ACTIONS(3038), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220658,10 +224423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33414] = 3, + [33349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 18, + ACTIONS(3048), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220680,7 +224445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3076), 35, + ACTIONS(3046), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220716,10 +224481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33475] = 3, + [33410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 18, + ACTIONS(3052), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220738,7 +224503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3181), 35, + ACTIONS(3050), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220774,10 +224539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33536] = 3, + [33471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 18, + ACTIONS(3056), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220796,7 +224561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3052), 35, + ACTIONS(3054), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220832,10 +224597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33597] = 3, + [33532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 18, + ACTIONS(3265), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220854,8 +224619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3000), 35, - anon_sym_SEMI, + ACTIONS(3263), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220866,8 +224630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220889,11 +224655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33658] = 3, + [33593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 18, + ACTIONS(3190), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220912,7 +224677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3173), 35, + ACTIONS(3188), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220948,10 +224713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33719] = 3, + [33654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 18, + ACTIONS(3182), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220970,7 +224735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2904), 35, + ACTIONS(3180), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221006,10 +224771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33780] = 3, + [33715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 18, + ACTIONS(2919), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(4771), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2914), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221028,18 +224799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2940), 35, + ACTIONS(2912), 31, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -221049,7 +224817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -221064,10 +224831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33841] = 3, + [33780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 18, + ACTIONS(3174), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221086,7 +224853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3060), 35, + ACTIONS(3172), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221122,10 +224889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33902] = 3, + [33841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 18, + ACTIONS(3064), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221144,7 +224911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2916), 35, + ACTIONS(3062), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221180,10 +224947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33963] = 3, + [33902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 18, + ACTIONS(3068), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221202,7 +224969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3068), 35, + ACTIONS(3066), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221238,10 +225005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34024] = 3, + [33963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 18, + ACTIONS(3076), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221260,7 +225027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2936), 35, + ACTIONS(3074), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221296,14 +225063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34085] = 5, + [34024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_LBRACK, - ACTIONS(2844), 1, - anon_sym_LBRACE, - ACTIONS(2740), 18, + ACTIONS(3178), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221322,18 +225085,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 33, - anon_sym_SEMI, + ACTIONS(3176), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221355,11 +225121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34150] = 3, + [34085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 18, + ACTIONS(3072), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221378,7 +225143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2940), 35, + ACTIONS(3070), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221389,10 +225155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221414,10 +225178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34211] = 3, + anon_sym_COLON_EQ, + [34146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 18, + ACTIONS(3080), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221436,7 +225201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2944), 35, + ACTIONS(3078), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221472,10 +225237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34272] = 3, + [34207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 18, + ACTIONS(3329), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221494,7 +225259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2948), 35, + ACTIONS(3327), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221505,10 +225271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221530,12 +225294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34333] = 4, + anon_sym_COLON_EQ, + [34268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - anon_sym_BANG, - ACTIONS(3141), 17, + ACTIONS(3084), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221546,6 +225309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -221553,7 +225317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3139), 35, + ACTIONS(3082), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221589,10 +225353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34396] = 3, + [34329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 18, + ACTIONS(3170), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221611,8 +225375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2936), 35, - anon_sym_SEMI, + ACTIONS(3168), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221623,8 +225386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221646,11 +225411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34457] = 3, + [34390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 18, + ACTIONS(3313), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221669,7 +225433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2916), 35, + ACTIONS(3311), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221705,10 +225469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34518] = 3, + [34451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 18, + ACTIONS(3289), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221727,8 +225491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2840), 35, - anon_sym_SEMI, + ACTIONS(3287), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221739,8 +225502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221762,13 +225527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34579] = 4, + [34512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACE, - ACTIONS(2838), 18, + ACTIONS(3261), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221787,10 +225549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2836), 34, - anon_sym_SEMI, + ACTIONS(3259), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221798,8 +225560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221821,11 +225585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34642] = 3, + [34573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 18, + ACTIONS(3186), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221844,7 +225607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3024), 35, + ACTIONS(3184), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221880,10 +225643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34703] = 3, + [34634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 18, + ACTIONS(3202), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221902,8 +225665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2804), 35, - anon_sym_SEMI, + ACTIONS(3200), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221914,8 +225676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221937,11 +225701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34764] = 3, + [34695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 18, + ACTIONS(3072), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221960,7 +225723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3032), 35, + ACTIONS(3070), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221996,10 +225759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34825] = 3, + [34756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 18, + ACTIONS(3156), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222018,7 +225781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2976), 35, + ACTIONS(3154), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222054,10 +225817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34886] = 3, + [34817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 18, + ACTIONS(3297), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222076,7 +225839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2968), 35, + ACTIONS(3295), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222112,10 +225875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34947] = 3, + [34878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 18, + ACTIONS(3237), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222134,7 +225897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3004), 35, + ACTIONS(3235), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222170,10 +225933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35008] = 3, + [34939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 18, + ACTIONS(3206), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222192,7 +225955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3008), 35, + ACTIONS(3204), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222228,10 +225991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35069] = 3, + [35000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 18, + ACTIONS(2936), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222250,7 +226013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3048), 35, + ACTIONS(2934), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222286,10 +226049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35130] = 3, + [35061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 18, + ACTIONS(3210), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222308,7 +226071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3092), 35, + ACTIONS(3208), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222344,10 +226107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35191] = 3, + [35122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 18, + ACTIONS(3044), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222366,7 +226129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2816), 35, + ACTIONS(3042), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222402,10 +226165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35252] = 3, + [35183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 18, + ACTIONS(3297), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222424,7 +226187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2832), 35, + ACTIONS(3295), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222460,10 +226223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35313] = 3, + [35244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 18, + ACTIONS(3004), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222482,7 +226245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3197), 35, + ACTIONS(3002), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222518,10 +226281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35374] = 3, + [35305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 18, + ACTIONS(3008), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222540,7 +226303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3112), 35, + ACTIONS(3006), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222576,68 +226339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35435] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4599), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4597), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [35496] = 3, + [35366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 18, + ACTIONS(3024), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222656,7 +226361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3131), 35, + ACTIONS(3022), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222692,10 +226397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35557] = 3, + [35427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 18, + ACTIONS(3132), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222714,7 +226419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2860), 35, + ACTIONS(3130), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222750,10 +226455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35618] = 3, + [35488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 18, + ACTIONS(3333), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222772,7 +226477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2868), 35, + ACTIONS(3331), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222808,10 +226513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35679] = 3, + [35549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 18, + ACTIONS(3349), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222830,7 +226535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2932), 35, + ACTIONS(3347), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222866,10 +226571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35740] = 3, + [35610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 18, + ACTIONS(3253), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222888,7 +226593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3149), 35, + ACTIONS(3251), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222924,10 +226629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35801] = 3, + [35671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 18, + ACTIONS(3261), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222946,7 +226651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3201), 35, + ACTIONS(3259), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222957,10 +226663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222982,10 +226686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35862] = 3, + anon_sym_COLON_EQ, + [35732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 18, + ACTIONS(3249), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223004,7 +226709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2960), 35, + ACTIONS(3247), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223040,11 +226745,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35923] = 3, + [35793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 18, + ACTIONS(3160), 1, anon_sym_EQ, + ACTIONS(3158), 16, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(3162), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223062,12 +226785,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2828), 35, - anon_sym_SEMI, + ACTIONS(3165), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -223085,6 +226805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + [35858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_EQ, + ACTIONS(3106), 16, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -223098,10 +226827,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35984] = 3, + ACTIONS(3110), 17, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3113), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [35923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 18, + ACTIONS(3305), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223120,7 +226887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2824), 35, + ACTIONS(3303), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -223156,10 +226923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36045] = 3, + [35984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 18, + ACTIONS(3028), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223178,7 +226945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3153), 35, + ACTIONS(3026), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223214,10 +226981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36106] = 3, + [36045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 18, + ACTIONS(3194), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223236,8 +227003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2800), 35, - anon_sym_SEMI, + ACTIONS(3192), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223248,8 +227014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223271,11 +227039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36167] = 3, + [36106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 18, + ACTIONS(3313), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223294,8 +227061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3076), 35, - anon_sym_SEMI, + ACTIONS(3311), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223306,8 +227072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223329,11 +227097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36228] = 3, + [36167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 18, + ACTIONS(3329), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223352,8 +227119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2796), 35, - anon_sym_SEMI, + ACTIONS(3327), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223364,8 +227130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223387,11 +227155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36289] = 3, + [36228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 18, + ACTIONS(3144), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223410,7 +227177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3185), 35, + ACTIONS(3142), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223446,10 +227213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36350] = 3, + [36289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 18, + ACTIONS(3257), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223468,7 +227235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3189), 35, + ACTIONS(3255), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223504,10 +227271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36411] = 3, + [36350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 18, + ACTIONS(3281), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223526,7 +227293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3157), 35, + ACTIONS(3279), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223562,10 +227329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36472] = 3, + [36411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 18, + ACTIONS(3214), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223584,8 +227351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2820), 35, - anon_sym_SEMI, + ACTIONS(3212), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223596,8 +227362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223619,11 +227387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36533] = 3, + [36472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 18, + ACTIONS(3178), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223642,7 +227409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2876), 35, + ACTIONS(3176), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -223678,326 +227445,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36594] = 3, + [36533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 18, - anon_sym_EQ, + ACTIONS(3152), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3177), 35, - anon_sym_DOT, - anon_sym_as, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3150), 28, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36655] = 3, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 18, - anon_sym_EQ, + ACTIONS(2980), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2904), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2978), 28, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36716] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 18, - anon_sym_EQ, + ACTIONS(3337), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3165), 35, - anon_sym_DOT, - anon_sym_as, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3335), 28, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36777] = 3, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 18, - anon_sym_EQ, + ACTIONS(3317), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3080), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3315), 28, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36838] = 11, - ACTIONS(493), 1, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36773] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(3140), 24, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2224), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3138), 28, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [36913] = 11, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36833] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2246), 40, + ACTIONS(2360), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224038,12 +227794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36988] = 5, + [36908] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 1, + ACTIONS(4787), 1, anon_sym_EQ, - ACTIONS(4613), 14, + ACTIONS(4785), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -224058,7 +227814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2794), 17, + ACTIONS(3218), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -224076,7 +227832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2792), 19, + ACTIONS(3216), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -224096,30 +227852,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [37051] = 11, - ACTIONS(493), 1, + [36971] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2162), 40, + ACTIONS(2392), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224160,16 +227916,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37126] = 5, - ACTIONS(493), 1, + [37046] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(4775), 1, + anon_sym_LPAREN, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, + ACTIONS(4779), 1, + anon_sym_QMARK, + ACTIONS(4781), 1, + anon_sym_BANG, + STATE(2223), 1, + sym_or_block, + STATE(2224), 1, + sym_argument_list, + STATE(4354), 1, + sym_type_parameters, + ACTIONS(4773), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2314), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [37121] = 5, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2556), 1, + anon_sym_LBRACK, + ACTIONS(4789), 1, anon_sym_else, - STATE(2207), 1, + STATE(2301), 1, sym_else_branch, - ACTIONS(2392), 47, + ACTIONS(2558), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224217,16 +228037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37188] = 5, - ACTIONS(493), 1, + [37183] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(2546), 1, anon_sym_LBRACK, - ACTIONS(4617), 1, + ACTIONS(4789), 1, anon_sym_else, - STATE(2222), 1, + STATE(2295), 1, sym_else_branch, - ACTIONS(2398), 47, + ACTIONS(2548), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224274,16 +228094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37250] = 6, + [37245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, + ACTIONS(4791), 1, anon_sym_COLON, - ACTIONS(4621), 1, + ACTIONS(4793), 1, anon_sym_static, - ACTIONS(4623), 1, + ACTIONS(4795), 1, anon_sym_volatile, - ACTIONS(4312), 22, + ACTIONS(4490), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -224306,7 +228126,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4310), 25, + ACTIONS(4488), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224332,12 +228152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37314] = 3, - ACTIONS(493), 1, + [37309] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2734), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2736), 48, + ACTIONS(2748), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224386,12 +228206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37371] = 3, - ACTIONS(493), 1, + [37366] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2734), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - ACTIONS(2736), 48, + ACTIONS(2798), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224433,21 +228253,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37428] = 4, - ACTIONS(493), 1, + [37423] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2745), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(3072), 1, anon_sym_LBRACE, - ACTIONS(2740), 47, + ACTIONS(2914), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224495,66 +228315,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37487] = 3, - ACTIONS(3), 1, + [37482] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4627), 23, - anon_sym_LBRACE, + ACTIONS(2796), 1, + anon_sym_LBRACK, + ACTIONS(2798), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4625), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37544] = 3, + anon_sym_AT_LBRACK, + [37539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 23, + ACTIONS(4793), 1, + anon_sym_static, + ACTIONS(4795), 1, + anon_sym_volatile, + ACTIONS(4490), 22, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -224576,7 +228399,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4629), 26, + ACTIONS(4488), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224588,7 +228411,6 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, - anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -224603,12 +228425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37601] = 3, - ACTIONS(493), 1, + [37600] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2694), 48, + ACTIONS(2748), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224657,65 +228479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37658] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2756), 1, - anon_sym_LBRACK, - ACTIONS(4633), 1, - anon_sym_DOLLARelse, - ACTIONS(2758), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37717] = 3, + [37657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 23, + ACTIONS(4799), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224739,7 +228506,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4635), 26, + ACTIONS(4797), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224766,16 +228533,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37774] = 6, + [37714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, + ACTIONS(4793), 1, anon_sym_static, - ACTIONS(4623), 1, + ACTIONS(4795), 1, anon_sym_volatile, - ACTIONS(4639), 1, + ACTIONS(4801), 1, sym_identifier, - ACTIONS(4312), 22, + ACTIONS(4490), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -224798,7 +228565,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4310), 24, + ACTIONS(4488), 24, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224823,14 +228590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37837] = 4, - ACTIONS(493), 1, + [37777] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - STATE(2234), 1, - sym_type_parameters, - ACTIONS(2764), 47, + ACTIONS(4803), 1, + anon_sym_DOLLARelse, + ACTIONS(2926), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224878,10 +228645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37896] = 3, + [37836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 23, + ACTIONS(4807), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224905,7 +228672,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(2694), 26, + ACTIONS(4805), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224932,67 +228699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37953] = 4, - ACTIONS(493), 1, + [37893] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2614), 1, + ACTIONS(2882), 1, anon_sym_LBRACK, - ACTIONS(4641), 1, + ACTIONS(4809), 1, anon_sym_DOLLARelse, - ACTIONS(2616), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38012] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACK, - ACTIONS(2694), 48, + ACTIONS(2884), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225034,74 +228748,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38069] = 27, - ACTIONS(493), 1, + [37952] = 27, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4611), 1, + ACTIONS(4783), 1, anon_sym_POUND_LBRACK, - ACTIONS(4645), 1, + ACTIONS(4813), 1, anon_sym_as, - ACTIONS(4653), 1, + ACTIONS(4821), 1, anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, + ACTIONS(4823), 1, anon_sym_DASH_DASH, - ACTIONS(4657), 1, + ACTIONS(4825), 1, anon_sym_LBRACK2, - ACTIONS(4659), 1, + ACTIONS(4827), 1, anon_sym_AMP_AMP, - ACTIONS(4661), 1, + ACTIONS(4829), 1, anon_sym_PIPE_PIPE, - ACTIONS(4663), 1, + ACTIONS(4831), 1, anon_sym_or, - ACTIONS(4665), 1, + ACTIONS(4833), 1, anon_sym_is, - ACTIONS(4667), 1, + ACTIONS(4835), 1, anon_sym_BANGis, - ACTIONS(4669), 1, + ACTIONS(4837), 1, anon_sym_in, - ACTIONS(4671), 1, + ACTIONS(4839), 1, anon_sym_BANGin, - ACTIONS(4673), 1, + ACTIONS(4841), 1, anon_sym_AT_LBRACK, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(3472), 1, + STATE(3507), 1, sym_attribute, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4647), 4, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4651), 6, + ACTIONS(4819), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4643), 8, + ACTIONS(4811), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225110,19 +228823,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - ACTIONS(4649), 8, + ACTIONS(4817), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [38057] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_LBRACK, + STATE(2244), 1, + sym_type_parameters, + ACTIONS(2890), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [38174] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [38116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 23, + ACTIONS(4845), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -225146,7 +228914,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(2736), 26, + ACTIONS(4843), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -225173,15 +228941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38231] = 5, + [38173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, - anon_sym_static, - ACTIONS(4623), 1, - anon_sym_volatile, - ACTIONS(4312), 22, + ACTIONS(2746), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -225203,7 +228968,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4310), 25, + ACTIONS(2748), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -225215,6 +228980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, + anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -225229,65 +228995,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38292] = 3, - ACTIONS(493), 1, + [38230] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_LBRACK, - ACTIONS(2898), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2796), 23, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(2798), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [38287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3150), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(3152), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [38348] = 3, - ACTIONS(493), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [38343] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3070), 1, anon_sym_LBRACK, - ACTIONS(3006), 47, + ACTIONS(3072), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225335,12 +229155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38404] = 3, - ACTIONS(493), 1, + [38399] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2964), 1, + ACTIONS(2752), 1, anon_sym_LBRACK, - ACTIONS(2966), 47, + ACTIONS(2750), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225388,14 +229208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38460] = 4, - ACTIONS(493), 1, + [38455] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3196), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(3141), 46, + ACTIONS(3198), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225424,6 +229242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -225442,12 +229261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38518] = 3, - ACTIONS(493), 1, + [38511] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(3191), 47, + ACTIONS(2890), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225495,65 +229314,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38574] = 3, - ACTIONS(493), 1, + [38567] = 16, + ACTIONS(495), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(4775), 1, + anon_sym_LPAREN, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(3199), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4779), 1, + anon_sym_QMARK, + ACTIONS(4781), 1, + anon_sym_BANG, + ACTIONS(4837), 1, + anon_sym_in, + ACTIONS(4839), 1, + anon_sym_BANGin, + STATE(2223), 1, + sym_or_block, + STATE(2224), 1, + sym_argument_list, + STATE(4354), 1, + sym_type_parameters, + ACTIONS(4773), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4819), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4817), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2360), 17, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38630] = 3, - ACTIONS(493), 1, + [38649] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(2998), 1, anon_sym_LBRACK, - ACTIONS(3203), 47, + ACTIONS(3000), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225601,65 +229433,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38686] = 3, - ACTIONS(493), 1, + [38705] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(4775), 1, + anon_sym_LPAREN, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(3175), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4779), 1, + anon_sym_QMARK, + ACTIONS(4781), 1, + anon_sym_BANG, + STATE(2223), 1, + sym_or_block, + STATE(2224), 1, + sym_argument_list, + STATE(4354), 1, + sym_type_parameters, + ACTIONS(4773), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4817), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38742] = 3, - ACTIONS(493), 1, + [38781] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(3183), 47, + ACTIONS(3301), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225707,65 +229549,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38798] = 3, - ACTIONS(493), 1, + [38837] = 12, + ACTIONS(495), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(4775), 1, + anon_sym_LPAREN, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(2784), 47, + ACTIONS(4779), 1, + anon_sym_QMARK, + ACTIONS(4781), 1, + anon_sym_BANG, + STATE(2223), 1, + sym_or_block, + STATE(2224), 1, + sym_argument_list, + STATE(4354), 1, + sym_type_parameters, + ACTIONS(4773), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4817), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 29, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38854] = 3, - ACTIONS(493), 1, + [38911] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(2986), 1, anon_sym_LBRACK, - ACTIONS(3195), 47, + ACTIONS(2988), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225813,12 +229664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38910] = 3, - ACTIONS(493), 1, + [38967] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(3134), 1, anon_sym_LBRACK, - ACTIONS(3163), 47, + ACTIONS(3136), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225866,12 +229717,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38966] = 3, - ACTIONS(493), 1, + [39023] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(4851), 1, + anon_sym_volatile, + ACTIONS(4849), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4847), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [39081] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2938), 1, anon_sym_LBRACK, - ACTIONS(3147), 47, + ACTIONS(2940), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225919,12 +229824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39022] = 3, - ACTIONS(493), 1, + [39137] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(2990), 1, anon_sym_LBRACK, - ACTIONS(3137), 47, + ACTIONS(2992), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225972,12 +229877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39078] = 3, - ACTIONS(493), 1, + [39193] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3102), 1, anon_sym_LBRACK, - ACTIONS(3187), 47, + ACTIONS(3104), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226025,81 +229930,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39134] = 14, - ACTIONS(3), 1, + [39249] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(3014), 1, + anon_sym_LBRACK, + ACTIONS(3016), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4679), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2162), 9, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2160), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [39212] = 3, - ACTIONS(493), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [39305] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(3070), 1, anon_sym_LBRACK, - ACTIONS(2740), 47, + ACTIONS(3072), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -226142,12 +230037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39268] = 3, - ACTIONS(493), 1, + [39363] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(2958), 1, anon_sym_LBRACK, - ACTIONS(3179), 47, + ACTIONS(2960), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226195,109 +230090,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39324] = 13, - ACTIONS(493), 1, + [39419] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(2962), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(2964), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4647), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4649), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39400] = 16, - ACTIONS(493), 1, + [39475] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4669), 1, - anon_sym_in, - ACTIONS(4671), 1, - anon_sym_BANGin, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4647), 4, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4651), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4649), 8, + ACTIONS(4817), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -226306,13 +230180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 17, + ACTIONS(2342), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_as, anon_sym_RBRACE, anon_sym___global, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, @@ -226322,14 +230202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39482] = 3, - ACTIONS(493), 1, + [39551] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3343), 1, anon_sym_LBRACK, - ACTIONS(3129), 47, + ACTIONS(3345), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226377,12 +230259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39538] = 3, - ACTIONS(493), 1, + [39607] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(3339), 1, anon_sym_LBRACK, - ACTIONS(2764), 47, + ACTIONS(3341), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226430,79 +230312,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39594] = 17, - ACTIONS(493), 1, + [39663] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - ACTIONS(4659), 1, - anon_sym_AMP_AMP, - ACTIONS(4669), 1, - anon_sym_in, - ACTIONS(4671), 1, - anon_sym_BANGin, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(3040), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4647), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4651), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4649), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39678] = 3, - ACTIONS(493), 1, + [39719] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3108), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(3110), 47, + ACTIONS(3048), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226550,12 +230418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39734] = 3, - ACTIONS(493), 1, + [39775] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3098), 1, anon_sym_LBRACK, - ACTIONS(3098), 47, + ACTIONS(3100), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226603,12 +230471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39790] = 3, - ACTIONS(493), 1, + [39831] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3094), 1, anon_sym_LBRACK, - ACTIONS(3090), 47, + ACTIONS(3096), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226656,12 +230524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39846] = 3, - ACTIONS(493), 1, + [39887] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3090), 1, anon_sym_LBRACK, - ACTIONS(3106), 47, + ACTIONS(3092), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226709,12 +230577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39902] = 3, - ACTIONS(493), 1, + [39943] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2788), 1, + ACTIONS(3086), 1, anon_sym_LBRACK, - ACTIONS(2790), 47, + ACTIONS(3088), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226762,138 +230630,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39958] = 13, - ACTIONS(493), 1, + [39999] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(3323), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(3325), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4647), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4649), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2156), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40034] = 13, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4609), 1, anon_sym_BANG, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4647), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4649), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2144), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40110] = 3, - ACTIONS(493), 1, + [40055] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(3074), 47, + ACTIONS(3321), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226941,12 +230736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40166] = 3, - ACTIONS(493), 1, + [40111] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - ACTIONS(3086), 47, + ACTIONS(3052), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226994,12 +230789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40222] = 3, - ACTIONS(493), 1, + [40167] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3054), 1, anon_sym_LBRACK, - ACTIONS(3066), 47, + ACTIONS(3056), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227047,12 +230842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40278] = 3, - ACTIONS(493), 1, + [40223] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(3271), 1, anon_sym_LBRACK, - ACTIONS(3058), 47, + ACTIONS(3273), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227100,12 +230895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40334] = 3, - ACTIONS(493), 1, + [40279] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3165), 1, + ACTIONS(3034), 1, anon_sym_LBRACK, - ACTIONS(3167), 47, + ACTIONS(3036), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227153,65 +230948,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40390] = 3, + [40335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 24, + ACTIONS(2421), 23, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2922), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, + anon_sym_STAR, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4853), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + anon_sym_AT, sym_identifier, anon_sym_shared, anon_sym_chan, anon_sym_thread, anon_sym_atomic, - anon_sym_DOT_DOT, - [40446] = 3, - ACTIONS(493), 1, + [40391] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3157), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(3159), 47, + ACTIONS(2948), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227259,12 +231054,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40502] = 3, - ACTIONS(493), 1, + [40447] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(1683), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4855), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [40503] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(2930), 47, + ACTIONS(3122), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227312,12 +231160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40558] = 3, - ACTIONS(493), 1, + [40559] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(3058), 1, anon_sym_LBRACK, - ACTIONS(2902), 47, + ACTIONS(3060), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227365,224 +231213,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40614] = 3, - ACTIONS(3), 1, + [40615] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2808), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(3062), 1, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2810), 24, + ACTIONS(3064), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [40670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 24, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2814), 24, - anon_sym_DOT, - anon_sym_as, + anon_sym___global, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [40726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2854), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [40782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(2858), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [40838] = 3, - ACTIONS(493), 1, + anon_sym_AT_LBRACK, + [40671] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3044), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, - ACTIONS(3046), 47, + ACTIONS(3068), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227630,12 +231319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40894] = 3, - ACTIONS(493), 1, + [40727] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3074), 1, anon_sym_LBRACK, - ACTIONS(3042), 47, + ACTIONS(3076), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227683,12 +231372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40950] = 3, - ACTIONS(493), 1, + [40783] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3036), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(3038), 47, + ACTIONS(2984), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227736,12 +231425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41006] = 3, - ACTIONS(493), 1, + [40839] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(3283), 1, anon_sym_LBRACK, - ACTIONS(3030), 47, + ACTIONS(3285), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227789,138 +231478,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41062] = 12, - ACTIONS(493), 1, + [40895] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(3279), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(3281), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4649), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [40951] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2976), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41136] = 14, - ACTIONS(3), 1, + [41007] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2954), 1, + anon_sym_LBRACK, + ACTIONS(2956), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4679), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2224), 9, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2222), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [41214] = 3, - ACTIONS(493), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [41063] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(2890), 47, + ACTIONS(3241), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227968,12 +231690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41270] = 3, - ACTIONS(493), 1, + [41119] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3102), 47, + ACTIONS(3245), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228021,12 +231743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41326] = 3, - ACTIONS(493), 1, + [41175] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3153), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(3155), 47, + ACTIONS(3148), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228074,10 +231796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41382] = 3, + [41231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1943), 23, + ACTIONS(1965), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -228101,7 +231823,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4693), 25, + ACTIONS(4857), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -228127,12 +231849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [41438] = 3, - ACTIONS(493), 1, + [41287] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(3212), 1, anon_sym_LBRACK, - ACTIONS(2970), 47, + ACTIONS(3214), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228180,76 +231902,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41494] = 14, - ACTIONS(3), 1, + [41343] = 27, + ACTIONS(495), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2914), 1, anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(3070), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3355), 1, + anon_sym_fn, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3361), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(3363), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(3365), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2246), 9, + ACTIONS(3367), 1, + anon_sym_AMP, + ACTIONS(3369), 1, + anon_sym_shared, + ACTIONS(3371), 1, + anon_sym_map_LBRACK, + ACTIONS(3373), 1, + anon_sym_chan, + ACTIONS(3375), 1, + anon_sym_thread, + ACTIONS(3377), 1, + anon_sym_atomic, + ACTIONS(4859), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LT2, + STATE(3451), 1, + sym_plain_type, + STATE(3466), 1, + sym_signature, + STATE(3782), 1, + sym_generic_parameters, + STATE(4452), 1, + sym_reference_expression, + STATE(2561), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3455), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(3072), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [41447] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3220), 1, + anon_sym_LBRACK, + ACTIONS(3222), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2244), 28, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [41503] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3228), 1, + anon_sym_LBRACK, + ACTIONS(3232), 1, + anon_sym_DOT, + ACTIONS(3230), 46, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [41572] = 3, - ACTIONS(493), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [41561] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2848), 1, + ACTIONS(3224), 1, anon_sym_LBRACK, - ACTIONS(2850), 47, + ACTIONS(3226), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228297,12 +232139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41628] = 3, - ACTIONS(493), 1, + [41617] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(3216), 1, anon_sym_LBRACK, - ACTIONS(3151), 47, + ACTIONS(3218), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228350,12 +232192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41684] = 3, - ACTIONS(493), 1, + [41673] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(3078), 1, anon_sym_LBRACK, - ACTIONS(3133), 47, + ACTIONS(3080), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228403,12 +232245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41740] = 3, - ACTIONS(493), 1, + [41729] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3112), 1, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(3114), 47, + ACTIONS(2972), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228456,12 +232298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41796] = 3, - ACTIONS(493), 1, + [41785] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3012), 1, + ACTIONS(3030), 1, anon_sym_LBRACK, - ACTIONS(3014), 47, + ACTIONS(3032), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228509,12 +232351,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41852] = 3, - ACTIONS(493), 1, + [41841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3138), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(3140), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [41897] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(3010), 47, + ACTIONS(3269), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228562,12 +232457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41908] = 3, - ACTIONS(493), 1, + [41953] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(2942), 1, anon_sym_LBRACK, - ACTIONS(3018), 47, + ACTIONS(2944), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228615,66 +232510,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41964] = 4, - ACTIONS(493), 1, + [42009] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2982), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2978), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2984), 35, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2980), 24, anon_sym_DOT, anon_sym_as, - anon_sym_LPAREN, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [42065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3315), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(3317), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [42121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3335), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - [42022] = 3, - ACTIONS(493), 1, + anon_sym_map_LBRACK, + ACTIONS(3337), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [42177] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3082), 1, anon_sym_LBRACK, - ACTIONS(2958), 47, + ACTIONS(3084), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228722,28 +232722,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42078] = 4, - ACTIONS(493), 1, + [42233] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(3287), 1, anon_sym_LBRACK, - ACTIONS(2992), 12, + ACTIONS(3289), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2994), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -228756,6 +232750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -228776,12 +232773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [42136] = 3, - ACTIONS(493), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [42289] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(3070), 47, + ACTIONS(3257), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228829,18 +232828,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42192] = 4, - ACTIONS(493), 1, + [42345] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3116), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_DOT, - ACTIONS(3118), 46, + ACTIONS(2914), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -228883,66 +232881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 1, - anon_sym_volatile, - ACTIONS(4697), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4695), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [42308] = 3, - ACTIONS(493), 1, + [42401] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3184), 1, anon_sym_LBRACK, - ACTIONS(3125), 47, + ACTIONS(3186), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228990,12 +232934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42364] = 3, - ACTIONS(493), 1, + [42457] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(3200), 1, anon_sym_LBRACK, - ACTIONS(2794), 47, + ACTIONS(3202), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229043,12 +232987,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42420] = 3, - ACTIONS(493), 1, + [42513] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(3204), 1, anon_sym_LBRACK, - ACTIONS(2926), 47, + ACTIONS(3206), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229096,12 +233040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42476] = 3, - ACTIONS(493), 1, + [42569] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3060), 1, + ACTIONS(3208), 1, anon_sym_LBRACK, - ACTIONS(3062), 47, + ACTIONS(3210), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229149,12 +233093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42532] = 3, - ACTIONS(493), 1, + [42625] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(3050), 47, + ACTIONS(2952), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229202,12 +233146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42588] = 3, - ACTIONS(493), 1, + [42681] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(3002), 1, anon_sym_LBRACK, - ACTIONS(2914), 47, + ACTIONS(3004), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229255,12 +233199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42644] = 3, - ACTIONS(493), 1, + [42737] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(2910), 47, + ACTIONS(3008), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229308,12 +233252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42700] = 3, - ACTIONS(493), 1, + [42793] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(2894), 47, + ACTIONS(3012), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229361,12 +233305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42756] = 3, - ACTIONS(493), 1, + [42849] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(3018), 1, anon_sym_LBRACK, - ACTIONS(2886), 47, + ACTIONS(3020), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229414,12 +233358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42812] = 3, - ACTIONS(493), 1, + [42905] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(2882), 47, + ACTIONS(3024), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229467,330 +233411,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42868] = 3, - ACTIONS(493), 1, + [42961] = 17, + ACTIONS(495), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACK, - ACTIONS(3054), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4775), 1, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42924] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2872), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(2874), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4779), 1, anon_sym_QMARK, + ACTIONS(4781), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4827), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4837), 1, anon_sym_in, + ACTIONS(4839), 1, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42980] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3169), 1, - anon_sym_LBRACK, - ACTIONS(3171), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + STATE(2223), 1, + sym_or_block, + STATE(2224), 1, + sym_argument_list, + STATE(4354), 1, + sym_type_parameters, + ACTIONS(4773), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43036] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2864), 1, - anon_sym_LBRACK, - ACTIONS(2866), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4819), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43092] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK, - ACTIONS(3094), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4817), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43148] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_LBRACK, - ACTIONS(3034), 47, + ACTIONS(2360), 16, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43204] = 3, - ACTIONS(493), 1, + [43045] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(3327), 1, anon_sym_LBRACK, - ACTIONS(2818), 47, + ACTIONS(3329), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229838,12 +233531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43260] = 3, - ACTIONS(493), 1, + [43101] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(3331), 1, anon_sym_LBRACK, - ACTIONS(3026), 47, + ACTIONS(3333), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229891,12 +233584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43316] = 3, - ACTIONS(493), 1, + [43157] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3000), 1, + ACTIONS(3311), 1, anon_sym_LBRACK, - ACTIONS(3002), 47, + ACTIONS(3313), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229944,12 +233637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43372] = 3, - ACTIONS(493), 1, + [43213] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(3275), 1, anon_sym_LBRACK, - ACTIONS(2954), 47, + ACTIONS(3277), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229997,12 +233690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43428] = 3, - ACTIONS(493), 1, + [43269] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(2950), 47, + ACTIONS(3265), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230050,12 +233743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43484] = 3, - ACTIONS(493), 1, + [43325] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(3188), 1, anon_sym_LBRACK, - ACTIONS(2946), 47, + ACTIONS(3190), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230103,18 +233796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43540] = 4, - ACTIONS(493), 1, + [43381] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2742), 1, - anon_sym_DOT, - ACTIONS(2844), 1, + ACTIONS(3180), 1, anon_sym_LBRACK, - ACTIONS(2846), 46, + ACTIONS(3182), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -230157,12 +233849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43598] = 3, - ACTIONS(493), 1, + [43437] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(3172), 1, anon_sym_LBRACK, - ACTIONS(2942), 47, + ACTIONS(3174), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230210,12 +233902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43654] = 3, - ACTIONS(493), 1, + [43493] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(3192), 1, anon_sym_LBRACK, - ACTIONS(2938), 47, + ACTIONS(3194), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230263,12 +233955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43710] = 3, - ACTIONS(493), 1, + [43549] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(3295), 1, anon_sym_LBRACK, - ACTIONS(2862), 47, + ACTIONS(3297), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230316,12 +234008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43766] = 3, - ACTIONS(493), 1, + [43605] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(3168), 1, anon_sym_LBRACK, - ACTIONS(2918), 47, + ACTIONS(3170), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230369,12 +234061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43822] = 3, - ACTIONS(493), 1, + [43661] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2904), 1, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(2906), 47, + ACTIONS(3261), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230422,12 +234114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43878] = 3, - ACTIONS(493), 1, + [43717] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(3142), 1, anon_sym_LBRACK, - ACTIONS(2878), 47, + ACTIONS(3144), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230475,62 +234167,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43934] = 24, - ACTIONS(493), 1, + [43773] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4645), 1, + ACTIONS(4813), 1, anon_sym_as, - ACTIONS(4653), 1, + ACTIONS(4821), 1, anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, + ACTIONS(4823), 1, anon_sym_DASH_DASH, - ACTIONS(4659), 1, + ACTIONS(4827), 1, anon_sym_AMP_AMP, - ACTIONS(4661), 1, + ACTIONS(4829), 1, anon_sym_PIPE_PIPE, - ACTIONS(4663), 1, + ACTIONS(4831), 1, anon_sym_or, - ACTIONS(4665), 1, + ACTIONS(4833), 1, anon_sym_is, - ACTIONS(4667), 1, + ACTIONS(4835), 1, anon_sym_BANGis, - ACTIONS(4669), 1, + ACTIONS(4837), 1, anon_sym_in, - ACTIONS(4671), 1, + ACTIONS(4839), 1, anon_sym_BANGin, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4647), 4, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4651), 6, + ACTIONS(4819), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4649), 8, + ACTIONS(4817), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -230539,7 +234231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2234), 9, + ACTIONS(2220), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230549,12 +234241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, sym_identifier, anon_sym_AT_LBRACK, - [44032] = 3, - ACTIONS(493), 1, + [43871] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3026), 1, anon_sym_LBRACK, - ACTIONS(2842), 47, + ACTIONS(3028), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230602,12 +234294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44088] = 3, - ACTIONS(493), 1, + [43927] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(2798), 47, + ACTIONS(3237), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230655,12 +234347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44144] = 3, - ACTIONS(493), 1, + [43983] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(3078), 47, + ACTIONS(3044), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230708,171 +234400,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44200] = 3, - ACTIONS(3), 1, + [44039] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(2283), 23, - anon_sym_LBRACE, + ACTIONS(4775), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_RBRACK, + ACTIONS(4777), 1, + anon_sym_LBRACK, + ACTIONS(4779), 1, anon_sym_QMARK, + ACTIONS(4781), 1, anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4701), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [44256] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2800), 1, - anon_sym_LBRACK, - ACTIONS(2802), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4813), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + ACTIONS(4821), 1, anon_sym_PLUS_PLUS, + ACTIONS(4823), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4827), 1, anon_sym_AMP_AMP, + ACTIONS(4829), 1, anon_sym_PIPE_PIPE, + ACTIONS(4831), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4833), 1, anon_sym_is, + ACTIONS(4835), 1, anon_sym_BANGis, + ACTIONS(4837), 1, anon_sym_in, + ACTIONS(4839), 1, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44312] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2978), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + STATE(2223), 1, + sym_or_block, + STATE(2224), 1, + sym_argument_list, + STATE(4354), 1, + sym_type_parameters, + ACTIONS(4773), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4783), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4819), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4817), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(2234), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, sym_identifier, anon_sym_AT_LBRACK, - [44368] = 3, - ACTIONS(493), 1, + [44137] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(2826), 47, + ACTIONS(3249), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230920,12 +234527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44424] = 3, - ACTIONS(493), 1, + [44193] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(2966), 1, anon_sym_LBRACK, - ACTIONS(2834), 47, + ACTIONS(2968), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230973,12 +234580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44480] = 3, - ACTIONS(493), 1, + [44249] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(3176), 1, anon_sym_LBRACK, - ACTIONS(2830), 47, + ACTIONS(3178), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231026,12 +234633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44536] = 3, - ACTIONS(493), 1, + [44305] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3291), 1, anon_sym_LBRACK, - ACTIONS(2870), 47, + ACTIONS(3293), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231079,12 +234686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44592] = 3, - ACTIONS(493), 1, + [44361] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(3124), 1, anon_sym_LBRACK, - ACTIONS(2846), 47, + ACTIONS(4863), 1, + anon_sym_BANG, + ACTIONS(3126), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231113,7 +234722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -231132,12 +234740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44648] = 3, - ACTIONS(493), 1, + [44419] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(3303), 1, anon_sym_LBRACK, - ACTIONS(2974), 47, + ACTIONS(3305), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231185,12 +234793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44704] = 3, - ACTIONS(493), 1, + [44475] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(3130), 1, anon_sym_LBRACK, - ACTIONS(2806), 47, + ACTIONS(3132), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231238,12 +234846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44760] = 3, - ACTIONS(493), 1, + [44531] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2932), 1, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(2934), 47, + ACTIONS(3253), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231291,12 +234899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44816] = 3, - ACTIONS(493), 1, + [44587] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2960), 1, + ACTIONS(3347), 1, anon_sym_LBRACK, - ACTIONS(2962), 47, + ACTIONS(3349), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231344,12 +234952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44872] = 3, - ACTIONS(493), 1, + [44643] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(2934), 1, anon_sym_LBRACK, - ACTIONS(3022), 47, + ACTIONS(2936), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231397,22 +235005,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44928] = 3, - ACTIONS(493), 1, + [44699] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(3082), 47, + ACTIONS(3160), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + ACTIONS(3162), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -231425,9 +235039,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -231448,14 +235059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44984] = 3, - ACTIONS(493), 1, + [44757] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2820), 1, + ACTIONS(3154), 1, anon_sym_LBRACK, - ACTIONS(2822), 47, + ACTIONS(3156), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231503,547 +235112,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45040] = 3, - ACTIONS(3), 1, + [44813] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(1803), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4703), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [45096] = 27, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2740), 1, - anon_sym_DOT, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3209), 1, - anon_sym_fn, - ACTIONS(3211), 1, - anon_sym_STAR, - ACTIONS(3213), 1, - anon_sym_struct, - ACTIONS(3215), 1, - anon_sym_QMARK, - ACTIONS(3217), 1, - anon_sym_BANG, - ACTIONS(3219), 1, - anon_sym_LBRACK2, - ACTIONS(3221), 1, - anon_sym_AMP, - ACTIONS(3223), 1, - anon_sym_shared, - ACTIONS(3225), 1, - anon_sym_map_LBRACK, - ACTIONS(3227), 1, - anon_sym_chan, - ACTIONS(3229), 1, - anon_sym_thread, - ACTIONS(3231), 1, - anon_sym_atomic, - ACTIONS(4705), 1, - anon_sym_LPAREN, - ACTIONS(4707), 1, - anon_sym_LT2, - STATE(3421), 1, - sym_plain_type, - STATE(3423), 1, - sym_signature, - STATE(3726), 1, - sym_generic_parameters, - STATE(4425), 1, - sym_reference_expression, - STATE(2486), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3431), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2846), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [45200] = 24, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(3113), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_as, - ACTIONS(4653), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, - anon_sym_DASH_DASH, - ACTIONS(4659), 1, - anon_sym_AMP_AMP, - ACTIONS(4661), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4663), 1, - anon_sym_or, - ACTIONS(4665), 1, - anon_sym_is, - ACTIONS(4667), 1, - anon_sym_BANGis, - ACTIONS(4669), 1, - anon_sym_in, - ACTIONS(4671), 1, - anon_sym_BANGin, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4647), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4651), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4649), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2052), 9, + ACTIONS(3108), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym___global, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, sym_identifier, anon_sym_AT_LBRACK, - [45298] = 24, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_as, - ACTIONS(4653), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, - anon_sym_DASH_DASH, - ACTIONS(4663), 1, - anon_sym_or, - ACTIONS(4665), 1, - anon_sym_is, - ACTIONS(4667), 1, - anon_sym_BANGis, - ACTIONS(4717), 1, - anon_sym_AMP_AMP, - ACTIONS(4719), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4721), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_BANGin, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(3110), 35, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4709), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4713), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [45395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2736), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2734), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [45450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4697), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4695), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [45505] = 24, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_as, - ACTIONS(4653), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, - anon_sym_DASH_DASH, - ACTIONS(4663), 1, - anon_sym_or, - ACTIONS(4665), 1, - anon_sym_is, - ACTIONS(4667), 1, - anon_sym_BANGis, - ACTIONS(4717), 1, - anon_sym_AMP_AMP, - ACTIONS(4719), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4721), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_BANGin, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4713), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(4725), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [45602] = 24, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_as, - ACTIONS(4653), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, - anon_sym_DASH_DASH, - ACTIONS(4663), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4665), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4667), 1, anon_sym_BANGis, - ACTIONS(4717), 1, - anon_sym_AMP_AMP, - ACTIONS(4719), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4721), 1, anon_sym_in, - ACTIONS(4723), 1, anon_sym_BANGin, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2052), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4713), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [45699] = 4, - ACTIONS(493), 1, + [44871] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2994), 1, anon_sym_LBRACK, - ACTIONS(2784), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2694), 44, + ACTIONS(2996), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, @@ -232059,6 +235194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, @@ -232083,153 +235219,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45756] = 3, - ACTIONS(3), 1, + [44927] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2694), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2692), 34, + ACTIONS(3307), 1, + anon_sym_LBRACK, + ACTIONS(3309), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [45811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4727), 1, - anon_sym_else, - STATE(2347), 1, - sym_else_branch, - ACTIONS(2398), 13, - anon_sym_DOT, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2396), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [45870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4727), 1, - anon_sym_else, - STATE(2342), 1, - sym_else_branch, - ACTIONS(2392), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2390), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -232241,37 +235270,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [45929] = 13, - ACTIONS(493), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [44983] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4713), 8, + ACTIONS(4817), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232280,54 +235309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2144), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [46004] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2836), 1, - anon_sym_LBRACK, - ACTIONS(2784), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2838), 44, + ACTIONS(2346), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -232338,55 +235326,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46061] = 13, - ACTIONS(493), 1, + [45059] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, + ACTIONS(4865), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4713), 8, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232395,7 +235372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2156), 24, + ACTIONS(2360), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232420,100 +235397,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [46136] = 3, - ACTIONS(3), 1, + [45134] = 12, + ACTIONS(495), 1, sym_comment, - ACTIONS(4731), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4729), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [46191] = 17, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4717), 1, - anon_sym_AMP_AMP, - ACTIONS(4721), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_BANGin, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4713), 8, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232522,7 +235429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 15, + ACTIONS(2360), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232530,108 +235437,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - [46274] = 16, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(4605), 1, - anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - ACTIONS(4721), 1, - anon_sym_in, - ACTIONS(4723), 1, - anon_sym_BANGin, - STATE(2183), 1, - sym_or_block, - STATE(2184), 1, - sym_argument_list, - STATE(4302), 1, - sym_type_parameters, - ACTIONS(4601), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4611), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4713), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - [46355] = 13, - ACTIONS(493), 1, + [45207] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, + ACTIONS(4865), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4713), 8, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232640,7 +235495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 24, + ACTIONS(2342), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232665,30 +235520,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [46430] = 12, - ACTIONS(493), 1, + [45282] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4713), 8, + ACTIONS(4865), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232697,100 +235557,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 28, + ACTIONS(2346), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + [45357] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2746), 1, + anon_sym_LBRACK, + ACTIONS(2750), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2748), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - [46503] = 24, - ACTIONS(493), 1, + anon_sym_AT_LBRACK, + [45414] = 17, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_as, - ACTIONS(4653), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, - anon_sym_DASH_DASH, - ACTIONS(4663), 1, - anon_sym_or, - ACTIONS(4665), 1, - anon_sym_is, - ACTIONS(4667), 1, - anon_sym_BANGis, - ACTIONS(4717), 1, + ACTIONS(4871), 1, anon_sym_AMP_AMP, - ACTIONS(4719), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4721), 1, + ACTIONS(4873), 1, anon_sym_in, - ACTIONS(4723), 1, + ACTIONS(4875), 1, anon_sym_BANGin, - STATE(2183), 1, + STATE(2223), 1, sym_or_block, - STATE(2184), 1, + STATE(2224), 1, sym_argument_list, - STATE(4302), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4611), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4711), 4, + ACTIONS(4865), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 6, + ACTIONS(4869), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2234), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4713), 8, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232799,12 +235685,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46600] = 4, + ACTIONS(2360), 15, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + sym_identifier, + [45497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4733), 1, - anon_sym_DOLLARelse, - ACTIONS(2758), 13, + ACTIONS(2798), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232818,7 +235718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2756), 32, + ACTIONS(2796), 34, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232845,108 +235745,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46656] = 24, - ACTIONS(493), 1, + [45552] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(2748), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2746), 34, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4739), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4747), 1, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4749), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - ACTIONS(4759), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4761), 1, anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, anon_sym_or, - ACTIONS(4765), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, - ACTIONS(4767), 1, anon_sym_BANGis, - ACTIONS(4769), 1, anon_sym_in, - ACTIONS(4771), 1, anon_sym_BANGin, - STATE(2489), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45607] = 16, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4775), 1, + anon_sym_LPAREN, + ACTIONS(4777), 1, + anon_sym_LBRACK, + ACTIONS(4779), 1, + anon_sym_QMARK, + ACTIONS(4781), 1, + anon_sym_BANG, + ACTIONS(4873), 1, + anon_sym_in, + ACTIONS(4875), 1, + anon_sym_BANGin, + STATE(2223), 1, sym_or_block, - STATE(2553), 1, + STATE(2224), 1, sym_argument_list, - STATE(4146), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4865), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4745), 6, + ACTIONS(4869), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2172), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4743), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [46752] = 12, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4743), 8, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232955,7 +235853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 27, + ACTIONS(2360), 16, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232963,80 +235861,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [46824] = 13, - ACTIONS(493), 1, + sym_identifier, + [45688] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4885), 1, anon_sym_BANG, - STATE(2489), 1, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + STATE(2398), 1, sym_or_block, - STATE(2553), 1, + STATE(2399), 1, sym_argument_list, - STATE(4146), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(2360), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4743), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 23, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2358), 27, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233044,46 +235931,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [46898] = 16, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4895), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4893), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [45820] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4813), 1, + anon_sym_as, + ACTIONS(4821), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4823), 1, + anon_sym_DASH_DASH, + ACTIONS(4831), 1, + anon_sym_or, + ACTIONS(4833), 1, + anon_sym_is, + ACTIONS(4835), 1, + anon_sym_BANGis, + ACTIONS(4871), 1, + anon_sym_AMP_AMP, + ACTIONS(4873), 1, anon_sym_in, - ACTIONS(4771), 1, + ACTIONS(4875), 1, anon_sym_BANGin, - STATE(2489), 1, + ACTIONS(4897), 1, + anon_sym_PIPE_PIPE, + STATE(2223), 1, sym_or_block, - STATE(2553), 1, + STATE(2224), 1, sym_argument_list, - STATE(4146), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4865), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4745), 6, + ACTIONS(4869), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4743), 8, + ACTIONS(2220), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233092,76 +236058,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 15, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [46978] = 13, - ACTIONS(493), 1, + [45917] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4885), 1, anon_sym_BANG, - STATE(2489), 1, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + STATE(2398), 1, sym_or_block, - STATE(2553), 1, + STATE(2399), 1, sym_argument_list, - STATE(4146), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(2392), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4743), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2144), 23, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2390), 27, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233169,72 +236119,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47052] = 11, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45994] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2489), 1, + ACTIONS(4813), 1, + anon_sym_as, + ACTIONS(4821), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4823), 1, + anon_sym_DASH_DASH, + ACTIONS(4831), 1, + anon_sym_or, + ACTIONS(4833), 1, + anon_sym_is, + ACTIONS(4835), 1, + anon_sym_BANGis, + ACTIONS(4871), 1, + anon_sym_AMP_AMP, + ACTIONS(4873), 1, + anon_sym_in, + ACTIONS(4875), 1, + anon_sym_BANGin, + ACTIONS(4897), 1, + anon_sym_PIPE_PIPE, + STATE(2223), 1, sym_or_block, - STATE(2553), 1, + STATE(2224), 1, sym_argument_list, - STATE(4146), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2246), 35, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4865), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4869), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(2234), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4867), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47122] = 4, + [46091] = 3, ACTIONS(3), 1, sym_comment, - STATE(2380), 1, - sym_type_parameters, - ACTIONS(2764), 13, + ACTIONS(4849), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4847), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [46146] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, anon_sym_DOT, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(2314), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -233242,18 +236279,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2762), 32, + ACTIONS(2312), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -233261,7 +236293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -233272,56 +236303,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47178] = 17, - ACTIONS(493), 1, + [46223] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4759), 1, + ACTIONS(4813), 1, + anon_sym_as, + ACTIONS(4821), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4823), 1, + anon_sym_DASH_DASH, + ACTIONS(4831), 1, + anon_sym_or, + ACTIONS(4833), 1, + anon_sym_is, + ACTIONS(4835), 1, + anon_sym_BANGis, + ACTIONS(4871), 1, anon_sym_AMP_AMP, - ACTIONS(4769), 1, + ACTIONS(4873), 1, anon_sym_in, - ACTIONS(4771), 1, + ACTIONS(4875), 1, anon_sym_BANGin, - STATE(2489), 1, + ACTIONS(4897), 1, + anon_sym_PIPE_PIPE, + STATE(2223), 1, sym_or_block, - STATE(2553), 1, + STATE(2224), 1, sym_argument_list, - STATE(4146), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4865), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4745), 6, + ACTIONS(4869), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4743), 8, + ACTIONS(4867), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233330,53 +236373,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 14, + ACTIONS(4899), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [47260] = 11, - ACTIONS(493), 1, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [46320] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4775), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4777), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4781), 1, anon_sym_BANG, - STATE(2489), 1, + ACTIONS(4813), 1, + anon_sym_as, + ACTIONS(4821), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4823), 1, + anon_sym_DASH_DASH, + ACTIONS(4831), 1, + anon_sym_or, + ACTIONS(4833), 1, + anon_sym_is, + ACTIONS(4835), 1, + anon_sym_BANGis, + ACTIONS(4871), 1, + anon_sym_AMP_AMP, + ACTIONS(4873), 1, + anon_sym_in, + ACTIONS(4875), 1, + anon_sym_BANGin, + ACTIONS(4897), 1, + anon_sym_PIPE_PIPE, + STATE(2223), 1, sym_or_block, - STATE(2553), 1, + STATE(2224), 1, sym_argument_list, - STATE(4146), 1, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4783), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2162), 35, + ACTIONS(4865), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4869), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4867), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(4901), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [46417] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3116), 1, + anon_sym_LBRACK, + ACTIONS(2750), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3118), 44, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -233389,8 +236484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -233400,77 +236500,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47330] = 27, - ACTIONS(493), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [46474] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4603), 1, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4605), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4607), 1, - anon_sym_QMARK, - ACTIONS(4609), 1, - anon_sym_BANG, - ACTIONS(4611), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4645), 1, - anon_sym_as, - ACTIONS(4653), 1, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, - ACTIONS(4655), 1, + ACTIONS(4919), 1, anon_sym_DASH_DASH, - ACTIONS(4657), 1, - anon_sym_LBRACK2, - ACTIONS(4659), 1, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4927), 1, anon_sym_AMP_AMP, - ACTIONS(4661), 1, + ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4663), 1, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4665), 1, + ACTIONS(4933), 1, anon_sym_is, - ACTIONS(4667), 1, + ACTIONS(4935), 1, anon_sym_BANGis, - ACTIONS(4669), 1, + ACTIONS(4937), 1, anon_sym_in, - ACTIONS(4671), 1, + ACTIONS(4939), 1, anon_sym_BANGin, - ACTIONS(4673), 1, - anon_sym_AT_LBRACK, - STATE(2183), 1, + STATE(2589), 1, sym_or_block, - STATE(2184), 1, + STATE(2622), 1, sym_argument_list, - STATE(3683), 1, - sym_attribute, - STATE(4302), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4601), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4647), 4, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4773), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4651), 6, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4649), 8, + ACTIONS(2270), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(4911), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233479,35 +236580,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47432] = 13, - ACTIONS(493), 1, + [46570] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - STATE(2489), 1, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4743), 8, + ACTIONS(4911), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233516,7 +236617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2156), 23, + ACTIONS(2360), 23, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -233540,82 +236641,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47506] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 1, - anon_sym_DOLLARelse, - ACTIONS(2616), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2614), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47562] = 11, - ACTIONS(493), 1, + [46644] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - STATE(2489), 1, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2224), 35, + ACTIONS(2360), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -233651,70 +236700,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47632] = 24, - ACTIONS(493), 1, + [46714] = 17, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, - anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - ACTIONS(4759), 1, + ACTIONS(4927), 1, anon_sym_AMP_AMP, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, + ACTIONS(4937), 1, anon_sym_in, - ACTIONS(4771), 1, + ACTIONS(4939), 1, anon_sym_BANGin, - ACTIONS(4777), 1, - anon_sym_is, - ACTIONS(4779), 1, - anon_sym_BANGis, - STATE(2489), 1, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4745), 6, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2234), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4743), 8, + ACTIONS(4911), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233723,70 +236750,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47728] = 24, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4737), 1, + ACTIONS(2360), 14, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4749), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [46796] = 27, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4775), 1, + anon_sym_LPAREN, + ACTIONS(4777), 1, + anon_sym_LBRACK, + ACTIONS(4779), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4781), 1, anon_sym_BANG, - ACTIONS(4759), 1, + ACTIONS(4783), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4813), 1, + anon_sym_as, + ACTIONS(4821), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4823), 1, + anon_sym_DASH_DASH, + ACTIONS(4825), 1, + anon_sym_LBRACK2, + ACTIONS(4827), 1, anon_sym_AMP_AMP, - ACTIONS(4761), 1, + ACTIONS(4829), 1, anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, + ACTIONS(4831), 1, anon_sym_or, - ACTIONS(4769), 1, - anon_sym_in, - ACTIONS(4771), 1, - anon_sym_BANGin, - ACTIONS(4777), 1, + ACTIONS(4833), 1, anon_sym_is, - ACTIONS(4779), 1, + ACTIONS(4835), 1, anon_sym_BANGis, - STATE(2489), 1, + ACTIONS(4837), 1, + anon_sym_in, + ACTIONS(4839), 1, + anon_sym_BANGin, + ACTIONS(4841), 1, + anon_sym_AT_LBRACK, + STATE(2223), 1, sym_or_block, - STATE(2553), 1, + STATE(2224), 1, sym_argument_list, - STATE(4146), 1, + STATE(3701), 1, + sym_attribute, + STATE(4354), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4773), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4815), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4745), 6, + ACTIONS(4941), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4819), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2052), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4743), 8, + ACTIONS(4817), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233795,83 +236840,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47824] = 26, - ACTIONS(493), 1, + [46898] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, - anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - ACTIONS(4759), 1, - anon_sym_AMP_AMP, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_in, - ACTIONS(4771), 1, - anon_sym_BANGin, - ACTIONS(4777), 1, - anon_sym_is, - ACTIONS(4779), 1, - anon_sym_BANGis, - ACTIONS(4781), 1, - anon_sym_COMMA, - STATE(2489), 1, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(3554), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1780), 4, + ACTIONS(2314), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4741), 4, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4745), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4743), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47923] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [46968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 13, + ACTIONS(4943), 1, + anon_sym_else, + STATE(2436), 1, + sym_else_branch, + ACTIONS(2558), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233885,12 +236920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3145), 32, + ACTIONS(2556), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -233918,69 +236952,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47976] = 24, - ACTIONS(493), 1, + [47026] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4905), 1, anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, + ACTIONS(4919), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - ACTIONS(4759), 1, + ACTIONS(4927), 1, anon_sym_AMP_AMP, - ACTIONS(4761), 1, + ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4769), 1, + ACTIONS(4937), 1, anon_sym_in, - ACTIONS(4771), 1, + ACTIONS(4939), 1, anon_sym_BANGin, - ACTIONS(4777), 1, + ACTIONS(4945), 1, anon_sym_is, - ACTIONS(4779), 1, + ACTIONS(4947), 1, anon_sym_BANGis, - STATE(2489), 1, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4725), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4745), 6, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4743), 8, + ACTIONS(2220), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(4911), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233989,69 +237024,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48071] = 24, - ACTIONS(493), 1, + [47122] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, - anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - ACTIONS(4759), 1, - anon_sym_AMP_AMP, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_in, - ACTIONS(4771), 1, - anon_sym_BANGin, - ACTIONS(4777), 1, - anon_sym_is, - ACTIONS(4779), 1, - anon_sym_BANGis, - STATE(2489), 1, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4709), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4745), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4743), 8, + ACTIONS(4911), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234060,160 +237061,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [48166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2910), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2908), 32, + ACTIONS(2346), 23, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48219] = 3, - ACTIONS(3), 1, + [47196] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(3171), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3169), 32, - anon_sym_SEMI, + ACTIONS(4905), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4907), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4915), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4927), 1, anon_sym_AMP_AMP, + ACTIONS(4929), 1, anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4937), 1, anon_sym_in, + ACTIONS(4939), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2914), 13, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2912), 32, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2234), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(4911), 8, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48325] = 3, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [47292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 13, + ACTIONS(4943), 1, + anon_sym_else, + STATE(2437), 1, + sym_else_branch, + ACTIONS(2548), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234227,12 +237178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3197), 32, + ACTIONS(2546), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -234260,114 +237210,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48378] = 3, - ACTIONS(3), 1, + [47350] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(3203), 13, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4911), 8, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2342), 23, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [47424] = 12, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, anon_sym_QMARK, + ACTIONS(4923), 1, anon_sym_BANG, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4911), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 27, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48431] = 3, - ACTIONS(3), 1, + [47496] = 16, + ACTIONS(495), 1, sym_comment, - ACTIONS(3179), 13, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4937), 1, + anon_sym_in, + ACTIONS(4939), 1, + anon_sym_BANGin, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4911), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3177), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 15, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [47576] = 11, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4907), 1, anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2392), 35, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48484] = 4, - ACTIONS(493), 1, + [47646] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(2784), 1, - anon_sym_LBRACE, - ACTIONS(2694), 43, + ACTIONS(4949), 1, + anon_sym_else, + STATE(2511), 1, + sym_else_branch, + ACTIONS(2558), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -234377,6 +237473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -234389,7 +237486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -234410,44 +237506,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [48539] = 3, - ACTIONS(3), 1, + [47703] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2794), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2792), 32, + ACTIONS(2546), 1, + anon_sym_LBRACK, + ACTIONS(4949), 1, + anon_sym_else, + STATE(2510), 1, + sym_else_branch, + ACTIONS(2548), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -234459,45 +237558,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48592] = 3, - ACTIONS(3), 1, + [47760] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2822), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2820), 32, + ACTIONS(2750), 1, + anon_sym_LBRACE, + ACTIONS(3116), 1, + anon_sym_LBRACK, + ACTIONS(3118), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -234509,45 +237608,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48645] = 3, - ACTIONS(3), 1, + sym_identifier, + [47815] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(3167), 13, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, + anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4927), 1, + anon_sym_AMP_AMP, + ACTIONS(4929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, + anon_sym_or, + ACTIONS(4937), 1, + anon_sym_in, + ACTIONS(4939), 1, + anon_sym_BANGin, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4899), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4911), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3165), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [47910] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2919), 1, + anon_sym_LBRACK, + ACTIONS(3072), 1, + anon_sym_LBRACE, + ACTIONS(2914), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -234559,45 +237731,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48698] = 3, - ACTIONS(3), 1, + [47965] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(2934), 13, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, + anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4927), 1, + anon_sym_AMP_AMP, + ACTIONS(4929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, + anon_sym_or, + ACTIONS(4937), 1, + anon_sym_in, + ACTIONS(4939), 1, + anon_sym_BANGin, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4901), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4911), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2932), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [48060] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2746), 1, + anon_sym_LBRACK, + ACTIONS(2748), 44, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -234605,16 +237846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48751] = 3, + [48113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 13, + ACTIONS(4951), 1, + anon_sym_DOLLARelse, + ACTIONS(2884), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234628,12 +237871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3123), 32, + ACTIONS(2882), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -234661,12 +237903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48804] = 4, + [48168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 1, + ACTIONS(4953), 1, + anon_sym_DOLLARelse, + ACTIONS(2926), 13, anon_sym_DOT, - ACTIONS(3118), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -234679,12 +237922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 32, + ACTIONS(2924), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -234712,93 +237954,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48859] = 3, - ACTIONS(3), 1, + [48223] = 26, + ACTIONS(495), 1, sym_comment, - ACTIONS(2870), 13, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, + anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4927), 1, + anon_sym_AMP_AMP, + ACTIONS(4929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, + anon_sym_or, + ACTIONS(4937), 1, + anon_sym_in, + ACTIONS(4939), 1, + anon_sym_BANGin, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + ACTIONS(4955), 1, + anon_sym_COMMA, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(3580), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1868), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2868), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4911), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [48322] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, + anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4927), 1, anon_sym_AMP_AMP, + ACTIONS(4929), 1, anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4937), 1, anon_sym_in, + ACTIONS(4939), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3159), 13, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4957), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4911), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3157), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [48417] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2796), 1, + anon_sym_LBRACK, + ACTIONS(2798), 44, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -234806,16 +238142,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48965] = 3, + [48470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 13, + STATE(2465), 1, + sym_type_parameters, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234829,12 +238167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2824), 32, + ACTIONS(2888), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -234862,43 +238199,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49018] = 3, - ACTIONS(3), 1, + [48525] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2978), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2976), 32, + ACTIONS(2746), 1, + anon_sym_LBRACK, + ACTIONS(2750), 1, + anon_sym_LBRACE, + ACTIONS(2748), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -234910,12 +238249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49071] = 3, + sym_identifier, + [48580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 13, + ACTIONS(2940), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234929,12 +238267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2860), 32, + ACTIONS(2938), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -234962,43 +238299,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49124] = 3, - ACTIONS(3), 1, + [48632] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2834), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2832), 32, + ACTIONS(2924), 1, + anon_sym_LBRACK, + ACTIONS(4959), 1, + anon_sym_DOLLARelse, + ACTIONS(2926), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -235010,12 +238349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49177] = 3, + [48686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 13, + ACTIONS(4961), 1, + anon_sym_BANG, + ACTIONS(3126), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235025,16 +238364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3153), 32, + ACTIONS(3124), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235062,313 +238399,390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49230] = 3, - ACTIONS(3), 1, + [48740] = 12, + ACTIONS(495), 1, sym_comment, - ACTIONS(3046), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, anon_sym_QMARK, + ACTIONS(4923), 1, anon_sym_BANG, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4963), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3044), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49283] = 3, - ACTIONS(3), 1, + [48810] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(3018), 13, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4963), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3016), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49336] = 3, + [48882] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, + ACTIONS(4887), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3040), 32, - anon_sym_SEMI, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, anon_sym_as, + ACTIONS(4969), 1, anon_sym_LBRACE, + ACTIONS(4971), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, anon_sym_DASH_DASH, + ACTIONS(4987), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4989), 1, anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(4999), 1, anon_sym_in, + ACTIONS(5001), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 13, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(2873), 1, + sym_block, + STATE(4012), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4977), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3036), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4975), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [48992] = 16, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(5005), 1, + anon_sym_in, + ACTIONS(5007), 1, + anon_sym_BANGin, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4965), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(5003), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4963), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2360), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49442] = 4, - ACTIONS(493), 1, + [49070] = 17, + ACTIONS(495), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(2838), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(5005), 1, + anon_sym_in, + ACTIONS(5007), 1, + anon_sym_BANGin, + ACTIONS(5009), 1, + anon_sym_AMP_AMP, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5003), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4963), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(2360), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [49497] = 3, - ACTIONS(3), 1, + [49150] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(3106), 13, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4963), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3104), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2346), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49550] = 4, + [49222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 1, + ACTIONS(2948), 13, anon_sym_DOT, - ACTIONS(2846), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -235381,12 +238795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2844), 32, + ACTIONS(2946), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235414,10 +238827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49605] = 3, + [49274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 13, + ACTIONS(2952), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235431,12 +238844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3028), 32, + ACTIONS(2950), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235464,10 +238876,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49658] = 3, + [49326] = 13, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4965), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4963), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2342), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [49398] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2750), 1, + anon_sym_LBRACE, + ACTIONS(3116), 1, + anon_sym_LBRACK, + ACTIONS(3118), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [49452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 13, + ACTIONS(3136), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235481,12 +239002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2848), 32, + ACTIONS(3134), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235514,10 +239034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49711] = 3, + [49504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 13, + ACTIONS(2996), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235531,12 +239051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3000), 32, + ACTIONS(2994), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235564,10 +239083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49764] = 3, + [49556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 13, + ACTIONS(3000), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235581,12 +239100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2884), 32, + ACTIONS(2998), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235614,10 +239132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49817] = 3, + [49608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 13, + ACTIONS(3156), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235631,12 +239149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2880), 32, + ACTIONS(3154), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235664,10 +239181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49870] = 3, + [49660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 13, + ACTIONS(3040), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235681,12 +239198,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3008), 32, + ACTIONS(3038), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235714,10 +239230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49923] = 3, + [49712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 13, + ACTIONS(3048), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235731,12 +239247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2872), 32, + ACTIONS(3046), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235764,10 +239279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49976] = 3, + [49764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 13, + ACTIONS(3052), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235781,12 +239296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2888), 32, + ACTIONS(3050), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235814,10 +239328,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50029] = 3, + [49816] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4971), 1, + anon_sym_COMMA, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + ACTIONS(5011), 1, + anon_sym_LBRACE, + STATE(1746), 1, + sym_block, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4012), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4981), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4975), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 13, + ACTIONS(3056), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235831,12 +239423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3189), 32, + ACTIONS(3054), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235864,10 +239455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50082] = 3, + [49978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 13, + ACTIONS(3273), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235881,12 +239472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2896), 32, + ACTIONS(3271), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -235914,43 +239504,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50135] = 3, - ACTIONS(493), 1, + [50030] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 1, - anon_sym_LBRACK, - ACTIONS(2736), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3309), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3307), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -235958,22 +239547,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50188] = 5, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50082] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(4783), 1, - anon_sym_else, - STATE(2568), 1, - sym_else_branch, - ACTIONS(2398), 42, + STATE(2588), 1, + sym_type_parameters, + ACTIONS(2890), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236016,47 +239603,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50245] = 5, - ACTIONS(493), 1, + [50136] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 1, - anon_sym_LBRACK, - ACTIONS(4783), 1, - anon_sym_else, - STATE(2570), 1, - sym_else_branch, - ACTIONS(2392), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3301), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3299), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -236068,10 +239650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50302] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 13, + ACTIONS(3064), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236085,12 +239669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2840), 32, + ACTIONS(3062), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236118,10 +239701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50355] = 3, + [50240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 13, + ACTIONS(3068), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236135,12 +239718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2900), 32, + ACTIONS(3066), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236168,10 +239750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50408] = 3, + [50292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 13, + ACTIONS(3076), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236185,12 +239767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2928), 32, + ACTIONS(3074), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236218,10 +239799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50461] = 3, + [50344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 13, + ACTIONS(2960), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236235,12 +239816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3056), 32, + ACTIONS(2958), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236268,10 +239848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50514] = 3, + [50396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 13, + ACTIONS(2964), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236285,12 +239865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3064), 32, + ACTIONS(2962), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236318,10 +239897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50567] = 3, + [50448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 13, + ACTIONS(3032), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236335,12 +239914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3072), 32, + ACTIONS(3030), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236368,10 +239946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50620] = 3, + [50500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 13, + ACTIONS(2944), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236385,12 +239963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2788), 32, + ACTIONS(2942), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236418,10 +239995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50673] = 3, + [50552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 13, + ACTIONS(2968), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236435,12 +240012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3088), 32, + ACTIONS(2966), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236468,10 +240044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50726] = 3, + [50604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 13, + ACTIONS(3080), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236485,12 +240061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 32, + ACTIONS(3078), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236518,10 +240093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50779] = 3, + [50656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 13, + ACTIONS(2972), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236535,12 +240110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3108), 32, + ACTIONS(2970), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236568,10 +240142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50832] = 3, + [50708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 13, + ACTIONS(3104), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236585,12 +240159,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3135), 32, + ACTIONS(3102), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236618,10 +240191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50885] = 3, + [50760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 13, + ACTIONS(2988), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236635,12 +240208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2892), 32, + ACTIONS(2986), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236668,10 +240240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50938] = 3, + [50812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 13, + ACTIONS(2992), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236685,12 +240257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2956), 32, + ACTIONS(2990), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236718,10 +240289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50991] = 3, + [50864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 13, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236735,12 +240306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2828), 32, + ACTIONS(2888), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236768,10 +240338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51044] = 3, + [50916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 13, + ACTIONS(3016), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236785,12 +240355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2816), 32, + ACTIONS(3014), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236818,10 +240387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51097] = 3, + [50968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 13, + ACTIONS(3198), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236835,12 +240404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3149), 32, + ACTIONS(3196), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236868,46 +240436,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51150] = 4, - ACTIONS(493), 1, + [51020] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_LBRACK, - ACTIONS(2846), 1, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4598), 1, anon_sym_LBRACE, - ACTIONS(2740), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4971), 1, + anon_sym_COMMA, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + STATE(1667), 1, + sym_block, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4012), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4981), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4975), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3345), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3343), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3341), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3339), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3325), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3323), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -236919,10 +240659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51205] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 13, + ACTIONS(3321), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236936,12 +240678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3161), 32, + ACTIONS(3319), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -236969,10 +240710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51258] = 3, + [51338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 13, + ACTIONS(3036), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236986,12 +240727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3193), 32, + ACTIONS(3034), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237019,10 +240759,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51311] = 3, + [51390] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4971), 1, + anon_sym_COMMA, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + ACTIONS(5013), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_block, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4012), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4981), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4975), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 13, + ACTIONS(3084), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237036,12 +240854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3181), 32, + ACTIONS(3082), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237069,60 +240886,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51364] = 3, + [51552] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, + ACTIONS(4887), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2876), 32, - anon_sym_SEMI, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4971), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, anon_sym_DASH_DASH, + ACTIONS(4987), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4989), 1, anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(4999), 1, anon_sym_in, + ACTIONS(5001), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51417] = 3, + ACTIONS(5015), 1, + anon_sym_LBRACE, + STATE(1168), 1, + sym_block, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4012), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4981), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4975), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 13, + ACTIONS(3186), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237136,12 +240981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2800), 32, + ACTIONS(3184), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237169,10 +241013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51470] = 3, + [51714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 13, + ACTIONS(3100), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237186,12 +241030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3173), 32, + ACTIONS(3098), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237219,10 +241062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51523] = 3, + [51766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 13, + ACTIONS(3202), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237236,12 +241079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3076), 32, + ACTIONS(3200), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237269,10 +241111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51576] = 3, + [51818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 13, + ACTIONS(3096), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237286,12 +241128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2796), 32, + ACTIONS(3094), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237319,10 +241160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51629] = 3, + [51870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 13, + ACTIONS(3092), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237336,12 +241177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2864), 32, + ACTIONS(3090), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237369,10 +241209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51682] = 3, + [51922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 13, + ACTIONS(3088), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237386,12 +241226,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2924), 32, + ACTIONS(3086), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237419,10 +241258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51735] = 3, + [51974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 13, + ACTIONS(3122), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237436,12 +241275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2904), 32, + ACTIONS(3120), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237469,11 +241307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51788] = 3, + [52026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 13, + ACTIONS(3232), 1, anon_sym_DOT, + ACTIONS(3230), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -237486,12 +241325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 32, + ACTIONS(3228), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237519,10 +241357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51841] = 3, + [52080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 13, + ACTIONS(3226), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237536,12 +241374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2916), 32, + ACTIONS(3224), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237569,10 +241406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51894] = 3, + [52132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 13, + ACTIONS(3206), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237586,12 +241423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2936), 32, + ACTIONS(3204), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237619,10 +241455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51947] = 3, + [52184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 13, + ACTIONS(3210), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237636,12 +241472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2940), 32, + ACTIONS(3208), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237669,10 +241504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52000] = 3, + [52236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 13, + ACTIONS(3218), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237686,12 +241521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3084), 32, + ACTIONS(3216), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237719,81 +241553,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52053] = 24, - ACTIONS(493), 1, + [52288] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, - anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4759), 1, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4971), 1, + anon_sym_COMMA, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4761), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4769), 1, - anon_sym_in, - ACTIONS(4771), 1, - anon_sym_BANGin, - ACTIONS(4777), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4779), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - STATE(2489), 1, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + ACTIONS(5017), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym_block, + STATE(2398), 1, sym_or_block, - STATE(2553), 1, + STATE(2399), 1, sym_argument_list, - STATE(4146), 1, + STATE(4012), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4745), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4977), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4785), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4743), 8, + ACTIONS(4975), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52148] = 3, + [52398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 13, + ACTIONS(3237), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237807,12 +241648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3048), 32, + ACTIONS(3235), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237840,111 +241680,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52201] = 3, + [52450] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, + ACTIONS(4887), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2960), 32, - anon_sym_SEMI, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4971), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, anon_sym_DASH_DASH, + ACTIONS(4987), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4989), 1, anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(4999), 1, anon_sym_in, + ACTIONS(5001), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_BANG, - ACTIONS(3141), 12, + ACTIONS(5019), 1, + anon_sym_LBRACE, + STATE(2186), 1, + sym_block, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4012), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4977), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3139), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4975), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52309] = 3, + [52560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 13, + ACTIONS(2936), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237958,12 +241775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2944), 32, + ACTIONS(2934), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -237991,10 +241807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52362] = 3, + [52612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 13, + ACTIONS(3028), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238008,12 +241824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3185), 32, + ACTIONS(3026), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238041,10 +241856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52415] = 3, + [52664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 13, + ACTIONS(3194), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238058,12 +241873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2948), 32, + ACTIONS(3192), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238091,10 +241905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52468] = 3, + [52716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 13, + ACTIONS(3257), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238108,12 +241922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2786), 32, + ACTIONS(3255), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238141,10 +241954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52521] = 3, + [52768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 13, + ACTIONS(3281), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238158,12 +241971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2804), 32, + ACTIONS(3279), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238191,10 +242003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52574] = 3, + [52820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 13, + ACTIONS(3289), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238208,12 +242020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3020), 32, + ACTIONS(3287), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238241,10 +242052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52627] = 3, + [52872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 13, + ACTIONS(3269), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238258,12 +242069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2964), 32, + ACTIONS(3267), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238291,10 +242101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52680] = 3, + [52924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 13, + ACTIONS(3305), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238308,12 +242118,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3012), 32, + ACTIONS(3303), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238341,10 +242150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52733] = 3, + [52976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 13, + ACTIONS(3293), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238358,12 +242167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2844), 32, + ACTIONS(3291), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238391,10 +242199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52786] = 3, + [53028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 13, + ACTIONS(3349), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238408,12 +242216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3080), 32, + ACTIONS(3347), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238441,10 +242248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52839] = 3, + [53080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 13, + ACTIONS(3253), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238458,12 +242265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3127), 32, + ACTIONS(3251), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238491,10 +242297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52892] = 3, + [53132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 13, + ACTIONS(3249), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238508,12 +242314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2952), 32, + ACTIONS(3247), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238541,10 +242346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52945] = 3, + [53184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 13, + ACTIONS(3160), 1, + anon_sym_COLON, + ACTIONS(3158), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3162), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238552,20 +242365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2762), 32, - anon_sym_SEMI, + ACTIONS(3165), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -238573,7 +242381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -238590,11 +242397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52998] = 3, + [53240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 13, + ACTIONS(3108), 1, + anon_sym_COLON, + ACTIONS(3106), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3110), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238602,20 +242416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3024), 32, - anon_sym_SEMI, + ACTIONS(3113), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -238623,7 +242432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -238640,11 +242448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53051] = 3, + [53296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 13, + ACTIONS(3132), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238658,12 +242465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3032), 32, + ACTIONS(3130), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238691,19 +242497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53104] = 5, + [53348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 1, - anon_sym_COLON, - ACTIONS(2990), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2994), 12, + ACTIONS(3044), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238711,15 +242508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2997), 26, + ACTIONS(3042), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -238727,6 +242528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -238743,10 +242545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [53161] = 3, + anon_sym_DOT_DOT, + [53400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 13, + ACTIONS(3144), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238760,12 +242563,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2972), 32, + ACTIONS(3142), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238793,10 +242595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53214] = 3, + [53452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 13, + ACTIONS(3285), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238810,12 +242612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2968), 32, + ACTIONS(3283), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238843,10 +242644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53267] = 3, + [53504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 13, + ACTIONS(3174), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238860,12 +242661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3004), 32, + ACTIONS(3172), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238893,19 +242693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53320] = 5, + [53556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 1, - anon_sym_COLON, - ACTIONS(2980), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2984), 12, + ACTIONS(3182), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238913,15 +242704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2987), 26, + ACTIONS(3180), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -238929,6 +242724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -238945,10 +242741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [53377] = 3, + anon_sym_DOT_DOT, + [53608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 13, + ACTIONS(3190), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238962,12 +242759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3052), 32, + ACTIONS(3188), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -238995,43 +242791,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53430] = 3, - ACTIONS(493), 1, + [53660] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACK, - ACTIONS(2694), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3265), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3263), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -239039,16 +242834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [53483] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 13, + ACTIONS(3277), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239062,12 +242857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3060), 32, + ACTIONS(3275), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239095,10 +242889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53536] = 3, + [53764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 13, + ACTIONS(3178), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239112,12 +242906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3068), 32, + ACTIONS(3176), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239145,10 +242938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53589] = 3, + [53816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 13, + ACTIONS(3333), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239162,12 +242955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3092), 32, + ACTIONS(3331), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239195,10 +242987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53642] = 3, + [53868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 13, + ACTIONS(3024), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239212,12 +243004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3100), 32, + ACTIONS(3022), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239245,10 +243036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53695] = 3, + [53920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 13, + ACTIONS(3020), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239262,12 +243053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3112), 32, + ACTIONS(3018), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239295,10 +243085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53748] = 3, + [53972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 13, + ACTIONS(3012), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239312,12 +243102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3131), 32, + ACTIONS(3010), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239345,216 +243134,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53801] = 16, - ACTIONS(493), 1, + [54024] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_in, - ACTIONS(4797), 1, - anon_sym_BANGin, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(3008), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4793), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3006), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [53879] = 17, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4739), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - ACTIONS(4795), 1, - anon_sym_in, - ACTIONS(4797), 1, - anon_sym_BANGin, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4789), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4793), 6, - anon_sym_LT, - anon_sym_GT, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [53959] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_COLON_EQ, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4803), 1, - anon_sym_LBRACE, - ACTIONS(4805), 1, - anon_sym_COMMA, - ACTIONS(4817), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4823), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4829), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - STATE(992), 1, - sym_block, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4807), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4811), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4815), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4809), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54069] = 4, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2838), 12, + ACTIONS(3004), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239562,15 +243194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2836), 30, + ACTIONS(3002), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -239581,7 +243215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -239597,96 +243230,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54123] = 4, - ACTIONS(493), 1, + [54128] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_LBRACK, - ACTIONS(2784), 1, - anon_sym_LBRACE, - ACTIONS(2694), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3060), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [54177] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2614), 1, - anon_sym_LBRACK, - ACTIONS(4837), 1, - anon_sym_DOLLARelse, - ACTIONS(2616), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3058), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -239698,119 +243279,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54231] = 32, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54180] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3379), 1, anon_sym_COLON_EQ, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4805), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4839), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(1838), 1, - sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(3952), 1, + STATE(2642), 1, + sym_block, + STATE(4012), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54341] = 5, + [54290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2844), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2740), 12, + ACTIONS(2916), 1, anon_sym_DOT, + ACTIONS(3072), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 28, + ACTIONS(3070), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -239826,544 +243407,491 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54397] = 18, + [54344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(3170), 13, anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4847), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2144), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2142), 19, + ACTIONS(3168), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54479] = 18, + [54396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2750), 13, anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4847), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2156), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2154), 19, + ACTIONS(2752), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54561] = 22, + [54448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2984), 13, anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(2982), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 12, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54651] = 32, + [54500] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3379), 1, anon_sym_COLON_EQ, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4805), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4859), 1, + ACTIONS(5023), 1, anon_sym_LBRACE, - STATE(2298), 1, + STATE(1274), 1, sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(3952), 1, + STATE(4012), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54761] = 21, + [54610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2976), 13, anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(2974), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 13, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54849] = 18, + [54662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2956), 13, anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4847), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 19, + ACTIONS(2954), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54931] = 24, - ACTIONS(493), 1, + [54714] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(3241), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3239), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4739), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4747), 1, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4749), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - ACTIONS(4763), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4777), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4779), 1, anon_sym_BANGis, - ACTIONS(4795), 1, anon_sym_in, - ACTIONS(4797), 1, anon_sym_BANGin, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_PIPE_PIPE, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3245), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(2234), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(4793), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3243), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55025] = 24, - ACTIONS(493), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54818] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4905), 1, anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, + ACTIONS(4919), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - ACTIONS(4759), 1, + ACTIONS(4927), 1, anon_sym_AMP_AMP, - ACTIONS(4761), 1, + ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4769), 1, + ACTIONS(4937), 1, anon_sym_in, - ACTIONS(4771), 1, + ACTIONS(4939), 1, anon_sym_BANGin, - ACTIONS(4777), 1, + ACTIONS(4945), 1, anon_sym_is, - ACTIONS(4779), 1, + ACTIONS(4947), 1, anon_sym_BANGis, - STATE(2489), 1, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4741), 4, + ACTIONS(4909), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1716), 5, + ACTIONS(1930), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4745), 6, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4743), 8, + ACTIONS(4911), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -240372,107 +243900,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55119] = 16, + [54912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(3148), 13, anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4845), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2162), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 20, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [55197] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2756), 1, - anon_sym_LBRACK, - ACTIONS(4863), 1, - anon_sym_DOLLARelse, - ACTIONS(2758), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3146), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -240484,68 +243947,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55251] = 24, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54964] = 25, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4905), 1, anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, + ACTIONS(4919), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - ACTIONS(4763), 1, + ACTIONS(4927), 1, + anon_sym_AMP_AMP, + ACTIONS(4929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4777), 1, - anon_sym_is, - ACTIONS(4779), 1, - anon_sym_BANGis, - ACTIONS(4795), 1, + ACTIONS(4937), 1, anon_sym_in, - ACTIONS(4797), 1, + ACTIONS(4939), 1, anon_sym_BANGin, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_PIPE_PIPE, - STATE(2489), 1, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + ACTIONS(5025), 1, + anon_sym_COMMA, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4789), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(2052), 5, + ACTIONS(3457), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4793), 6, + ACTIONS(4909), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4913), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4791), 8, + ACTIONS(4911), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -240554,123 +244020,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55345] = 32, + [55060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COLON_EQ, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(2914), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2912), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4805), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4817), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4823), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4829), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(1146), 1, - sym_block, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3214), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(3212), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55455] = 4, - ACTIONS(493), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55164] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 1, - anon_sym_LBRACK, - STATE(2479), 1, - sym_type_parameters, - ACTIONS(2764), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3222), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3220), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -240682,69 +244165,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55509] = 25, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55216] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(4905), 1, anon_sym_as, - ACTIONS(4739), 1, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, + ACTIONS(4919), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, + ACTIONS(4921), 1, anon_sym_QMARK, - ACTIONS(4755), 1, + ACTIONS(4923), 1, anon_sym_BANG, - ACTIONS(4759), 1, - anon_sym_AMP_AMP, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4769), 1, - anon_sym_in, - ACTIONS(4771), 1, - anon_sym_BANGin, - ACTIONS(4777), 1, + ACTIONS(4945), 1, anon_sym_is, - ACTIONS(4779), 1, + ACTIONS(4947), 1, anon_sym_BANGis, - ACTIONS(4867), 1, - anon_sym_COMMA, - STATE(2489), 1, + ACTIONS(5005), 1, + anon_sym_in, + ACTIONS(5007), 1, + anon_sym_BANGin, + ACTIONS(5009), 1, + anon_sym_AMP_AMP, + ACTIONS(5027), 1, + anon_sym_PIPE_PIPE, + STATE(2589), 1, sym_or_block, - STATE(2553), 1, + STATE(2622), 1, sym_argument_list, - STATE(4146), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4757), 2, + ACTIONS(4925), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(3313), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4741), 4, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4745), 6, + ACTIONS(2234), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5003), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4743), 8, + ACTIONS(4963), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -240753,733 +244237,755 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55605] = 32, + [55310] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3379), 1, anon_sym_COLON_EQ, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4805), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4869), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(2325), 1, + STATE(1016), 1, + sym_block, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(2785), 1, - sym_block, - STATE(3952), 1, + STATE(4012), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55715] = 32, + [55420] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3379), 1, anon_sym_COLON_EQ, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4805), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4871), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(2152), 1, + STATE(2355), 1, sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(3952), 1, + STATE(4012), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55825] = 32, + [55530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COLON_EQ, - ACTIONS(4462), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(3072), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3070), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4805), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4817), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4823), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4829), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - STATE(1634), 1, - sym_block, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3329), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(3327), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55935] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_COLON_EQ, - ACTIONS(4679), 1, + anon_sym_DOT_DOT, + [55634] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4805), 1, - anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4919), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, - anon_sym_CARET, - ACTIONS(4823), 1, - anon_sym_AMP_AMP, - ACTIONS(4825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4945), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4947), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(5005), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5007), 1, anon_sym_BANGin, - ACTIONS(4873), 1, - anon_sym_LBRACE, - STATE(1286), 1, - sym_block, - STATE(2325), 1, + ACTIONS(5009), 1, + anon_sym_AMP_AMP, + ACTIONS(5027), 1, + anon_sym_PIPE_PIPE, + STATE(2589), 1, sym_or_block, - STATE(2378), 1, + STATE(2622), 1, sym_argument_list, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4903), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4815), 4, + anon_sym_CARET, + ACTIONS(2220), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5003), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4963), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56045] = 32, + [55728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COLON_EQ, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(3313), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3311), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4805), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4817), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4823), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4829), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(394), 1, - sym_block, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4807), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4811), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4815), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4809), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56155] = 32, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55780] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3379), 1, anon_sym_COLON_EQ, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4805), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4877), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(2325), 1, + STATE(1905), 1, + sym_block, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(2619), 1, - sym_block, - STATE(3952), 1, + STATE(4012), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56265] = 32, - ACTIONS(3), 1, + [55890] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COLON_EQ, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(2750), 1, + anon_sym_LBRACE, + ACTIONS(2748), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4823), 1, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4829), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1734), 1, - sym_block, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + [55944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(3295), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56375] = 32, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [55996] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3379), 1, anon_sym_COLON_EQ, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4805), 1, + ACTIONS(4971), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4881), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(2325), 1, - sym_or_block, - STATE(2367), 1, + STATE(1852), 1, sym_block, - STATE(2378), 1, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, sym_argument_list, - STATE(3952), 1, + STATE(4012), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56485] = 13, - ACTIONS(493), 1, + [56106] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(3261), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4791), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2144), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3259), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56557] = 13, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [56158] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(2882), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(5037), 1, + anon_sym_DOLLARelse, + ACTIONS(2884), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4789), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4791), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2156), 21, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [56212] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3204), 1, + anon_sym_LBRACK, + ACTIONS(3206), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -241488,96 +244994,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56629] = 29, - ACTIONS(3), 1, + [56263] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_DOT, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(3010), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(3012), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4851), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2232), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56733] = 4, - ACTIONS(493), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [56314] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2784), 1, - anon_sym_LBRACE, - ACTIONS(2836), 1, + ACTIONS(3283), 1, anon_sym_LBRACK, - ACTIONS(2838), 42, + ACTIONS(3285), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241620,125 +245108,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56787] = 29, + [56365] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(2342), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2340), 18, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2050), 5, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_DOT_DOT, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56891] = 13, - ACTIONS(493), 1, + [56446] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(3279), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, + ACTIONS(3281), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4789), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4791), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -241747,51 +245201,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56963] = 4, - ACTIONS(3), 1, + [56497] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2786), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2694), 12, + ACTIONS(3172), 1, + anon_sym_LBRACK, + ACTIONS(3174), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2692), 30, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [56548] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3180), 1, + anon_sym_LBRACK, + ACTIONS(3182), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -241803,49 +245315,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [57017] = 12, - ACTIONS(493), 1, + [56599] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 25, + ACTIONS(3257), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -241854,195 +245345,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57087] = 32, + [56650] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COLON_EQ, - ACTIONS(4679), 1, + ACTIONS(2234), 1, + anon_sym_DOT_DOT, + ACTIONS(5047), 1, + anon_sym_DOT, + ACTIONS(5049), 1, + anon_sym_as, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(5065), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5067), 1, + anon_sym_DASH_DASH, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4805), 1, - anon_sym_COMMA, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(5075), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(5077), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(5079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(5081), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5087), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(5089), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(5091), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5093), 1, anon_sym_BANGin, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1907), 1, - sym_block, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + STATE(2813), 1, sym_argument_list, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(5059), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(2232), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5053), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5057), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(5061), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(5055), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57197] = 3, - ACTIONS(493), 1, + [56755] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2978), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2220), 1, + anon_sym_DOT_DOT, + ACTIONS(5047), 1, anon_sym_DOT, + ACTIONS(5049), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5051), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5063), 1, + anon_sym_LBRACK, + ACTIONS(5065), 1, anon_sym_PLUS_PLUS, + ACTIONS(5067), 1, anon_sym_DASH_DASH, + ACTIONS(5069), 1, anon_sym_QMARK, + ACTIONS(5071), 1, anon_sym_BANG, + ACTIONS(5073), 1, anon_sym_LBRACK2, + ACTIONS(5075), 1, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5077), 1, anon_sym_AMP_AMP, + ACTIONS(5079), 1, anon_sym_PIPE_PIPE, + ACTIONS(5081), 1, anon_sym_or, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, + ACTIONS(5087), 1, anon_sym_is, + ACTIONS(5089), 1, anon_sym_BANGis, + ACTIONS(5091), 1, anon_sym_in, + ACTIONS(5093), 1, anon_sym_BANGin, - [57248] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_LBRACK, - ACTIONS(4887), 1, - anon_sym_BANG, - ACTIONS(3141), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + STATE(2813), 1, + sym_argument_list, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, + sym_type_parameters, + ACTIONS(5059), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2218), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + ACTIONS(5053), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5057), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5061), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5055), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57301] = 3, - ACTIONS(493), 1, + [56860] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3108), 1, + ACTIONS(3188), 1, anon_sym_LBRACK, - ACTIONS(3110), 42, + ACTIONS(3190), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242085,65 +245561,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57352] = 22, + [56911] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, - anon_sym_DOT_DOT, - ACTIONS(4889), 1, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4911), 1, + ACTIONS(5075), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, - anon_sym_BANGin, - STATE(2838), 1, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4899), 2, + ACTIONS(2342), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(4893), 3, + anon_sym_DOT_DOT, + ACTIONS(5053), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4897), 3, + ACTIONS(5057), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4901), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4895), 5, + ACTIONS(5055), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 11, + ACTIONS(2340), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -242152,52 +245622,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [57441] = 18, + anon_sym_in, + anon_sym_BANGin, + [56992] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4911), 1, + ACTIONS(5075), 1, anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - STATE(2838), 1, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(2162), 3, + ACTIONS(2346), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, - ACTIONS(4893), 3, + ACTIONS(5053), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4897), 3, + ACTIONS(5057), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4895), 5, + ACTIONS(5055), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 17, + ACTIONS(2344), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242215,121 +245687,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57522] = 3, - ACTIONS(493), 1, + [57073] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 1, - anon_sym_LBRACK, - ACTIONS(3098), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5047), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5051), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5063), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, + anon_sym_QMARK, + ACTIONS(5071), 1, + anon_sym_BANG, + ACTIONS(5073), 1, + anon_sym_LBRACK2, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, + anon_sym_POUND_LBRACK, + STATE(2813), 1, + sym_argument_list, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, + sym_type_parameters, + ACTIONS(2314), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2312), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57573] = 16, + [57146] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(2360), 1, + anon_sym_DOT_DOT, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4913), 1, + ACTIONS(5075), 1, + anon_sym_CARET, + ACTIONS(5077), 1, + anon_sym_AMP_AMP, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - STATE(2838), 1, + ACTIONS(5091), 1, + anon_sym_in, + ACTIONS(5093), 1, + anon_sym_BANGin, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4897), 3, + ACTIONS(5059), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5053), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5057), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4895), 5, + ACTIONS(5061), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5055), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2162), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2160), 18, + ACTIONS(2358), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57650] = 3, - ACTIONS(493), 1, + [57237] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3192), 1, anon_sym_LBRACK, - ACTIONS(2958), 42, + ACTIONS(3194), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242372,12 +245862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57701] = 3, - ACTIONS(493), 1, + [57288] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3026), 1, anon_sym_LBRACK, - ACTIONS(3090), 42, + ACTIONS(3028), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242420,12 +245910,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57752] = 3, - ACTIONS(493), 1, + [57339] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2360), 1, + anon_sym_DOT_DOT, + ACTIONS(5047), 1, + anon_sym_DOT, + ACTIONS(5051), 1, + anon_sym_LPAREN, + ACTIONS(5063), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, + anon_sym_QMARK, + ACTIONS(5071), 1, + anon_sym_BANG, + ACTIONS(5073), 1, + anon_sym_LBRACK2, + ACTIONS(5075), 1, + anon_sym_CARET, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5091), 1, + anon_sym_in, + ACTIONS(5093), 1, + anon_sym_BANGin, + STATE(2813), 1, + sym_argument_list, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, + sym_type_parameters, + ACTIONS(5059), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5053), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5057), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5061), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5055), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [57428] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2788), 1, + ACTIONS(2934), 1, anon_sym_LBRACK, - ACTIONS(2790), 42, + ACTIONS(2936), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242468,12 +246025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57803] = 3, - ACTIONS(493), 1, + [57479] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(2826), 42, + ACTIONS(3261), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242516,12 +246073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57854] = 3, - ACTIONS(493), 1, + [57530] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2800), 1, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(2802), 42, + ACTIONS(3237), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242564,12 +246121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57905] = 3, - ACTIONS(493), 1, + [57581] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(3295), 1, anon_sym_LBRACK, - ACTIONS(3163), 42, + ACTIONS(3297), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242612,210 +246169,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57956] = 21, - ACTIONS(493), 1, + [57632] = 29, + ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3207), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_fn, - ACTIONS(3211), 1, - anon_sym_STAR, - ACTIONS(3213), 1, - anon_sym_struct, - ACTIONS(3215), 1, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(3217), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(3219), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(3221), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5099), 1, + anon_sym_AMP_AMP, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, + anon_sym_in, + ACTIONS(5105), 1, + anon_sym_BANGin, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(5095), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5043), 3, + anon_sym_SLASH, anon_sym_AMP, - ACTIONS(3223), 1, - anon_sym_shared, - ACTIONS(3225), 1, - anon_sym_map_LBRACK, - ACTIONS(3227), 1, - anon_sym_chan, - ACTIONS(3229), 1, - anon_sym_thread, - ACTIONS(3231), 1, - anon_sym_atomic, - STATE(3445), 1, - sym_plain_type, - STATE(4425), 1, - sym_reference_expression, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3431), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(621), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58043] = 21, - ACTIONS(493), 1, + anon_sym_GT_GT, + ACTIONS(2218), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [57735] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3207), 1, + ACTIONS(5047), 1, + anon_sym_DOT, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_fn, - ACTIONS(3211), 1, - anon_sym_STAR, - ACTIONS(3213), 1, - anon_sym_struct, - ACTIONS(3215), 1, + ACTIONS(5063), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(3217), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(3219), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(3221), 1, + ACTIONS(5075), 1, + anon_sym_CARET, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, + anon_sym_POUND_LBRACK, + STATE(2813), 1, + sym_argument_list, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, + sym_type_parameters, + ACTIONS(2360), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5053), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5057), 3, + anon_sym_SLASH, anon_sym_AMP, - ACTIONS(3223), 1, - anon_sym_shared, - ACTIONS(3225), 1, - anon_sym_map_LBRACK, - ACTIONS(3227), 1, - anon_sym_chan, - ACTIONS(3229), 1, - anon_sym_thread, - ACTIONS(3231), 1, - anon_sym_atomic, - STATE(3439), 1, - sym_plain_type, - STATE(4425), 1, - sym_reference_expression, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3431), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(613), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58130] = 21, - ACTIONS(493), 1, + anon_sym_GT_GT, + ACTIONS(5055), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [57816] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3207), 1, + ACTIONS(5047), 1, + anon_sym_DOT, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_fn, - ACTIONS(3211), 1, - anon_sym_STAR, - ACTIONS(3213), 1, - anon_sym_struct, - ACTIONS(3215), 1, + ACTIONS(5063), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(3217), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(3219), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(3221), 1, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, + anon_sym_POUND_LBRACK, + STATE(2813), 1, + sym_argument_list, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, + sym_type_parameters, + ACTIONS(5057), 3, + anon_sym_SLASH, anon_sym_AMP, - ACTIONS(3223), 1, - anon_sym_shared, - ACTIONS(3225), 1, - anon_sym_map_LBRACK, - ACTIONS(3227), 1, - anon_sym_chan, - ACTIONS(3229), 1, - anon_sym_thread, - ACTIONS(3231), 1, - anon_sym_atomic, - STATE(3430), 1, - sym_plain_type, - STATE(4425), 1, - sym_reference_expression, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3431), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(561), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [58217] = 3, - ACTIONS(493), 1, + anon_sym_GT_GT, + ACTIONS(5055), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2360), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(2358), 18, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [57893] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(3208), 1, anon_sym_LBRACK, - ACTIONS(2862), 42, + ACTIONS(3210), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242858,12 +246415,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58268] = 3, - ACTIONS(493), 1, + [57944] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5099), 1, + anon_sym_AMP_AMP, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, + anon_sym_in, + ACTIONS(5105), 1, + anon_sym_BANGin, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(5095), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5043), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2232), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [58047] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(3200), 1, anon_sym_LBRACK, - ACTIONS(3147), 42, + ACTIONS(3202), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242906,75 +246537,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58319] = 18, - ACTIONS(3), 1, + [58098] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(3154), 1, + anon_sym_LBRACK, + ACTIONS(3156), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4891), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(2144), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4893), 3, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4897), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4895), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2142), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58400] = 3, - ACTIONS(493), 1, + [58149] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(3066), 42, + ACTIONS(3265), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243017,55 +246633,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58451] = 18, + [58200] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - STATE(2838), 1, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(2156), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4893), 3, + ACTIONS(2392), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4897), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4895), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2154), 17, + anon_sym_DOT_DOT, + ACTIONS(2390), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -243073,6 +246681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -243080,17 +246692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58532] = 3, - ACTIONS(493), 1, + [58273] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(3228), 1, anon_sym_LBRACK, - ACTIONS(3074), 42, + ACTIONS(3232), 1, + anon_sym_DOT, + ACTIONS(3230), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -243128,12 +246741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58583] = 3, - ACTIONS(493), 1, + [58326] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(3184), 1, anon_sym_LBRACK, - ACTIONS(3058), 42, + ACTIONS(3186), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243176,80 +246789,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58634] = 23, - ACTIONS(3), 1, + [58377] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2162), 1, - anon_sym_DOT_DOT, - ACTIONS(4889), 1, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4891), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, - anon_sym_BANGin, - ACTIONS(4921), 1, - anon_sym_AMP_AMP, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(4899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4893), 3, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4897), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4901), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4895), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [58725] = 3, - ACTIONS(493), 1, + anon_sym_in, + anon_sym_BANGin, + [58428] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(3082), 1, anon_sym_LBRACK, - ACTIONS(3171), 42, + ACTIONS(3084), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243292,18 +246885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58776] = 4, - ACTIONS(493), 1, + [58479] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3116), 1, + ACTIONS(3327), 1, anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_DOT, - ACTIONS(3118), 41, + ACTIONS(3329), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -243341,12 +246933,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58829] = 3, - ACTIONS(493), 1, + [58530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3070), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2914), 12, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2912), 27, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_DOT_DOT, + [58585] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(3275), 1, anon_sym_LBRACK, - ACTIONS(2784), 42, + ACTIONS(3277), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243389,71 +247031,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58880] = 14, - ACTIONS(3), 1, + [58636] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(3070), 1, + anon_sym_LBRACK, + ACTIONS(3072), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4891), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(2246), 9, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2244), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58953] = 3, - ACTIONS(493), 1, + [58687] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(3078), 1, anon_sym_LBRACK, - ACTIONS(3030), 42, + ACTIONS(3080), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243496,43 +247127,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59004] = 3, - ACTIONS(493), 1, + [58738] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 1, - anon_sym_LBRACK, - ACTIONS(3038), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2752), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2748), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2746), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -243544,12 +247175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59055] = 3, - ACTIONS(493), 1, + anon_sym_DOT_DOT, + [58791] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3074), 1, anon_sym_LBRACK, - ACTIONS(3042), 42, + ACTIONS(3076), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243592,162 +247224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59106] = 30, - ACTIONS(3), 1, + [58842] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2052), 1, - anon_sym_DOT_DOT, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(3066), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, - anon_sym_BANGin, - ACTIONS(4921), 1, - anon_sym_AMP_AMP, - ACTIONS(4923), 1, - anon_sym_as, - ACTIONS(4925), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4927), 1, - anon_sym_DASH_DASH, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_or, - ACTIONS(4933), 1, - anon_sym_is, - ACTIONS(4935), 1, - anon_sym_BANGis, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(4899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2050), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(4893), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4897), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4901), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4895), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [59211] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2234), 1, - anon_sym_DOT_DOT, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, - anon_sym_BANGin, - ACTIONS(4921), 1, - anon_sym_AMP_AMP, - ACTIONS(4923), 1, - anon_sym_as, - ACTIONS(4925), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4927), 1, - anon_sym_DASH_DASH, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_or, - ACTIONS(4933), 1, - anon_sym_is, - ACTIONS(4935), 1, - anon_sym_BANGis, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(4899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2232), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(4893), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4897), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4901), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4895), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [59316] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3044), 1, - anon_sym_LBRACK, - ACTIONS(3046), 42, + ACTIONS(3068), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243790,12 +247272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59367] = 3, - ACTIONS(493), 1, + [58893] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3062), 1, anon_sym_LBRACK, - ACTIONS(3183), 42, + ACTIONS(3064), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243838,12 +247320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59418] = 3, - ACTIONS(493), 1, + [58944] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3331), 1, anon_sym_LBRACK, - ACTIONS(3078), 42, + ACTIONS(3333), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243886,71 +247368,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59469] = 14, - ACTIONS(3), 1, + [58995] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(3054), 1, + anon_sym_LBRACK, + ACTIONS(3056), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4891), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(2224), 9, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2222), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59542] = 3, - ACTIONS(493), 1, + [59046] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(3050), 1, anon_sym_LBRACK, - ACTIONS(2926), 42, + ACTIONS(3052), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243993,12 +247464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59593] = 3, - ACTIONS(493), 1, + [59097] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3291), 1, anon_sym_LBRACK, - ACTIONS(3175), 42, + ACTIONS(3293), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244041,12 +247512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59644] = 3, - ACTIONS(493), 1, + [59148] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(3046), 1, anon_sym_LBRACK, - ACTIONS(2798), 42, + ACTIONS(3048), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244089,12 +247560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59695] = 3, - ACTIONS(493), 1, + [59199] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3000), 1, + ACTIONS(3038), 1, anon_sym_LBRACK, - ACTIONS(3002), 42, + ACTIONS(3040), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244137,12 +247608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59746] = 3, - ACTIONS(493), 1, + [59250] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(2998), 1, anon_sym_LBRACK, - ACTIONS(2914), 42, + ACTIONS(3000), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244185,12 +247656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59797] = 3, - ACTIONS(493), 1, + [59301] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(2994), 1, anon_sym_LBRACK, - ACTIONS(2910), 42, + ACTIONS(2996), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244233,20 +247704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59848] = 3, - ACTIONS(493), 1, + [59352] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(3228), 1, anon_sym_LBRACK, - ACTIONS(2930), 42, + ACTIONS(3232), 1, + anon_sym_DOT, + ACTIONS(3703), 1, + anon_sym_COLON, + ACTIONS(3230), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, @@ -244281,12 +247754,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59899] = 3, - ACTIONS(493), 1, + [59407] = 23, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_DOT, + ACTIONS(3070), 1, + anon_sym_LBRACK, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3353), 1, + anon_sym_LPAREN, + ACTIONS(3355), 1, + anon_sym_fn, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_BANG, + ACTIONS(3365), 1, + anon_sym_LBRACK2, + ACTIONS(3367), 1, + anon_sym_AMP, + ACTIONS(3369), 1, + anon_sym_shared, + ACTIONS(3371), 1, + anon_sym_map_LBRACK, + ACTIONS(3373), 1, + anon_sym_chan, + ACTIONS(3375), 1, + anon_sym_thread, + ACTIONS(3377), 1, + anon_sym_atomic, + STATE(3451), 1, + sym_plain_type, + STATE(4452), 1, + sym_reference_expression, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3455), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(3072), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [59498] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2876), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(2878), 42, + ACTIONS(2952), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244329,12 +247870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59950] = 3, - ACTIONS(493), 1, + [59549] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2904), 1, + ACTIONS(2946), 1, anon_sym_LBRACK, - ACTIONS(2906), 42, + ACTIONS(2948), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244377,12 +247918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60001] = 3, - ACTIONS(493), 1, + [59600] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(3176), 1, anon_sym_LBRACK, - ACTIONS(2918), 42, + ACTIONS(3178), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244425,12 +247966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60052] = 3, - ACTIONS(493), 1, + [59651] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2900), 1, + ACTIONS(3347), 1, anon_sym_LBRACK, - ACTIONS(2902), 42, + ACTIONS(3349), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244473,88 +248014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60103] = 31, - ACTIONS(3), 1, + [59702] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(3042), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4937), 1, - anon_sym_RBRACE, - ACTIONS(4939), 1, - anon_sym_COLON, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(3789), 1, - sym___rcbr, - STATE(4183), 1, - sym_format_specifier, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4845), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4851), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [60210] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2936), 1, - anon_sym_LBRACK, - ACTIONS(2938), 42, + ACTIONS(3044), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244597,12 +248062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60261] = 3, - ACTIONS(493), 1, + [59753] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(3124), 1, anon_sym_LBRACK, - ACTIONS(2942), 42, + ACTIONS(5107), 1, + anon_sym_BANG, + ACTIONS(3126), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244628,7 +248095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -244645,12 +248111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60312] = 3, - ACTIONS(493), 1, + [59806] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(2894), 42, + ACTIONS(3253), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244693,12 +248159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60363] = 3, - ACTIONS(493), 1, + [59857] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2896), 1, + ACTIONS(3220), 1, anon_sym_LBRACK, - ACTIONS(2898), 42, + ACTIONS(3222), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244741,22 +248207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60414] = 5, - ACTIONS(493), 1, + [59908] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3116), 1, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_DOT, - ACTIONS(3585), 1, - anon_sym_COLON, - ACTIONS(3118), 40, + ACTIONS(3024), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, @@ -244791,12 +248255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60469] = 3, - ACTIONS(493), 1, + [59959] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(3212), 1, anon_sym_LBRACK, - ACTIONS(2946), 42, + ACTIONS(3214), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244839,43 +248303,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60520] = 3, - ACTIONS(493), 1, + [60010] = 21, + ACTIONS(495), 1, sym_comment, - ACTIONS(2888), 1, - anon_sym_LBRACK, - ACTIONS(2890), 42, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3353), 1, + anon_sym_LPAREN, + ACTIONS(3355), 1, + anon_sym_fn, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_BANG, + ACTIONS(3365), 1, + anon_sym_LBRACK2, + ACTIONS(3367), 1, + anon_sym_AMP, + ACTIONS(3369), 1, + anon_sym_shared, + ACTIONS(3371), 1, + anon_sym_map_LBRACK, + ACTIONS(3373), 1, + anon_sym_chan, + ACTIONS(3375), 1, + anon_sym_thread, + ACTIONS(3377), 1, + anon_sym_atomic, + STATE(3459), 1, + sym_plain_type, + STATE(4452), 1, + sym_reference_expression, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3455), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(623), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_AT_LBRACK, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [60097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2914), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2912), 28, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -244887,12 +248417,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60571] = 3, - ACTIONS(493), 1, + anon_sym_COLON_EQ, + [60150] = 21, + ACTIONS(495), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3353), 1, + anon_sym_LPAREN, + ACTIONS(3355), 1, + anon_sym_fn, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_BANG, + ACTIONS(3365), 1, + anon_sym_LBRACK2, + ACTIONS(3367), 1, + anon_sym_AMP, + ACTIONS(3369), 1, + anon_sym_shared, + ACTIONS(3371), 1, + anon_sym_map_LBRACK, + ACTIONS(3373), 1, + anon_sym_chan, + ACTIONS(3375), 1, + anon_sym_thread, + ACTIONS(3377), 1, + anon_sym_atomic, + STATE(3457), 1, + sym_plain_type, + STATE(4452), 1, + sym_reference_expression, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3455), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(585), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_AT_LBRACK, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [60237] = 21, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3353), 1, + anon_sym_LPAREN, + ACTIONS(3355), 1, + anon_sym_fn, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3361), 1, + anon_sym_QMARK, + ACTIONS(3363), 1, + anon_sym_BANG, + ACTIONS(3365), 1, + anon_sym_LBRACK2, + ACTIONS(3367), 1, + anon_sym_AMP, + ACTIONS(3369), 1, + anon_sym_shared, + ACTIONS(3371), 1, + anon_sym_map_LBRACK, + ACTIONS(3373), 1, + anon_sym_chan, + ACTIONS(3375), 1, + anon_sym_thread, + ACTIONS(3377), 1, + anon_sym_atomic, + STATE(3467), 1, + sym_plain_type, + STATE(4452), 1, + sym_reference_expression, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3455), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(615), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_AT_LBRACK, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [60324] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3130), 1, anon_sym_LBRACK, - ACTIONS(2886), 42, + ACTIONS(3132), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244935,88 +248598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60622] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4939), 1, - anon_sym_COLON, - ACTIONS(4941), 1, - anon_sym_RBRACE, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(3709), 1, - sym___rcbr, - STATE(4355), 1, - sym_format_specifier, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4845), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4851), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [60729] = 3, - ACTIONS(493), 1, + [60375] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(2950), 42, + ACTIONS(2914), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245059,12 +248646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60780] = 3, - ACTIONS(493), 1, + [60426] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3018), 1, anon_sym_LBRACK, - ACTIONS(2882), 42, + ACTIONS(3020), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245107,108 +248694,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60831] = 3, - ACTIONS(493), 1, + [60477] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(2848), 1, - anon_sym_LBRACK, - ACTIONS(2850), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4905), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4907), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, anon_sym_DASH_DASH, + ACTIONS(4921), 1, anon_sym_QMARK, + ACTIONS(4923), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4945), 1, anon_sym_is, + ACTIONS(4947), 1, anon_sym_BANGis, + ACTIONS(5005), 1, anon_sym_in, + ACTIONS(5007), 1, anon_sym_BANGin, - [60882] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_LBRACK, - ACTIONS(2874), 42, + ACTIONS(5009), 1, + anon_sym_AMP_AMP, + ACTIONS(5027), 1, + anon_sym_PIPE_PIPE, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3485), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5003), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4963), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60933] = 3, - ACTIONS(493), 1, + [60570] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(3142), 1, anon_sym_LBRACK, - ACTIONS(2866), 42, + ACTIONS(3144), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245251,12 +248811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60984] = 3, - ACTIONS(493), 1, + [60621] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(3146), 1, anon_sym_LBRACK, - ACTIONS(2764), 42, + ACTIONS(3148), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245299,60 +248859,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61035] = 3, - ACTIONS(493), 1, + [60672] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 1, - anon_sym_LBRACK, - ACTIONS(2966), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5047), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5051), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5063), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, + anon_sym_QMARK, + ACTIONS(5071), 1, + anon_sym_BANG, + ACTIONS(5073), 1, + anon_sym_LBRACK2, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, + anon_sym_POUND_LBRACK, + STATE(2813), 1, + sym_argument_list, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, + sym_type_parameters, + ACTIONS(2360), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2358), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61086] = 3, - ACTIONS(493), 1, + [60745] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(2954), 42, + ACTIONS(3245), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245395,12 +248966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61137] = 3, - ACTIONS(493), 1, + [60796] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3012), 1, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(3014), 42, + ACTIONS(3241), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245443,109 +249014,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61188] = 3, - ACTIONS(493), 1, + [60847] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(2970), 42, + ACTIONS(4917), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, + anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4931), 1, + anon_sym_or, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + ACTIONS(5005), 1, + anon_sym_in, + ACTIONS(5007), 1, + anon_sym_BANGin, + ACTIONS(5009), 1, + anon_sym_AMP_AMP, + ACTIONS(5027), 1, + anon_sym_PIPE_PIPE, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3493), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5003), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4963), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + [60940] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACK, + ACTIONS(4917), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, + anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4931), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4945), 1, anon_sym_is, + ACTIONS(4947), 1, anon_sym_BANGis, + ACTIONS(5005), 1, anon_sym_in, + ACTIONS(5007), 1, anon_sym_BANGin, - [61239] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2745), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2740), 13, + ACTIONS(5009), 1, + anon_sym_AMP_AMP, + ACTIONS(5027), 1, + anon_sym_PIPE_PIPE, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3489), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(5003), 6, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2738), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4963), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [61292] = 3, - ACTIONS(493), 1, + [61033] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(2740), 42, + ACTIONS(3269), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245588,12 +249200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61343] = 3, - ACTIONS(493), 1, + [61084] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3006), 1, anon_sym_LBRACK, - ACTIONS(3086), 42, + ACTIONS(3008), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245636,12 +249248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61394] = 3, - ACTIONS(493), 1, + [61135] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(2954), 1, anon_sym_LBRACK, - ACTIONS(3006), 42, + ACTIONS(2956), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245684,23 +249296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61445] = 4, - ACTIONS(493), 1, + [61186] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2992), 7, + ACTIONS(2976), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2994), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245733,22 +249344,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61498] = 3, - ACTIONS(493), 1, + [61237] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3116), 1, anon_sym_LBRACK, - ACTIONS(3010), 42, + ACTIONS(2750), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3118), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245781,12 +249393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61549] = 3, - ACTIONS(493), 1, + [61290] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(3271), 1, anon_sym_LBRACK, - ACTIONS(2842), 42, + ACTIONS(3273), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245829,12 +249441,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61600] = 3, - ACTIONS(493), 1, + [61341] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(2982), 1, anon_sym_LBRACK, - ACTIONS(3050), 42, + ACTIONS(2984), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245877,12 +249489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61651] = 3, - ACTIONS(493), 1, + [61392] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(3307), 1, anon_sym_LBRACK, - ACTIONS(3026), 42, + ACTIONS(3309), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245925,80 +249537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61702] = 23, - ACTIONS(493), 1, + [61443] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2740), 1, - anon_sym_DOT, - ACTIONS(2844), 1, + ACTIONS(2752), 1, anon_sym_LBRACK, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3207), 1, - anon_sym_LPAREN, - ACTIONS(3209), 1, - anon_sym_fn, - ACTIONS(3211), 1, - anon_sym_STAR, - ACTIONS(3213), 1, - anon_sym_struct, - ACTIONS(3215), 1, - anon_sym_QMARK, - ACTIONS(3217), 1, - anon_sym_BANG, - ACTIONS(3219), 1, - anon_sym_LBRACK2, - ACTIONS(3221), 1, - anon_sym_AMP, - ACTIONS(3223), 1, - anon_sym_shared, - ACTIONS(3225), 1, - anon_sym_map_LBRACK, - ACTIONS(3227), 1, - anon_sym_chan, - ACTIONS(3229), 1, - anon_sym_thread, - ACTIONS(3231), 1, - anon_sym_atomic, - STATE(3421), 1, - sym_plain_type, - STATE(4425), 1, - sym_reference_expression, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3431), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2846), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [61793] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3032), 1, - anon_sym_LBRACK, - ACTIONS(3034), 42, + ACTIONS(2750), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246041,12 +249585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61844] = 3, - ACTIONS(493), 1, + [61494] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3299), 1, anon_sym_LBRACK, - ACTIONS(3054), 42, + ACTIONS(3301), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246089,43 +249633,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61895] = 3, - ACTIONS(493), 1, + [61545] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(4905), 1, + anon_sym_as, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(3106), 42, + ACTIONS(4917), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4919), 1, + anon_sym_DASH_DASH, + ACTIONS(4921), 1, + anon_sym_QMARK, + ACTIONS(4923), 1, + anon_sym_BANG, + ACTIONS(4931), 1, + anon_sym_or, + ACTIONS(4945), 1, + anon_sym_is, + ACTIONS(4947), 1, + anon_sym_BANGis, + ACTIONS(5005), 1, + anon_sym_in, + ACTIONS(5007), 1, + anon_sym_BANGin, + ACTIONS(5009), 1, + anon_sym_AMP_AMP, + ACTIONS(5027), 1, + anon_sym_PIPE_PIPE, + STATE(2589), 1, + sym_or_block, + STATE(2622), 1, + sym_argument_list, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4903), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4925), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3479), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4965), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5003), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4963), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [61638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3118), 12, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3116), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -246137,12 +249750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61946] = 3, - ACTIONS(493), 1, + anon_sym_DOT_DOT, + [61691] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(3137), 42, + ACTIONS(3249), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246185,12 +249799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61997] = 3, - ACTIONS(493), 1, + [61742] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3060), 1, + ACTIONS(2938), 1, anon_sym_LBRACK, - ACTIONS(3062), 42, + ACTIONS(2940), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246233,23 +249847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62048] = 4, - ACTIONS(493), 1, + [61793] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3058), 1, anon_sym_LBRACK, - ACTIONS(2982), 7, + ACTIONS(3060), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2984), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -246282,219 +249895,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62101] = 24, - ACTIONS(493), 1, + [61844] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, - anon_sym_as, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, + ACTIONS(2958), 1, anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, - anon_sym_DASH_DASH, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4777), 1, - anon_sym_is, - ACTIONS(4779), 1, - anon_sym_BANGis, - ACTIONS(4795), 1, - anon_sym_in, - ACTIONS(4797), 1, - anon_sym_BANGin, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_PIPE_PIPE, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3347), 4, + ACTIONS(2960), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4789), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4793), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [62194] = 24, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4737), 1, - anon_sym_as, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4749), 1, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4755), 1, anon_sym_BANG, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4777), 1, - anon_sym_is, - ACTIONS(4779), 1, - anon_sym_BANGis, - ACTIONS(4795), 1, - anon_sym_in, - ACTIONS(4797), 1, - anon_sym_BANGin, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_PIPE_PIPE, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3339), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(4789), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4793), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [62287] = 24, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4737), 1, - anon_sym_as, - ACTIONS(4739), 1, - anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4749), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, - anon_sym_DASH_DASH, - ACTIONS(4753), 1, - anon_sym_QMARK, - ACTIONS(4755), 1, - anon_sym_BANG, - ACTIONS(4763), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4777), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4779), 1, anon_sym_BANGis, - ACTIONS(4795), 1, anon_sym_in, - ACTIONS(4797), 1, anon_sym_BANGin, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_PIPE_PIPE, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3343), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(4789), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4793), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [62380] = 3, - ACTIONS(493), 1, + [61895] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(3287), 1, anon_sym_LBRACK, - ACTIONS(3070), 42, + ACTIONS(3289), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246537,81 +249991,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62431] = 24, - ACTIONS(493), 1, + [61946] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4737), 1, + ACTIONS(2966), 1, + anon_sym_LBRACK, + ACTIONS(2968), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4739), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4747), 1, - anon_sym_LBRACK, - ACTIONS(4749), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4751), 1, anon_sym_DASH_DASH, - ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4755), 1, anon_sym_BANG, - ACTIONS(4763), 1, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4777), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4779), 1, anon_sym_BANGis, - ACTIONS(4795), 1, anon_sym_in, - ACTIONS(4797), 1, anon_sym_BANGin, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_PIPE_PIPE, - STATE(2489), 1, - sym_or_block, - STATE(2553), 1, - sym_argument_list, - STATE(4146), 1, - sym_type_parameters, - ACTIONS(4735), 2, + [61997] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2916), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4757), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3331), 4, + ACTIONS(3070), 1, + anon_sym_LBRACK, + ACTIONS(3072), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4789), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4793), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4791), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [62524] = 3, - ACTIONS(493), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [62050] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(3030), 1, anon_sym_LBRACK, - ACTIONS(2834), 42, + ACTIONS(3032), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246654,12 +250136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62575] = 3, - ACTIONS(493), 1, + [62101] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3112), 1, + ACTIONS(2942), 1, anon_sym_LBRACK, - ACTIONS(3114), 42, + ACTIONS(2944), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246702,58 +250184,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62626] = 14, + [62152] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4913), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, + ACTIONS(5045), 1, + anon_sym_CARET, + STATE(2398), 1, sym_or_block, - STATE(4162), 1, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2162), 9, + ACTIONS(2346), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5043), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2160), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2344), 18, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -246761,12 +250246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62699] = 3, - ACTIONS(493), 1, + anon_sym_DOT_DOT, + [62233] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(2970), 1, anon_sym_LBRACK, - ACTIONS(3133), 42, + ACTIONS(2972), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246809,12 +250295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62750] = 3, - ACTIONS(493), 1, + [62284] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(2986), 1, anon_sym_LBRACK, - ACTIONS(3151), 42, + ACTIONS(2988), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246857,12 +250343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62801] = 3, - ACTIONS(493), 1, + [62335] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2990), 1, anon_sym_LBRACK, - ACTIONS(2830), 42, + ACTIONS(2992), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246905,18 +250391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62852] = 4, - ACTIONS(493), 1, + [62386] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2742), 1, - anon_sym_DOT, - ACTIONS(2844), 1, + ACTIONS(3014), 1, anon_sym_LBRACK, - ACTIONS(2846), 41, + ACTIONS(3016), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -246954,12 +250439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62905] = 3, - ACTIONS(493), 1, + [62437] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3153), 1, + ACTIONS(3086), 1, anon_sym_LBRACK, - ACTIONS(3155), 42, + ACTIONS(3088), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247002,108 +250487,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62956] = 3, - ACTIONS(493), 1, + [62488] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK, - ACTIONS(3094), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4877), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4879), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5099), 1, + anon_sym_AMP_AMP, + ACTIONS(5103), 1, + anon_sym_in, + ACTIONS(5105), 1, + anon_sym_BANGin, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(5095), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5043), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(2358), 11, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63007] = 3, - ACTIONS(493), 1, + anon_sym_DOT_DOT, + [62577] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 1, - anon_sym_LBRACK, - ACTIONS(3159), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4877), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4879), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5103), 1, + anon_sym_in, + ACTIONS(5105), 1, + anon_sym_BANGin, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(5095), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5043), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2358), 12, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63058] = 3, - ACTIONS(493), 1, + anon_sym_DOT_DOT, + [62664] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(3090), 1, anon_sym_LBRACK, - ACTIONS(3018), 42, + ACTIONS(3092), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247146,60 +250668,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63109] = 3, - ACTIONS(493), 1, + [62715] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, - anon_sym_LBRACK, - ACTIONS(3167), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4877), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4879), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5045), 1, + anon_sym_CARET, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(2360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5043), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5041), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 18, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63160] = 3, - ACTIONS(493), 1, + anon_sym_DOT_DOT, + [62796] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2820), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(2822), 42, + ACTIONS(3162), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247242,12 +250779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63211] = 3, - ACTIONS(493), 1, + [62847] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3113), 1, anon_sym_LBRACK, - ACTIONS(3179), 42, + ACTIONS(3110), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247290,23 +250827,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63262] = 4, - ACTIONS(493), 1, + [62898] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(3094), 1, anon_sym_LBRACK, - ACTIONS(2784), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2694), 40, + ACTIONS(3096), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -247339,12 +250875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63315] = 3, - ACTIONS(493), 1, + [62949] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3098), 1, anon_sym_LBRACK, - ACTIONS(3082), 42, + ACTIONS(3100), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247387,12 +250923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63366] = 3, - ACTIONS(493), 1, + [63000] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3343), 1, anon_sym_LBRACK, - ACTIONS(3203), 42, + ACTIONS(3345), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247435,12 +250971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63417] = 3, - ACTIONS(493), 1, + [63051] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3339), 1, anon_sym_LBRACK, - ACTIONS(3199), 42, + ACTIONS(3341), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247483,12 +251019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63468] = 3, - ACTIONS(493), 1, + [63102] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3323), 1, anon_sym_LBRACK, - ACTIONS(3191), 42, + ACTIONS(3325), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247531,60 +251067,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63519] = 3, - ACTIONS(493), 1, + [63153] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 1, - anon_sym_LBRACK, - ACTIONS(3187), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4877), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4879), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(5043), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2360), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 19, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63570] = 3, - ACTIONS(493), 1, + anon_sym_DOT_DOT, + [63230] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(3319), 1, anon_sym_LBRACK, - ACTIONS(2806), 42, + ACTIONS(3321), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247627,12 +251176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63621] = 3, - ACTIONS(493), 1, + [63281] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3168), 1, anon_sym_LBRACK, - ACTIONS(3022), 42, + ACTIONS(3170), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247675,12 +251224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63672] = 3, - ACTIONS(493), 1, + [63332] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(3303), 1, anon_sym_LBRACK, - ACTIONS(2794), 42, + ACTIONS(3305), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247723,12 +251272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63723] = 3, - ACTIONS(493), 1, + [63383] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3034), 1, anon_sym_LBRACK, - ACTIONS(3125), 42, + ACTIONS(3036), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247771,12 +251320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63774] = 3, - ACTIONS(493), 1, + [63434] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(3102), 1, anon_sym_LBRACK, - ACTIONS(2974), 42, + ACTIONS(3104), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247819,12 +251368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63825] = 3, - ACTIONS(493), 1, + [63485] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(3216), 1, anon_sym_LBRACK, - ACTIONS(2846), 42, + ACTIONS(3218), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247867,12 +251416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63876] = 3, - ACTIONS(493), 1, + [63536] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3224), 1, anon_sym_LBRACK, - ACTIONS(3129), 42, + ACTIONS(3226), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247915,12 +251464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63927] = 3, - ACTIONS(493), 1, + [63587] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2960), 1, + ACTIONS(3196), 1, anon_sym_LBRACK, - ACTIONS(2962), 42, + ACTIONS(3198), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247963,12 +251512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63978] = 3, - ACTIONS(493), 1, + [63638] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(2984), 42, + ACTIONS(2890), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248011,12 +251560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64029] = 3, - ACTIONS(493), 1, + [63689] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(2962), 1, anon_sym_LBRACK, - ACTIONS(2994), 42, + ACTIONS(2964), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248059,12 +251608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64080] = 3, - ACTIONS(493), 1, + [63740] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2932), 1, + ACTIONS(3134), 1, anon_sym_LBRACK, - ACTIONS(2934), 42, + ACTIONS(3136), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248107,22 +251656,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64131] = 3, - ACTIONS(493), 1, + [63791] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(3113), 1, anon_sym_LBRACK, - ACTIONS(2870), 42, + ACTIONS(3108), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(3110), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -248155,15 +251705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64182] = 4, - ACTIONS(493), 1, + [63844] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2784), 2, + ACTIONS(2750), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2838), 40, + ACTIONS(2748), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248204,12 +251754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64235] = 3, - ACTIONS(493), 1, + [63897] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3120), 1, anon_sym_LBRACK, - ACTIONS(3195), 42, + ACTIONS(3122), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248252,12 +251802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64286] = 3, - ACTIONS(493), 1, + [63948] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(3002), 1, anon_sym_LBRACK, - ACTIONS(2818), 42, + ACTIONS(3004), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248300,22 +251850,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64337] = 3, - ACTIONS(493), 1, + [63999] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(3102), 42, + ACTIONS(3160), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(3162), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -248348,283 +251899,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64388] = 5, + [64052] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2990), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2994), 12, + ACTIONS(5047), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2997), 24, + ACTIONS(5049), 1, anon_sym_as, + ACTIONS(5051), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5063), 1, anon_sym_LBRACK, + ACTIONS(5065), 1, anon_sym_PLUS_PLUS, + ACTIONS(5067), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5069), 1, + anon_sym_QMARK, + ACTIONS(5071), 1, + anon_sym_BANG, + ACTIONS(5073), 1, + anon_sym_LBRACK2, + ACTIONS(5081), 1, anon_sym_or, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, + ACTIONS(5087), 1, anon_sym_is, + ACTIONS(5089), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64442] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4821), 1, + ACTIONS(5109), 1, + anon_sym_LBRACE, + ACTIONS(5121), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5123), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(5125), 1, anon_sym_AMP_AMP, - ACTIONS(4833), 1, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5131), 1, anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + ACTIONS(5133), 1, + anon_sym_DOT_DOT, + STATE(2813), 1, sym_argument_list, - STATE(4401), 1, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(5117), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(5119), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [64528] = 5, + [64158] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 1, - anon_sym_DOT_DOT, - ACTIONS(2980), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2984), 12, + ACTIONS(5047), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2987), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64582] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4949), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + STATE(2813), 1, sym_argument_list, - STATE(4401), 1, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, sym_type_parameters, - ACTIONS(2144), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4947), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 5, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [64660] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4949), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2156), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 3, + ACTIONS(2360), 6, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2154), 17, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(2358), 17, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -248632,225 +252034,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [64738] = 30, + [64234] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, - anon_sym_DOT_DOT, - ACTIONS(4889), 1, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4913), 1, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4923), 1, - anon_sym_as, - ACTIONS(4925), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4927), 1, - anon_sym_DASH_DASH, - ACTIONS(4931), 1, - anon_sym_or, - ACTIONS(4933), 1, - anon_sym_is, - ACTIONS(4935), 1, - anon_sym_BANGis, - ACTIONS(4961), 1, + ACTIONS(5123), 1, anon_sym_CARET, - ACTIONS(4963), 1, - anon_sym_AMP_AMP, - ACTIONS(4965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4967), 1, - anon_sym_in, - ACTIONS(4969), 1, - anon_sym_BANGin, - STATE(2838), 1, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(2050), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(4957), 2, + ACTIONS(2360), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(4951), 3, + anon_sym_DOT_DOT, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4955), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4959), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4953), 5, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64842] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4949), 1, - anon_sym_CARET, - ACTIONS(4975), 1, - anon_sym_AMP_AMP, - ACTIONS(4977), 1, - anon_sym_in, - ACTIONS(4979), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4971), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4943), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4947), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4973), 4, + ACTIONS(2358), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4945), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 10, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [64928] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4923), 1, - anon_sym_as, - ACTIONS(4925), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4927), 1, - anon_sym_DASH_DASH, - ACTIONS(4931), 1, - anon_sym_or, - ACTIONS(4933), 1, - anon_sym_is, - ACTIONS(4935), 1, - anon_sym_BANGis, - ACTIONS(4961), 1, - anon_sym_CARET, - ACTIONS(4963), 1, - anon_sym_AMP_AMP, - ACTIONS(4965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4967), 1, anon_sym_in, - ACTIONS(4969), 1, anon_sym_BANGin, - ACTIONS(4981), 1, - anon_sym_LBRACE, - ACTIONS(4983), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4985), 1, - anon_sym_DOT_DOT, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(4957), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4951), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4955), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4959), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4953), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65034] = 3, + [64314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 13, + ACTIONS(2798), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248864,7 +252113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2692), 29, + ACTIONS(2796), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -248894,10 +252143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65084] = 3, + [64364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 13, + ACTIONS(2748), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248911,7 +252160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2734), 29, + ACTIONS(2746), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -248941,442 +252190,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65134] = 20, + [64414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4949), 1, - anon_sym_CARET, - ACTIONS(4977), 1, - anon_sym_in, - ACTIONS(4979), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4971), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4943), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4947), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4973), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4945), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 11, + ACTIONS(3160), 1, + anon_sym_DOT_DOT, + ACTIONS(3158), 5, anon_sym_SEMI, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, + anon_sym_DOT_DOT_DOT, anon_sym_COLON_EQ, - [65218] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4949), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4689), 2, + ACTIONS(3162), 12, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 5, + ACTIONS(3165), 24, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [65296] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4961), 1, anon_sym_CARET, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(2162), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4951), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4955), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4953), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65376] = 16, + [64468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(3108), 1, + anon_sym_DOT_DOT, + ACTIONS(3106), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(3110), 12, anon_sym_DOT, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(4955), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4953), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 6, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2160), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65452] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4947), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2162), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4945), 5, + ACTIONS(3113), 24, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 18, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [65526] = 30, + [64522] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, + ACTIONS(2220), 1, + anon_sym_DOT_DOT, + ACTIONS(5047), 1, + anon_sym_DOT, + ACTIONS(5049), 1, + anon_sym_as, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(5065), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5067), 1, + anon_sym_DASH_DASH, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(5081), 1, + anon_sym_or, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(5087), 1, + anon_sym_is, + ACTIONS(5089), 1, + anon_sym_BANGis, + ACTIONS(5123), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(5125), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(5127), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(5129), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5131), 1, anon_sym_BANGin, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + STATE(2813), 1, sym_argument_list, - STATE(3905), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(2218), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5117), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(5119), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65630] = 22, + [64626] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(2360), 1, anon_sym_DOT_DOT, - ACTIONS(4889), 1, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4913), 1, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4961), 1, + ACTIONS(5123), 1, anon_sym_CARET, - ACTIONS(4967), 1, + ACTIONS(5129), 1, anon_sym_in, - ACTIONS(4969), 1, + ACTIONS(5131), 1, anon_sym_BANGin, - STATE(2838), 1, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4957), 2, + ACTIONS(5117), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4951), 3, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4955), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4959), 4, + ACTIONS(5119), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4953), 5, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 10, + ACTIONS(2358), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, @@ -249387,118 +252428,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [65718] = 17, + [64714] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(2360), 1, + anon_sym_DOT_DOT, + ACTIONS(5047), 1, + anon_sym_DOT, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4821), 1, + ACTIONS(5123), 1, anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_in, + ACTIONS(5131), 1, + anon_sym_BANGin, + STATE(2813), 1, sym_argument_list, - STATE(4401), 1, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, sym_type_parameters, - ACTIONS(2144), 2, + ACTIONS(5117), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4807), 3, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4809), 5, + ACTIONS(5119), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 17, + ACTIONS(2358), 9, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [65796] = 17, + [64804] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(5047), 1, + anon_sym_DOT, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(5083), 1, + anon_sym_QMARK_DOT, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4821), 1, + ACTIONS(5123), 1, anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + STATE(2813), 1, sym_argument_list, - STATE(4401), 1, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, sym_type_parameters, - ACTIONS(2156), 2, + ACTIONS(2346), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4807), 3, + anon_sym_DOT_DOT, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4809), 5, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2154), 17, + ACTIONS(2344), 16, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -249508,82 +252557,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [65874] = 23, + [64884] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, - anon_sym_DOT_DOT, - ACTIONS(4889), 1, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4913), 1, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4961), 1, + ACTIONS(5123), 1, anon_sym_CARET, - ACTIONS(4963), 1, - anon_sym_AMP_AMP, - ACTIONS(4967), 1, - anon_sym_in, - ACTIONS(4969), 1, - anon_sym_BANGin, - STATE(2838), 1, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4957), 2, + ACTIONS(2342), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(4951), 3, + anon_sym_DOT_DOT, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4955), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4959), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4953), 5, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 9, + ACTIONS(2340), 16, anon_sym_as, anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [65964] = 5, + anon_sym_in, + anon_sym_BANGin, + [64964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 1, + ACTIONS(5135), 1, anon_sym_else, - STATE(2698), 1, + STATE(2707), 1, sym_else_branch, - ACTIONS(2398), 13, + ACTIONS(2548), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249597,7 +252640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2396), 27, + ACTIONS(2546), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -249625,76 +252668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66018] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4903), 1, - anon_sym_LBRACK, - ACTIONS(4905), 1, - anon_sym_QMARK, - ACTIONS(4907), 1, - anon_sym_BANG, - ACTIONS(4909), 1, - anon_sym_LBRACK2, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4961), 1, - anon_sym_CARET, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, - sym_or_block, - STATE(4162), 1, - sym_type_parameters, - ACTIONS(2156), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4951), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4955), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4953), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2154), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [66098] = 5, + [65018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 1, + ACTIONS(5135), 1, anon_sym_else, - STATE(2697), 1, + STATE(2706), 1, sym_else_branch, - ACTIONS(2392), 13, + ACTIONS(2558), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249708,7 +252689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2390), 27, + ACTIONS(2556), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -249736,62 +252717,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66152] = 20, + [65072] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4821), 1, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(5149), 1, + anon_sym_AMP_AMP, + ACTIONS(5151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5153), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5155), 1, anon_sym_BANGin, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(5143), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(2232), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(5145), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 11, + [65172] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5147), 1, + anon_sym_CARET, + ACTIONS(5149), 1, + anon_sym_AMP_AMP, + ACTIONS(5151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5153), 1, + anon_sym_in, + ACTIONS(5155), 1, + anon_sym_BANGin, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5143), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2218), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5137), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5141), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5145), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5139), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65272] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5147), 1, + anon_sym_CARET, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(2342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5137), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5141), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5139), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2340), 17, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -249799,259 +252919,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_COLON_EQ, - [66236] = 28, + [65350] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(3379), 1, + anon_sym_SEMI, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4949), 1, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(4975), 1, + ACTIONS(5149), 1, anon_sym_AMP_AMP, - ACTIONS(4977), 1, + ACTIONS(5151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5153), 1, anon_sym_in, - ACTIONS(4979), 1, + ACTIONS(5155), 1, anon_sym_BANGin, - ACTIONS(4991), 1, - anon_sym_PIPE_PIPE, - STATE(2325), 1, + ACTIONS(5157), 1, + anon_sym_COMMA, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4065), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4971), 2, + ACTIONS(5143), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2232), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4943), 3, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4973), 4, + ACTIONS(5145), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4945), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66336] = 28, + [65454] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(3379), 1, + anon_sym_LBRACE, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4949), 1, - anon_sym_CARET, - ACTIONS(4975), 1, - anon_sym_AMP_AMP, - ACTIONS(4977), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4979), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4991), 1, - anon_sym_PIPE_PIPE, - STATE(2325), 1, + ACTIONS(5159), 1, + anon_sym_COMMA, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(3963), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4971), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2050), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4943), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4973), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4945), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66436] = 18, + [65558] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(2234), 1, + anon_sym_DOT_DOT, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(5049), 1, + anon_sym_as, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(5065), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5067), 1, + anon_sym_DASH_DASH, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_or, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4961), 1, + ACTIONS(5087), 1, + anon_sym_is, + ACTIONS(5089), 1, + anon_sym_BANGis, + ACTIONS(5123), 1, anon_sym_CARET, - STATE(2838), 1, + ACTIONS(5125), 1, + anon_sym_AMP_AMP, + ACTIONS(5127), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5129), 1, + anon_sym_in, + ACTIONS(5131), 1, + anon_sym_BANGin, + STATE(2813), 1, sym_argument_list, - STATE(2842), 1, + STATE(2822), 1, sym_or_block, - STATE(4162), 1, + STATE(4255), 1, sym_type_parameters, - ACTIONS(2144), 3, + ACTIONS(2232), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5117), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4951), 3, + ACTIONS(5111), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4955), 3, + ACTIONS(5115), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4953), 5, + ACTIONS(5119), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5113), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [66516] = 17, + [65662] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4821), 1, + ACTIONS(5147), 1, anon_sym_CARET, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2162), 2, + ACTIONS(2346), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4807), 3, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4809), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 17, + ACTIONS(2344), 17, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -250067,47 +253205,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [66594] = 15, + [65740] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2162), 5, + ACTIONS(2360), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 18, + ACTIONS(2358), 18, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -250126,1629 +253264,1343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [66668] = 28, + [65814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(5149), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(5153), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5155), 1, anon_sym_BANGin, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(5143), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2232), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4807), 3, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(5145), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66768] = 28, + ACTIONS(2358), 10, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [65900] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4949), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4975), 1, - anon_sym_AMP_AMP, - ACTIONS(4977), 1, - anon_sym_in, - ACTIONS(4979), 1, - anon_sym_BANGin, - ACTIONS(4991), 1, - anon_sym_PIPE_PIPE, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4971), 2, + ACTIONS(2360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3309), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4943), 3, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4973), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4945), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66868] = 28, + ACTIONS(2358), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [65978] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, - anon_sym_AMP_AMP, - ACTIONS(4825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2050), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4807), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66968] = 30, + ACTIONS(2358), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [66062] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_SEMI, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4949), 1, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(4975), 1, - anon_sym_AMP_AMP, - ACTIONS(4977), 1, + ACTIONS(5153), 1, anon_sym_in, - ACTIONS(4979), 1, + ACTIONS(5155), 1, anon_sym_BANGin, - ACTIONS(4991), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4993), 1, - anon_sym_COMMA, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4003), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4971), 2, + ACTIONS(5143), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4943), 3, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4973), 4, + ACTIONS(5145), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4945), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67072] = 30, + ACTIONS(2358), 11, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [66146] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, - anon_sym_DOT_DOT, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4923), 1, - anon_sym_as, - ACTIONS(4925), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4927), 1, - anon_sym_DASH_DASH, - ACTIONS(4931), 1, - anon_sym_or, - ACTIONS(4933), 1, - anon_sym_is, - ACTIONS(4935), 1, - anon_sym_BANGis, - ACTIONS(4961), 1, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(4963), 1, - anon_sym_AMP_AMP, - ACTIONS(4965), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4967), 1, - anon_sym_in, - ACTIONS(4969), 1, - anon_sym_BANGin, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, + STATE(2398), 1, sym_or_block, - STATE(4162), 1, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2232), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(4957), 2, + ACTIONS(2360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4951), 3, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4955), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4959), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4953), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67176] = 29, + ACTIONS(2358), 17, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [66224] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4522), 1, - anon_sym_AMP_AMP, - ACTIONS(4524), 1, - anon_sym_in, - ACTIONS(4526), 1, - anon_sym_BANGin, - ACTIONS(4530), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4532), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4534), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4536), 1, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4538), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4540), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4542), 1, - anon_sym_BANGis, ACTIONS(4997), 1, - anon_sym_COLON, + anon_sym_BANGis, ACTIONS(4999), 1, - anon_sym_CARET, + anon_sym_in, ACTIONS(5001), 1, - anon_sym_LT_DASH, - STATE(2085), 1, - sym_argument_list, - STATE(2086), 1, + anon_sym_BANGin, + STATE(2398), 1, sym_or_block, - STATE(4280), 1, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4518), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4514), 3, + ACTIONS(2232), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4516), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4520), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4995), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67277] = 30, + [66324] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_DOT, - ACTIONS(4891), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4903), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4905), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4907), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4909), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4911), 1, - anon_sym_CARET, - ACTIONS(4913), 1, - anon_sym_QMARK_DOT, - ACTIONS(4915), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, - anon_sym_BANGin, - ACTIONS(4921), 1, - anon_sym_AMP_AMP, - ACTIONS(4923), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4925), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4927), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4929), 1, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4933), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4935), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5003), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5005), 1, - anon_sym_DOT_DOT, - STATE(2838), 1, - sym_argument_list, - STATE(2842), 1, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + STATE(2398), 1, sym_or_block, - STATE(4162), 1, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4899), 2, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4893), 3, + ACTIONS(2218), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4897), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4901), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4895), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67380] = 6, + [66424] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, - anon_sym_LBRACE, - ACTIONS(5009), 1, - anon_sym_COMMA, - STATE(3943), 1, - aux_sym_match_expression_list_repeat1, - ACTIONS(2794), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5141), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2360), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2792), 25, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 18, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67435] = 30, + anon_sym_COLON_EQ, + [66498] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5001), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5011), 1, - anon_sym_RBRACK, - ACTIONS(5013), 1, - anon_sym_DOT_DOT, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67538] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(2358), 10, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(5025), 1, - anon_sym_QMARK, - ACTIONS(5027), 1, - anon_sym_CARET, - ACTIONS(5029), 1, - anon_sym_AMP_AMP, - ACTIONS(5031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, - anon_sym_in, - ACTIONS(5035), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(2656), 1, - sym_block, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5015), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5019), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67639] = 30, + anon_sym_COLON_EQ, + [66584] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, - anon_sym_DOT_DOT, - ACTIONS(5037), 1, - anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(2342), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67742] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(2340), 17, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, - anon_sym_CARET, - ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4813), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5039), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4807), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4811), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4815), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4809), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67841] = 30, + anon_sym_COLON_EQ, + [66662] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, - anon_sym_DOT_DOT, - ACTIONS(5041), 1, - anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(2346), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67944] = 30, + ACTIONS(2344), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [66740] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5149), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5153), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5155), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, - anon_sym_DOT_DOT, - ACTIONS(5043), 1, - anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5143), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(3461), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5145), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68047] = 30, + [66840] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(5047), 1, anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(5049), 1, + anon_sym_as, + ACTIONS(5051), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(5063), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(5065), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5067), 1, + anon_sym_DASH_DASH, + ACTIONS(5069), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(5071), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(5073), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(5075), 1, + anon_sym_CARET, + ACTIONS(5077), 1, + anon_sym_AMP_AMP, + ACTIONS(5079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5081), 1, + anon_sym_or, + ACTIONS(5083), 1, anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(5085), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(5087), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(5089), 1, anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5091), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5093), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, + ACTIONS(5161), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5163), 1, anon_sym_DOT_DOT, - ACTIONS(5045), 1, - anon_sym_RBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + STATE(2813), 1, sym_argument_list, - STATE(4401), 1, + STATE(2822), 1, + sym_or_block, + STATE(4255), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(5059), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5053), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5057), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5061), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5055), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68150] = 29, + [66943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4879), 1, + ACTIONS(3070), 1, anon_sym_LBRACE, - ACTIONS(5027), 1, - anon_sym_CARET, - ACTIONS(5029), 1, - anon_sym_AMP_AMP, - ACTIONS(5031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, - anon_sym_in, - ACTIONS(5035), 1, - anon_sym_BANGin, - ACTIONS(5047), 1, - anon_sym_QMARK, - STATE(1787), 1, - sym_block, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(2914), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(2912), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68251] = 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [66996] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4881), 1, - anon_sym_LBRACE, - ACTIONS(5027), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5049), 1, - anon_sym_QMARK, - STATE(2325), 1, + ACTIONS(5165), 1, + anon_sym_RBRACK, + ACTIONS(5167), 1, + anon_sym_DOT_DOT, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(2438), 1, - sym_block, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68352] = 28, + [67099] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, - anon_sym_CARET, - ACTIONS(4823), 1, - anon_sym_AMP_AMP, - ACTIONS(4825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(5169), 1, + anon_sym_LBRACE, + ACTIONS(5181), 1, + anon_sym_QMARK, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - STATE(2325), 1, + STATE(1302), 1, + sym_block, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(3309), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4811), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4815), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4809), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68451] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2745), 1, - anon_sym_LBRACK, - ACTIONS(2844), 1, - anon_sym_LBRACE, - ACTIONS(2740), 11, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5175), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [68504] = 29, + [67200] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5035), 1, + anon_sym_LBRACE, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5051), 1, - anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(5193), 1, anon_sym_QMARK, - STATE(1304), 1, + STATE(1964), 1, sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68605] = 29, + [67301] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5055), 1, - anon_sym_LBRACE, - ACTIONS(5057), 1, - anon_sym_QMARK, - STATE(998), 1, - sym_block, - STATE(2325), 1, + ACTIONS(5167), 1, + anon_sym_DOT_DOT, + ACTIONS(5195), 1, + anon_sym_RBRACK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68706] = 29, + [67404] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4869), 1, - anon_sym_LBRACE, - ACTIONS(5027), 1, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5149), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5151), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5153), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5155), 1, anon_sym_BANGin, - ACTIONS(5059), 1, - anon_sym_QMARK, - STATE(2325), 1, + ACTIONS(5197), 1, + anon_sym_is, + ACTIONS(5199), 1, + anon_sym_BANGis, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(2884), 1, - sym_block, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(2268), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5143), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5145), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68807] = 29, + [67503] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5061), 1, + ACTIONS(5201), 1, anon_sym_QMARK, - STATE(1675), 1, + STATE(1693), 1, sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68908] = 4, + [67604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, - anon_sym_DOLLARelse, - ACTIONS(2758), 13, + STATE(2751), 1, + sym_type_parameters, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251762,7 +254614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2756), 27, + ACTIONS(2888), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251790,422 +254642,638 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68959] = 29, + [67655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_LBRACE, + ACTIONS(5205), 1, + anon_sym_COMMA, + STATE(3945), 1, + aux_sym_match_expression_list_repeat1, + ACTIONS(3218), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3216), 25, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [67710] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5065), 1, + ACTIONS(5207), 1, anon_sym_LBRACE, - ACTIONS(5067), 1, + ACTIONS(5209), 1, anon_sym_QMARK, - STATE(1165), 1, + STATE(1187), 1, sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69060] = 30, + [67811] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, + ACTIONS(5167), 1, anon_sym_DOT_DOT, - ACTIONS(5069), 1, + ACTIONS(5211), 1, anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69163] = 28, + [67914] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4949), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4977), 1, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(4999), 1, anon_sym_in, - ACTIONS(4979), 1, + ACTIONS(5001), 1, anon_sym_BANGin, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(3461), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4979), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4973), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4977), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4981), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4975), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [68013] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(5071), 1, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + ACTIONS(5213), 1, anon_sym_is, - ACTIONS(5073), 1, + ACTIONS(5215), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2170), 2, - anon_sym_SEMI, + ACTIONS(2268), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4971), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4943), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4973), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4945), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69262] = 29, + [68112] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5075), 1, + ACTIONS(5217), 1, anon_sym_LBRACE, - ACTIONS(5077), 1, + ACTIONS(5219), 1, anon_sym_QMARK, - STATE(458), 1, + STATE(523), 1, sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69363] = 30, + [68213] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, + ACTIONS(5167), 1, anon_sym_DOT_DOT, - ACTIONS(5079), 1, + ACTIONS(5221), 1, anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69466] = 6, + [68316] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5083), 1, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(5081), 2, - anon_sym_SEMI, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5045), 1, + anon_sym_CARET, + ACTIONS(5099), 1, + anon_sym_AMP_AMP, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, + anon_sym_in, + ACTIONS(5105), 1, + anon_sym_BANGin, + ACTIONS(5167), 1, + anon_sym_DOT_DOT, + ACTIONS(5223), 1, anon_sym_RBRACK, - ACTIONS(3118), 10, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(5095), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5043), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, + [68419] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, + ACTIONS(5191), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - [69521] = 4, + ACTIONS(5225), 1, + anon_sym_LBRACE, + ACTIONS(5227), 1, + anon_sym_QMARK, + STATE(2199), 1, + sym_block, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5175), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [68520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, + ACTIONS(5229), 1, anon_sym_DOLLARelse, - ACTIONS(2616), 13, + ACTIONS(2884), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252219,7 +255287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2614), 27, + ACTIONS(2882), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252247,898 +255315,805 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69572] = 30, + [68571] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, + ACTIONS(5167), 1, anon_sym_DOT_DOT, - ACTIONS(5087), 1, + ACTIONS(5231), 1, anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69675] = 29, + [68674] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(5027), 1, + ACTIONS(5147), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5149), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5151), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5153), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5155), 1, anon_sym_BANGin, - ACTIONS(5089), 1, - anon_sym_QMARK, - STATE(1928), 1, - sym_block, - STATE(2325), 1, + ACTIONS(5213), 1, + anon_sym_is, + ACTIONS(5215), 1, + anon_sym_BANGis, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(2268), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5143), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5137), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5141), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5145), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5139), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69776] = 28, + [68773] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4949), 1, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(4975), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(4977), 1, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(4979), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(4991), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5091), 1, - anon_sym_is, - ACTIONS(5093), 1, - anon_sym_BANGis, - STATE(2325), 1, + ACTIONS(5233), 1, + anon_sym_LBRACE, + ACTIONS(5235), 1, + anon_sym_QMARK, + STATE(1025), 1, + sym_block, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2170), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4971), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4943), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4947), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4973), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4945), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69875] = 30, + [68874] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5017), 1, + anon_sym_LBRACE, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, - anon_sym_DOT_DOT, - ACTIONS(5095), 1, - anon_sym_RBRACK, - STATE(2325), 1, + ACTIONS(5237), 1, + anon_sym_QMARK, + STATE(2362), 1, + sym_block, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69978] = 29, + [68975] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5011), 1, + anon_sym_LBRACE, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5097), 1, - anon_sym_LBRACE, - ACTIONS(5099), 1, + ACTIONS(5239), 1, anon_sym_QMARK, - STATE(2166), 1, + STATE(1812), 1, sym_block, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70079] = 3, + [69076] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 13, + ACTIONS(4877), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2836), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [70128] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4885), 1, - anon_sym_LBRACE, - ACTIONS(5027), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5101), 1, - anon_sym_QMARK, - STATE(1924), 1, - sym_block, - STATE(2325), 1, + ACTIONS(5167), 1, + anon_sym_DOT_DOT, + ACTIONS(5241), 1, + anon_sym_RBRACK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70229] = 30, + [69179] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, + ACTIONS(5167), 1, anon_sym_DOT_DOT, - ACTIONS(5103), 1, + ACTIONS(5243), 1, anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70332] = 30, + [69282] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4889), 1, anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, + ACTIONS(5167), 1, anon_sym_DOT_DOT, - ACTIONS(5105), 1, + ACTIONS(5245), 1, anon_sym_RBRACK, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70435] = 29, + [69385] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4685), 1, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_LBRACE, - ACTIONS(5027), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5107), 1, - anon_sym_QMARK, - STATE(2320), 1, - sym_block, - STATE(2325), 1, + ACTIONS(5167), 1, + anon_sym_DOT_DOT, + ACTIONS(5247), 1, + anon_sym_RBRACK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70536] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2745), 1, - sym_type_parameters, - ACTIONS(2764), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2762), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [70587] = 30, + [69488] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_DOT, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_QMARK_DOT, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5033), 1, + anon_sym_LBRACE, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, - anon_sym_DOT_DOT, - ACTIONS(5109), 1, - anon_sym_RBRACK, - STATE(2325), 1, + ACTIONS(5249), 1, + anon_sym_QMARK, + STATE(1959), 1, + sym_block, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4849), 2, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70690] = 28, + [69589] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4987), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(4989), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(5071), 1, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(5073), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - STATE(2325), 1, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2170), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(5251), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70789] = 3, + [69688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 13, + ACTIONS(2748), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253152,7 +256127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2692), 28, + ACTIONS(2746), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253181,359 +256156,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [70838] = 3, + [69737] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4654), 1, + anon_sym_LPAREN, + ACTIONS(4656), 1, + anon_sym_LBRACK, + ACTIONS(4658), 1, anon_sym_QMARK, + ACTIONS(4660), 1, anon_sym_BANG, + ACTIONS(4662), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3040), 27, + ACTIONS(4664), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4678), 1, + anon_sym_in, + ACTIONS(4680), 1, + anon_sym_BANGin, + ACTIONS(4682), 1, + anon_sym_AMP_AMP, + ACTIONS(4684), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(4686), 1, anon_sym_PLUS_PLUS, + ACTIONS(4688), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(4690), 1, anon_sym_PIPE_PIPE, + ACTIONS(4692), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4694), 1, anon_sym_is, + ACTIONS(4696), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [70886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACE, - ACTIONS(2694), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5255), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_CARET, + ACTIONS(5259), 1, + anon_sym_LT_DASH, + STATE(2091), 1, + sym_argument_list, + STATE(2092), 1, + sym_or_block, + STATE(4184), 1, + sym_type_parameters, + ACTIONS(4652), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4674), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + ACTIONS(4670), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2692), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4672), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4676), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5253), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [70936] = 17, + [69838] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(5027), 1, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5045), 1, anon_sym_CARET, - STATE(2325), 1, + ACTIONS(5099), 1, + anon_sym_AMP_AMP, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, + anon_sym_in, + ACTIONS(5105), 1, + anon_sym_BANGin, + ACTIONS(5167), 1, + anon_sym_DOT_DOT, + ACTIONS(5261), 1, + anon_sym_RBRACK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2162), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5015), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5017), 5, + ACTIONS(5097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71012] = 28, + [69941] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5111), 1, - anon_sym_LBRACE, - STATE(2325), 1, + ACTIONS(5167), 1, + anon_sym_DOT_DOT, + ACTIONS(5263), 1, + anon_sym_RBRACK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3161), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71158] = 28, + [70044] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4969), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5113), 1, - anon_sym_RPAREN, - ACTIONS(5125), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - STATE(2325), 1, + ACTIONS(5265), 1, + anon_sym_QMARK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(2913), 1, + sym_block, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71256] = 3, + [70145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 13, + ACTIONS(4762), 1, anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_QMARK, + ACTIONS(5267), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3230), 10, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3193), 27, + ACTIONS(3228), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253544,7 +256478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -253561,10 +256494,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71304] = 3, + anon_sym_COLON_EQ, + [70200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 13, + ACTIONS(3118), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253578,7 +256512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2786), 27, + ACTIONS(3116), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253606,418 +256540,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71352] = 28, + anon_sym_COLON_EQ, + [70249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, - anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5135), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(5271), 1, + anon_sym_DOLLARelse, + ACTIONS(2926), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71450] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5027), 1, - anon_sym_CARET, - ACTIONS(5033), 1, - anon_sym_in, - ACTIONS(5035), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5015), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5019), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + anon_sym_DOT_DOT, + ACTIONS(2924), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [71532] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5125), 1, - anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5137), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5119), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71630] = 28, + [70300] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5031), 1, + anon_sym_LBRACE, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5139), 1, - anon_sym_LBRACE, - STATE(2325), 1, + ACTIONS(5273), 1, + anon_sym_QMARK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(2494), 1, + sym_block, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71728] = 28, + [70401] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5021), 1, + anon_sym_LBRACE, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5141), 1, - anon_sym_RPAREN, - STATE(2325), 1, + ACTIONS(5275), 1, + anon_sym_QMARK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(2681), 1, + sym_block, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71826] = 21, + [70502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5027), 1, - anon_sym_CARET, - ACTIONS(5029), 1, - anon_sym_AMP_AMP, - ACTIONS(5033), 1, - anon_sym_in, - ACTIONS(5035), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(3198), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + anon_sym_DOT_DOT, + ACTIONS(3196), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 8, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [71910] = 4, + anon_sym_in, + anon_sym_BANGin, + [70550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2838), 11, + ACTIONS(3144), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -254029,9 +256793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2836), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3142), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254039,12 +256805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -254057,10 +256822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71960] = 3, + [70598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 13, + ACTIONS(3210), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254074,7 +256839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2964), 27, + ACTIONS(3208), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254102,10 +256867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72008] = 3, + [70646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 13, + ACTIONS(3028), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254119,7 +256884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3012), 27, + ACTIONS(3026), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254147,82 +256912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72056] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, - anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5143), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5119), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72154] = 4, + [70694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_COMMA, - ACTIONS(2694), 13, + ACTIONS(3194), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254236,9 +256929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2692), 26, + ACTIONS(3192), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254263,10 +256957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72204] = 3, + [70742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 13, + ACTIONS(3257), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254280,7 +256974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3020), 27, + ACTIONS(3255), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254308,135 +257002,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72252] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5147), 1, - anon_sym_RPAREN, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(4030), 1, - sym_type_parameter_declaration, - STATE(4081), 1, - sym_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [72346] = 15, + [70790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(3281), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5019), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2162), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 16, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3279), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72418] = 3, + [70838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 13, + ACTIONS(3285), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254450,7 +257064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3197), 27, + ACTIONS(3283), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254478,10 +257092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72466] = 3, + [70886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 13, + ACTIONS(3269), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254495,7 +257109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3201), 27, + ACTIONS(3267), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254523,150 +257137,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72514] = 28, + [70934] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5277), 1, + anon_sym_RPAREN, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5161), 1, - anon_sym_LBRACE, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72612] = 28, + [71032] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(2232), 1, + anon_sym_RPAREN, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5163), 1, - anon_sym_LBRACE, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72710] = 3, + [71130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 13, + ACTIONS(3132), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254680,7 +257294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3157), 27, + ACTIONS(3130), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254708,10 +257322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72758] = 3, + [71178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 13, + ACTIONS(3044), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254725,7 +257339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3153), 27, + ACTIONS(3042), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254753,7 +257367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72806] = 26, + [71226] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -254766,49 +257380,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5299), 1, sym_identifier, - ACTIONS(5149), 1, + ACTIONS(5301), 1, + anon_sym_RPAREN, + ACTIONS(5303), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, + ACTIONS(5305), 1, anon_sym_mut, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5159), 1, + ACTIONS(5313), 1, anon_sym_shared, - ACTIONS(5165), 1, - anon_sym_RPAREN, - STATE(3019), 1, + STATE(3063), 1, sym_mutability_modifiers, - STATE(4074), 1, - sym_type_parameter_declaration, - STATE(4077), 1, + STATE(4092), 1, sym_parameter_declaration, - STATE(4352), 1, + STATE(4097), 1, + sym_type_parameter_declaration, + STATE(4417), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -254821,55 +257435,150 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [72900] = 3, + [71320] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + ACTIONS(5315), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5175), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3149), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, + [71418] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, anon_sym_in, + ACTIONS(5297), 1, anon_sym_BANGin, - [72948] = 3, + ACTIONS(5317), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [71516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 13, + ACTIONS(3170), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254883,7 +257592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3131), 27, + ACTIONS(3168), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254911,10 +257620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72996] = 3, + [71564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 13, + ACTIONS(3174), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254928,7 +257637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3112), 27, + ACTIONS(3172), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254950,143 +257659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73044] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5125), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2162), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5115), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5119), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2160), 15, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73120] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5167), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3954), 1, - sym_type_parameter_declaration, - STATE(3997), 1, - sym_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [73214] = 3, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [71612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3171), 13, + ACTIONS(3182), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255100,7 +257682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3169), 27, + ACTIONS(3180), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255128,78 +257710,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73262] = 26, + [71660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(3190), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5169), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3861), 1, - sym_parameter_declaration, - STATE(3862), 1, - sym_type_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [73356] = 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3188), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [71708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 13, + ACTIONS(3265), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255213,7 +257772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3181), 27, + ACTIONS(3263), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255241,10 +257800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73404] = 3, + [71756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 13, + ACTIONS(3277), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255258,7 +257817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3032), 27, + ACTIONS(3275), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255286,10 +257845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73452] = 3, + [71804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 13, + ACTIONS(3036), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255303,7 +257862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3024), 27, + ACTIONS(3034), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255331,10 +257890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73500] = 3, + [71852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 13, + ACTIONS(3020), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255348,7 +257907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2900), 27, + ACTIONS(3018), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255376,10 +257935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73548] = 3, + [71900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 13, + ACTIONS(3012), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255393,7 +257952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2896), 27, + ACTIONS(3010), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255421,10 +257980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73596] = 3, + [71948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 13, + ACTIONS(3084), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255438,7 +257997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2888), 27, + ACTIONS(3082), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255466,10 +258025,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73644] = 3, + [71996] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5301), 1, + anon_sym_RPAREN, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(4092), 1, + sym_parameter_declaration, + STATE(4097), 1, + sym_type_parameter_declaration, + STATE(4126), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [72090] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5319), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72188] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5321), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 13, + ACTIONS(2952), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255483,7 +258250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2948), 27, + ACTIONS(2950), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255511,10 +258278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73692] = 3, + [72334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 13, + ACTIONS(2948), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255528,7 +258295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2944), 27, + ACTIONS(2946), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255556,10 +258323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73740] = 3, + [72382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 13, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255573,7 +258340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2940), 27, + ACTIONS(2888), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255601,10 +258368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73788] = 3, + [72430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 13, + ACTIONS(2914), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255618,7 +258385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2936), 27, + ACTIONS(2912), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255646,11 +258413,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73836] = 3, + [72478] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + ACTIONS(5323), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5175), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72576] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5325), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -255662,11 +258571,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2916), 27, + ACTIONS(3116), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -255674,11 +258581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -255691,10 +258599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73884] = 3, + [72724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 13, + ACTIONS(3136), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255708,7 +258616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2904), 27, + ACTIONS(3134), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255736,125 +258644,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73932] = 28, + [72772] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5171), 1, - anon_sym_LBRACE, - STATE(2325), 1, + ACTIONS(5327), 1, + anon_sym_RPAREN, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74030] = 3, + [72870] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + ACTIONS(5329), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5175), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3076), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72968] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5045), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5099), 1, anon_sym_AMP_AMP, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5103), 1, + anon_sym_in, + ACTIONS(5105), 1, + anon_sym_BANGin, + ACTIONS(5331), 1, + anon_sym_SEMI, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(5095), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5043), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [73066] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, anon_sym_in, + ACTIONS(5297), 1, anon_sym_BANGin, - [74078] = 3, + ACTIONS(5333), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [73164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 13, + ACTIONS(3104), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255868,7 +258941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2800), 27, + ACTIONS(3102), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255896,7 +258969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74126] = 26, + [73212] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -255909,49 +258982,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5299), 1, sym_identifier, - ACTIONS(5149), 1, + ACTIONS(5303), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, + ACTIONS(5305), 1, anon_sym_mut, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5159), 1, + ACTIONS(5313), 1, anon_sym_shared, - ACTIONS(5173), 1, + ACTIONS(5335), 1, anon_sym_RPAREN, - STATE(3019), 1, + STATE(3063), 1, sym_mutability_modifiers, - STATE(4059), 1, + STATE(4002), 1, sym_parameter_declaration, - STATE(4062), 1, + STATE(4003), 1, sym_type_parameter_declaration, - STATE(4352), 1, + STATE(4417), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -255964,12 +259037,79 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [74220] = 4, + [73306] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5337), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(3924), 1, + sym_parameter_declaration, + STATE(3926), 1, + sym_type_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [73400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3100), 13, anon_sym_DOT, - ACTIONS(3118), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -255982,7 +259122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3116), 27, + ACTIONS(3098), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256010,10 +259150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74270] = 3, + [73448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 13, + ACTIONS(3096), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256027,7 +259167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3016), 27, + ACTIONS(3094), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256055,148 +259195,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74318] = 26, + [73496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(3092), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3090), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [73544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5175), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3881), 1, - sym_type_parameter_declaration, - STATE(3888), 1, - sym_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [74412] = 28, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3086), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [73592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(3060), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3058), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4681), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4683), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [73640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2796), 29, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [73688] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4997), 1, - anon_sym_COLON, - STATE(2325), 1, + ACTIONS(5339), 1, + anon_sym_LBRACE, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74510] = 3, + [73786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 13, + ACTIONS(2984), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256210,7 +259462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3127), 27, + ACTIONS(2982), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256238,10 +259490,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74558] = 3, + [73834] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5341), 1, + sym_identifier, + ACTIONS(5343), 1, + anon_sym_RPAREN, + STATE(3067), 1, + sym_mutability_modifiers, + STATE(3903), 1, + sym_parameter_declaration, + STATE(3904), 1, + sym_type_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [73928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 13, + ACTIONS(2976), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256255,7 +259575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2762), 27, + ACTIONS(2974), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256283,10 +259603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74606] = 3, + [73976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 13, + ACTIONS(2956), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256300,7 +259620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2738), 27, + ACTIONS(2954), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256328,80 +259648,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74654] = 28, + [74024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, - anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5177), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(3241), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + anon_sym_DOT_DOT, + ACTIONS(3239), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74752] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [74072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 13, + ACTIONS(3245), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256415,7 +259710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2848), 27, + ACTIONS(3243), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256443,78 +259738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74800] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5179), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3890), 1, - sym_parameter_declaration, - STATE(3892), 1, - sym_type_parameter_declaration, - STATE(3981), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [74894] = 3, + [74120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 13, + ACTIONS(3148), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256528,7 +259755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3104), 27, + ACTIONS(3146), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256556,279 +259783,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74942] = 28, + [74168] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(5027), 1, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5071), 1, - anon_sym_is, - ACTIONS(5073), 1, - anon_sym_BANGis, - STATE(2325), 1, + ACTIONS(5345), 1, + anon_sym_LBRACE, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75040] = 28, + [74266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5027), 1, - anon_sym_CARET, - ACTIONS(5029), 1, - anon_sym_AMP_AMP, - ACTIONS(5031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, - anon_sym_in, - ACTIONS(5035), 1, - anon_sym_BANGin, - ACTIONS(5039), 1, - anon_sym_LBRACE, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(3214), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + anon_sym_DOT_DOT, + ACTIONS(3212), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75138] = 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [74314] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5181), 1, + ACTIONS(5347), 1, anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75236] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5027), 1, - anon_sym_CARET, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(2156), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5015), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5019), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2154), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75312] = 3, + [74412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 13, + ACTIONS(3222), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256842,7 +259985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3084), 27, + ACTIONS(3220), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256870,80 +260013,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75360] = 28, + [74460] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5183), 1, + ACTIONS(5349), 1, anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75458] = 3, + [74558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 13, + ACTIONS(2750), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256957,7 +260100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2928), 27, + ACTIONS(2752), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256985,10 +260128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75506] = 3, + [74606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 13, + ACTIONS(3122), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257002,7 +260145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3044), 27, + ACTIONS(3120), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257030,78 +260173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75554] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5185), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(4047), 1, - sym_parameter_declaration, - STATE(4048), 1, - sym_type_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [75648] = 3, + [74654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 13, + ACTIONS(3301), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257115,7 +260190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3036), 27, + ACTIONS(3299), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257143,10 +260218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75696] = 3, + [74702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 13, + ACTIONS(3072), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257160,7 +260235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3028), 27, + ACTIONS(3070), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257188,10 +260263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75744] = 3, + [74750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 13, + ACTIONS(3329), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257205,7 +260280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2956), 27, + ACTIONS(3327), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257233,80 +260308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75792] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, - anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5187), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5119), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75890] = 3, + [74798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 13, + ACTIONS(3313), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257320,7 +260325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3056), 27, + ACTIONS(3311), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257348,125 +260353,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75938] = 3, + [74846] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5351), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5283), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2924), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75986] = 28, + [74944] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5189), 1, - anon_sym_RPAREN, - STATE(2325), 1, + ACTIONS(5353), 1, + anon_sym_LBRACE, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76084] = 3, + [75042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 13, + ACTIONS(3297), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257480,7 +260510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2912), 27, + ACTIONS(3295), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257508,10 +260538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76132] = 3, + [75090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 13, + ACTIONS(3261), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257525,7 +260555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2908), 27, + ACTIONS(3259), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257553,10 +260583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76180] = 3, + [75138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 13, + ACTIONS(3289), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257570,7 +260600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2892), 27, + ACTIONS(3287), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257598,10 +260628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76228] = 3, + [75186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 13, + ACTIONS(3178), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257615,7 +260645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2884), 27, + ACTIONS(3176), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257643,10 +260673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76276] = 3, + [75234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 13, + ACTIONS(3305), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257660,7 +260690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2880), 27, + ACTIONS(3303), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257688,80 +260718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76324] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5027), 1, - anon_sym_CARET, - ACTIONS(5029), 1, - anon_sym_AMP_AMP, - ACTIONS(5031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, - anon_sym_in, - ACTIONS(5035), 1, - anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5015), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5019), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [76422] = 3, + [75282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 13, + ACTIONS(2940), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257775,7 +260735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2872), 27, + ACTIONS(2938), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257803,10 +260763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76470] = 3, + [75330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 13, + ACTIONS(3345), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257820,7 +260780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3123), 27, + ACTIONS(3343), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257848,10 +260808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76518] = 3, + [75378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 13, + ACTIONS(3156), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257865,7 +260825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3108), 27, + ACTIONS(3154), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257893,81 +260853,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76566] = 28, + [75426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5027), 1, - anon_sym_CARET, - ACTIONS(5029), 1, - anon_sym_AMP_AMP, - ACTIONS(5031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, - anon_sym_in, - ACTIONS(5035), 1, - anon_sym_BANGin, - ACTIONS(5191), 1, - anon_sym_LBRACE, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(3016), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5021), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + anon_sym_DOT_DOT, + ACTIONS(3014), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76664] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [75474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 13, + ACTIONS(3232), 1, anon_sym_DOT, + ACTIONS(3230), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257980,7 +260916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2792), 27, + ACTIONS(3228), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258008,78 +260944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76712] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3895), 1, - sym_parameter_declaration, - STATE(3903), 1, - sym_type_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [76806] = 3, + [75524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 13, + ACTIONS(3293), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258093,7 +260961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2828), 27, + ACTIONS(3291), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258121,10 +260989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76854] = 3, + [75572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 13, + ACTIONS(2752), 1, + anon_sym_COMMA, + ACTIONS(3118), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258138,10 +261008,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2844), 27, + ACTIONS(3116), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258166,11 +261035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76902] = 3, + [75622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 13, - anon_sym_DOT, + ACTIONS(2752), 1, + anon_sym_LBRACE, + ACTIONS(2748), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258182,10 +261052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2972), 27, + ACTIONS(2746), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -258194,7 +261064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -258211,10 +261080,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76950] = 3, + anon_sym_COLON_EQ, + [75672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 13, + ACTIONS(2992), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258228,7 +261098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2804), 27, + ACTIONS(2990), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258256,11 +261126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76998] = 3, + [75720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 13, + ACTIONS(3232), 1, anon_sym_DOT, + ACTIONS(3834), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258272,11 +261147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2824), 27, + ACTIONS(3228), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258284,7 +261156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -258301,80 +261172,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77046] = 28, + anon_sym_DOT_DOT, + [75772] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5195), 1, + ACTIONS(5255), 1, + anon_sym_COLON, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5095), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5039), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5043), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5097), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5041), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [75870] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5355), 1, anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [75968] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + ACTIONS(5357), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77144] = 3, + [76066] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5343), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(3903), 1, + sym_parameter_declaration, + STATE(3904), 1, + sym_type_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [76160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 13, + ACTIONS(2988), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258388,7 +261468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3080), 27, + ACTIONS(2986), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258416,10 +261496,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77192] = 3, + [76208] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2268), 1, + anon_sym_LBRACE, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + ACTIONS(5213), 1, + anon_sym_is, + ACTIONS(5215), 1, + anon_sym_BANGis, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5175), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [76306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 13, + ACTIONS(2972), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258433,7 +261583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2820), 27, + ACTIONS(2970), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258461,11 +261611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77240] = 3, + [76354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 13, - anon_sym_DOT, + ACTIONS(2752), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2748), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258477,11 +261629,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3100), 27, + ACTIONS(2746), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258489,11 +261639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -258506,10 +261657,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77288] = 3, + [76404] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5359), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [76502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 13, + ACTIONS(3341), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258523,7 +261744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2832), 27, + ACTIONS(3339), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258551,10 +261772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77336] = 3, + [76550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 13, + ACTIONS(3325), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258568,7 +261789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2976), 27, + ACTIONS(3323), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258596,55 +261817,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77384] = 3, + [76598] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + ACTIONS(5361), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5175), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2796), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77432] = 3, + [76696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 13, + ACTIONS(2968), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258658,7 +261904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3064), 27, + ACTIONS(2966), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258686,55 +261932,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77480] = 3, + [76744] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + ACTIONS(5363), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5175), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2840), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77528] = 3, + [76842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 13, + ACTIONS(3321), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258748,7 +262019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2876), 27, + ACTIONS(3319), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258776,80 +262047,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77576] = 28, + [76890] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - STATE(2325), 1, + ACTIONS(5365), 1, + anon_sym_LBRACE, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77674] = 3, + [76988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 13, + ACTIONS(2944), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258863,7 +262134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3000), 27, + ACTIONS(2942), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258891,80 +262162,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77722] = 28, + [77036] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - STATE(2325), 1, + ACTIONS(5367), 1, + anon_sym_RPAREN, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77820] = 3, + [77134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3175), 13, + ACTIONS(3032), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258978,7 +262249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3173), 27, + ACTIONS(3030), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259006,165 +262277,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77868] = 3, + [77182] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 13, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5369), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5283), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3072), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77916] = 28, + [77280] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5371), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(3902), 1, + sym_parameter_declaration, + STATE(3920), 1, + sym_type_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [77374] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5373), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(3925), 1, + sym_parameter_declaration, + STATE(3927), 1, + sym_type_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [77468] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5197), 1, + ACTIONS(5375), 1, anon_sym_LBRACE, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78014] = 17, + [77566] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(5125), 1, - anon_sym_CARET, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2144), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5115), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5117), 5, + ACTIONS(2360), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 15, + ACTIONS(2358), 16, anon_sym_as, anon_sym_RPAREN, anon_sym_EQ_EQ, @@ -259173,14 +262602,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [77638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2964), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2962), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78090] = 26, + [77686] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -259193,49 +262668,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5299), 1, sym_identifier, - ACTIONS(5149), 1, + ACTIONS(5303), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, + ACTIONS(5305), 1, anon_sym_mut, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5159), 1, + ACTIONS(5313), 1, anon_sym_shared, - ACTIONS(5199), 1, + ACTIONS(5377), 1, anon_sym_RPAREN, - STATE(3019), 1, + STATE(3063), 1, sym_mutability_modifiers, - STATE(3945), 1, - sym_parameter_declaration, - STATE(3946), 1, + STATE(4021), 1, sym_type_parameter_declaration, - STATE(4352), 1, + STATE(4024), 1, + sym_parameter_declaration, + STATE(4417), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -259248,197 +262723,288 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [78184] = 5, + [77780] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5201), 1, - anon_sym_else, - STATE(2937), 1, - sym_else_branch, - ACTIONS(2392), 11, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5379), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5283), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2390), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78236] = 28, + [77878] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5203), 1, - anon_sym_LBRACE, - STATE(2325), 1, + ACTIONS(5381), 1, + anon_sym_RPAREN, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78334] = 28, + [77976] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4656), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4658), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4660), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4662), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4664), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4678), 1, + anon_sym_in, + ACTIONS(4680), 1, + anon_sym_BANGin, + ACTIONS(4682), 1, + anon_sym_AMP_AMP, + ACTIONS(4684), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4686), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4688), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4690), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4692), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4694), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4696), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5257), 1, anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5205), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + ACTIONS(5259), 1, + anon_sym_LT_DASH, + STATE(2091), 1, sym_argument_list, - STATE(4401), 1, + STATE(2092), 1, + sym_or_block, + STATE(4184), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4652), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(4674), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(4670), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(4672), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4676), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5253), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78432] = 3, + [78074] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5383), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(3944), 1, + sym_type_parameter_declaration, + STATE(3946), 1, + sym_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [78168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 13, + ACTIONS(3226), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259452,7 +263018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2952), 27, + ACTIONS(3224), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259480,83 +263046,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78480] = 28, + [78216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - anon_sym_RPAREN, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(3218), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3216), 27, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5127), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5133), 1, anon_sym_BANGin, - STATE(2325), 1, + [78264] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5289), 1, + anon_sym_CARET, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(2360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78578] = 4, + ACTIONS(2358), 15, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2694), 11, + ACTIONS(2960), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -259568,9 +263166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2692), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2958), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -259578,12 +263178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -259596,154 +263195,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78628] = 28, + [78388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, - anon_sym_RPAREN, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(5385), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3218), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3216), 25, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5127), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5133), 1, anon_sym_BANGin, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + [78438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3349), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + anon_sym_DOT_DOT, + ACTIONS(3347), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78726] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4829), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5207), 1, - anon_sym_RBRACK, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + [78486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3004), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + anon_sym_DOT_DOT, + ACTIONS(3002), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78824] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5201), 1, - anon_sym_else, - STATE(2936), 1, - sym_else_branch, - ACTIONS(2398), 11, + ACTIONS(3008), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -259755,9 +263347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2396), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3006), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -259765,12 +263359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -259783,7 +263376,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78876] = 26, + [78582] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + ACTIONS(5387), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78680] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -259796,49 +263459,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5299), 1, sym_identifier, - ACTIONS(5149), 1, + ACTIONS(5303), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, + ACTIONS(5305), 1, anon_sym_mut, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5159), 1, + ACTIONS(5313), 1, anon_sym_shared, - ACTIONS(5209), 1, + ACTIONS(5389), 1, anon_sym_RPAREN, - STATE(3019), 1, + STATE(3063), 1, sym_mutability_modifiers, - STATE(3966), 1, - sym_parameter_declaration, - STATE(3972), 1, + STATE(4099), 1, sym_type_parameter_declaration, - STATE(4352), 1, + STATE(4102), 1, + sym_parameter_declaration, + STATE(4417), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -259851,335 +263514,200 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [78970] = 28, + [78774] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4504), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4506), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4508), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4510), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4522), 1, - anon_sym_AMP_AMP, - ACTIONS(4524), 1, - anon_sym_in, - ACTIONS(4526), 1, - anon_sym_BANGin, - ACTIONS(4530), 1, - anon_sym_as, - ACTIONS(4532), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4534), 1, - anon_sym_DASH_DASH, - ACTIONS(4536), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4538), 1, - anon_sym_or, - ACTIONS(4540), 1, - anon_sym_is, - ACTIONS(4542), 1, - anon_sym_BANGis, - ACTIONS(4999), 1, - anon_sym_CARET, - ACTIONS(5001), 1, - anon_sym_LT_DASH, - STATE(2085), 1, - sym_argument_list, - STATE(2086), 1, + STATE(2398), 1, sym_or_block, - STATE(4280), 1, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4500), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4518), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4514), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4516), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4520), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4995), 5, + ACTIONS(2360), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79068] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(2358), 16, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5211), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5119), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79166] = 28, + [78846] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5213), 1, - anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(2360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2790), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2788), 27, + ACTIONS(2358), 15, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79312] = 28, + [78922] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5215), 1, - anon_sym_LBRACE, - STATE(2325), 1, + ACTIONS(5391), 1, + anon_sym_RBRACK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79410] = 3, + [79020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 13, + ACTIONS(2919), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2914), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260193,10 +263721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3052), 27, + ACTIONS(2912), 24, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260205,7 +263731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -260221,10 +263746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79458] = 3, + [79070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 13, + ACTIONS(2752), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3118), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260238,10 +263766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3060), 27, + ACTIONS(3116), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260266,10 +263792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79506] = 3, + [79120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 13, + ACTIONS(3024), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260283,7 +263809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3068), 27, + ACTIONS(3022), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260311,82 +263837,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79554] = 28, + [79168] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5217), 1, - anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79652] = 4, + ACTIONS(2358), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [79250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, - anon_sym_COMMA, - ACTIONS(2838), 13, + ACTIONS(3333), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260400,9 +263916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2836), 26, + ACTIONS(3331), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260427,80 +263944,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79702] = 28, + [79298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(3206), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3204), 27, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5127), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5219), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + [79346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3249), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + anon_sym_DOT_DOT, + ACTIONS(3247), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79800] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [79394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 13, + ACTIONS(3253), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260514,7 +264051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3088), 27, + ACTIONS(3251), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260542,10 +264079,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79848] = 3, + [79442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 13, + ACTIONS(2752), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2748), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260559,10 +264099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3096), 27, + ACTIONS(2746), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260587,7 +264125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79896] = 26, + [79492] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -260600,49 +264138,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5145), 1, + ACTIONS(5299), 1, sym_identifier, - ACTIONS(5149), 1, + ACTIONS(5303), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, + ACTIONS(5305), 1, anon_sym_mut, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5159), 1, + ACTIONS(5313), 1, anon_sym_shared, - ACTIONS(5221), 1, + ACTIONS(5393), 1, anon_sym_RPAREN, - STATE(3019), 1, + STATE(3063), 1, sym_mutability_modifiers, - STATE(4033), 1, - sym_type_parameter_declaration, - STATE(4036), 1, + STATE(4056), 1, sym_parameter_declaration, - STATE(4352), 1, + STATE(4057), 1, + sym_type_parameter_declaration, + STATE(4417), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -260655,69 +264193,218 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [79990] = 17, + [79586] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(3483), 1, + anon_sym_LBRACE, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, anon_sym_CARET, - STATE(2325), 1, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2156), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5115), 3, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5117), 5, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2154), 15, + [79684] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, anon_sym_or, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, + ACTIONS(5191), 1, anon_sym_BANGin, - [80066] = 3, + ACTIONS(5395), 1, + anon_sym_LBRACE, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5175), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5179), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [79782] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(4067), 1, + sym_type_parameter_declaration, + STATE(4071), 1, + sym_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [79876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 13, + ACTIONS(2936), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260731,7 +264418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3165), 27, + ACTIONS(2934), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260759,80 +264446,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80114] = 28, + [79924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, - anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5223), 1, - anon_sym_RPAREN, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(3237), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + anon_sym_DOT_DOT, + ACTIONS(3235), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80212] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [79972] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 13, + ACTIONS(2919), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3070), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2914), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260845,11 +264513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3177), 27, + ACTIONS(2912), 24, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260857,8 +264522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -260874,13 +264537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80260] = 4, + anon_sym_DOT_DOT, + [80024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5225), 1, - anon_sym_BANG, - ACTIONS(3141), 12, + ACTIONS(2916), 1, anon_sym_DOT, + ACTIONS(3072), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260888,11 +264551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3139), 27, + ACTIONS(3070), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260920,150 +264584,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80310] = 28, + [80074] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5227), 1, - anon_sym_SEMI, - STATE(2325), 1, + ACTIONS(5251), 1, + anon_sym_LBRACE, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80408] = 28, + [80172] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5229), 1, - anon_sym_LBRACE, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80506] = 3, + ACTIONS(2358), 8, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [80256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 13, + ACTIONS(3202), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261077,7 +264734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3189), 27, + ACTIONS(3200), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261105,10 +264762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80554] = 3, + [80304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 13, + ACTIONS(3309), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261122,7 +264779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3185), 27, + ACTIONS(3307), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261150,210 +264807,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80602] = 28, + [80352] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5231), 1, + ACTIONS(5399), 1, anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80700] = 15, + [80450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - STATE(2325), 1, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5119), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2162), 5, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5117), 5, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 16, + ACTIONS(2358), 9, anon_sym_as, anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80772] = 28, + [80532] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5233), 1, - anon_sym_RPAREN, - STATE(2325), 1, + ACTIONS(5401), 1, + anon_sym_RBRACK, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80870] = 4, + [80630] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2838), 13, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5403), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(4045), 1, + sym_type_parameter_declaration, + STATE(4046), 1, + sym_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [80724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3186), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261367,8 +265094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2836), 25, + ACTIONS(3184), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261393,120 +265122,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80920] = 28, + [80772] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5313), 1, + anon_sym_shared, + ACTIONS(5405), 1, + anon_sym_RPAREN, + STATE(3063), 1, + sym_mutability_modifiers, + STATE(3954), 1, + sym_parameter_declaration, + STATE(3955), 1, + sym_type_parameter_declaration, + STATE(4417), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [80866] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(2325), 1, + ACTIONS(5407), 1, + anon_sym_RPAREN, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81018] = 17, + [80964] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - STATE(2325), 1, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5295), 1, + anon_sym_in, + ACTIONS(5297), 1, + anon_sym_BANGin, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5283), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5287), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2358), 8, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [81048] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5183), 1, + anon_sym_CARET, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, sym_type_parameters, - ACTIONS(2144), 2, + ACTIONS(2346), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5015), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5017), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2142), 15, + ACTIONS(2344), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -261522,130 +265382,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81094] = 28, + [81124] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5127), 1, - anon_sym_AMP_AMP, - ACTIONS(5129), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, - anon_sym_in, - ACTIONS(5133), 1, - anon_sym_BANGin, - ACTIONS(5237), 1, - anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(2342), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(4889), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81192] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACE, - ACTIONS(2838), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2836), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2340), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [81242] = 4, + [81200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2740), 13, + ACTIONS(3273), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261659,8 +265458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2738), 24, + ACTIONS(3271), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261669,6 +265470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -261684,10 +265486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81292] = 3, + [81248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 11, + ACTIONS(3080), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261699,9 +265502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2734), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3078), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261709,12 +265514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -261723,86 +265527,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81340] = 28, + [81296] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5239), 1, + ACTIONS(5409), 1, anon_sym_RPAREN, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81438] = 3, + [81394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 13, + ACTIONS(5411), 1, + anon_sym_BANG, + ACTIONS(3126), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261811,12 +265615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2960), 27, + ACTIONS(3124), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261844,77 +265647,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81486] = 21, + [81444] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5131), 1, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - STATE(2325), 1, + ACTIONS(5413), 1, + anon_sym_RPAREN, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 8, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [81570] = 4, + [81542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 2, + ACTIONS(2752), 1, anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2694), 13, - anon_sym_DOT, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261926,9 +265734,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2692), 25, + ACTIONS(3116), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261936,7 +265746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -261953,13 +265762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81620] = 4, + anon_sym_COLON_EQ, + [81592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2794), 13, + ACTIONS(3076), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261973,8 +265780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2792), 25, + ACTIONS(3074), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261999,10 +265808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81670] = 3, + [81640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 13, + ACTIONS(2752), 1, + anon_sym_COMMA, + ACTIONS(2748), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262016,10 +265827,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2932), 27, + ACTIONS(2746), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262044,231 +265854,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81718] = 3, + [81690] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, + ACTIONS(4887), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2868), 27, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(5289), 1, + anon_sym_CARET, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, anon_sym_in, + ACTIONS(5297), 1, anon_sym_BANGin, - [81766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2862), 13, + ACTIONS(5415), 1, + anon_sym_RPAREN, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5285), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5283), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2860), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81814] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5243), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3992), 1, - sym_type_parameter_declaration, - STATE(3993), 1, - sym_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [81908] = 20, + [81788] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(5125), 1, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5131), 1, + ACTIONS(5291), 1, + anon_sym_AMP_AMP, + ACTIONS(5293), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - STATE(2325), 1, + ACTIONS(5417), 1, + anon_sym_RPAREN, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2160), 9, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [81990] = 3, + [81886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 13, - anon_sym_DOT, + ACTIONS(5419), 1, + anon_sym_else, + STATE(2958), 1, + sym_else_branch, + ACTIONS(2558), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262280,11 +266013,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3135), 27, + ACTIONS(2556), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262292,11 +266023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -262309,17 +266041,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82038] = 5, + [81938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2844), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2740), 12, - anon_sym_DOT, + ACTIONS(5419), 1, + anon_sym_else, + STATE(2933), 1, + sym_else_branch, + ACTIONS(2548), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262331,7 +266060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 24, + ACTIONS(2546), 27, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -262340,9 +266070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -262355,57 +266088,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [82090] = 4, + [81990] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 1, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5289), 1, + anon_sym_CARET, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(2346), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4889), 2, anon_sym_DOT, - ACTIONS(2846), 12, + anon_sym_QMARK_DOT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5283), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2844), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2344), 15, + anon_sym_as, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82140] = 3, + [82066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 13, + ACTIONS(3068), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262419,7 +266164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2864), 27, + ACTIONS(3066), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262447,11 +266192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82188] = 3, + [82114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 13, - anon_sym_DOT, + ACTIONS(2748), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262463,11 +266207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3145), 27, + ACTIONS(2746), 29, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262475,11 +266217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -262488,81 +266231,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82236] = 28, + [82162] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5183), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5185), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5187), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5189), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5191), 1, anon_sym_BANGin, - ACTIONS(5245), 1, - anon_sym_RPAREN, - STATE(2325), 1, + ACTIONS(5421), 1, + anon_sym_LBRACE, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5177), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5175), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5173), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82334] = 26, + [82260] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -262575,49 +266320,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5149), 1, + ACTIONS(5299), 1, + sym_identifier, + ACTIONS(5303), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, + ACTIONS(5305), 1, anon_sym_mut, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5159), 1, + ACTIONS(5313), 1, anon_sym_shared, - ACTIONS(5193), 1, + ACTIONS(5423), 1, anon_sym_RPAREN, - ACTIONS(5247), 1, - sym_identifier, - STATE(3048), 1, + STATE(3063), 1, sym_mutability_modifiers, - STATE(3895), 1, + STATE(3950), 1, sym_parameter_declaration, - STATE(3903), 1, + STATE(4128), 1, sym_type_parameter_declaration, - STATE(4352), 1, + STATE(4417), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262630,148 +266375,125 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82428] = 26, + [82354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(3064), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5179), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3890), 1, - sym_parameter_declaration, - STATE(3892), 1, - sym_type_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [82522] = 28, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3062), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [82402] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5249), 1, - anon_sym_LBRACE, - STATE(2325), 1, + ACTIONS(5425), 1, + anon_sym_RPAREN, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82620] = 3, + [82500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 13, + ACTIONS(2996), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262785,7 +266507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2816), 27, + ACTIONS(2994), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262813,100 +266535,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82668] = 3, + [82548] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 13, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, + anon_sym_in, + ACTIONS(5191), 1, + anon_sym_BANGin, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5175), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3092), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, + [82646] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2232), 1, + anon_sym_LBRACE, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, anon_sym_is, + ACTIONS(4997), 1, anon_sym_BANGis, + ACTIONS(5183), 1, + anon_sym_CARET, + ACTIONS(5185), 1, + anon_sym_AMP_AMP, + ACTIONS(5187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5189), 1, anon_sym_in, + ACTIONS(5191), 1, anon_sym_BANGin, - [82716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3050), 13, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(4889), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5177), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5171), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5175), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3048), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5179), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5173), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82764] = 3, + [82744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 13, + ACTIONS(3000), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262920,7 +266692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3008), 27, + ACTIONS(2998), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262948,10 +266720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82812] = 3, + [82792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 13, + ACTIONS(3056), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262965,7 +266737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3004), 27, + ACTIONS(3054), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262993,197 +266765,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82860] = 28, + [82840] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(2218), 1, + anon_sym_RPAREN, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5027), 1, + ACTIONS(5289), 1, anon_sym_CARET, - ACTIONS(5029), 1, + ACTIONS(5291), 1, anon_sym_AMP_AMP, - ACTIONS(5031), 1, + ACTIONS(5293), 1, anon_sym_PIPE_PIPE, - ACTIONS(5033), 1, + ACTIONS(5295), 1, anon_sym_in, - ACTIONS(5035), 1, + ACTIONS(5297), 1, anon_sym_BANGin, - ACTIONS(5251), 1, - anon_sym_LBRACE, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5021), 2, + ACTIONS(5285), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5015), 3, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5019), 3, + ACTIONS(5283), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5023), 4, + ACTIONS(5287), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5017), 5, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82958] = 5, + [82938] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 1, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, + ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5289), 1, + anon_sym_CARET, + STATE(2398), 1, + sym_or_block, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, + sym_type_parameters, + ACTIONS(2342), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4889), 2, anon_sym_DOT, - ACTIONS(3658), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(3118), 11, + anon_sym_QMARK_DOT, + ACTIONS(5279), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5283), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5281), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2340), 15, + anon_sym_as, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [83010] = 28, + [83014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5253), 1, - anon_sym_SEMI, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(3040), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + anon_sym_DOT_DOT, + ACTIONS(3038), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83108] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [83062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2694), 11, + ACTIONS(3052), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263195,9 +266955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2692), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3050), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -263205,12 +266967,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -263219,86 +266980,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83156] = 28, + [83110] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(4831), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5255), 1, - anon_sym_RPAREN, - STATE(2325), 1, + ACTIONS(5427), 1, + anon_sym_SEMI, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83254] = 3, + [83208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 13, + ACTIONS(3048), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -263312,7 +267071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2968), 27, + ACTIONS(3046), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -263340,781 +267099,666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83302] = 28, + [83256] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5257), 1, - anon_sym_RBRACK, - STATE(2325), 1, + ACTIONS(5429), 1, + anon_sym_is, + ACTIONS(5431), 1, + anon_sym_BANGis, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83400] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5145), 1, - sym_identifier, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5159), 1, - anon_sym_shared, - ACTIONS(5259), 1, - anon_sym_RPAREN, - STATE(3019), 1, - sym_mutability_modifiers, - STATE(3990), 1, - sym_type_parameter_declaration, - STATE(3991), 1, - sym_parameter_declaration, - STATE(4352), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [83494] = 28, + [83351] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(5125), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(5127), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(5129), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(5131), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(5133), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(5261), 1, - anon_sym_RPAREN, - STATE(2325), 1, + ACTIONS(5433), 1, + anon_sym_is, + ACTIONS(5435), 1, + anon_sym_BANGis, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5121), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5115), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5119), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5123), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5117), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83592] = 27, + [83446] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(4995), 1, + anon_sym_is, + ACTIONS(4997), 1, + anon_sym_BANGis, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5263), 1, - anon_sym_is, - ACTIONS(5265), 1, - anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83687] = 24, + [83541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(3840), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3838), 12, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(605), 1, + anon_sym_BANG, anon_sym_LBRACK2, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(2740), 1, - anon_sym_DOT, - ACTIONS(3355), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3842), 25, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5267), 1, - anon_sym_DOT_DOT_DOT, - STATE(4333), 1, - sym_plain_type, - STATE(4347), 1, - sym__plain_type_without_special, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2844), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - STATE(2415), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [83776] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_DOT_DOT, + [83590] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5269), 1, + ACTIONS(5437), 1, anon_sym_is, - ACTIONS(5271), 1, + ACTIONS(5439), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83871] = 27, + [83685] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5273), 1, + ACTIONS(5441), 1, anon_sym_is, - ACTIONS(5275), 1, + ACTIONS(5443), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83966] = 27, + [83780] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5277), 1, + ACTIONS(5445), 1, anon_sym_is, - ACTIONS(5279), 1, + ACTIONS(5447), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84061] = 3, + [83875] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2997), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4879), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4881), 1, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [84108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2984), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4883), 1, anon_sym_QMARK, + ACTIONS(4885), 1, anon_sym_BANG, + ACTIONS(4887), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2987), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, anon_sym_DASH_DASH, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(5045), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5099), 1, anon_sym_AMP_AMP, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5103), 1, anon_sym_in, + ACTIONS(5105), 1, anon_sym_BANGin, - [84155] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 1, - anon_sym_as, - ACTIONS(4424), 1, - anon_sym_LPAREN, - ACTIONS(4434), 1, - anon_sym_LBRACK, - ACTIONS(4436), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4438), 1, - anon_sym_DASH_DASH, - ACTIONS(4440), 1, - anon_sym_QMARK, - ACTIONS(4442), 1, - anon_sym_BANG, - ACTIONS(4444), 1, - anon_sym_LBRACK2, - ACTIONS(4446), 1, - anon_sym_AMP_AMP, - ACTIONS(4448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4450), 1, - anon_sym_or, - ACTIONS(4452), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4454), 1, + ACTIONS(5449), 1, anon_sym_is, - ACTIONS(4456), 1, + ACTIONS(5451), 1, anon_sym_BANGis, - ACTIONS(4458), 1, - anon_sym_in, - ACTIONS(4460), 1, - anon_sym_BANGin, - ACTIONS(5283), 1, - anon_sym_CARET, - STATE(1979), 1, - sym_argument_list, - STATE(1980), 1, + STATE(2398), 1, sym_or_block, - STATE(4384), 1, + STATE(2399), 1, + sym_argument_list, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4416), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4430), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4426), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4428), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4432), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5281), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84250] = 27, + [83970] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5285), 1, + ACTIONS(5453), 1, anon_sym_is, - ACTIONS(5287), 1, + ACTIONS(5455), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84345] = 4, + [84065] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5289), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(575), 1, + anon_sym_LBRACK2, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(2914), 1, + anon_sym_DOT, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5457), 1, + anon_sym_DOT_DOT_DOT, + STATE(4213), 1, + sym__plain_type_without_special, + STATE(4214), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3070), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2410), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [84154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5459), 1, anon_sym_DOLLARelse, - ACTIONS(2758), 11, + ACTIONS(2926), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264126,7 +267770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2756), 27, + ACTIONS(2924), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264154,84 +267798,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84394] = 27, + [84203] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - STATE(2325), 1, + ACTIONS(5197), 1, + anon_sym_is, + ACTIONS(5199), 1, + anon_sym_BANGis, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84489] = 6, + [84298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4738), 1, anon_sym_LBRACE, - ACTIONS(5291), 1, + ACTIONS(5461), 1, anon_sym_COMMA, - STATE(3951), 1, + STATE(4010), 1, aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(2794), 11, + ACTIONS(3218), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264243,7 +267887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2792), 25, + ACTIONS(3216), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264269,343 +267913,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84542] = 27, + [84351] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(575), 1, + anon_sym_LBRACK2, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(2914), 1, + anon_sym_DOT, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5463), 1, + anon_sym_DOT_DOT_DOT, + STATE(4444), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3070), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [84438] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5293), 1, + ACTIONS(5465), 1, anon_sym_is, - ACTIONS(5295), 1, + ACTIONS(5467), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84637] = 27, + [84533] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5297), 1, + ACTIONS(5469), 1, anon_sym_is, - ACTIONS(5299), 1, + ACTIONS(5471), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84732] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(605), 1, - anon_sym_LBRACK2, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(2740), 1, - anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5267), 1, - anon_sym_DOT_DOT_DOT, - STATE(4333), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2844), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [84819] = 27, + [84628] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5301), 1, + ACTIONS(5473), 1, anon_sym_is, - ACTIONS(5303), 1, + ACTIONS(5475), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84914] = 27, + [84723] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, + ACTIONS(4993), 1, anon_sym_or, - ACTIONS(4847), 1, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4853), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(5101), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4857), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5305), 1, + ACTIONS(5477), 1, anon_sym_is, - ACTIONS(5307), 1, + ACTIONS(5479), 1, anon_sym_BANGis, - STATE(2325), 1, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85009] = 24, + [84818] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -264618,46 +268262,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(605), 1, + ACTIONS(575), 1, anon_sym_LBRACK2, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(2740), 1, + ACTIONS(2914), 1, anon_sym_DOT, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5309), 1, + ACTIONS(5457), 1, anon_sym_DOT_DOT_DOT, - STATE(4314), 1, - sym__plain_type_without_special, - STATE(4315), 1, + STATE(4214), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2844), 3, + ACTIONS(3070), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2415), 3, + STATE(2410), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264670,286 +268313,546 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85098] = 27, + [84905] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(575), 1, + anon_sym_LBRACK2, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(2914), 1, + anon_sym_DOT, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5311), 1, + anon_sym_AMP, + ACTIONS(5463), 1, + anon_sym_DOT_DOT_DOT, + STATE(4193), 1, + sym__plain_type_without_special, + STATE(4444), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3070), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(4683), 1, + STATE(2410), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [84994] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5481), 1, + anon_sym_DOLLARelse, + ACTIONS(2884), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2882), 27, + anon_sym_DOT, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4853), 1, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(4857), 1, anon_sym_BANGin, + [85043] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 1, + anon_sym_LPAREN, + ACTIONS(4881), 1, + anon_sym_LBRACK, ACTIONS(4883), 1, + anon_sym_QMARK, + ACTIONS(4885), 1, + anon_sym_BANG, + ACTIONS(4887), 1, + anon_sym_LBRACK2, + ACTIONS(4891), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4967), 1, + anon_sym_as, + ACTIONS(4983), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4985), 1, + anon_sym_DASH_DASH, + ACTIONS(4987), 1, + anon_sym_CARET, + ACTIONS(4989), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(5311), 1, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(4995), 1, anon_sym_is, - ACTIONS(5313), 1, + ACTIONS(4997), 1, anon_sym_BANGis, - STATE(2325), 1, + ACTIONS(4999), 1, + anon_sym_in, + ACTIONS(5001), 1, + anon_sym_BANGin, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(4979), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(4973), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(4977), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(4981), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(4975), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85193] = 27, + [85138] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4883), 1, anon_sym_QMARK, - ACTIONS(4685), 1, + ACTIONS(4885), 1, anon_sym_BANG, - ACTIONS(4687), 1, + ACTIONS(4887), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, + ACTIONS(4891), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4967), 1, anon_sym_as, - ACTIONS(4817), 1, + ACTIONS(4983), 1, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, + ACTIONS(4985), 1, anon_sym_DASH_DASH, - ACTIONS(4821), 1, + ACTIONS(4993), 1, + anon_sym_or, + ACTIONS(5045), 1, anon_sym_CARET, - ACTIONS(4823), 1, + ACTIONS(5099), 1, anon_sym_AMP_AMP, - ACTIONS(4825), 1, + ACTIONS(5101), 1, anon_sym_PIPE_PIPE, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4829), 1, - anon_sym_is, - ACTIONS(4831), 1, - anon_sym_BANGis, - ACTIONS(4833), 1, + ACTIONS(5103), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5105), 1, anon_sym_BANGin, - STATE(2325), 1, + ACTIONS(5483), 1, + anon_sym_is, + ACTIONS(5485), 1, + anon_sym_BANGis, + STATE(2398), 1, sym_or_block, - STATE(2378), 1, + STATE(2399), 1, sym_argument_list, - STATE(4401), 1, + STATE(4339), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4889), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4813), 2, + ACTIONS(5095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4807), 3, + ACTIONS(5039), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4811), 3, + ACTIONS(5043), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4815), 4, + ACTIONS(5097), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4809), 5, + ACTIONS(5041), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85288] = 27, + [85233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, + ACTIONS(2919), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(3070), 1, + anon_sym_LBRACE, + ACTIONS(5487), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(2914), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2912), 24, + anon_sym_DOT, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4853), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4883), 1, + [85286] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 1, + anon_sym_as, + ACTIONS(4602), 1, + anon_sym_LPAREN, + ACTIONS(4612), 1, + anon_sym_LBRACK, + ACTIONS(4614), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4616), 1, + anon_sym_DASH_DASH, + ACTIONS(4618), 1, + anon_sym_QMARK, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4622), 1, + anon_sym_LBRACK2, + ACTIONS(4624), 1, + anon_sym_AMP_AMP, + ACTIONS(4626), 1, anon_sym_PIPE_PIPE, - ACTIONS(5091), 1, + ACTIONS(4628), 1, + anon_sym_or, + ACTIONS(4630), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4632), 1, anon_sym_is, - ACTIONS(5093), 1, + ACTIONS(4634), 1, anon_sym_BANGis, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, + ACTIONS(4636), 1, + anon_sym_in, + ACTIONS(4638), 1, + anon_sym_BANGin, + ACTIONS(5491), 1, + anon_sym_CARET, + STATE(1983), 1, sym_argument_list, - STATE(4401), 1, + STATE(1984), 1, + sym_or_block, + STATE(4194), 1, sym_type_parameters, - ACTIONS(4689), 2, + ACTIONS(4594), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + ACTIONS(4608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + ACTIONS(4604), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, + ACTIONS(4606), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(4610), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + ACTIONS(5489), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85383] = 27, + [85381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(3162), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3165), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4817), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4853), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5315), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5317), 1, anon_sym_BANGis, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4849), 2, + anon_sym_in, + anon_sym_BANGin, + [85428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3110), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4841), 3, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3113), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [85475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(2946), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [85521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4785), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3218), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3216), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85478] = 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [85569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3660), 12, - anon_sym_DOT, + ACTIONS(3321), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264961,7 +268864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3664), 25, + ACTIONS(3319), 27, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -264971,9 +268875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -264986,13 +268892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [85527] = 4, + [85615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, - anon_sym_DOLLARelse, - ACTIONS(2616), 11, + ACTIONS(3012), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265004,7 +268907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2614), 27, + ACTIONS(3010), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265032,17 +268935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85576] = 6, + [85661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_LBRACK, - ACTIONS(2844), 1, - anon_sym_LBRACE, - ACTIONS(5321), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(2740), 11, + STATE(1825), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265054,9 +268952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 24, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265064,6 +268963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -265079,7 +268979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85629] = 23, + [85709] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -265092,45 +268992,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(605), 1, - anon_sym_LBRACK2, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(2740), 1, - anon_sym_DOT, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5157), 1, - anon_sym_AMP, ACTIONS(5309), 1, - anon_sym_DOT_DOT_DOT, - STATE(4315), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + STATE(2405), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2844), 3, + ACTIONS(621), 4, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2415), 4, + anon_sym_RBRACK, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265143,78 +269040,54 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85716] = 27, + [85791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - ACTIONS(4681), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_QMARK, - ACTIONS(4685), 1, - anon_sym_BANG, - ACTIONS(4687), 1, - anon_sym_LBRACK2, - ACTIONS(4691), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_as, - ACTIONS(4817), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4819), 1, - anon_sym_DASH_DASH, - ACTIONS(4827), 1, - anon_sym_or, - ACTIONS(4847), 1, - anon_sym_CARET, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_in, - ACTIONS(4857), 1, - anon_sym_BANGin, - ACTIONS(4883), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5323), 1, - anon_sym_is, - ACTIONS(5325), 1, - anon_sym_BANGis, - STATE(2325), 1, - sym_or_block, - STATE(2378), 1, - sym_argument_list, - STATE(4401), 1, - sym_type_parameters, - ACTIONS(4689), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4841), 3, + STATE(2370), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4851), 4, + ACTIONS(2942), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4843), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85811] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [85839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 11, + ACTIONS(3226), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265226,7 +269099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2964), 27, + ACTIONS(3224), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265254,10 +269127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85857] = 3, + [85885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 11, + ACTIONS(3218), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265269,7 +269142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3201), 27, + ACTIONS(3216), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265297,10 +269170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85903] = 3, + [85931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 11, + STATE(1961), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265312,9 +269187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3123), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265323,11 +269199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265340,10 +269214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85949] = 3, + [85979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 11, + STATE(1960), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265355,9 +269231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2792), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265366,11 +269243,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265383,12 +269258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85995] = 4, + [86027] = 3, ACTIONS(3), 1, sym_comment, - STATE(600), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(3257), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265400,10 +269273,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(3255), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265412,9 +269284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265427,10 +269301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86043] = 3, + [86073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 11, + STATE(2197), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265442,9 +269318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2896), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265453,11 +269330,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265470,12 +269345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86089] = 4, + [86121] = 3, ACTIONS(3), 1, sym_comment, - STATE(1771), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(3194), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265487,10 +269360,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(3192), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265499,9 +269371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265514,12 +269388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86137] = 4, + [86167] = 3, ACTIONS(3), 1, sym_comment, - STATE(2450), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(3341), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265531,10 +269403,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(3339), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265543,9 +269414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265558,12 +269431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86185] = 4, + [86213] = 3, ACTIONS(3), 1, sym_comment, - STATE(1925), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(2940), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265575,10 +269446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(2938), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265587,9 +269457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265602,73 +269474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86233] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - STATE(2330), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(611), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86315] = 4, + [86259] = 3, ACTIONS(3), 1, sym_comment, - STATE(997), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(3301), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265680,10 +269489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(3299), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265692,9 +269500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265707,12 +269517,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86363] = 4, + [86305] = 4, ACTIONS(3), 1, sym_comment, - STATE(2649), 1, + STATE(2363), 1, sym_block, - ACTIONS(3098), 11, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265724,7 +269534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265751,7 +269561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86411] = 21, + [86353] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -265764,42 +269574,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5305), 1, + anon_sym_mut, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2400), 1, + ACTIONS(5313), 1, + anon_sym_shared, + STATE(3076), 1, + sym_mutability_modifiers, + STATE(4278), 1, + sym_type_parameter_declaration, + STATE(4417), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(557), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265812,12 +269625,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86493] = 4, + [86441] = 3, ACTIONS(3), 1, sym_comment, - STATE(2870), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(2750), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265829,10 +269640,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(2752), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265841,9 +269651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265856,12 +269668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86541] = 4, + [86487] = 4, ACTIONS(3), 1, sym_comment, - STATE(1929), 1, + STATE(1192), 1, sym_block, - ACTIONS(3098), 11, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265873,7 +269685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265900,10 +269712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86589] = 3, + [86535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 11, + STATE(1673), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265915,9 +269729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2800), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265926,11 +269741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -265943,54 +269756,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86635] = 4, + [86583] = 21, ACTIONS(3), 1, sym_comment, - STATE(1306), 1, - sym_block, - ACTIONS(3098), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(45), 1, anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, anon_sym_BANG, + ACTIONS(5309), 1, anon_sym_LBRACK2, + ACTIONS(5311), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3096), 26, - anon_sym_DOT, - anon_sym_as, + STATE(2477), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(613), 4, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86683] = 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [86665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 11, + ACTIONS(2952), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266002,7 +269832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3100), 27, + ACTIONS(2950), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266030,10 +269860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86729] = 3, + [86711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 11, + ACTIONS(3084), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266045,7 +269875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2900), 27, + ACTIONS(3082), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266073,132 +269903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86775] = 21, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3421), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, - anon_sym_fn, - ACTIONS(5329), 1, - anon_sym_STAR, - ACTIONS(5331), 1, - anon_sym_QMARK, - ACTIONS(5333), 1, - anon_sym_BANG, - ACTIONS(5335), 1, - anon_sym_LBRACK2, - ACTIONS(5337), 1, - anon_sym_AMP, - ACTIONS(5339), 1, - anon_sym_shared, - ACTIONS(5341), 1, - anon_sym_map_LBRACK, - ACTIONS(5343), 1, - anon_sym_chan, - ACTIONS(5345), 1, - anon_sym_thread, - ACTIONS(5347), 1, - anon_sym_atomic, - STATE(1652), 1, - sym_plain_type, - STATE(4425), 1, - sym_reference_expression, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(561), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1636), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1651), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86857] = 21, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3421), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, - anon_sym_fn, - ACTIONS(5329), 1, - anon_sym_STAR, - ACTIONS(5331), 1, - anon_sym_QMARK, - ACTIONS(5333), 1, - anon_sym_BANG, - ACTIONS(5335), 1, - anon_sym_LBRACK2, - ACTIONS(5337), 1, - anon_sym_AMP, - ACTIONS(5339), 1, - anon_sym_shared, - ACTIONS(5341), 1, - anon_sym_map_LBRACK, - ACTIONS(5343), 1, - anon_sym_chan, - ACTIONS(5345), 1, - anon_sym_thread, - ACTIONS(5347), 1, - anon_sym_atomic, - STATE(1678), 1, - sym_plain_type, - STATE(4425), 1, - sym_reference_expression, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(613), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1636), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1651), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86939] = 3, + [86757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 11, + ACTIONS(3325), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266210,7 +269918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3161), 27, + ACTIONS(3323), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266238,12 +269946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86985] = 4, + [86803] = 3, ACTIONS(3), 1, sym_comment, - STATE(1161), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(3277), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266255,10 +269961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(3275), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266267,9 +269972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -266282,10 +269989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87033] = 3, + [86849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 11, + ACTIONS(3265), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266297,7 +270004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3131), 27, + ACTIONS(3263), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266325,71 +270032,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87079] = 21, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3421), 1, - anon_sym_LPAREN, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, - anon_sym_fn, - ACTIONS(5329), 1, - anon_sym_STAR, - ACTIONS(5331), 1, - anon_sym_QMARK, - ACTIONS(5333), 1, - anon_sym_BANG, - ACTIONS(5335), 1, - anon_sym_LBRACK2, - ACTIONS(5337), 1, - anon_sym_AMP, - ACTIONS(5339), 1, - anon_sym_shared, - ACTIONS(5341), 1, - anon_sym_map_LBRACK, - ACTIONS(5343), 1, - anon_sym_chan, - ACTIONS(5345), 1, - anon_sym_thread, - ACTIONS(5347), 1, - anon_sym_atomic, - STATE(1660), 1, - sym_plain_type, - STATE(4425), 1, - sym_reference_expression, - STATE(3388), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(621), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1636), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1651), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [87161] = 3, + [86895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 11, + ACTIONS(3190), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266401,7 +270047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2904), 27, + ACTIONS(3188), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266429,10 +270075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87207] = 3, + [86941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 11, + ACTIONS(3206), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266444,7 +270090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3193), 27, + ACTIONS(3204), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266472,10 +270118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87253] = 3, + [86987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 11, + STATE(1020), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266487,9 +270135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2916), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266498,11 +270147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -266515,12 +270162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87299] = 4, + [87035] = 3, ACTIONS(3), 1, sym_comment, - STATE(2308), 1, - sym_block, - ACTIONS(3098), 11, + ACTIONS(3210), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266532,10 +270177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(3208), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266544,9 +270188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -266559,10 +270205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87347] = 3, + [87081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 11, + ACTIONS(3182), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266574,7 +270220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2936), 27, + ACTIONS(3180), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266602,10 +270248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87393] = 3, + [87127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 11, + ACTIONS(3174), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266617,7 +270263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2940), 27, + ACTIONS(3172), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266645,58 +270291,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87439] = 24, - ACTIONS(3), 1, + [87173] = 21, + ACTIONS(495), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3567), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3573), 1, + anon_sym_struct, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5495), 1, anon_sym_STAR, - ACTIONS(5149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_mut, - ACTIONS(5153), 1, + ACTIONS(5497), 1, + anon_sym_QMARK, + ACTIONS(5499), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5501), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5503), 1, anon_sym_AMP, - ACTIONS(5159), 1, + ACTIONS(5505), 1, anon_sym_shared, - STATE(3014), 1, - sym_mutability_modifiers, - STATE(4318), 1, - sym_type_parameter_declaration, - STATE(4352), 1, + ACTIONS(5507), 1, + anon_sym_map_LBRACK, + ACTIONS(5509), 1, + anon_sym_chan, + ACTIONS(5511), 1, + anon_sym_thread, + ACTIONS(5513), 1, + anon_sym_atomic, + STATE(1676), 1, sym_plain_type, - STATE(4655), 1, + STATE(4452), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + ACTIONS(615), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266709,10 +270352,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [87527] = 3, + [87255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 11, + ACTIONS(3170), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266724,7 +270367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2944), 27, + ACTIONS(3168), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266752,7 +270395,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87573] = 21, + [87301] = 21, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3567), 1, + anon_sym_LPAREN, + ACTIONS(3573), 1, + anon_sym_struct, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5495), 1, + anon_sym_STAR, + ACTIONS(5497), 1, + anon_sym_QMARK, + ACTIONS(5499), 1, + anon_sym_BANG, + ACTIONS(5501), 1, + anon_sym_LBRACK2, + ACTIONS(5503), 1, + anon_sym_AMP, + ACTIONS(5505), 1, + anon_sym_shared, + ACTIONS(5507), 1, + anon_sym_map_LBRACK, + ACTIONS(5509), 1, + anon_sym_chan, + ACTIONS(5511), 1, + anon_sym_thread, + ACTIONS(5513), 1, + anon_sym_atomic, + STATE(1686), 1, + sym_plain_type, + STATE(4452), 1, + sym_reference_expression, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(585), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1705), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1704), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [87383] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -266765,42 +270469,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2359), 1, + STATE(2472), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(619), 4, + ACTIONS(581), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266813,10 +270517,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [87655] = 3, + [87465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 11, + ACTIONS(3028), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266828,7 +270532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2948), 27, + ACTIONS(3026), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266856,98 +270560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87701] = 3, + [87511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3024), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2786), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87793] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2161), 1, + STATE(1315), 1, sym_block, - ACTIONS(3098), 11, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266959,7 +270577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266986,54 +270604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4613), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2794), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2792), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87889] = 3, + [87559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 11, + ACTIONS(3044), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267045,7 +270619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3197), 27, + ACTIONS(3042), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267073,10 +270647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87935] = 3, + [87605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 11, + ACTIONS(3289), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267088,7 +270662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3032), 27, + ACTIONS(3287), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267116,10 +270690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87981] = 3, + [87651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 11, + ACTIONS(3020), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267131,7 +270705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3020), 27, + ACTIONS(3018), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267159,10 +270733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88027] = 3, + [87697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 11, + ACTIONS(3132), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267174,7 +270748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3112), 27, + ACTIONS(3130), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267202,97 +270776,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88073] = 4, - ACTIONS(3), 1, + [87743] = 21, + ACTIONS(495), 1, sym_comment, - STATE(1666), 1, - sym_block, - ACTIONS(3098), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3096), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3567), 1, anon_sym_LPAREN, + ACTIONS(3573), 1, + anon_sym_struct, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5495), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2890), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5497), 1, anon_sym_QMARK, + ACTIONS(5499), 1, anon_sym_BANG, + ACTIONS(5501), 1, anon_sym_LBRACK2, + ACTIONS(5503), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2888), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88167] = 3, + ACTIONS(5505), 1, + anon_sym_shared, + ACTIONS(5507), 1, + anon_sym_map_LBRACK, + ACTIONS(5509), 1, + anon_sym_chan, + ACTIONS(5511), 1, + anon_sym_thread, + ACTIONS(5513), 1, + anon_sym_atomic, + STATE(1695), 1, + sym_plain_type, + STATE(4452), 1, + sym_reference_expression, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(623), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1705), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1704), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [87825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 11, + STATE(603), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267304,9 +270854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3012), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267315,11 +270866,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -267332,10 +270881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88213] = 3, + [87873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 11, + STATE(2903), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267347,9 +270898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3076), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267358,11 +270910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -267375,10 +270925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88259] = 3, + [87921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 11, + ACTIONS(3285), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267390,7 +270940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3149), 27, + ACTIONS(3283), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267418,10 +270968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88305] = 3, + [87967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 11, + STATE(2700), 1, + sym_block, + ACTIONS(2944), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267433,9 +270985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3153), 27, + ACTIONS(2942), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267444,11 +270997,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -267461,10 +271012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88351] = 3, + [88015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 11, + ACTIONS(3281), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267476,7 +271027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3157), 27, + ACTIONS(3279), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267504,12 +271055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88397] = 4, + [88061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5349), 1, + ACTIONS(5515), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267521,7 +271072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267547,14 +271098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88444] = 5, + [88108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5351), 1, + ACTIONS(5517), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267566,7 +271117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267591,12 +271142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88493] = 4, + [88157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5519), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267608,7 +271159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267634,12 +271185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88540] = 4, + [88204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5519), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267651,8 +271204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267677,14 +271229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88587] = 5, + [88253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5353), 1, + ACTIONS(5521), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267696,7 +271248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267721,14 +271273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88636] = 5, + [88302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5357), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(5521), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267740,7 +271290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267765,12 +271316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88685] = 4, + [88349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(5523), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267782,7 +271333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267808,12 +271359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88732] = 4, + [88396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5523), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267825,7 +271376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267851,12 +271402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88779] = 4, + [88443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5523), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267868,8 +271421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267894,14 +271446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88826] = 5, + [88492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5361), 1, + ACTIONS(5525), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267913,7 +271465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267938,12 +271490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88875] = 4, + [88541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5363), 1, + ACTIONS(5527), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267955,7 +271507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267981,12 +271533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88922] = 4, + [88588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5365), 1, + ACTIONS(5525), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267998,7 +271550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268024,12 +271576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88969] = 4, + [88635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5529), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268041,8 +271595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268067,14 +271620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89016] = 5, + [88684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5369), 1, + ACTIONS(5531), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268086,7 +271639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268111,12 +271664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89065] = 4, + [88733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 1, + ACTIONS(5529), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268128,7 +271681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268154,12 +271707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89112] = 4, + [88780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 1, + ACTIONS(5531), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268171,7 +271724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268197,12 +271750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89159] = 4, + [88827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, + ACTIONS(5529), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268214,7 +271767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268240,12 +271793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89206] = 4, + [88874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5533), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268257,8 +271812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268283,12 +271837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89253] = 4, + [88923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5531), 1, + anon_sym_RBRACK, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268300,7 +271854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268326,14 +271880,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89300] = 5, + [88970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5373), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5535), 1, + anon_sym_RBRACK, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268345,7 +271897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3267), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268370,12 +271923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89349] = 4, + [89017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5349), 1, + ACTIONS(5535), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268387,7 +271940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268413,14 +271966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89396] = 5, + [89064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5359), 1, + ACTIONS(5537), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268432,7 +271985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268457,14 +272010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89445] = 5, + [89113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5375), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5539), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268476,7 +272029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268501,12 +272054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89494] = 4, + [89162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5541), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268518,8 +272073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268544,14 +272098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89541] = 5, + [89211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5377), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(5541), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268563,7 +272115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268588,14 +272141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89590] = 5, + [89258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5543), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268607,7 +272160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268632,12 +272185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89639] = 4, + [89307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5545), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268649,8 +272204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268675,12 +272229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89686] = 4, + [89356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, + ACTIONS(5545), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268692,7 +272246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268718,12 +272272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89733] = 4, + [89403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, + ACTIONS(5545), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268735,7 +272289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268761,12 +272315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89780] = 4, + [89450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, + ACTIONS(5533), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268778,7 +272332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268804,12 +272358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89827] = 4, + [89497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5379), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5547), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268821,8 +272377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268847,12 +272402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89874] = 4, + [89546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5379), 1, - anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5549), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268864,8 +272421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268890,12 +272446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89921] = 4, + [89595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(5549), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268907,7 +272463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268933,12 +272489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89968] = 4, + [89642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5547), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268950,7 +272506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268976,12 +272532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90015] = 4, + [89689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(5551), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268993,7 +272549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269019,12 +272575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90062] = 4, + [89736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, - anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5551), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269036,8 +272594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269062,12 +272619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90109] = 4, + [89785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5553), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269079,8 +272638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269105,14 +272663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90156] = 5, + [89834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5363), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5547), 1, + anon_sym_RBRACK, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269124,7 +272680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3267), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269149,12 +272706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90205] = 4, + [89881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5389), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5535), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269166,8 +272725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269192,12 +272750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90252] = 4, + [89930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5555), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269209,8 +272769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269235,12 +272794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90299] = 4, + [89979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5389), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5557), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269252,8 +272813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269278,14 +272838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90346] = 5, + [90028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5383), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(5557), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269297,7 +272855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269322,14 +272881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90395] = 5, + [90075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5393), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5553), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269341,7 +272898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269366,12 +272924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90444] = 4, + [90122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5393), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5553), 1, + anon_sym_RBRACK, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269383,7 +272941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269409,12 +272967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90491] = 4, + [90169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 1, - anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(5555), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269426,7 +272984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269452,12 +273010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90538] = 4, + [90216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 1, + ACTIONS(5537), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269469,7 +273027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269495,12 +273053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90585] = 4, + [90263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5559), 1, + anon_sym_RBRACK, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269512,7 +273070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269538,14 +273096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90632] = 5, + [90310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5397), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5559), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269557,7 +273113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269582,14 +273139,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90681] = 5, + [90357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5385), 1, + ACTIONS(5537), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269601,7 +273156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3267), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269626,12 +273182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90730] = 4, + [90404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5559), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269643,8 +273201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269669,14 +273226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90777] = 5, + [90453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5399), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(5561), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269688,7 +273245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269713,14 +273270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90826] = 5, + [90502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5387), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(5561), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269732,7 +273287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269757,14 +273313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90875] = 5, + [90549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5381), 1, + ACTIONS(5563), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269776,7 +273330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3267), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269801,12 +273356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90924] = 4, + [90596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 1, - anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(5565), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269818,7 +273373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269844,12 +273399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90971] = 4, + [90643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5565), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269861,8 +273418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269887,12 +273443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91018] = 4, + [90692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, - anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5527), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269904,8 +273462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269930,12 +273487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91065] = 4, + [90741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 1, + ACTIONS(5563), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269947,7 +273504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3228), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269973,14 +273530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91112] = 5, + [90788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5365), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5563), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269992,7 +273549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270017,12 +273574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91161] = 4, + [90837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 1, + ACTIONS(5567), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270034,7 +273591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270060,14 +273617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91208] = 5, + [90884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5355), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5567), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270079,7 +273634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270104,12 +273660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91257] = 4, + [90931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5567), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270121,8 +273679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270147,14 +273704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91304] = 5, + [90980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5349), 1, + ACTIONS(5543), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270166,7 +273721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270191,12 +273747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91353] = 4, + [91027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, + ACTIONS(5517), 1, anon_sym_RBRACK, - ACTIONS(3171), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270208,7 +273764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270234,12 +273790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91400] = 4, + [91074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, + ACTIONS(5533), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270251,7 +273807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, + ACTIONS(3267), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -270277,14 +273833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91447] = 5, + [91121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5401), 1, + ACTIONS(5517), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270296,7 +273850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270321,14 +273876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91496] = 5, + [91168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5389), 1, + ACTIONS(5539), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270340,7 +273893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3267), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270365,14 +273919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91545] = 5, + [91215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5371), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5543), 1, + anon_sym_RBRACK, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270384,7 +273936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3267), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270409,14 +273962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91594] = 5, + [91262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5403), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5539), 1, + anon_sym_RBRACK, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270428,7 +273979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270453,14 +274005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91643] = 5, + [91309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4762), 1, anon_sym_DOT, - ACTIONS(5367), 1, + ACTIONS(5515), 1, anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270472,7 +274024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270497,12 +274049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91692] = 4, + [91358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5403), 1, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(5569), 1, anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270514,8 +274068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 25, - anon_sym_DOT, + ACTIONS(3228), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270540,14 +274093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91739] = 5, + [91407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5391), 1, - anon_sym_RPAREN, - ACTIONS(3118), 11, + ACTIONS(5515), 1, + anon_sym_RBRACK, + ACTIONS(3269), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270559,7 +274110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3267), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270584,14 +274136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91788] = 5, + [91454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, - anon_sym_DOT, - ACTIONS(5395), 1, - anon_sym_RBRACK, - ACTIONS(3118), 11, + ACTIONS(5569), 1, + anon_sym_RPAREN, + ACTIONS(3230), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -270603,7 +274153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3116), 24, + ACTIONS(3228), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270628,54 +274179,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91837] = 22, + [91501] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3427), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(5493), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5407), 1, + ACTIONS(5573), 1, anon_sym_EQ, - ACTIONS(5409), 1, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5583), 1, anon_sym_AMP, - ACTIONS(5419), 1, + ACTIONS(5585), 1, anon_sym_map_LBRACK, - STATE(3774), 1, + STATE(3722), 1, sym__global_var_value, - STATE(3778), 1, + STATE(3888), 1, sym_plain_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - STATE(3388), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270688,228 +274239,54 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91919] = 22, + [91583] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5423), 1, + ACTIONS(5589), 1, anon_sym_EQ, - ACTIONS(5425), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5435), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(1553), 1, + STATE(1616), 1, sym__global_var_value, - STATE(1555), 1, - sym_plain_type, - STATE(4462), 1, - sym_reference_expression, - STATE(1415), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1479), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1481), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92001] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5437), 1, - anon_sym_RPAREN, - STATE(3955), 1, + STATE(1617), 1, sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92080] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5439), 1, - anon_sym_RPAREN, - STATE(3955), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92159] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5441), 1, - anon_sym_DOT_DOT_DOT, - STATE(4410), 1, - sym_plain_type, - STATE(4655), 1, + STATE(4642), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270922,226 +274299,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92238] = 21, + [91665] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_RPAREN, - STATE(3955), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92317] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(89), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5267), 1, - anon_sym_DOT_DOT_DOT, - STATE(4333), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92396] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5445), 1, - anon_sym_RPAREN, - STATE(3955), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92475] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, - anon_sym_BANG, - ACTIONS(5155), 1, - anon_sym_LBRACK2, - ACTIONS(5157), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_RPAREN, - STATE(3955), 1, + STATE(1464), 1, sym_plain_type, - STATE(4655), 1, + STATE(1527), 1, + sym__type_union_list, + STATE(4642), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271154,7 +274357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92554] = 21, + [91744] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271167,39 +274370,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5441), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5449), 1, - sym_identifier, - STATE(4410), 1, + ACTIONS(5603), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271212,7 +274415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92633] = 21, + [91823] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271225,39 +274428,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5309), 1, - anon_sym_DOT_DOT_DOT, - STATE(4315), 1, + ACTIONS(5605), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271270,7 +274473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92712] = 21, + [91902] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271283,39 +274486,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5451), 1, + ACTIONS(5607), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271328,7 +274531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92791] = 21, + [91981] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271341,39 +274544,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5453), 1, + ACTIONS(5609), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271386,7 +274589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92870] = 21, + [92060] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271399,39 +274602,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5455), 1, + ACTIONS(5611), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271444,7 +274647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92949] = 21, + [92139] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271457,39 +274660,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5457), 1, + ACTIONS(5613), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271502,52 +274705,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93028] = 21, + [92218] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3411), 1, - anon_sym_chan, - ACTIONS(3413), 1, - anon_sym_thread, - ACTIONS(3415), 1, - anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5427), 1, - anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, + ACTIONS(5615), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(1541), 1, - sym__type_union_list, - STATE(4462), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1415), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271560,7 +274763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93107] = 21, + [92297] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271573,39 +274776,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5459), 1, - anon_sym_RPAREN, - STATE(3955), 1, + ACTIONS(5463), 1, + anon_sym_DOT_DOT_DOT, + STATE(4444), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271618,7 +274821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93186] = 21, + [92376] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271631,39 +274834,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5461), 1, + ACTIONS(5617), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271676,7 +274879,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93265] = 21, + [92455] = 8, + ACTIONS(3), 1, + sym_comment, + STATE(2421), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(4488), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4490), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [92508] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271689,39 +274937,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5619), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271734,7 +274982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93344] = 21, + [92587] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271747,39 +274995,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5465), 1, + ACTIONS(5621), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271792,52 +275040,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93423] = 21, + [92666] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3411), 1, - anon_sym_chan, - ACTIONS(3413), 1, - anon_sym_thread, - ACTIONS(3415), 1, - anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5427), 1, - anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, + ACTIONS(5623), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(1498), 1, - sym__type_union_list, - STATE(4462), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1415), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271850,7 +275098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93502] = 21, + [92745] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271863,39 +275111,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5467), 1, + ACTIONS(5625), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271908,7 +275156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93581] = 21, + [92824] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271921,39 +275169,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5469), 1, + ACTIONS(5627), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271966,52 +275214,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93660] = 21, + [92903] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3411), 1, - anon_sym_chan, - ACTIONS(3413), 1, - anon_sym_thread, - ACTIONS(3415), 1, - anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5427), 1, - anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, + ACTIONS(5629), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(1501), 1, - sym__type_union_list, - STATE(4462), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1415), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272024,7 +275272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93739] = 21, + [92982] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272037,39 +275285,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5471), 1, + ACTIONS(5631), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272082,7 +275330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93818] = 21, + [93061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272095,39 +275343,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5473), 1, + ACTIONS(5633), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272140,39 +275388,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93897] = 8, + [93140] = 21, ACTIONS(3), 1, sym_comment, - STATE(2348), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(3547), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(4310), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, + ACTIONS(87), 1, anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(4312), 8, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, anon_sym_LPAREN, + ACTIONS(3527), 1, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, + ACTIONS(5307), 1, anon_sym_BANG, + ACTIONS(5309), 1, anon_sym_LBRACK2, + ACTIONS(5311), 1, anon_sym_AMP, - anon_sym_map_LBRACK, - STATE(2417), 12, + ACTIONS(5635), 1, + sym_identifier, + ACTIONS(5637), 1, + anon_sym_DOT_DOT_DOT, + STATE(4199), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272185,7 +275446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93950] = 21, + [93219] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272198,39 +275459,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(5639), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272243,52 +275504,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94029] = 21, + [93298] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3557), 1, + anon_sym_chan, + ACTIONS(3559), 1, + anon_sym_thread, + ACTIONS(3561), 1, + anon_sym_atomic, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5593), 1, + anon_sym_QMARK, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_RPAREN, - STATE(3955), 1, + ACTIONS(5601), 1, + anon_sym_map_LBRACK, + STATE(1464), 1, sym_plain_type, - STATE(4655), 1, + STATE(1564), 1, + sym__type_union_list, + STATE(4642), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272301,7 +275562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94108] = 21, + [93377] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272314,39 +275575,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5479), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272359,7 +275620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94187] = 21, + [93456] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272372,39 +275633,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5481), 1, - anon_sym_RPAREN, - STATE(3955), 1, + ACTIONS(5637), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5643), 1, + sym_identifier, + STATE(4199), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272417,7 +275678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94266] = 21, + [93535] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272430,39 +275691,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5483), 1, + ACTIONS(5645), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272475,52 +275736,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94345] = 21, + [93614] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5435), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(1420), 1, + STATE(1464), 1, sym_plain_type, - STATE(1490), 1, + STATE(1589), 1, sym__type_union_list, - STATE(4462), 1, + STATE(4642), 1, sym_reference_expression, - STATE(1415), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272533,7 +275794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94424] = 21, + [93693] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272546,39 +275807,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5485), 1, + ACTIONS(5647), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272591,52 +275852,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94503] = 21, + [93772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3557), 1, + anon_sym_chan, + ACTIONS(3559), 1, + anon_sym_thread, + ACTIONS(3561), 1, + anon_sym_atomic, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5593), 1, + anon_sym_QMARK, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_RPAREN, - STATE(3955), 1, + ACTIONS(5601), 1, + anon_sym_map_LBRACK, + STATE(1464), 1, sym_plain_type, - STATE(4655), 1, + STATE(1566), 1, + sym__type_union_list, + STATE(4642), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272649,7 +275910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94582] = 21, + [93851] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272662,39 +275923,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5489), 1, + ACTIONS(5649), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272707,7 +275968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94661] = 21, + [93930] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272720,39 +275981,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5491), 1, + ACTIONS(5651), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272765,7 +276026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94740] = 21, + [94009] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272778,39 +276039,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5493), 1, + ACTIONS(5653), 1, anon_sym_RPAREN, - STATE(3955), 1, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272823,7 +276084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94819] = 21, + [94088] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272836,39 +276097,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(597), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5441), 1, + ACTIONS(5457), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5495), 1, - sym_identifier, - STATE(4410), 1, + STATE(4214), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272881,7 +276142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94898] = 21, + [94167] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272894,39 +276155,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5497), 1, - anon_sym_RPAREN, - STATE(3955), 1, + ACTIONS(5637), 1, + anon_sym_DOT_DOT_DOT, + STATE(4199), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272939,106 +276200,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94977] = 20, + [94246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, - sym_identifier, - ACTIONS(3710), 1, - anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, - anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5499), 1, - anon_sym_QMARK, - ACTIONS(5501), 1, - anon_sym_BANG, - ACTIONS(5503), 1, - anon_sym_LBRACK2, - ACTIONS(5505), 1, - anon_sym_AMP, - STATE(2336), 1, - sym_plain_type, - STATE(4655), 1, - sym_reference_expression, - STATE(2315), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2415), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2417), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95053] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(559), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(571), 1, anon_sym_struct, ACTIONS(579), 1, anon_sym_shared, - ACTIONS(583), 1, - anon_sym_chan, - ACTIONS(585), 1, - anon_sym_thread, - ACTIONS(587), 1, - anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5511), 1, - anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(913), 1, + ACTIONS(5655), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(4438), 1, + STATE(4638), 1, sym_reference_expression, - STATE(618), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273051,50 +276258,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95129] = 20, + [94325] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3695), 1, - anon_sym_chan, - ACTIONS(3697), 1, - anon_sym_thread, - ACTIONS(3699), 1, - anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5525), 1, - anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5533), 1, - anon_sym_map_LBRACK, - STATE(2276), 1, + ACTIONS(5657), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(4570), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2164), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273107,7 +276316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95205] = 20, + [94404] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -273120,37 +276329,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4591), 1, + ACTIONS(5659), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273163,106 +276374,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95281] = 20, + [94483] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, - sym_identifier, - ACTIONS(1614), 1, - anon_sym_fn, - ACTIONS(1618), 1, - anon_sym_struct, - ACTIONS(1628), 1, - anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1106), 1, - sym_plain_type, - STATE(4448), 1, - sym_reference_expression, - STATE(1002), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1084), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1085), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95357] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3695), 1, - anon_sym_chan, - ACTIONS(3697), 1, - anon_sym_thread, - ACTIONS(3699), 1, - anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5525), 1, - anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5533), 1, - anon_sym_map_LBRACK, - STATE(2214), 1, + ACTIONS(5661), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(4570), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2164), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273275,7 +276432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95433] = 20, + [94562] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -273288,37 +276445,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(3955), 1, + ACTIONS(5663), 1, + anon_sym_RPAREN, + STATE(4062), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273331,50 +276490,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95509] = 20, + [94641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(2252), 1, + STATE(2536), 1, sym_plain_type, - STATE(4570), 1, + STATE(4501), 1, sym_reference_expression, - STATE(2164), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273387,50 +276546,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95585] = 20, + [94717] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(1622), 1, + anon_sym_struct, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5679), 1, + anon_sym_LPAREN, + ACTIONS(5681), 1, + anon_sym_STAR, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(2866), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1088), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(2315), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273443,50 +276602,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95661] = 20, + [94793] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, - sym_identifier, - ACTIONS(3710), 1, - anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, - anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5499), 1, - anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2867), 1, - sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2315), 2, + STATE(4704), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273499,7 +276658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95737] = 20, + [94869] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -273512,37 +276671,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4645), 1, + STATE(4616), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273555,50 +276714,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95813] = 20, + [94945] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1102), 1, + STATE(910), 1, sym_plain_type, - STATE(4448), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1002), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273611,50 +276770,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95889] = 20, + [95021] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5707), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5719), 1, anon_sym_map_LBRACK, - STATE(1094), 1, + STATE(1273), 1, sym_plain_type, - STATE(4448), 1, + STATE(4522), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273667,50 +276826,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95965] = 20, + [95097] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1093), 1, + STATE(911), 1, sym_plain_type, - STATE(4448), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1002), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273723,50 +276882,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96041] = 20, + [95173] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3695), 1, - anon_sym_chan, - ACTIONS(3697), 1, - anon_sym_thread, - ACTIONS(3699), 1, - anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5525), 1, - anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5533), 1, - anon_sym_map_LBRACK, - STATE(2286), 1, - sym_plain_type, - STATE(4570), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2164), 2, + STATE(4713), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273779,50 +276938,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96117] = 20, + [95249] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(1091), 1, + STATE(1753), 1, sym_plain_type, - STATE(4448), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273835,50 +276994,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96193] = 20, + [95325] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, + anon_sym_chan, + ACTIONS(3729), 1, + anon_sym_thread, + ACTIONS(3731), 1, + anon_sym_atomic, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5735), 1, + anon_sym_QMARK, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5741), 1, anon_sym_AMP, - STATE(3971), 1, + STATE(2126), 1, sym_plain_type, - STATE(4655), 1, + STATE(4543), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273891,7 +277050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96269] = 20, + [95401] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -273904,37 +277063,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4044), 1, + STATE(3914), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273947,50 +277106,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96345] = 20, + [95477] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1108), 1, + STATE(2135), 1, sym_plain_type, - STATE(4448), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274003,50 +277162,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96421] = 20, + [95553] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1095), 1, + STATE(2134), 1, sym_plain_type, - STATE(4448), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274059,50 +277218,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96497] = 20, + [95629] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(1632), 1, - anon_sym_chan, - ACTIONS(1634), 1, - anon_sym_thread, - ACTIONS(1636), 1, - anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1089), 1, - sym_plain_type, - STATE(4448), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1002), 2, + STATE(4731), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274115,50 +277274,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96573] = 20, + [95705] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3449), 1, + anon_sym_chan, + ACTIONS(3451), 1, + anon_sym_thread, + ACTIONS(3453), 1, + anon_sym_atomic, + ACTIONS(5707), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5711), 1, + anon_sym_QMARK, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(4084), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1220), 1, sym_plain_type, - STATE(4655), 1, + STATE(4522), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274171,50 +277330,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96649] = 20, + [95781] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_identifier, - ACTIONS(3363), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3880), 1, + sym_identifier, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3367), 1, + ACTIONS(3884), 1, anon_sym_STAR, - ACTIONS(3369), 1, - anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(3896), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5749), 1, anon_sym_AMP, - STATE(1329), 1, + STATE(2388), 1, sym_plain_type, - STATE(4427), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1303), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274227,50 +277386,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96725] = 20, + [95857] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(2250), 1, + STATE(912), 1, sym_plain_type, - STATE(4570), 1, + STATE(4555), 1, sym_reference_expression, - STATE(2164), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274283,50 +277442,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96801] = 20, + [95933] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5707), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5719), 1, anon_sym_map_LBRACK, - STATE(2247), 1, + STATE(1216), 1, sym_plain_type, - STATE(4570), 1, + STATE(4522), 1, sym_reference_expression, - STATE(2164), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274339,50 +277498,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96877] = 20, + [96009] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3381), 1, - anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5707), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(1321), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1281), 1, sym_plain_type, - STATE(4427), 1, + STATE(4522), 1, sym_reference_expression, - STATE(1303), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274395,50 +277554,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96953] = 20, + [96085] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3681), 1, - anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5521), 1, - anon_sym_LPAREN, - ACTIONS(5523), 1, - anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5533), 1, - anon_sym_map_LBRACK, - STATE(2217), 1, + STATE(2396), 1, sym_plain_type, - STATE(4570), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2164), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274451,50 +277610,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97029] = 20, + [96161] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3681), 1, - anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5521), 1, - anon_sym_LPAREN, - ACTIONS(5523), 1, - anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5533), 1, - anon_sym_map_LBRACK, - STATE(2216), 1, + STATE(2397), 1, sym_plain_type, - STATE(4570), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2164), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274507,50 +277666,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97105] = 20, + [96237] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, - anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, - anon_sym_struct, - ACTIONS(3379), 1, - anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5549), 1, - anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(1404), 1, - sym_plain_type, - STATE(4427), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1303), 2, + STATE(4763), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274563,50 +277722,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97181] = 20, + [96313] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5707), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5717), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5719), 1, anon_sym_map_LBRACK, - STATE(2215), 1, + STATE(1283), 1, sym_plain_type, - STATE(4570), 1, + STATE(4522), 1, sym_reference_expression, - STATE(2164), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274619,50 +277778,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97257] = 20, + [96389] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(607), 1, + anon_sym_chan, + ACTIONS(609), 1, + anon_sym_thread, + ACTIONS(611), 1, + anon_sym_atomic, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5697), 1, + anon_sym_QMARK, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5703), 1, anon_sym_AMP, - STATE(4655), 1, - sym_reference_expression, - STATE(4682), 1, + ACTIONS(5705), 1, + anon_sym_map_LBRACK, + STATE(901), 1, sym_plain_type, - STATE(3547), 2, + STATE(4555), 1, + sym_reference_expression, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274675,50 +277834,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97333] = 20, + [96465] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5435), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1477), 1, + STATE(905), 1, sym_plain_type, - STATE(4462), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1415), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274731,50 +277890,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97409] = 20, + [96541] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5587), 1, + anon_sym_LPAREN, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5599), 1, anon_sym_AMP, - STATE(2089), 1, + ACTIONS(5601), 1, + anon_sym_map_LBRACK, + STATE(1473), 1, sym_plain_type, - STATE(4469), 1, + STATE(4642), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274787,50 +277946,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97485] = 20, + [96617] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, - anon_sym_fn, - ACTIONS(3557), 1, - anon_sym_struct, - ACTIONS(3567), 1, - anon_sym_shared, - ACTIONS(3569), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2090), 1, + STATE(4158), 1, sym_plain_type, - STATE(4469), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1930), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274843,50 +278002,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97561] = 20, + [96693] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5707), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(1969), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1282), 1, sym_plain_type, - STATE(4469), 1, + STATE(4522), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274899,50 +278058,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97637] = 20, + [96769] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3551), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3569), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(1976), 1, + STATE(2018), 1, sym_plain_type, - STATE(4469), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274955,50 +278114,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97713] = 20, + [96845] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5693), 1, + anon_sym_LPAREN, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5703), 1, anon_sym_AMP, - STATE(1982), 1, + ACTIONS(5705), 1, + anon_sym_map_LBRACK, + STATE(907), 1, sym_plain_type, - STATE(4469), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1930), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275011,50 +278170,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97789] = 20, + [96921] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5729), 1, anon_sym_AMP, - STATE(2023), 1, + ACTIONS(5731), 1, + anon_sym_map_LBRACK, + STATE(1690), 1, sym_plain_type, - STATE(4469), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275067,50 +278226,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97865] = 20, + [96997] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3673), 1, + anon_sym_struct, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5751), 1, + anon_sym_STAR, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(2429), 1, + STATE(2019), 1, sym_plain_type, - STATE(4655), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2315), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275123,50 +278282,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97941] = 20, + [97073] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3587), 1, + anon_sym_chan, + ACTIONS(3589), 1, + anon_sym_thread, + ACTIONS(3591), 1, + anon_sym_atomic, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5723), 1, + anon_sym_QMARK, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5729), 1, anon_sym_AMP, - STATE(4249), 1, + ACTIONS(5731), 1, + anon_sym_map_LBRACK, + STATE(1752), 1, sym_plain_type, - STATE(4655), 1, + STATE(4468), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275179,50 +278338,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98017] = 20, + [97149] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5567), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5569), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5579), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(3433), 1, + STATE(2551), 1, sym_plain_type, - STATE(4425), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3388), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275235,50 +278394,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98093] = 20, + [97225] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5567), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5569), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5579), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(3422), 1, + STATE(2514), 1, sym_plain_type, - STATE(4425), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3388), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275291,50 +278450,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98169] = 20, + [97301] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(593), 1, + anon_sym_struct, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5693), 1, + anon_sym_LPAREN, + ACTIONS(5695), 1, + anon_sym_STAR, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5703), 1, anon_sym_AMP, - STATE(2341), 1, + ACTIONS(5705), 1, + anon_sym_map_LBRACK, + STATE(932), 1, sym_plain_type, - STATE(4655), 1, + STATE(4555), 1, sym_reference_expression, - STATE(2315), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275347,50 +278506,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98245] = 20, + [97377] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, - sym_identifier, - ACTIONS(3710), 1, - anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, - anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5499), 1, - anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2338), 1, + STATE(3957), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2315), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275403,50 +278562,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98321] = 20, + [97453] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5665), 1, + anon_sym_LPAREN, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(2002), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2556), 1, sym_plain_type, - STATE(4469), 1, + STATE(4501), 1, sym_reference_expression, - STATE(1930), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275459,7 +278618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98397] = 20, + [97529] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -275472,37 +278631,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4095), 1, - sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(4669), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275515,50 +278674,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98473] = 20, + [97605] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3227), 1, - anon_sym_chan, - ACTIONS(3229), 1, - anon_sym_thread, - ACTIONS(3231), 1, - anon_sym_atomic, - ACTIONS(5567), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5569), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5571), 1, - anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5579), 1, - anon_sym_map_LBRACK, - STATE(3441), 1, + STATE(3899), 1, sym_plain_type, - STATE(4425), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3388), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275571,50 +278730,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98549] = 20, + [97681] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5729), 1, anon_sym_AMP, - STATE(2001), 1, + ACTIONS(5731), 1, + anon_sym_map_LBRACK, + STATE(1689), 1, sym_plain_type, - STATE(4469), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275627,7 +278786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98625] = 20, + [97757] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -275640,37 +278799,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4655), 1, - sym_reference_expression, - STATE(4738), 1, + STATE(4004), 1, sym_plain_type, - STATE(3547), 2, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275683,50 +278842,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98701] = 20, + [97833] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5567), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5569), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5579), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(3429), 1, + STATE(1688), 1, sym_plain_type, - STATE(4425), 1, + STATE(4468), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275739,50 +278898,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98777] = 20, + [97909] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + STATE(2475), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [97985] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3565), 1, + sym_identifier, + ACTIONS(3569), 1, + anon_sym_fn, + ACTIONS(3573), 1, + anon_sym_struct, + ACTIONS(3583), 1, + anon_sym_shared, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5567), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5569), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5579), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(3442), 1, + STATE(1675), 1, sym_plain_type, - STATE(4425), 1, + STATE(4468), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275795,50 +279010,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98853] = 20, + [98061] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5567), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5569), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5579), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(3435), 1, + STATE(1671), 1, sym_plain_type, - STATE(4425), 1, + STATE(4468), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275851,50 +279066,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98929] = 20, + [98137] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5567), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5569), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5579), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(3426), 1, + STATE(1509), 1, sym_plain_type, - STATE(4425), 1, + STATE(4642), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275907,50 +279122,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99005] = 20, + [98213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5729), 1, anon_sym_AMP, - STATE(2032), 1, + ACTIONS(5731), 1, + anon_sym_map_LBRACK, + STATE(1694), 1, sym_plain_type, - STATE(4469), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275963,50 +279178,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99081] = 20, + [98289] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1867), 1, + STATE(955), 1, sym_plain_type, - STATE(4553), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1773), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276019,50 +279234,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99157] = 20, + [98365] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1865), 1, + STATE(946), 1, sym_plain_type, - STATE(4553), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1773), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276075,50 +279290,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99233] = 20, + [98441] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3213), 1, - anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5567), 1, - anon_sym_LPAREN, - ACTIONS(5569), 1, - anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5579), 1, - anon_sym_map_LBRACK, - STATE(3427), 1, + STATE(2447), 1, sym_plain_type, - STATE(4425), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3388), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276131,50 +279346,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99309] = 20, + [98517] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3457), 1, - anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5581), 1, - anon_sym_LPAREN, - ACTIONS(5583), 1, - anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1855), 1, + STATE(2448), 1, sym_plain_type, - STATE(4553), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1773), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276187,7 +279402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99385] = 20, + [98593] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -276200,37 +279415,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4639), 1, + STATE(3968), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276243,50 +279458,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99461] = 20, + [98669] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(1636), 1, + anon_sym_chan, + ACTIONS(1638), 1, + anon_sym_thread, + ACTIONS(1640), 1, + anon_sym_atomic, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5683), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(2350), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1098), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276299,50 +279514,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99537] = 20, + [98745] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3209), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(3213), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(3223), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3227), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(3229), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(3231), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5567), 1, - anon_sym_LPAREN, - ACTIONS(5569), 1, - anon_sym_STAR, - ACTIONS(5571), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5573), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5575), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5577), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5579), 1, - anon_sym_map_LBRACK, - STATE(3428), 1, + STATE(2764), 1, sym_plain_type, - STATE(4425), 1, + STATE(4589), 1, sym_reference_expression, - STATE(3388), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3431), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276355,7 +279570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99613] = 20, + [98821] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -276368,37 +279583,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2351), 1, + STATE(4481), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276411,50 +279626,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99689] = 20, + [98897] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(1636), 1, + anon_sym_chan, + ACTIONS(1638), 1, + anon_sym_thread, + ACTIONS(1640), 1, + anon_sym_atomic, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5683), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(4316), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1103), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276467,50 +279682,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99765] = 20, + [98973] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3933), 1, + anon_sym_chan, + ACTIONS(3935), 1, + anon_sym_thread, + ACTIONS(3937), 1, + anon_sym_atomic, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5669), 1, + anon_sym_QMARK, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(3968), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2608), 1, sym_plain_type, - STATE(4655), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276523,50 +279738,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99841] = 20, + [99049] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3933), 1, + anon_sym_chan, + ACTIONS(3935), 1, + anon_sym_thread, + ACTIONS(3937), 1, + anon_sym_atomic, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5669), 1, + anon_sym_QMARK, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(2355), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2558), 1, sym_plain_type, - STATE(4655), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276579,50 +279794,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99917] = 20, + [99125] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(2253), 1, + STATE(2570), 1, sym_plain_type, - STATE(4570), 1, + STATE(4501), 1, sym_reference_expression, - STATE(2164), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276635,50 +279850,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99993] = 20, + [99201] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5665), 1, + anon_sym_LPAREN, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(1998), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2600), 1, sym_plain_type, - STATE(4469), 1, + STATE(4501), 1, sym_reference_expression, - STATE(1930), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276691,50 +279906,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100069] = 20, + [99277] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5769), 1, + anon_sym_LPAREN, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5779), 1, anon_sym_AMP, - STATE(1959), 1, + ACTIONS(5781), 1, + anon_sym_map_LBRACK, + STATE(1944), 1, sym_plain_type, - STATE(4469), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276747,50 +279962,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100145] = 20, + [99353] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(2278), 1, + STATE(1947), 1, sym_plain_type, - STATE(4570), 1, + STATE(4564), 1, sym_reference_expression, - STATE(2164), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276803,50 +280018,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100221] = 20, + [99429] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(2282), 1, + STATE(1948), 1, sym_plain_type, - STATE(4570), 1, + STATE(4564), 1, sym_reference_expression, - STATE(2164), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276859,50 +280074,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100297] = 20, + [99505] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(1090), 1, + STATE(1678), 1, sym_plain_type, - STATE(4448), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276915,50 +280130,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100373] = 20, + [99581] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3933), 1, + anon_sym_chan, + ACTIONS(3935), 1, + anon_sym_thread, + ACTIONS(3937), 1, + anon_sym_atomic, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5669), 1, + anon_sym_QMARK, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(4323), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2603), 1, sym_plain_type, - STATE(4655), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276971,50 +280186,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100449] = 20, + [99657] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(2233), 1, + STATE(2607), 1, sym_plain_type, - STATE(4570), 1, + STATE(4501), 1, sym_reference_expression, - STATE(2164), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277027,50 +280242,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100525] = 20, + [99733] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3573), 1, + anon_sym_struct, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5721), 1, + anon_sym_STAR, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5729), 1, anon_sym_AMP, - STATE(2424), 1, + ACTIONS(5731), 1, + anon_sym_map_LBRACK, + STATE(1682), 1, sym_plain_type, - STATE(4655), 1, + STATE(4468), 1, sym_reference_expression, - STATE(2315), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277083,50 +280298,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100601] = 20, + [99809] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3435), 1, + anon_sym_struct, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5707), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(2420), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1203), 1, sym_plain_type, - STATE(4655), 1, + STATE(4522), 1, sym_reference_expression, - STATE(2315), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277139,7 +280354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100677] = 20, + [99885] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -277152,37 +280367,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(3894), 1, + STATE(4573), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277195,50 +280410,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100753] = 20, + [99961] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3381), 1, - anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5707), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(1310), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1225), 1, sym_plain_type, - STATE(4427), 1, + STATE(4522), 1, sym_reference_expression, - STATE(1303), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277251,50 +280466,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100829] = 20, + [100037] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, - anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, - anon_sym_struct, - ACTIONS(3379), 1, - anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5549), 1, - anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(1312), 1, + STATE(2425), 1, sym_plain_type, - STATE(4427), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1303), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277307,50 +280522,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100905] = 20, + [100113] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3449), 1, + anon_sym_chan, + ACTIONS(3451), 1, + anon_sym_thread, + ACTIONS(3453), 1, + anon_sym_atomic, + ACTIONS(5707), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5711), 1, + anon_sym_QMARK, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(4655), 1, - sym_reference_expression, - STATE(4706), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1222), 1, sym_plain_type, - STATE(3547), 2, + STATE(4522), 1, + sym_reference_expression, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277363,50 +280578,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100981] = 20, + [100189] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5707), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(1932), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1218), 1, sym_plain_type, - STATE(4469), 1, + STATE(4522), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277419,50 +280634,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101057] = 20, + [100265] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3449), 1, + anon_sym_chan, + ACTIONS(3451), 1, + anon_sym_thread, + ACTIONS(3453), 1, + anon_sym_atomic, + ACTIONS(5707), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5711), 1, + anon_sym_QMARK, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(4543), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1210), 1, sym_plain_type, - STATE(4655), 1, + STATE(4522), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277475,50 +280690,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101133] = 20, + [100341] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(1754), 1, + STATE(1670), 1, sym_plain_type, - STATE(4416), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1669), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277531,50 +280746,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101209] = 20, + [100417] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5595), 1, - anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1689), 1, + STATE(2423), 1, sym_plain_type, - STATE(4416), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1669), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277587,50 +280802,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101285] = 20, + [100493] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1688), 1, + STATE(2165), 1, sym_plain_type, - STATE(4416), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1669), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277643,50 +280858,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101361] = 20, + [100569] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1756), 1, + STATE(2166), 1, sym_plain_type, - STATE(4416), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1669), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277699,50 +280914,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101437] = 20, + [100645] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - sym_identifier, - ACTIONS(3551), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3880), 1, + sym_identifier, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3557), 1, - anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3569), 1, + ACTIONS(3896), 1, anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5749), 1, anon_sym_AMP, - STATE(2142), 1, + STATE(2424), 1, sym_plain_type, - STATE(4469), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1930), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277755,50 +280970,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101513] = 20, + [100721] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, + sym_identifier, + ACTIONS(3882), 1, + anon_sym_fn, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, + anon_sym_shared, + ACTIONS(3896), 1, anon_sym_map_LBRACK, - ACTIONS(85), 1, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(89), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(5743), 1, + anon_sym_QMARK, + ACTIONS(5745), 1, + anon_sym_BANG, + ACTIONS(5747), 1, + anon_sym_LBRACK2, + ACTIONS(5749), 1, + anon_sym_AMP, + STATE(2425), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(2367), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [100797] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3449), 1, + anon_sym_chan, + ACTIONS(3451), 1, + anon_sym_thread, + ACTIONS(3453), 1, + anon_sym_atomic, + ACTIONS(5707), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5709), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5711), 1, + anon_sym_QMARK, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(4655), 1, - sym_reference_expression, - STATE(4676), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1256), 1, sym_plain_type, - STATE(3547), 2, + STATE(4522), 1, + sym_reference_expression, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277811,50 +281082,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101589] = 20, + [100873] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3551), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3569), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(2122), 1, + STATE(2176), 1, sym_plain_type, - STATE(4469), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277867,50 +281138,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101665] = 20, + [100949] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3363), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5751), 1, + anon_sym_STAR, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(1335), 1, + STATE(2163), 1, sym_plain_type, - STATE(4427), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1303), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277923,50 +281194,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101741] = 20, + [101025] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3363), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5751), 1, + anon_sym_STAR, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(1336), 1, + STATE(2107), 1, sym_plain_type, - STATE(4427), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1303), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277979,50 +281250,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101817] = 20, + [101101] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(1807), 1, + STATE(1487), 1, sym_plain_type, - STATE(4553), 1, + STATE(4642), 1, sym_reference_expression, - STATE(1773), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278035,50 +281306,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101893] = 20, + [101177] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3381), 1, - anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5721), 1, + anon_sym_STAR, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5729), 1, anon_sym_AMP, - STATE(1358), 1, + ACTIONS(5731), 1, + anon_sym_map_LBRACK, + STATE(1783), 1, sym_plain_type, - STATE(4427), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1303), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278091,50 +281362,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101969] = 20, + [101253] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3471), 1, - anon_sym_chan, - ACTIONS(3473), 1, - anon_sym_thread, - ACTIONS(3475), 1, - anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5585), 1, - anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1859), 1, - sym_plain_type, - STATE(4553), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1773), 2, + STATE(4750), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278147,50 +281418,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102045] = 20, + [101329] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, - anon_sym_fn, - ACTIONS(3557), 1, - anon_sym_struct, - ACTIONS(3567), 1, - anon_sym_shared, - ACTIONS(3569), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(1984), 1, + STATE(3992), 1, sym_plain_type, - STATE(4469), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1930), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278203,50 +281474,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102121] = 20, + [101405] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3785), 1, - anon_sym_chan, - ACTIONS(3787), 1, - anon_sym_thread, - ACTIONS(3789), 1, - anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5611), 1, - anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_map_LBRACK, - STATE(2502), 1, + STATE(3930), 1, sym_plain_type, - STATE(4490), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2453), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278259,50 +281530,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102197] = 20, + [101481] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5519), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(914), 1, + STATE(1784), 1, sym_plain_type, - STATE(4438), 1, + STATE(4468), 1, sym_reference_expression, - STATE(618), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278315,50 +281586,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102273] = 20, + [101557] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(571), 1, anon_sym_struct, ACTIONS(579), 1, anon_sym_shared, - ACTIONS(583), 1, - anon_sym_chan, - ACTIONS(585), 1, - anon_sym_thread, - ACTIONS(587), 1, - anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5511), 1, - anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(918), 1, + STATE(4037), 1, sym_plain_type, - STATE(4438), 1, + STATE(4638), 1, sym_reference_expression, - STATE(618), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278371,7 +281642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102349] = 20, + [101633] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -278384,37 +281655,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4642), 1, + STATE(2480), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278427,50 +281698,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102425] = 20, + [101709] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(2501), 1, + STATE(1751), 1, sym_plain_type, - STATE(4490), 1, + STATE(4468), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278483,50 +281754,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102501] = 20, + [101785] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5785), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5793), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5795), 1, anon_sym_map_LBRACK, - STATE(2500), 1, + STATE(2236), 1, sym_plain_type, - STATE(4490), 1, + STATE(4581), 1, sym_reference_expression, - STATE(2453), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278539,50 +281810,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102577] = 20, + [101861] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3551), 1, - anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3569), 1, - anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(1985), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2246), 1, sym_plain_type, - STATE(4469), 1, + STATE(4581), 1, sym_reference_expression, - STATE(1930), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278595,50 +281866,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102653] = 20, + [101937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3381), 1, - anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_STAR, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(1360), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2247), 1, sym_plain_type, - STATE(4427), 1, + STATE(4581), 1, sym_reference_expression, - STATE(1303), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278651,50 +281922,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102729] = 20, + [102013] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5435), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(1447), 1, + STATE(1467), 1, sym_plain_type, - STATE(4462), 1, + STATE(4642), 1, sym_reference_expression, - STATE(1415), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278707,50 +281978,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102805] = 20, + [102089] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3359), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_STAR, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5807), 1, anon_sym_AMP, - STATE(2597), 1, + ACTIONS(5809), 1, + anon_sym_map_LBRACK, + STATE(3477), 1, sym_plain_type, - STATE(4578), 1, + STATE(4452), 1, sym_reference_expression, - STATE(2667), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278763,50 +282034,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102881] = 20, + [102165] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(4286), 1, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3369), 1, + anon_sym_shared, + ACTIONS(3373), 1, + anon_sym_chan, + ACTIONS(3375), 1, + anon_sym_thread, + ACTIONS(3377), 1, + anon_sym_atomic, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(5801), 1, + anon_sym_QMARK, + ACTIONS(5803), 1, + anon_sym_BANG, + ACTIONS(5805), 1, + anon_sym_LBRACK2, + ACTIONS(5807), 1, + anon_sym_AMP, + ACTIONS(5809), 1, + anon_sym_map_LBRACK, + STATE(3468), 1, + sym_plain_type, + STATE(4452), 1, + sym_reference_expression, + STATE(3413), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3455), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [102241] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, + sym_identifier, + ACTIONS(3882), 1, + anon_sym_fn, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(4300), 1, + ACTIONS(3896), 1, anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5749), 1, anon_sym_AMP, - STATE(2599), 1, + STATE(2475), 1, sym_plain_type, - STATE(4578), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2667), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278819,50 +282146,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102957] = 20, + [102317] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5607), 1, - anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_map_LBRACK, - STATE(2533), 1, + STATE(2101), 1, sym_plain_type, - STATE(4490), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278875,50 +282202,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103033] = 20, + [102393] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5607), 1, - anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_map_LBRACK, - STATE(2505), 1, + STATE(2096), 1, sym_plain_type, - STATE(4490), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278931,50 +282258,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103109] = 20, + [102469] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(3681), 1, + ACTIONS(3359), 1, anon_sym_struct, - ACTIONS(3691), 1, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(3695), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(3697), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(3699), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5521), 1, + ACTIONS(5797), 1, anon_sym_LPAREN, - ACTIONS(5523), 1, + ACTIONS(5799), 1, anon_sym_STAR, - ACTIONS(5525), 1, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5527), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5529), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5531), 1, + ACTIONS(5807), 1, anon_sym_AMP, - ACTIONS(5533), 1, + ACTIONS(5809), 1, anon_sym_map_LBRACK, - STATE(2235), 1, + STATE(3475), 1, sym_plain_type, - STATE(4570), 1, + STATE(4452), 1, sym_reference_expression, - STATE(2164), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2191), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2192), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278987,50 +282314,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103185] = 20, + [102545] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(569), 1, - anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(915), 1, + STATE(2480), 1, sym_plain_type, - STATE(4438), 1, + STATE(4638), 1, sym_reference_expression, - STATE(618), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279043,50 +282370,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103261] = 20, + [102621] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3359), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5797), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5799), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5807), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5809), 1, anon_sym_map_LBRACK, - STATE(1886), 1, + STATE(3478), 1, sym_plain_type, - STATE(4553), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1773), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279099,50 +282426,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103337] = 20, + [102697] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5581), 1, - anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1857), 1, + STATE(2056), 1, sym_plain_type, - STATE(4553), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1773), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279155,7 +282482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103413] = 20, + [102773] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -279168,37 +282495,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4608), 1, + STATE(4078), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279211,50 +282538,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103489] = 20, + [102849] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, - anon_sym_fn, - ACTIONS(5339), 1, - anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5409), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5411), 1, - anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5419), 1, - anon_sym_map_LBRACK, - STATE(1672), 1, + STATE(4508), 1, sym_plain_type, - STATE(4425), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3388), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279267,50 +282594,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103565] = 20, + [102925] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(944), 1, + STATE(2055), 1, sym_plain_type, - STATE(4438), 1, + STATE(4480), 1, sym_reference_expression, - STATE(618), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279323,50 +282650,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103641] = 20, + [103001] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - sym_identifier, - ACTIONS(3551), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3880), 1, + sym_identifier, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3557), 1, - anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3569), 1, + ACTIONS(3896), 1, anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5749), 1, anon_sym_AMP, - STATE(2013), 1, + STATE(2421), 1, sym_plain_type, - STATE(4469), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1930), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279379,50 +282706,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103717] = 20, + [103077] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3551), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3553), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3557), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3567), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3569), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(3571), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3573), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3575), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5557), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(2012), 1, + STATE(2054), 1, sym_plain_type, - STATE(4469), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1930), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1946), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1947), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279435,50 +282762,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103793] = 20, + [103153] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(571), 1, anon_sym_struct, ACTIONS(579), 1, anon_sym_shared, - ACTIONS(583), 1, - anon_sym_chan, - ACTIONS(585), 1, - anon_sym_thread, - ACTIONS(587), 1, - anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5511), 1, - anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(938), 1, + STATE(4216), 1, sym_plain_type, - STATE(4438), 1, + STATE(4638), 1, sym_reference_expression, - STATE(618), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279491,50 +282818,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103869] = 20, + [103229] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5595), 1, - anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1759), 1, + STATE(2777), 1, sym_plain_type, - STATE(4416), 1, + STATE(4589), 1, sym_reference_expression, - STATE(1669), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279547,50 +282874,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103945] = 20, + [103305] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3359), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5797), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5799), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5807), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5809), 1, anon_sym_map_LBRACK, - STATE(1762), 1, + STATE(3463), 1, sym_plain_type, - STATE(4416), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1669), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279603,50 +282930,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104021] = 20, + [103381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, - sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, - anon_sym_fn, - ACTIONS(3527), 1, - anon_sym_struct, - ACTIONS(3537), 1, - anon_sym_shared, - ACTIONS(3539), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5631), 1, - anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2008), 1, + STATE(4062), 1, sym_plain_type, - STATE(4532), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1923), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279659,50 +282986,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104097] = 20, + [103457] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, + anon_sym_struct, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5409), 1, - anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5419), 1, - anon_sym_map_LBRACK, - STATE(1668), 1, + STATE(2775), 1, sym_plain_type, - STATE(4425), 1, + STATE(4589), 1, sym_reference_expression, - STATE(3388), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279715,50 +283042,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104173] = 20, + [103533] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(1622), 1, + anon_sym_struct, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(5409), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5689), 1, anon_sym_AMP, - ACTIONS(5419), 1, + ACTIONS(5691), 1, anon_sym_map_LBRACK, - STATE(1646), 1, + STATE(1101), 1, sym_plain_type, - STATE(4425), 1, + STATE(4459), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279771,50 +283098,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104249] = 20, + [103609] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3587), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3589), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3591), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5723), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5729), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5731), 1, anon_sym_map_LBRACK, - STATE(1697), 1, + STATE(1790), 1, sym_plain_type, - STATE(4416), 1, + STATE(4468), 1, sym_reference_expression, - STATE(1669), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279827,50 +283154,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104325] = 20, + [103685] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3565), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3569), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3583), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3587), 1, + anon_sym_chan, + ACTIONS(3589), 1, + anon_sym_thread, + ACTIONS(3591), 1, + anon_sym_atomic, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5721), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5723), 1, + anon_sym_QMARK, + ACTIONS(5725), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5727), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5729), 1, anon_sym_AMP, - STATE(2346), 1, + ACTIONS(5731), 1, + anon_sym_map_LBRACK, + STATE(1788), 1, sym_plain_type, - STATE(4655), 1, + STATE(4468), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1706), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279883,50 +283210,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104401] = 20, + [103761] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5689), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5691), 1, anon_sym_map_LBRACK, - STATE(2534), 1, + STATE(1102), 1, sym_plain_type, - STATE(4490), 1, + STATE(4459), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279939,50 +283266,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104477] = 20, + [103837] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(1636), 1, + anon_sym_chan, + ACTIONS(1638), 1, + anon_sym_thread, + ACTIONS(1640), 1, + anon_sym_atomic, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5683), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(4052), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1043), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279995,7 +283322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104553] = 20, + [103913] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -280008,37 +283335,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4583), 1, + STATE(2423), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280051,50 +283378,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104629] = 20, + [103989] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5689), 1, anon_sym_AMP, - ACTIONS(5435), 1, + ACTIONS(5691), 1, anon_sym_map_LBRACK, - STATE(1449), 1, + STATE(1089), 1, sym_plain_type, - STATE(4462), 1, + STATE(4459), 1, sym_reference_expression, - STATE(1415), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280107,50 +283434,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104705] = 20, + [104065] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(1636), 1, + anon_sym_chan, + ACTIONS(1638), 1, + anon_sym_thread, + ACTIONS(1640), 1, + anon_sym_atomic, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5683), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(2358), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1128), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280163,50 +283490,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104781] = 20, + [104141] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5679), 1, + anon_sym_LPAREN, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(2007), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1055), 1, sym_plain_type, - STATE(4532), 1, + STATE(4459), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280219,50 +283546,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104857] = 20, + [104217] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(1636), 1, + anon_sym_chan, + ACTIONS(1638), 1, + anon_sym_thread, + ACTIONS(1640), 1, + anon_sym_atomic, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5683), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(4057), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1070), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280275,7 +283602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104933] = 20, + [104293] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -280288,37 +283615,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(3960), 1, - sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(4746), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280331,50 +283658,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105009] = 20, + [104369] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5421), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1445), 1, + STATE(1385), 1, sym_plain_type, - STATE(4462), 1, + STATE(4488), 1, sym_reference_expression, - STATE(1415), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280387,50 +283714,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105085] = 20, + [104445] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5689), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5691), 1, anon_sym_map_LBRACK, - STATE(2573), 1, + STATE(1138), 1, sym_plain_type, - STATE(4490), 1, + STATE(4459), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280443,50 +283770,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105161] = 20, + [104521] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5693), 1, + anon_sym_LPAREN, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5703), 1, anon_sym_AMP, - STATE(2129), 1, + ACTIONS(5705), 1, + anon_sym_map_LBRACK, + STATE(944), 1, sym_plain_type, - STATE(4532), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1923), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280499,50 +283826,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105237] = 20, + [104597] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5607), 1, - anon_sym_LPAREN, - ACTIONS(5609), 1, - anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_map_LBRACK, - STATE(2561), 1, + STATE(1393), 1, sym_plain_type, - STATE(4490), 1, + STATE(4488), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280555,50 +283882,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105313] = 20, + [104673] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(3521), 1, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(3539), 1, + ACTIONS(3515), 1, anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5629), 1, - anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5817), 1, anon_sym_AMP, - STATE(2128), 1, + STATE(1394), 1, sym_plain_type, - STATE(4532), 1, + STATE(4488), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280611,7 +283938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105389] = 20, + [104749] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -280624,37 +283951,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4092), 1, + STATE(4120), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280667,50 +283994,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105465] = 20, + [104825] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, + ACTIONS(1614), 1, + sym_identifier, + ACTIONS(1618), 1, + anon_sym_fn, + ACTIONS(1622), 1, + anon_sym_struct, + ACTIONS(1632), 1, + anon_sym_shared, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(89), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(5679), 1, + anon_sym_LPAREN, + ACTIONS(5681), 1, + anon_sym_STAR, + ACTIONS(5683), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, + anon_sym_BANG, + ACTIONS(5687), 1, + anon_sym_LBRACK2, + ACTIONS(5689), 1, + anon_sym_AMP, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1131), 1, + sym_plain_type, + STATE(4459), 1, + sym_reference_expression, + STATE(1019), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1075), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1076), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [104901] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(1636), 1, + anon_sym_chan, + ACTIONS(1638), 1, + anon_sym_thread, + ACTIONS(1640), 1, + anon_sym_atomic, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5683), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(2361), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1129), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280723,50 +284106,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105541] = 20, + [104977] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5421), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1468), 1, + STATE(2014), 1, sym_plain_type, - STATE(4462), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1415), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280779,7 +284162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105617] = 20, + [105053] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -280792,37 +284175,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(2348), 1, - sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(4712), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280835,50 +284218,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105693] = 20, + [105129] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3521), 1, + ACTIONS(3707), 1, anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3539), 1, + ACTIONS(3725), 1, anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5741), 1, anon_sym_AMP, - STATE(2120), 1, + STATE(2012), 1, sym_plain_type, - STATE(4532), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280891,50 +284274,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105769] = 20, + [105205] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(3919), 1, + anon_sym_struct, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5409), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5419), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(1653), 1, + STATE(2537), 1, sym_plain_type, - STATE(4425), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3388), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280947,50 +284330,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105845] = 20, + [105281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5435), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(1475), 1, + STATE(2541), 1, sym_plain_type, - STATE(4462), 1, + STATE(4501), 1, sym_reference_expression, - STATE(1415), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281003,50 +284386,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105921] = 20, + [105357] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, + anon_sym_chan, + ACTIONS(4476), 1, + anon_sym_thread, + ACTIONS(4478), 1, + anon_sym_atomic, + ACTIONS(5761), 1, + anon_sym_QMARK, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5767), 1, anon_sym_AMP, - STATE(2336), 1, + STATE(2890), 1, sym_plain_type, - STATE(4655), 1, + STATE(4589), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281059,50 +284442,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105997] = 20, + [105433] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(4282), 1, + ACTIONS(4454), 1, anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(4286), 1, + ACTIONS(4458), 1, anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(4300), 1, + ACTIONS(4472), 1, anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5767), 1, anon_sym_AMP, - STATE(2848), 1, + STATE(2876), 1, sym_plain_type, - STATE(4578), 1, + STATE(4589), 1, sym_reference_expression, - STATE(2667), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281115,50 +284498,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106073] = 20, + [105509] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5421), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1454), 1, + STATE(1993), 1, sym_plain_type, - STATE(4462), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1415), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281171,50 +284554,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106149] = 20, + [105585] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(4282), 1, + ACTIONS(4454), 1, anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(4286), 1, + ACTIONS(4458), 1, anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(4300), 1, + ACTIONS(4472), 1, anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5767), 1, anon_sym_AMP, - STATE(2834), 1, + STATE(2747), 1, sym_plain_type, - STATE(4578), 1, + STATE(4589), 1, sym_reference_expression, - STATE(2667), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281227,50 +284610,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106225] = 20, + [105661] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(4282), 1, + ACTIONS(4454), 1, anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(4286), 1, + ACTIONS(4458), 1, anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(4300), 1, + ACTIONS(4472), 1, anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5767), 1, anon_sym_AMP, - STATE(2833), 1, + STATE(2762), 1, sym_plain_type, - STATE(4578), 1, + STATE(4589), 1, sym_reference_expression, - STATE(2667), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281283,50 +284666,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106301] = 20, + [105737] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, + anon_sym_chan, + ACTIONS(4476), 1, + anon_sym_thread, + ACTIONS(4478), 1, + anon_sym_atomic, + ACTIONS(5761), 1, + anon_sym_QMARK, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5767), 1, anon_sym_AMP, - STATE(4020), 1, + STATE(2869), 1, sym_plain_type, - STATE(4655), 1, + STATE(4589), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281339,50 +284722,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106377] = 20, + [105813] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, + anon_sym_chan, + ACTIONS(3729), 1, + anon_sym_thread, + ACTIONS(3731), 1, + anon_sym_atomic, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5735), 1, + anon_sym_QMARK, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5741), 1, anon_sym_AMP, - STATE(4018), 1, + STATE(2082), 1, sym_plain_type, - STATE(4655), 1, + STATE(4543), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281395,50 +284778,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106453] = 20, + [105889] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3363), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5751), 1, + anon_sym_STAR, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(1384), 1, + STATE(2052), 1, sym_plain_type, - STATE(4427), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1303), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281451,50 +284834,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106529] = 20, + [105965] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(3713), 1, + anon_sym_struct, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5409), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5419), 1, - anon_sym_map_LBRACK, - STATE(1650), 1, + STATE(2045), 1, sym_plain_type, - STATE(4425), 1, + STATE(4543), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281507,50 +284890,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106605] = 20, + [106041] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, - anon_sym_fn, - ACTIONS(5339), 1, - anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5409), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5411), 1, - anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5419), 1, - anon_sym_map_LBRACK, - STATE(1670), 1, + STATE(4129), 1, sym_plain_type, - STATE(4425), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3388), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281563,50 +284946,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106681] = 20, + [106117] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, - anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, - anon_sym_struct, - ACTIONS(3379), 1, - anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5549), 1, - anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(1387), 1, + STATE(2421), 1, sym_plain_type, - STATE(4427), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1303), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281619,50 +285002,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106757] = 20, + [106193] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, - sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, - anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, - anon_sym_struct, - ACTIONS(3379), 1, - anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5549), 1, - anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(1388), 1, + STATE(4594), 1, sym_plain_type, - STATE(4427), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1303), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281675,50 +285058,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106833] = 20, + [106269] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3359), 1, + anon_sym_struct, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_STAR, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5807), 1, anon_sym_AMP, - STATE(2597), 1, + ACTIONS(5809), 1, + anon_sym_map_LBRACK, + STATE(3469), 1, sym_plain_type, - STATE(4655), 1, + STATE(4452), 1, sym_reference_expression, - STATE(2315), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281731,50 +285114,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106909] = 20, + [106345] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3933), 1, + anon_sym_chan, + ACTIONS(3935), 1, + anon_sym_thread, + ACTIONS(3937), 1, + anon_sym_atomic, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5669), 1, + anon_sym_QMARK, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(2393), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2628), 1, sym_plain_type, - STATE(4655), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281787,50 +285170,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106985] = 20, + [106421] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3919), 1, + anon_sym_struct, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5665), 1, + anon_sym_LPAREN, + ACTIONS(5667), 1, + anon_sym_STAR, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(2599), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2624), 1, sym_plain_type, - STATE(4655), 1, + STATE(4501), 1, sym_reference_expression, - STATE(2315), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281843,50 +285226,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107061] = 20, + [106497] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3359), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5797), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5799), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5807), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5809), 1, anon_sym_map_LBRACK, - STATE(2569), 1, + STATE(3476), 1, sym_plain_type, - STATE(4490), 1, + STATE(4452), 1, sym_reference_expression, - STATE(2453), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281899,50 +285282,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107137] = 20, + [106573] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3363), 1, - anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(3367), 1, - anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(3359), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(3381), 1, - anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_STAR, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5807), 1, anon_sym_AMP, - STATE(1342), 1, + ACTIONS(5809), 1, + anon_sym_map_LBRACK, + STATE(3456), 1, sym_plain_type, - STATE(4427), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1303), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281955,50 +285338,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107213] = 20, + [106649] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3363), 1, + ACTIONS(4454), 1, anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(3367), 1, + ACTIONS(4458), 1, anon_sym_STAR, - ACTIONS(3369), 1, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(3379), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3381), 1, + ACTIONS(4472), 1, anon_sym_map_LBRACK, - ACTIONS(3383), 1, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(3385), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(3387), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5549), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5551), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5553), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5555), 1, + ACTIONS(5767), 1, anon_sym_AMP, - STATE(1333), 1, + STATE(2759), 1, sym_plain_type, - STATE(4427), 1, + STATE(4589), 1, sym_reference_expression, - STATE(1303), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1347), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1406), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282011,50 +285394,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107289] = 20, + [106725] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5607), 1, - anon_sym_LPAREN, - ACTIONS(5609), 1, - anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_map_LBRACK, - STATE(2555), 1, + STATE(1390), 1, sym_plain_type, - STATE(4490), 1, + STATE(4488), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282067,50 +285450,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107365] = 20, + [106801] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(3713), 1, + anon_sym_struct, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5409), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5419), 1, - anon_sym_map_LBRACK, - STATE(1659), 1, + STATE(2114), 1, sym_plain_type, - STATE(4425), 1, + STATE(4543), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282123,50 +285506,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107441] = 20, + [106877] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(2544), 1, + STATE(968), 1, sym_plain_type, - STATE(4490), 1, + STATE(4555), 1, sym_reference_expression, - STATE(2453), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282179,50 +285562,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107517] = 20, + [106953] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(607), 1, + anon_sym_chan, + ACTIONS(609), 1, + anon_sym_thread, + ACTIONS(611), 1, + anon_sym_atomic, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5697), 1, + anon_sym_QMARK, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5703), 1, anon_sym_AMP, - STATE(4419), 1, + ACTIONS(5705), 1, + anon_sym_map_LBRACK, + STATE(966), 1, sym_plain_type, - STATE(4655), 1, + STATE(4555), 1, sym_reference_expression, - STATE(3547), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282235,50 +285618,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107593] = 20, + [107029] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5421), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1476), 1, + STATE(2144), 1, sym_plain_type, - STATE(4462), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1415), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282291,50 +285674,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107669] = 20, + [107105] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(2592), 1, + STATE(1499), 1, sym_plain_type, - STATE(4490), 1, + STATE(4642), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282347,50 +285730,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107745] = 20, + [107181] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, + anon_sym_struct, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5409), 1, - anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5419), 1, - anon_sym_map_LBRACK, - STATE(1656), 1, + STATE(1358), 1, sym_plain_type, - STATE(4425), 1, + STATE(4488), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282403,7 +285786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107821] = 20, + [107257] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -282416,37 +285799,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4542), 1, + STATE(3960), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282459,50 +285842,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107897] = 20, + [107333] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5607), 1, - anon_sym_LPAREN, - ACTIONS(5609), 1, - anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_map_LBRACK, - STATE(2591), 1, + STATE(1356), 1, sym_plain_type, - STATE(4490), 1, + STATE(4488), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282515,50 +285898,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107973] = 20, + [107409] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3427), 1, - anon_sym_struct, - ACTIONS(5327), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(5339), 1, + ACTIONS(3713), 1, + anon_sym_struct, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(5343), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(5345), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(5347), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5409), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5411), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5413), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5415), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5417), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5419), 1, - anon_sym_map_LBRACK, - STATE(1655), 1, + STATE(2136), 1, sym_plain_type, - STATE(4425), 1, + STATE(4543), 1, sym_reference_expression, - STATE(3388), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282571,106 +285954,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108049] = 20, + [107485] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3393), 1, - anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5583), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1455), 1, - sym_plain_type, - STATE(4462), 1, - sym_reference_expression, - STATE(1415), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1479), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1481), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108125] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, - sym_identifier, - ACTIONS(3710), 1, - anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, - anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(5585), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, - anon_sym_chan, - ACTIONS(3728), 1, - anon_sym_thread, - ACTIONS(3730), 1, - anon_sym_atomic, - ACTIONS(5499), 1, - anon_sym_QMARK, - ACTIONS(5501), 1, - anon_sym_BANG, - ACTIONS(5503), 1, - anon_sym_LBRACK2, - ACTIONS(5505), 1, - anon_sym_AMP, - STATE(2350), 1, + STATE(1682), 1, sym_plain_type, - STATE(4655), 1, + STATE(4452), 1, sym_reference_expression, - STATE(2315), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282683,50 +286010,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108201] = 20, + [107561] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(3355), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(3359), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(3369), 1, anon_sym_shared, - ACTIONS(3411), 1, + ACTIONS(3373), 1, anon_sym_chan, - ACTIONS(3413), 1, + ACTIONS(3375), 1, anon_sym_thread, - ACTIONS(3415), 1, + ACTIONS(3377), 1, anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(5797), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5799), 1, anon_sym_STAR, - ACTIONS(5427), 1, + ACTIONS(5801), 1, anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5803), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5805), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5807), 1, anon_sym_AMP, - ACTIONS(5435), 1, + ACTIONS(5809), 1, anon_sym_map_LBRACK, - STATE(1484), 1, + STATE(3465), 1, sym_plain_type, - STATE(4462), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1415), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(3455), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282739,50 +286066,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108277] = 20, + [107637] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3393), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3397), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3407), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3411), 1, - anon_sym_chan, - ACTIONS(3413), 1, - anon_sym_thread, - ACTIONS(3415), 1, - anon_sym_atomic, - ACTIONS(5421), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5427), 1, - anon_sym_QMARK, - ACTIONS(5429), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5431), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5433), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_map_LBRACK, - STATE(1435), 1, + STATE(4458), 1, sym_plain_type, - STATE(4462), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1415), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1479), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1481), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282795,50 +286122,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108353] = 20, + [107713] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3713), 1, + anon_sym_struct, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(3725), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5733), 1, + anon_sym_STAR, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5741), 1, anon_sym_AMP, - STATE(2346), 1, + STATE(2175), 1, sym_plain_type, - STATE(4655), 1, + STATE(4543), 1, sym_reference_expression, - STATE(2315), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282851,50 +286178,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108429] = 20, + [107789] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3297), 1, - anon_sym_chan, - ACTIONS(3299), 1, - anon_sym_thread, - ACTIONS(3301), 1, - anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5643), 1, - anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_map_LBRACK, - STATE(1181), 1, - sym_plain_type, - STATE(4511), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1167), 2, + STATE(4767), 1, + sym_plain_type, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282907,50 +286234,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108505] = 20, + [107865] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3933), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3935), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3937), 1, anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5669), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5675), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5677), 1, anon_sym_map_LBRACK, - STATE(1182), 1, + STATE(2605), 1, sym_plain_type, - STATE(4511), 1, + STATE(4501), 1, sym_reference_expression, - STATE(1167), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282963,50 +286290,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108581] = 20, + [107941] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3911), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3915), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3919), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3929), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3933), 1, + anon_sym_chan, + ACTIONS(3935), 1, + anon_sym_thread, + ACTIONS(3937), 1, + anon_sym_atomic, + ACTIONS(5665), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5667), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5669), 1, + anon_sym_QMARK, + ACTIONS(5671), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5673), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5675), 1, anon_sym_AMP, - STATE(4064), 1, + ACTIONS(5677), 1, + anon_sym_map_LBRACK, + STATE(2606), 1, sym_plain_type, - STATE(4655), 1, + STATE(4501), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2393), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2620), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2621), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283019,50 +286346,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108657] = 20, + [108017] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_STAR, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(2671), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2231), 1, sym_plain_type, - STATE(4578), 1, + STATE(4581), 1, sym_reference_expression, - STATE(2667), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283075,50 +286402,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108733] = 20, + [108093] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3712), 1, + ACTIONS(3884), 1, anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(3896), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5749), 1, anon_sym_AMP, - STATE(2393), 1, + STATE(2919), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(2315), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283131,50 +286458,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108809] = 20, + [108169] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(911), 1, + STATE(2750), 1, sym_plain_type, - STATE(4438), 1, + STATE(4589), 1, sym_reference_expression, - STATE(618), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283187,50 +286514,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108885] = 20, + [108245] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5607), 1, - anon_sym_LPAREN, - ACTIONS(5609), 1, - anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5619), 1, - anon_sym_map_LBRACK, - STATE(2528), 1, + STATE(2749), 1, sym_plain_type, - STATE(4490), 1, + STATE(4589), 1, sym_reference_expression, - STATE(2453), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283243,50 +286570,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108961] = 20, + [108321] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(571), 1, anon_sym_struct, ACTIONS(579), 1, anon_sym_shared, - ACTIONS(583), 1, - anon_sym_chan, - ACTIONS(585), 1, - anon_sym_thread, - ACTIONS(587), 1, - anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5511), 1, - anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(900), 1, + STATE(3916), 1, sym_plain_type, - STATE(4438), 1, + STATE(4638), 1, sym_reference_expression, - STATE(618), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283299,50 +286626,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109037] = 20, + [108397] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(569), 1, - anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(901), 1, + STATE(2918), 1, sym_plain_type, - STATE(4438), 1, + STATE(4638), 1, sym_reference_expression, - STATE(618), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283355,50 +286682,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109113] = 20, + [108473] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3872), 1, + anon_sym_chan, + ACTIONS(3874), 1, + anon_sym_thread, + ACTIONS(3876), 1, + anon_sym_atomic, + ACTIONS(5783), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5785), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5787), 1, + anon_sym_QMARK, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(4518), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2232), 1, sym_plain_type, - STATE(4655), 1, + STATE(4581), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283411,50 +286738,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109189] = 20, + [108549] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(3712), 1, + ACTIONS(4458), 1, anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(4460), 1, + anon_sym_struct, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3724), 1, + ACTIONS(4472), 1, anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5767), 1, anon_sym_AMP, - STATE(2361), 1, + STATE(2748), 1, sym_plain_type, - STATE(4655), 1, + STATE(4589), 1, sym_reference_expression, - STATE(2315), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283467,50 +286794,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109265] = 20, + [108625] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(875), 1, + STATE(1373), 1, sym_plain_type, - STATE(4438), 1, + STATE(4488), 1, sym_reference_expression, - STATE(618), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283523,50 +286850,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109341] = 20, + [108701] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(872), 1, + STATE(1346), 1, sym_plain_type, - STATE(4438), 1, + STATE(4488), 1, sym_reference_expression, - STATE(618), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283579,50 +286906,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109417] = 20, + [108777] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1055), 1, + STATE(1399), 1, sym_plain_type, - STATE(4448), 1, + STATE(4488), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283635,50 +286962,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109493] = 20, + [108853] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(1632), 1, - anon_sym_chan, - ACTIONS(1634), 1, - anon_sym_thread, - ACTIONS(1636), 1, - anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1056), 1, + STATE(3893), 1, sym_plain_type, - STATE(4448), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1002), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283691,50 +287018,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109569] = 20, + [108929] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(5785), 1, anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5793), 1, anon_sym_AMP, - ACTIONS(5519), 1, + ACTIONS(5795), 1, anon_sym_map_LBRACK, - STATE(916), 1, + STATE(2233), 1, sym_plain_type, - STATE(4438), 1, + STATE(4581), 1, sym_reference_expression, - STATE(618), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283747,50 +287074,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109645] = 20, + [109005] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_STAR, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(2771), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2254), 1, sym_plain_type, - STATE(4578), 1, + STATE(4581), 1, sym_reference_expression, - STATE(2667), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283803,50 +287130,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109721] = 20, + [109081] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5707), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(2769), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1214), 1, sym_plain_type, - STATE(4578), 1, + STATE(4522), 1, sym_reference_expression, - STATE(2667), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283859,50 +287186,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109797] = 20, + [109157] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3557), 1, + anon_sym_chan, + ACTIONS(3559), 1, + anon_sym_thread, + ACTIONS(3561), 1, + anon_sym_atomic, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5593), 1, + anon_sym_QMARK, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5599), 1, anon_sym_AMP, - STATE(4498), 1, + ACTIONS(5601), 1, + anon_sym_map_LBRACK, + STATE(1468), 1, sym_plain_type, - STATE(4655), 1, + STATE(4642), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283915,50 +287242,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109873] = 20, + [109233] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5587), 1, + anon_sym_LPAREN, + ACTIONS(5591), 1, + anon_sym_STAR, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5599), 1, anon_sym_AMP, - STATE(2841), 1, + ACTIONS(5601), 1, + anon_sym_map_LBRACK, + STATE(1520), 1, sym_plain_type, - STATE(4578), 1, + STATE(4642), 1, sym_reference_expression, - STATE(2667), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283971,7 +287298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109949] = 20, + [109309] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -283984,37 +287311,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4491), 1, + STATE(2481), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284027,50 +287354,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110025] = 20, + [109385] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3557), 1, + anon_sym_chan, + ACTIONS(3559), 1, + anon_sym_thread, + ACTIONS(3561), 1, + anon_sym_atomic, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5593), 1, + anon_sym_QMARK, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5599), 1, anon_sym_AMP, - STATE(4487), 1, + ACTIONS(5601), 1, + anon_sym_map_LBRACK, + STATE(1516), 1, sym_plain_type, - STATE(4655), 1, + STATE(4642), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284083,50 +287410,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110101] = 20, + [109461] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3858), 1, + anon_sym_struct, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_STAR, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(2358), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2257), 1, sym_plain_type, - STATE(4655), 1, + STATE(4581), 1, sym_reference_expression, - STATE(2315), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284139,50 +287466,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110177] = 20, + [109537] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(2589), 1, + STATE(1838), 1, sym_plain_type, - STATE(4490), 1, + STATE(4564), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284195,50 +287522,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110253] = 20, + [109613] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5769), 1, + anon_sym_LPAREN, + ACTIONS(5771), 1, + anon_sym_STAR, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5779), 1, anon_sym_AMP, - STATE(2741), 1, + ACTIONS(5781), 1, + anon_sym_map_LBRACK, + STATE(1837), 1, sym_plain_type, - STATE(4578), 1, + STATE(4564), 1, sym_reference_expression, - STATE(2667), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284251,50 +287578,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110329] = 20, + [109689] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3427), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3431), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3435), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3445), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3449), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3451), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3453), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5707), 1, + anon_sym_LPAREN, + ACTIONS(5709), 1, + anon_sym_STAR, + ACTIONS(5711), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5713), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5715), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5717), 1, anon_sym_AMP, - STATE(2756), 1, + ACTIONS(5719), 1, + anon_sym_map_LBRACK, + STATE(1224), 1, sym_plain_type, - STATE(4578), 1, + STATE(4522), 1, sym_reference_expression, - STATE(2667), 2, + STATE(1182), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(1264), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(1200), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284307,50 +287634,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110405] = 20, + [109765] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(4282), 1, - anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(4300), 1, - anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_STAR, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(2753), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2230), 1, sym_plain_type, - STATE(4578), 1, + STATE(4581), 1, sym_reference_expression, - STATE(2667), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284363,50 +287690,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110481] = 20, + [109841] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(4282), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(4300), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5751), 1, + anon_sym_STAR, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(2744), 1, + STATE(2005), 1, sym_plain_type, - STATE(4578), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2667), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284419,50 +287746,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110557] = 20, + [109917] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(4282), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(4284), 1, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(4286), 1, - anon_sym_STAR, - ACTIONS(4288), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(4298), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(4300), 1, + ACTIONS(3685), 1, anon_sym_map_LBRACK, - ACTIONS(4302), 1, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(4304), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(4306), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5621), 1, + ACTIONS(5751), 1, + anon_sym_STAR, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5623), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5625), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5627), 1, + ACTIONS(5759), 1, anon_sym_AMP, - STATE(2743), 1, + STATE(2004), 1, sym_plain_type, - STATE(4578), 1, + STATE(4480), 1, sym_reference_expression, - STATE(2667), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2727), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2728), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284475,50 +287802,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110633] = 20, + [109993] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(862), 1, + STATE(2001), 1, sym_plain_type, - STATE(4438), 1, + STATE(4480), 1, sym_reference_expression, - STATE(618), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284531,50 +287858,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110709] = 20, + [110069] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + STATE(4247), 1, + sym_plain_type, + STATE(4638), 1, + sym_reference_expression, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [110145] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5585), 1, - anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1849), 1, + STATE(4592), 1, sym_plain_type, - STATE(4553), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1773), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284587,50 +287970,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110785] = 20, + [110221] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3283), 1, - anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5639), 1, - anon_sym_LPAREN, - ACTIONS(5641), 1, - anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_map_LBRACK, - STATE(1206), 1, + STATE(2481), 1, sym_plain_type, - STATE(4511), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1167), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284643,50 +288026,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110861] = 20, + [110297] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3283), 1, - anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5639), 1, - anon_sym_LPAREN, - ACTIONS(5641), 1, - anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_map_LBRACK, - STATE(1207), 1, + STATE(2634), 1, sym_plain_type, - STATE(4511), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1167), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284699,50 +288082,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110937] = 20, + [110373] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, + sym_identifier, + ACTIONS(3882), 1, + anon_sym_fn, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, + anon_sym_shared, + ACTIONS(3896), 1, anon_sym_map_LBRACK, - ACTIONS(85), 1, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(89), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(591), 1, - sym_identifier, - ACTIONS(597), 1, - anon_sym_fn, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(609), 1, - anon_sym_shared, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3357), 1, - anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5743), 1, + anon_sym_QMARK, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5749), 1, anon_sym_AMP, - STATE(4325), 1, + STATE(2635), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284755,50 +288138,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111013] = 20, + [110449] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3283), 1, - anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5639), 1, - anon_sym_LPAREN, - ACTIONS(5641), 1, - anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_map_LBRACK, - STATE(1241), 1, + STATE(2493), 1, sym_plain_type, - STATE(4511), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1167), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284811,50 +288194,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111089] = 20, + [110525] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3882), 1, anon_sym_fn, - ACTIONS(3457), 1, - anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3884), 1, + anon_sym_STAR, + ACTIONS(3894), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3896), 1, + anon_sym_map_LBRACK, + ACTIONS(3898), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3900), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3902), 1, anon_sym_atomic, - ACTIONS(5581), 1, - anon_sym_LPAREN, - ACTIONS(5583), 1, - anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5743), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5745), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5747), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5749), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1812), 1, + STATE(2458), 1, sym_plain_type, - STATE(4553), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1773), 2, + STATE(2367), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284867,50 +288250,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111165] = 20, + [110601] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3471), 1, - anon_sym_chan, - ACTIONS(3473), 1, - anon_sym_thread, - ACTIONS(3475), 1, - anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5585), 1, - anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1882), 1, + STATE(2493), 1, sym_plain_type, - STATE(4553), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1773), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284923,50 +288306,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111241] = 20, + [110677] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(870), 1, + STATE(1351), 1, sym_plain_type, - STATE(4438), 1, + STATE(4488), 1, sym_reference_expression, - STATE(618), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284979,50 +288362,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111317] = 20, + [110753] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_LPAREN, - ACTIONS(5509), 1, - anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5519), 1, - anon_sym_map_LBRACK, - STATE(859), 1, + STATE(1354), 1, sym_plain_type, - STATE(4438), 1, + STATE(4488), 1, sym_reference_expression, - STATE(618), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285035,7 +288418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111393] = 20, + [110829] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -285048,37 +288431,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(3887), 1, + STATE(4283), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285091,50 +288474,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111469] = 20, + [110905] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(1806), 1, + STATE(1851), 1, sym_plain_type, - STATE(4553), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1773), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285147,50 +288530,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111545] = 20, + [110981] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3471), 1, - anon_sym_chan, - ACTIONS(3473), 1, - anon_sym_thread, - ACTIONS(3475), 1, - anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5585), 1, - anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1874), 1, + STATE(4123), 1, sym_plain_type, - STATE(4553), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1773), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285203,50 +288586,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111621] = 20, + [111057] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5785), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5793), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5795), 1, anon_sym_map_LBRACK, - STATE(1870), 1, + STATE(2259), 1, sym_plain_type, - STATE(4553), 1, + STATE(4581), 1, sym_reference_expression, - STATE(1773), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285259,50 +288642,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111697] = 20, + [111133] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5639), 1, - anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_map_LBRACK, - STATE(1210), 1, + STATE(2059), 1, sym_plain_type, - STATE(4511), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1167), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285315,50 +288698,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111773] = 20, + [111209] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3705), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3707), 1, + anon_sym_LPAREN, + ACTIONS(3709), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3713), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3723), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3725), 1, + anon_sym_map_LBRACK, + ACTIONS(3727), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3729), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3731), 1, anon_sym_atomic, - ACTIONS(5581), 1, - anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5733), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5735), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5737), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5739), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5741), 1, anon_sym_AMP, - ACTIONS(5593), 1, - anon_sym_map_LBRACK, - STATE(1803), 1, + STATE(2058), 1, sym_plain_type, - STATE(4553), 1, + STATE(4543), 1, sym_reference_expression, - STATE(1773), 2, + STATE(1962), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2112), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2100), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285371,50 +288754,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111849] = 20, + [111285] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5785), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5793), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5795), 1, anon_sym_map_LBRACK, - STATE(1804), 1, + STATE(2298), 1, sym_plain_type, - STATE(4553), 1, + STATE(4581), 1, sym_reference_expression, - STATE(1773), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285427,50 +288810,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111925] = 20, + [111361] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3453), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3457), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3467), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3471), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3473), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3475), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5581), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5583), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5585), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5587), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5589), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5591), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5593), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(1805), 1, + STATE(1474), 1, sym_plain_type, - STATE(4553), 1, + STATE(4642), 1, sym_reference_expression, - STATE(1773), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1811), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1810), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285483,50 +288866,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112001] = 20, + [111437] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(3521), 1, + ACTIONS(3497), 1, anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(3539), 1, + ACTIONS(3515), 1, anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5811), 1, + anon_sym_QMARK, + ACTIONS(5813), 1, + anon_sym_BANG, + ACTIONS(5815), 1, + anon_sym_LBRACK2, + ACTIONS(5817), 1, + anon_sym_AMP, + STATE(1359), 1, + sym_plain_type, + STATE(4488), 1, + sym_reference_expression, + STATE(1332), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(1403), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1402), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [111513] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(583), 1, + sym_identifier, + ACTIONS(589), 1, + anon_sym_fn, + ACTIONS(593), 1, + anon_sym_struct, + ACTIONS(603), 1, + anon_sym_shared, + ACTIONS(607), 1, + anon_sym_chan, + ACTIONS(609), 1, + anon_sym_thread, + ACTIONS(611), 1, + anon_sym_atomic, + ACTIONS(5693), 1, + anon_sym_LPAREN, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5703), 1, anon_sym_AMP, - STATE(2069), 1, + ACTIONS(5705), 1, + anon_sym_map_LBRACK, + STATE(971), 1, sym_plain_type, - STATE(4532), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1923), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285539,50 +288978,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112077] = 20, + [111589] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3297), 1, - anon_sym_chan, - ACTIONS(3299), 1, - anon_sym_thread, - ACTIONS(3301), 1, - anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5643), 1, - anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_map_LBRACK, - STATE(1240), 1, + STATE(2458), 1, sym_plain_type, - STATE(4511), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1167), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285595,50 +289034,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112153] = 20, + [111665] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5519), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(871), 1, + STATE(1874), 1, sym_plain_type, - STATE(4438), 1, + STATE(4564), 1, sym_reference_expression, - STATE(618), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285651,50 +289090,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112229] = 20, + [111741] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3557), 1, + anon_sym_chan, + ACTIONS(3559), 1, + anon_sym_thread, + ACTIONS(3561), 1, + anon_sym_atomic, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5593), 1, + anon_sym_QMARK, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5599), 1, anon_sym_AMP, - STATE(3926), 1, + ACTIONS(5601), 1, + anon_sym_map_LBRACK, + STATE(1472), 1, sym_plain_type, - STATE(4655), 1, + STATE(4642), 1, sym_reference_expression, - STATE(3547), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285707,50 +289146,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112305] = 20, + [111817] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, - anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5583), 1, anon_sym_AMP, - STATE(2035), 1, + ACTIONS(5585), 1, + anon_sym_map_LBRACK, + STATE(1690), 1, sym_plain_type, - STATE(4532), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1923), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285763,50 +289202,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112381] = 20, + [111893] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3535), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3539), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(3543), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3553), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3557), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3559), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3561), 1, anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(5587), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5591), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5593), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5595), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5597), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5599), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5601), 1, anon_sym_map_LBRACK, - STATE(1224), 1, + STATE(1470), 1, sym_plain_type, - STATE(4511), 1, + STATE(4642), 1, sym_reference_expression, - STATE(1167), 2, + STATE(1447), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(1471), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(1469), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285819,7 +289258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112457] = 20, + [111969] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -285832,37 +289271,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4049), 1, + STATE(4122), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285875,50 +289314,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112533] = 20, + [112045] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, + ACTIONS(583), 1, + sym_identifier, + ACTIONS(589), 1, + anon_sym_fn, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3355), 1, + ACTIONS(603), 1, + anon_sym_shared, + ACTIONS(607), 1, + anon_sym_chan, + ACTIONS(609), 1, + anon_sym_thread, + ACTIONS(611), 1, + anon_sym_atomic, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(5695), 1, + anon_sym_STAR, + ACTIONS(5697), 1, + anon_sym_QMARK, + ACTIONS(5699), 1, + anon_sym_BANG, + ACTIONS(5701), 1, + anon_sym_LBRACK2, + ACTIONS(5703), 1, + anon_sym_AMP, + ACTIONS(5705), 1, + anon_sym_map_LBRACK, + STATE(936), 1, + sym_plain_type, + STATE(4555), 1, + sym_reference_expression, + STATE(558), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(939), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(938), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [112121] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3858), 1, + anon_sym_struct, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_STAR, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(2355), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2307), 1, sym_plain_type, - STATE(4655), 1, + STATE(4581), 1, sym_reference_expression, - STATE(2315), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285931,50 +289426,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112609] = 20, + [112197] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5519), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(887), 1, + STATE(1863), 1, sym_plain_type, - STATE(4438), 1, + STATE(4564), 1, sym_reference_expression, - STATE(618), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285987,50 +289482,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112685] = 20, + [112273] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5769), 1, + anon_sym_LPAREN, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5779), 1, anon_sym_AMP, - STATE(2037), 1, + ACTIONS(5781), 1, + anon_sym_map_LBRACK, + STATE(1835), 1, sym_plain_type, - STATE(4532), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286043,50 +289538,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112761] = 20, + [112349] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(565), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(569), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(583), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(585), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(587), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5509), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5511), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5513), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5515), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5517), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5519), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(930), 1, + STATE(1922), 1, sym_plain_type, - STATE(4438), 1, + STATE(4564), 1, sym_reference_expression, - STATE(618), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(941), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(940), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286099,50 +289594,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112837] = 20, + [112425] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5769), 1, + anon_sym_LPAREN, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5779), 1, anon_sym_AMP, - STATE(2048), 1, + ACTIONS(5781), 1, + anon_sym_map_LBRACK, + STATE(1923), 1, sym_plain_type, - STATE(4532), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286155,50 +289650,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112913] = 20, + [112501] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3858), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(2068), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2315), 1, sym_plain_type, - STATE(4532), 1, + STATE(4581), 1, sym_reference_expression, - STATE(1923), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286211,50 +289706,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112989] = 20, + [112577] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5679), 1, + anon_sym_LPAREN, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(2050), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1115), 1, sym_plain_type, - STATE(4532), 1, + STATE(4459), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286267,7 +289762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113065] = 20, + [112653] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -286280,37 +289775,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3355), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5153), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4096), 1, + STATE(2424), 1, sym_plain_type, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286323,50 +289818,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113141] = 20, + [112729] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5769), 1, + anon_sym_LPAREN, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5779), 1, anon_sym_AMP, - STATE(2052), 1, + ACTIONS(5781), 1, + anon_sym_map_LBRACK, + STATE(1872), 1, sym_plain_type, - STATE(4532), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286379,50 +289874,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113217] = 20, + [112805] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(1614), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(1618), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(1622), 1, + anon_sym_struct, + ACTIONS(1632), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5679), 1, + anon_sym_LPAREN, + ACTIONS(5681), 1, + anon_sym_STAR, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5689), 1, anon_sym_AMP, - STATE(2351), 1, + ACTIONS(5691), 1, + anon_sym_map_LBRACK, + STATE(1124), 1, sym_plain_type, - STATE(4655), 1, + STATE(4459), 1, sym_reference_expression, - STATE(2315), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286435,50 +289930,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113293] = 20, + [112881] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, - sym_identifier, ACTIONS(1614), 1, - anon_sym_fn, + sym_identifier, ACTIONS(1618), 1, + anon_sym_fn, + ACTIONS(1622), 1, anon_sym_struct, - ACTIONS(1628), 1, - anon_sym_shared, ACTIONS(1632), 1, + anon_sym_shared, + ACTIONS(1636), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(1638), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(1640), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5679), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5681), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5683), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5685), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5687), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5689), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5691), 1, anon_sym_map_LBRACK, - STATE(1012), 1, + STATE(1125), 1, sym_plain_type, - STATE(4448), 1, + STATE(4459), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1019), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1075), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1076), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286491,50 +289986,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113369] = 20, + [112957] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, - anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5583), 1, anon_sym_AMP, - STATE(2065), 1, + ACTIONS(5585), 1, + anon_sym_map_LBRACK, + STATE(1689), 1, sym_plain_type, - STATE(4532), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1923), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286547,50 +290042,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113445] = 20, + [113033] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3519), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3521), 1, - anon_sym_LPAREN, - ACTIONS(3523), 1, - anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3537), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3539), 1, - anon_sym_map_LBRACK, - ACTIONS(3541), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3543), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3545), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5629), 1, + ACTIONS(5571), 1, + anon_sym_LPAREN, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5631), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5633), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5637), 1, + ACTIONS(5583), 1, anon_sym_AMP, - STATE(2067), 1, + ACTIONS(5585), 1, + anon_sym_map_LBRACK, + STATE(1688), 1, sym_plain_type, - STATE(4532), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1923), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2088), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2087), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286603,50 +290098,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113521] = 20, + [113109] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(601), 1, - anon_sym_struct, - ACTIONS(3355), 1, - anon_sym_LPAREN, - ACTIONS(3708), 1, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(3710), 1, + ACTIONS(3854), 1, anon_sym_fn, - ACTIONS(3712), 1, - anon_sym_STAR, - ACTIONS(3722), 1, + ACTIONS(3858), 1, + anon_sym_struct, + ACTIONS(3868), 1, anon_sym_shared, - ACTIONS(3724), 1, - anon_sym_map_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3872), 1, anon_sym_chan, - ACTIONS(3728), 1, + ACTIONS(3874), 1, anon_sym_thread, - ACTIONS(3730), 1, + ACTIONS(3876), 1, anon_sym_atomic, - ACTIONS(5499), 1, + ACTIONS(5783), 1, + anon_sym_LPAREN, + ACTIONS(5785), 1, + anon_sym_STAR, + ACTIONS(5787), 1, anon_sym_QMARK, - ACTIONS(5501), 1, + ACTIONS(5789), 1, anon_sym_BANG, - ACTIONS(5503), 1, + ACTIONS(5791), 1, anon_sym_LBRACK2, - ACTIONS(5505), 1, + ACTIONS(5793), 1, anon_sym_AMP, - STATE(2348), 1, + ACTIONS(5795), 1, + anon_sym_map_LBRACK, + STATE(2317), 1, sym_plain_type, - STATE(4655), 1, + STATE(4581), 1, sym_reference_expression, - STATE(2315), 2, + STATE(2201), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2415), 4, + STATE(2208), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2417), 12, + STATE(2209), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286659,50 +290154,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113597] = 20, + [113185] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(1186), 1, + STATE(1864), 1, sym_plain_type, - STATE(4511), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1167), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286715,50 +290210,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113673] = 20, + [113261] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1194), 1, + STATE(951), 1, sym_plain_type, - STATE(4511), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1167), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286771,50 +290266,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113749] = 20, + [113337] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5639), 1, - anon_sym_LPAREN, - ACTIONS(5641), 1, - anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_map_LBRACK, - STATE(1222), 1, + STATE(2634), 1, sym_plain_type, - STATE(4511), 1, + STATE(4589), 1, sym_reference_expression, - STATE(1167), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286827,50 +290322,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113825] = 20, + [113413] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3423), 1, - anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5583), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5585), 1, anon_sym_map_LBRACK, - STATE(1655), 1, + STATE(1675), 1, sym_plain_type, - STATE(4416), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1669), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286883,50 +290378,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113901] = 20, + [113489] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3423), 1, - anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5583), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5585), 1, anon_sym_map_LBRACK, - STATE(1656), 1, + STATE(1671), 1, sym_plain_type, - STATE(4416), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1669), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286939,50 +290434,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113977] = 20, + [113565] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(4454), 1, + anon_sym_LPAREN, + ACTIONS(4456), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(4458), 1, + anon_sym_STAR, + ACTIONS(4460), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(4470), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(4472), 1, + anon_sym_map_LBRACK, + ACTIONS(4474), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(4476), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(4478), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5595), 1, - anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5761), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5763), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5765), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1659), 1, + STATE(2635), 1, sym_plain_type, - STATE(4416), 1, + STATE(4589), 1, sym_reference_expression, - STATE(1669), 2, + STATE(2671), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2703), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2734), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286995,50 +290490,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114053] = 20, + [113641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(3423), 1, - anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5583), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5585), 1, anon_sym_map_LBRACK, - STATE(1670), 1, + STATE(1694), 1, sym_plain_type, - STATE(4416), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1669), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287051,50 +290546,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114129] = 20, + [113717] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1650), 1, + STATE(1998), 1, sym_plain_type, - STATE(4416), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1669), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287107,50 +290602,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114205] = 20, + [113793] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3673), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3683), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3685), 1, + anon_sym_map_LBRACK, + ACTIONS(3687), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3689), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3691), 1, anon_sym_atomic, - ACTIONS(5405), 1, - anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5751), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5753), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5755), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5757), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5759), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1653), 1, + STATE(1997), 1, sym_plain_type, - STATE(4416), 1, + STATE(4480), 1, sym_reference_expression, - STATE(1669), 2, + STATE(1963), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2035), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2036), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287163,50 +290658,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114281] = 20, + [113869] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3767), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3771), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3781), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3785), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3787), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3789), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5607), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5609), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5611), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5613), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5615), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5617), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5619), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(2590), 1, + STATE(1942), 1, sym_plain_type, - STATE(4490), 1, + STATE(4564), 1, sym_reference_expression, - STATE(2453), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2587), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2535), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287219,50 +290714,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114357] = 20, + [113945] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(1646), 1, + STATE(1943), 1, sym_plain_type, - STATE(4416), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1669), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287275,50 +290770,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114433] = 20, + [114021] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1250), 1, + STATE(915), 1, sym_plain_type, - STATE(4511), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1167), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287331,50 +290826,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114509] = 20, + [114097] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(3593), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(3597), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(3601), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(3611), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(3615), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(3617), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(3619), 1, anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(5769), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5771), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5773), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5775), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5777), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5779), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5781), 1, anon_sym_map_LBRACK, - STATE(1226), 1, + STATE(1839), 1, sym_plain_type, - STATE(4511), 1, + STATE(4564), 1, sym_reference_expression, - STATE(1167), 2, + STATE(1809), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(1858), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(1857), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287387,50 +290882,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114585] = 20, + [114173] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3441), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3443), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3445), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5597), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5605), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1668), 1, + STATE(928), 1, sym_plain_type, - STATE(4416), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1669), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287443,50 +290938,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114661] = 20, + [114249] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5693), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5695), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5697), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5699), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5701), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5703), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5705), 1, anon_sym_map_LBRACK, - STATE(1042), 1, + STATE(913), 1, sym_plain_type, - STATE(4448), 1, + STATE(4555), 1, sym_reference_expression, - STATE(1002), 2, + STATE(558), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(939), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(938), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287499,50 +290994,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114737] = 20, + [114325] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3279), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3283), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3525), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + anon_sym_STAR, + ACTIONS(5307), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_AMP, + STATE(4638), 1, + sym_reference_expression, + STATE(4701), 1, + sym_plain_type, + STATE(3642), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2410), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2408), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [114401] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + sym_identifier, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(3293), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(3297), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(3299), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(3301), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5639), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5641), 1, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5643), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5645), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5647), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5649), 1, + ACTIONS(5583), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5585), 1, anon_sym_map_LBRACK, - STATE(1228), 1, + STATE(1678), 1, sym_plain_type, - STATE(4511), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1167), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1254), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1255), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287555,50 +291106,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114813] = 20, + [114477] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3427), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3437), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3441), 1, - anon_sym_chan, - ACTIONS(3443), 1, - anon_sym_thread, - ACTIONS(3445), 1, - anon_sym_atomic, - ACTIONS(5405), 1, + ACTIONS(3525), 1, anon_sym_LPAREN, - ACTIONS(5595), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5597), 1, - anon_sym_QMARK, - ACTIONS(5599), 1, + ACTIONS(5307), 1, anon_sym_BANG, - ACTIONS(5601), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5603), 1, + ACTIONS(5311), 1, anon_sym_AMP, - ACTIONS(5605), 1, - anon_sym_map_LBRACK, - STATE(1672), 1, + STATE(4033), 1, sym_plain_type, - STATE(4416), 1, + STATE(4638), 1, sym_reference_expression, - STATE(1669), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1636), 4, + STATE(2410), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1651), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287611,50 +291162,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114889] = 20, + [114553] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3351), 1, sym_identifier, - ACTIONS(1614), 1, - anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3573), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(5493), 1, + anon_sym_fn, + ACTIONS(5505), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(5509), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(5511), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(5513), 1, anon_sym_atomic, - ACTIONS(5535), 1, + ACTIONS(5571), 1, anon_sym_LPAREN, - ACTIONS(5537), 1, + ACTIONS(5575), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5577), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5579), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5581), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5583), 1, anon_sym_AMP, - ACTIONS(5547), 1, + ACTIONS(5585), 1, anon_sym_map_LBRACK, - STATE(1046), 1, + STATE(1670), 1, sym_plain_type, - STATE(4448), 1, + STATE(4452), 1, sym_reference_expression, - STATE(1002), 2, + STATE(3413), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1705), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1704), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287667,50 +291218,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114965] = 20, + [114629] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1047), 1, + STATE(1383), 1, sym_plain_type, - STATE(4448), 1, + STATE(4488), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287723,50 +291274,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115041] = 20, + [114705] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, + ACTIONS(3495), 1, sym_identifier, - ACTIONS(1614), 1, + ACTIONS(3497), 1, + anon_sym_LPAREN, + ACTIONS(3499), 1, anon_sym_fn, - ACTIONS(1618), 1, + ACTIONS(3501), 1, + anon_sym_STAR, + ACTIONS(3503), 1, anon_sym_struct, - ACTIONS(1628), 1, + ACTIONS(3513), 1, anon_sym_shared, - ACTIONS(1632), 1, + ACTIONS(3515), 1, + anon_sym_map_LBRACK, + ACTIONS(3517), 1, anon_sym_chan, - ACTIONS(1634), 1, + ACTIONS(3519), 1, anon_sym_thread, - ACTIONS(1636), 1, + ACTIONS(3521), 1, anon_sym_atomic, - ACTIONS(5535), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5811), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5813), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5815), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5817), 1, anon_sym_AMP, - ACTIONS(5547), 1, - anon_sym_map_LBRACK, - STATE(1011), 1, + STATE(1382), 1, sym_plain_type, - STATE(4448), 1, + STATE(4488), 1, sym_reference_expression, - STATE(1002), 2, + STATE(1332), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1084), 4, + STATE(1403), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1085), 12, + STATE(1402), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287779,7 +291330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115117] = 16, + [114781] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287790,28 +291341,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4234), 1, - sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(4677), 1, + sym__plain_type_without_special, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287824,54 +291375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115178] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - sym___double_quote, - ACTIONS(1420), 1, - sym___single_quote, - ACTIONS(1422), 1, - sym___c_double_quote, - ACTIONS(1424), 1, - sym___c_single_quote, - ACTIONS(1426), 1, - sym___r_double_quote, - ACTIONS(1428), 1, - sym___r_single_quote, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5655), 1, - anon_sym_if, - ACTIONS(5657), 1, - anon_sym_unsafe, - STATE(3929), 1, - sym_value_attribute, - STATE(3998), 1, - sym_reference_expression, - STATE(4201), 1, - sym_literal, - STATE(4379), 1, - sym_attribute_expression, - ACTIONS(1412), 2, - sym_float_literal, - sym_rune_literal, - STATE(2329), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - STATE(4334), 4, - sym_if_attribute, - sym__plain_attribute, - sym_literal_attribute, - sym_key_value_attribute, - ACTIONS(1396), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [115243] = 16, + [114842] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287882,28 +291386,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4126), 1, + STATE(4493), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287916,7 +291420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115304] = 16, + [114903] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287927,28 +291431,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4479), 1, + STATE(4376), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287961,54 +291465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115365] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - sym___double_quote, - ACTIONS(1420), 1, - sym___single_quote, - ACTIONS(1422), 1, - sym___c_double_quote, - ACTIONS(1424), 1, - sym___c_single_quote, - ACTIONS(1426), 1, - sym___r_double_quote, - ACTIONS(1428), 1, - sym___r_single_quote, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5655), 1, - anon_sym_if, - ACTIONS(5657), 1, - anon_sym_unsafe, - STATE(3868), 1, - sym_attribute_expression, - STATE(3929), 1, - sym_value_attribute, - STATE(3998), 1, - sym_reference_expression, - STATE(4201), 1, - sym_literal, - ACTIONS(1412), 2, - sym_float_literal, - sym_rune_literal, - STATE(2329), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - STATE(4334), 4, - sym_if_attribute, - sym__plain_attribute, - sym_literal_attribute, - sym_key_value_attribute, - ACTIONS(1396), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [115430] = 16, + [114964] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288019,28 +291476,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4286), 1, + STATE(4170), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288053,7 +291510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115491] = 16, + [115025] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288064,28 +291521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4311), 1, + STATE(4375), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288098,7 +291555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115552] = 16, + [115086] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288109,28 +291566,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4142), 1, + STATE(4302), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288143,7 +291600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115613] = 16, + [115147] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288154,28 +291611,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4466), 1, + STATE(4356), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288188,7 +291645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115674] = 16, + [115208] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288199,28 +291656,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4127), 1, + STATE(4227), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288233,7 +291690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115735] = 16, + [115269] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288244,28 +291701,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4242), 1, + STATE(4351), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288278,7 +291735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115796] = 16, + [115330] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288289,28 +291746,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4396), 1, + STATE(4360), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288323,7 +291780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115857] = 16, + [115391] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288334,28 +291791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4404), 1, + STATE(4252), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288368,7 +291825,54 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115918] = 16, + [115452] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1424), 1, + sym___double_quote, + ACTIONS(1426), 1, + sym___single_quote, + ACTIONS(1428), 1, + sym___c_double_quote, + ACTIONS(1430), 1, + sym___c_single_quote, + ACTIONS(1432), 1, + sym___r_double_quote, + ACTIONS(1434), 1, + sym___r_single_quote, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + anon_sym_if, + ACTIONS(5823), 1, + anon_sym_unsafe, + STATE(3958), 1, + sym_reference_expression, + STATE(3980), 1, + sym_value_attribute, + STATE(3981), 1, + sym_attribute_expression, + STATE(4325), 1, + sym_literal, + ACTIONS(1418), 2, + sym_float_literal, + sym_rune_literal, + STATE(2441), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + STATE(4291), 4, + sym_if_attribute, + sym__plain_attribute, + sym_literal_attribute, + sym_key_value_attribute, + ACTIONS(1402), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [115517] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288379,28 +291883,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4140), 1, + STATE(4314), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288413,7 +291917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115979] = 16, + [115578] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288424,28 +291928,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4241), 1, + STATE(4399), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288458,7 +291962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116040] = 16, + [115639] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -288469,28 +291973,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(591), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(597), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(601), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(609), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_STAR, - ACTIONS(5155), 1, + ACTIONS(5309), 1, anon_sym_LBRACK2, - ACTIONS(5157), 1, + ACTIONS(5311), 1, anon_sym_AMP, - STATE(4350), 1, + STATE(4235), 1, sym__plain_type_without_special, - STATE(4655), 1, + STATE(4638), 1, sym_reference_expression, - STATE(3547), 2, + STATE(3642), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2417), 12, + STATE(2408), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288503,42 +292007,89 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116101] = 16, + [115700] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(1424), 1, + sym___double_quote, + ACTIONS(1426), 1, + sym___single_quote, + ACTIONS(1428), 1, + sym___c_double_quote, + ACTIONS(1430), 1, + sym___c_single_quote, + ACTIONS(1432), 1, + sym___r_double_quote, + ACTIONS(1434), 1, + sym___r_single_quote, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(5821), 1, + anon_sym_if, + ACTIONS(5823), 1, + anon_sym_unsafe, + STATE(3958), 1, + sym_reference_expression, + STATE(3980), 1, + sym_value_attribute, + STATE(4163), 1, + sym_attribute_expression, + STATE(4325), 1, + sym_literal, + ACTIONS(1418), 2, + sym_float_literal, + sym_rune_literal, + STATE(2441), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + STATE(4291), 4, + sym_if_attribute, + sym__plain_attribute, + sym_literal_attribute, + sym_key_value_attribute, + ACTIONS(1402), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [115765] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5659), 1, + ACTIONS(5825), 1, sym_identifier, - ACTIONS(5661), 1, + ACTIONS(5827), 1, anon_sym_LPAREN, - ACTIONS(5667), 1, + ACTIONS(5833), 1, anon_sym_LT2, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - STATE(3371), 1, + STATE(3412), 1, sym_receiver, - STATE(3532), 1, + STATE(3524), 1, sym_capture_list, - STATE(3826), 1, + STATE(3786), 1, sym_generic_parameters, - STATE(4197), 1, + STATE(4271), 1, sym_signature, - STATE(4662), 1, + STATE(4657), 1, sym_reference_expression, - STATE(4667), 1, + STATE(4664), 1, sym_static_receiver, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3519), 2, + STATE(3560), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -288547,10 +292098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116161] = 2, - ACTIONS(493), 1, + [115825] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2854), 24, + ACTIONS(2980), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288575,10 +292126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [116191] = 2, - ACTIONS(493), 1, + [115855] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2858), 24, + ACTIONS(3337), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288603,10 +292154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [116221] = 2, - ACTIONS(493), 1, + [115885] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2810), 24, + ACTIONS(3152), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288631,10 +292182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [116251] = 2, - ACTIONS(493), 1, + [115915] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2922), 24, + ACTIONS(3140), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288659,10 +292210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [116281] = 2, - ACTIONS(493), 1, + [115945] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2814), 24, + ACTIONS(3317), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288687,17 +292238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [116311] = 4, - ACTIONS(493), 1, + [115975] = 4, + ACTIONS(495), 1, sym_comment, - STATE(3561), 1, + STATE(3671), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(1710), 4, + ACTIONS(1928), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1716), 15, + ACTIONS(1930), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288713,27 +292264,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116341] = 9, + [116005] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(5825), 1, sym_identifier, - ACTIONS(5671), 1, + ACTIONS(5837), 1, anon_sym_LPAREN, - STATE(3401), 1, + STATE(3426), 1, sym_receiver, - STATE(4441), 1, - sym_static_receiver, - STATE(4662), 1, + STATE(4657), 1, sym_reference_expression, - STATE(3521), 2, + STATE(4667), 1, + sym_static_receiver, + STATE(3552), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -288742,10 +292293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116379] = 3, + [116043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 7, + ACTIONS(3140), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288753,7 +292304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2808), 11, + ACTIONS(3138), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288765,10 +292316,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116405] = 3, + [116069] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1424), 1, + sym___double_quote, + ACTIONS(1426), 1, + sym___single_quote, + ACTIONS(1428), 1, + sym___c_double_quote, + ACTIONS(1430), 1, + sym___c_single_quote, + ACTIONS(1432), 1, + sym___r_double_quote, + ACTIONS(1434), 1, + sym___r_single_quote, + ACTIONS(5839), 1, + sym_identifier, + STATE(4181), 1, + sym_literal, + ACTIONS(1418), 2, + sym_float_literal, + sym_rune_literal, + STATE(2441), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + ACTIONS(1402), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [116113] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5825), 1, + sym_identifier, + ACTIONS(5837), 1, + anon_sym_LPAREN, + STATE(3419), 1, + sym_receiver, + STATE(4657), 1, + sym_reference_expression, + STATE(4696), 1, + sym_static_receiver, + STATE(3523), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5831), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5829), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 7, + ACTIONS(3152), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288776,7 +292388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2812), 11, + ACTIONS(3150), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288788,10 +292400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116431] = 3, + [116177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 7, + ACTIONS(2980), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288799,7 +292411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2856), 11, + ACTIONS(2978), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288811,10 +292423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116457] = 3, + [116203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 7, + ACTIONS(3337), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288822,7 +292434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2852), 11, + ACTIONS(3335), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288834,27 +292446,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116483] = 9, + [116229] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5659), 1, + ACTIONS(5825), 1, sym_identifier, - ACTIONS(5671), 1, + ACTIONS(5837), 1, anon_sym_LPAREN, - STATE(3370), 1, + STATE(3418), 1, sym_receiver, - STATE(4496), 1, + STATE(4630), 1, sym_static_receiver, - STATE(4662), 1, + STATE(4657), 1, sym_reference_expression, - STATE(3511), 2, + STATE(3569), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -288863,10 +292475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116521] = 3, + [116267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 7, + ACTIONS(3317), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288874,7 +292486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(2920), 11, + ACTIONS(3315), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288886,75 +292498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116547] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 1, - sym___double_quote, - ACTIONS(1420), 1, - sym___single_quote, - ACTIONS(1422), 1, - sym___c_double_quote, - ACTIONS(1424), 1, - sym___c_single_quote, - ACTIONS(1426), 1, - sym___r_double_quote, - ACTIONS(1428), 1, - sym___r_single_quote, - ACTIONS(5673), 1, - sym_identifier, - STATE(4376), 1, - sym_literal, - ACTIONS(1412), 2, - sym_float_literal, - sym_rune_literal, - STATE(2329), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1396), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [116591] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5671), 1, - anon_sym_LPAREN, - STATE(3374), 1, - sym_receiver, - STATE(4480), 1, - sym_static_receiver, - STATE(4662), 1, - sym_reference_expression, - STATE(3498), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5665), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [116629] = 4, + [116293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1708), 1, + ACTIONS(1926), 1, anon_sym_SEMI, - STATE(4045), 1, + STATE(4116), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3309), 15, + ACTIONS(3461), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288970,38 +292521,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116656] = 5, + [116320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_static, - ACTIONS(5677), 1, - anon_sym_volatile, - ACTIONS(4310), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4312), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116685] = 4, + ACTIONS(1926), 1, + anon_sym_LBRACE, + STATE(3991), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3461), 15, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [116347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1708), 1, + ACTIONS(3461), 17, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3927), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3309), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289017,10 +292565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116712] = 2, - ACTIONS(493), 1, + [116370] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5679), 17, + ACTIONS(5841), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289038,10 +292586,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116735] = 2, - ACTIONS(493), 1, + [116393] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5843), 1, + anon_sym_static, + ACTIONS(5845), 1, + anon_sym_volatile, + ACTIONS(4488), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4490), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [116422] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5681), 17, + ACTIONS(5847), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289059,13 +292631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116758] = 2, + [116445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 17, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4600), 1, anon_sym_COMMA, + STATE(3389), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3379), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289080,14 +292653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116781] = 4, + [116471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 1, + ACTIONS(5849), 1, anon_sym_COMMA, - STATE(3353), 1, + STATE(3386), 1, aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4613), 14, + ACTIONS(4785), 14, anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, @@ -289102,14 +292675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [116807] = 4, + [116497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 1, + ACTIONS(4666), 1, anon_sym_COMMA, - STATE(3357), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3233), 14, + ACTIONS(3379), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289124,12 +292697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116833] = 4, + [116523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5686), 1, + ACTIONS(5852), 1, anon_sym_volatile, - ACTIONS(4695), 7, + ACTIONS(4847), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289137,7 +292710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4697), 8, + ACTIONS(4849), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -289146,36 +292719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116859] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4576), 1, - anon_sym_COMMA, - STATE(3353), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(5688), 14, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [116885] = 4, + [116549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5690), 1, + ACTIONS(5854), 1, anon_sym_COMMA, - STATE(3359), 1, + STATE(3390), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3759), 14, + ACTIONS(3953), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289190,14 +292741,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116911] = 4, + [116575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 1, + ACTIONS(5856), 1, anon_sym_COMMA, - STATE(3357), 1, + STATE(3390), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3233), 14, + ACTIONS(3461), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289212,14 +292763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116937] = 4, + [116601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, + ACTIONS(4740), 1, anon_sym_COMMA, - STATE(3359), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3309), 14, + STATE(3386), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(5859), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289233,15 +292785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116963] = 4, + [116627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 1, + ACTIONS(5861), 1, anon_sym_COMMA, - STATE(3357), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3233), 14, + ACTIONS(3379), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289256,14 +292807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116989] = 4, + [116653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 1, + ACTIONS(5863), 1, anon_sym_COMMA, - STATE(3357), 1, + STATE(3389), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3233), 14, + ACTIONS(3379), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289278,39 +292829,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [117015] = 12, + [116679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_pub, - ACTIONS(5699), 1, + ACTIONS(5865), 1, sym_identifier, - ACTIONS(5701), 1, + ACTIONS(5868), 1, anon_sym_RBRACE, - STATE(3365), 1, + ACTIONS(5873), 1, + anon_sym_pub, + STATE(3394), 1, aux_sym__interface_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(5870), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3478), 3, + STATE(3503), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [117056] = 3, + [116720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 7, + ACTIONS(4893), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -289318,7 +292869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4697), 8, + ACTIONS(4895), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -289327,14 +292878,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [117079] = 4, + [116743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, + ACTIONS(4847), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4849), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [116766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5876), 1, anon_sym_LBRACE, - STATE(4413), 1, + STATE(4656), 1, sym__select_arm_assignment_statement, - ACTIONS(5705), 13, + ACTIONS(5878), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289348,153 +292919,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [117104] = 12, + [116791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5699), 1, + ACTIONS(5880), 1, sym_identifier, - ACTIONS(5707), 1, + ACTIONS(5882), 1, anon_sym_RBRACE, - STATE(3366), 1, + STATE(3394), 1, aux_sym__interface_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3478), 3, + STATE(3503), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [117145] = 12, + [116832] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(5880), 1, sym_identifier, - ACTIONS(5712), 1, + ACTIONS(5884), 1, anon_sym_RBRACE, - ACTIONS(5717), 1, - anon_sym_pub, - STATE(3366), 1, + STATE(3398), 1, aux_sym__interface_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(5714), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3478), 3, + STATE(3503), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [117186] = 3, + [116873] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 7, - anon_sym_fn, - anon_sym_struct, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(5886), 1, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4731), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [117209] = 12, + ACTIONS(5888), 1, + anon_sym_RBRACE, + STATE(3416), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, + sym_generic_type, + STATE(4452), 1, + sym_reference_expression, + ACTIONS(635), 2, + anon_sym___global, + anon_sym_mut, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3512), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [116913] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5722), 1, + ACTIONS(5890), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3510), 1, sym__struct_field_definition, - STATE(3480), 1, + STATE(3516), 1, + sym_generic_type, + STATE(4452), 1, + sym_reference_expression, + ACTIONS(635), 2, + anon_sym___global, + anon_sym_mut, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3512), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [116953] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5892), 1, + anon_sym_RBRACE, + STATE(3403), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117249] = 12, + [116993] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5724), 1, + ACTIONS(5894), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3510), 1, sym__struct_field_definition, - STATE(3480), 1, + STATE(3516), 1, + sym_generic_type, + STATE(4452), 1, + sym_reference_expression, + ACTIONS(635), 2, + anon_sym___global, + anon_sym_mut, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3512), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [117033] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5896), 1, + anon_sym_RBRACE, + STATE(3416), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, + sym_reference_expression, + ACTIONS(635), 2, + anon_sym___global, + anon_sym_mut, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3512), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [117073] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5898), 1, + anon_sym_RBRACE, + STATE(3416), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, + sym_generic_type, + STATE(4452), 1, + sym_reference_expression, + ACTIONS(635), 2, + anon_sym___global, + anon_sym_mut, + STATE(3481), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3512), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [117113] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5900), 1, + anon_sym_RBRACE, + STATE(3400), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, + sym_generic_type, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117289] = 5, + [117153] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_DOT, + ACTIONS(3070), 1, + anon_sym_LBRACK, + ACTIONS(3072), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [117177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, + ACTIONS(5902), 1, sym_identifier, - STATE(3528), 2, + STATE(3544), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289503,19 +293214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117315] = 5, + [117203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, + ACTIONS(5904), 1, sym_identifier, - STATE(3502), 2, + STATE(3553), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289524,75 +293235,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117341] = 12, + [117229] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5730), 1, + ACTIONS(5906), 1, anon_sym_RBRACE, - STATE(3390), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117381] = 12, + [117269] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(629), 1, - anon_sym_RBRACE, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - STATE(3368), 1, + ACTIONS(5908), 1, + anon_sym_RBRACE, + STATE(3431), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117421] = 5, + [117309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 1, + ACTIONS(5910), 1, sym_identifier, - STATE(3522), 2, + STATE(3526), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289601,19 +293312,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117447] = 5, + [117335] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5912), 1, + anon_sym_LBRACK, + STATE(3450), 1, + sym_type_parameters, + ACTIONS(2890), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [117359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, + ACTIONS(5914), 1, sym_identifier, - STATE(3499), 2, + STATE(3531), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289622,160 +293353,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117473] = 12, + [117385] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5736), 1, + ACTIONS(5916), 1, anon_sym_RBRACE, - STATE(3391), 1, + STATE(3437), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, - sym_generic_type, - STATE(4425), 1, - sym_reference_expression, - ACTIONS(633), 2, - anon_sym___global, - anon_sym_mut, - STATE(3449), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3475), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117513] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5738), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(5740), 11, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - [117535] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 1, - anon_sym_pub, - ACTIONS(5720), 1, - sym_identifier, - ACTIONS(5742), 1, - anon_sym_RBRACE, - STATE(3384), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, + STATE(3510), 1, sym__struct_field_definition, - STATE(3480), 1, - sym_embedded_definition, - STATE(3483), 1, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117575] = 12, + [117425] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5918), 1, sym_identifier, - ACTIONS(5744), 1, + ACTIONS(5921), 1, anon_sym_RBRACE, - STATE(3398), 1, + ACTIONS(5926), 1, + anon_sym_pub, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(5923), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117615] = 3, + [117465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5748), 1, - anon_sym_COLON_EQ, - ACTIONS(5746), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117637] = 3, + ACTIONS(5929), 1, + sym_identifier, + STATE(3550), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5831), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5829), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [117491] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5752), 1, - anon_sym_COLON_EQ, - ACTIONS(5750), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117659] = 5, + ACTIONS(5931), 1, + sym_identifier, + STATE(3543), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5831), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5829), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [117517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5754), 1, + ACTIONS(5933), 1, sym_identifier, - STATE(3492), 2, + STATE(3542), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5665), 3, + ACTIONS(5831), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5663), 8, + ACTIONS(5829), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289784,463 +293472,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117685] = 12, + [117543] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5756), 1, + ACTIONS(5935), 1, anon_sym_RBRACE, - STATE(3393), 1, + STATE(3405), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117725] = 12, + [117583] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5758), 1, + ACTIONS(5937), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3435), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117765] = 12, + [117623] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5760), 1, + ACTIONS(5939), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117805] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LBRACK, - ACTIONS(2974), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [117827] = 12, + [117663] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5762), 1, + ACTIONS(5941), 1, anon_sym_RBRACE, - STATE(3402), 1, + STATE(3430), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117867] = 4, - ACTIONS(493), 1, + [117703] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(5764), 1, - anon_sym_LBRACK, - STATE(3414), 1, - sym_type_parameters, - ACTIONS(2764), 12, + ACTIONS(5943), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5945), 11, + anon_sym_module, + anon_sym_const, anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, anon_sym_pub, - anon_sym_mut, + anon_sym_enum, + anon_sym_interface, anon_sym_LBRACK2, - sym_identifier, anon_sym_AT_LBRACK, - [117891] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 1, - anon_sym_pub, - ACTIONS(5720), 1, - sym_identifier, - ACTIONS(5766), 1, - anon_sym_RBRACE, - STATE(3385), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, - sym_embedded_definition, - STATE(3483), 1, - sym_generic_type, - STATE(4425), 1, - sym_reference_expression, - ACTIONS(633), 2, - anon_sym___global, - anon_sym_mut, - STATE(3449), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3475), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117931] = 12, + [117725] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5768), 1, + ACTIONS(5947), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3404), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, - sym_generic_type, - STATE(4425), 1, - sym_reference_expression, - ACTIONS(633), 2, - anon_sym___global, - anon_sym_mut, - STATE(3449), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3475), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117971] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 1, - anon_sym_pub, - ACTIONS(5720), 1, - sym_identifier, - ACTIONS(5770), 1, - anon_sym_RBRACE, - STATE(3398), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, + STATE(3510), 1, sym__struct_field_definition, - STATE(3480), 1, - sym_embedded_definition, - STATE(3483), 1, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118011] = 12, + [117765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5949), 1, sym_identifier, - ACTIONS(5772), 1, - anon_sym_RBRACE, - STATE(3403), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, - sym_embedded_definition, - STATE(3483), 1, - sym_generic_type, - STATE(4425), 1, - sym_reference_expression, - ACTIONS(633), 2, - anon_sym___global, - anon_sym_mut, - STATE(3449), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3475), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118051] = 12, + STATE(3534), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5831), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5829), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [117791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5774), 1, + ACTIONS(5951), 1, anon_sym_RBRACE, - STATE(3398), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3416), 1, + aux_sym__struct_body_repeat1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118091] = 12, + [117831] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5776), 1, + ACTIONS(5953), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118131] = 12, + [117871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5957), 1, + anon_sym_COLON_EQ, + ACTIONS(5955), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [117893] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5778), 1, + ACTIONS(5959), 1, anon_sym_RBRACE, - STATE(3379), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118171] = 12, + [117933] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5780), 1, + ACTIONS(5961), 1, anon_sym_RBRACE, - STATE(3369), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118211] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2740), 1, - anon_sym_DOT, - ACTIONS(2844), 1, - anon_sym_LBRACK, - ACTIONS(2846), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118235] = 12, + [117973] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 1, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5785), 1, + ACTIONS(5963), 1, anon_sym_RBRACE, - ACTIONS(5790), 1, - anon_sym_pub, - STATE(3398), 1, + STATE(3441), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(5787), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118275] = 12, + [118013] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(5965), 1, anon_sym_RBRACE, - STATE(3409), 1, + STATE(3401), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118315] = 3, - ACTIONS(493), 1, + [118053] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(3327), 1, anon_sym_LBRACK, - ACTIONS(2846), 13, + ACTIONS(3329), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290254,243 +293858,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [118337] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5795), 1, - sym_identifier, - STATE(3488), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5665), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118363] = 12, + [118075] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5797), 1, + ACTIONS(5967), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118403] = 12, + [118115] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5799), 1, + ACTIONS(5969), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3427), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118443] = 12, + [118155] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5801), 1, + ACTIONS(5971), 1, anon_sym_RBRACE, - STATE(3408), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118483] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5803), 1, - sym_identifier, - STATE(3487), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5665), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118509] = 5, + [118195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - sym_identifier, - STATE(3541), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5665), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5663), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118535] = 12, + ACTIONS(5975), 1, + anon_sym_COLON_EQ, + ACTIONS(5973), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [118217] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5807), 1, + ACTIONS(5977), 1, anon_sym_RBRACE, - STATE(3412), 1, + STATE(3410), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118575] = 12, + [118257] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_LBRACK, + ACTIONS(3072), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [118279] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5809), 1, + ACTIONS(5979), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3416), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118615] = 12, + [118319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5811), 1, + ACTIONS(5981), 1, anon_sym_RBRACE, - STATE(3398), 1, + STATE(3422), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118655] = 3, + [118359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5815), 1, + ACTIONS(5985), 1, anon_sym_COLON_EQ, - ACTIONS(5813), 13, + ACTIONS(5983), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290504,68 +294083,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [118677] = 12, + [118381] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_pub, - ACTIONS(5720), 1, - sym_identifier, - ACTIONS(5817), 1, + ACTIONS(631), 1, anon_sym_RBRACE, - STATE(3394), 1, - aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, - sym_embedded_definition, - STATE(3483), 1, - sym_generic_type, - STATE(4425), 1, - sym_reference_expression, - ACTIONS(633), 2, - anon_sym___global, - anon_sym_mut, - STATE(3449), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3475), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118717] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(645), 1, + ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5720), 1, + ACTIONS(5886), 1, sym_identifier, - ACTIONS(5819), 1, - anon_sym_RBRACE, - STATE(3398), 1, + STATE(3428), 1, aux_sym__struct_body_repeat1, - STATE(3476), 1, - sym__struct_field_definition, - STATE(3480), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3483), 1, + STATE(3510), 1, + sym__struct_field_definition, + STATE(3516), 1, sym_generic_type, - STATE(4425), 1, + STATE(4452), 1, sym_reference_expression, - ACTIONS(633), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3449), 2, + STATE(3481), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3512), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118757] = 3, + [118421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5823), 1, + ACTIONS(5989), 1, anon_sym_COLON_EQ, - ACTIONS(5821), 13, + ACTIONS(5987), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290579,34 +294130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [118779] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2958), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118798] = 5, + [118443] = 5, ACTIONS(3), 1, sym_comment, - STATE(3377), 1, + STATE(3424), 1, sym_attribute, - STATE(3415), 1, + STATE(3446), 1, aux_sym_attributes_repeat1, - ACTIONS(5827), 2, + ACTIONS(5993), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(5825), 9, + ACTIONS(5991), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -290616,17 +294150,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [118823] = 5, + [118468] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3305), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [118487] = 5, ACTIONS(3), 1, sym_comment, - STATE(3377), 1, + STATE(3424), 1, sym_attribute, - STATE(3415), 1, + STATE(3446), 1, aux_sym_attributes_repeat1, ACTIONS(111), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(5830), 9, + ACTIONS(5996), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -290636,10 +294187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [118848] = 2, - ACTIONS(493), 1, + [118512] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2978), 13, + ACTIONS(3293), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290653,10 +294204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [118867] = 2, - ACTIONS(493), 1, + [118531] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3002), 13, + ACTIONS(3060), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290670,14 +294221,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [118886] = 3, + [118550] = 5, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6000), 1, + anon_sym_EQ, + STATE(3511), 1, + sym_attribute, + ACTIONS(4841), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(5998), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [118574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 3, + ACTIONS(6004), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5832), 9, + ACTIONS(6002), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290687,14 +294257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [118906] = 3, + [118594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 3, + ACTIONS(6008), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5836), 9, + ACTIONS(6006), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290704,29 +294274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [118926] = 5, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5842), 1, - anon_sym_EQ, - STATE(3479), 1, - sym_attribute, - ACTIONS(4673), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5840), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [118950] = 2, - ACTIONS(493), 1, + [118614] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2822), 11, + ACTIONS(3156), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290738,45 +294289,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [118967] = 4, - ACTIONS(493), 1, + [118631] = 2, + ACTIONS(495), 1, sym_comment, - STATE(3486), 1, - sym_attribute, - ACTIONS(4673), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5844), 8, + ACTIONS(3198), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, + anon_sym_LBRACK2, sym_identifier, - [118988] = 5, - ACTIONS(493), 1, + anon_sym_AT_LBRACK, + [118648] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2764), 1, - anon_sym_LBRACE, - ACTIONS(5764), 1, - anon_sym_LBRACK, - STATE(3414), 1, - sym_type_parameters, - ACTIONS(5846), 8, + ACTIONS(3178), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, + anon_sym_LBRACK2, sym_identifier, - [119011] = 2, - ACTIONS(493), 1, + anon_sym_AT_LBRACK, + [118665] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2910), 11, + ACTIONS(2976), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290788,10 +294334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119028] = 2, - ACTIONS(493), 1, + [118682] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3030), 11, + ACTIONS(3313), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290803,10 +294349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119045] = 2, - ACTIONS(493), 1, + [118699] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3038), 11, + ACTIONS(3104), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290818,10 +294364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119062] = 2, - ACTIONS(493), 1, + [118716] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3042), 11, + ACTIONS(3136), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290833,10 +294379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119079] = 2, - ACTIONS(493), 1, + [118733] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3046), 11, + ACTIONS(2984), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290848,10 +294394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119096] = 2, - ACTIONS(493), 1, + [118750] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3086), 11, + ACTIONS(2890), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290863,10 +294409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119113] = 2, - ACTIONS(493), 1, + [118767] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3129), 11, + ACTIONS(3100), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290878,25 +294424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119130] = 2, - ACTIONS(493), 1, + [118784] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5991), 11, + anon_sym_module, + anon_sym_const, anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, anon_sym_pub, - anon_sym_mut, + anon_sym_enum, + anon_sym_interface, anon_sym_LBRACK2, - sym_identifier, anon_sym_AT_LBRACK, - [119147] = 2, - ACTIONS(493), 1, + [118801] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2834), 11, + ACTIONS(3096), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290908,15 +294454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119164] = 4, - ACTIONS(493), 1, + [118818] = 4, + ACTIONS(495), 1, sym_comment, - STATE(3470), 1, + STATE(3515), 1, sym_attribute, - ACTIONS(4673), 2, + ACTIONS(4841), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(5848), 8, + ACTIONS(6010), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290925,10 +294471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [119185] = 2, - ACTIONS(493), 1, + [118839] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2886), 11, + ACTIONS(3148), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290940,10 +294486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119202] = 2, - ACTIONS(493), 1, + [118856] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3106), 11, + ACTIONS(3088), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290955,55 +294501,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119219] = 2, - ACTIONS(3), 1, + [118873] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5825), 11, - anon_sym_module, - anon_sym_const, + ACTIONS(3222), 11, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, anon_sym_pub, - anon_sym_enum, - anon_sym_interface, + anon_sym_mut, anon_sym_LBRACK2, + sym_identifier, anon_sym_AT_LBRACK, - [119236] = 2, - ACTIONS(493), 1, + [118890] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(2764), 11, + STATE(3506), 1, + sym_attribute, + ACTIONS(4841), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(6012), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, sym_identifier, - anon_sym_AT_LBRACK, - [119253] = 2, - ACTIONS(493), 1, + [118911] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(2914), 11, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(5912), 1, + anon_sym_LBRACK, + STATE(3450), 1, + sym_type_parameters, + ACTIONS(6014), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, sym_identifier, - anon_sym_AT_LBRACK, - [119270] = 2, - ACTIONS(493), 1, + [118934] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2806), 11, + ACTIONS(3241), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291015,10 +294566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119287] = 2, - ACTIONS(493), 1, + [118951] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2866), 11, + ACTIONS(2956), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291030,10 +294581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119304] = 2, - ACTIONS(493), 1, + [118968] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2874), 11, + ACTIONS(3297), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291045,10 +294596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119321] = 2, - ACTIONS(493), 1, + [118985] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(3082), 11, + ACTIONS(3245), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291060,10 +294611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119338] = 2, - ACTIONS(493), 1, + [119002] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2894), 11, + ACTIONS(3261), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291075,10 +294626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119355] = 2, - ACTIONS(493), 1, + [119019] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2882), 11, + ACTIONS(3092), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291090,10 +294641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119372] = 2, - ACTIONS(493), 1, + [119036] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(2926), 11, + ACTIONS(3214), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291105,53 +294656,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119389] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 1, - sym_identifier, - ACTIONS(5854), 1, - anon_sym_LPAREN, - STATE(1505), 1, - sym_global_var_definition, - ACTIONS(5852), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [119411] = 10, + [119053] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6016), 1, anon_sym_module, - ACTIONS(5858), 1, + ACTIONS(6018), 1, anon_sym_const, - ACTIONS(5860), 1, + ACTIONS(6020), 1, anon_sym___global, - ACTIONS(5862), 1, + ACTIONS(6022), 1, anon_sym_fn, - ACTIONS(5866), 1, + ACTIONS(6026), 1, anon_sym_pub, - ACTIONS(5868), 1, + ACTIONS(6028), 1, anon_sym_enum, - ACTIONS(5870), 1, + ACTIONS(6030), 1, anon_sym_interface, - STATE(3653), 1, + STATE(3657), 1, sym_visibility_modifiers, - ACTIONS(5864), 2, + ACTIONS(6024), 2, + anon_sym_struct, + anon_sym_union, + [119085] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6032), 1, + sym_identifier, + ACTIONS(6036), 1, + anon_sym_LPAREN, + STATE(1597), 1, + sym_global_var_definition, + ACTIONS(6034), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, anon_sym_struct, anon_sym_union, - [119443] = 4, - ACTIONS(493), 1, + anon_sym_enum, + anon_sym_interface, + [119107] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5764), 1, + ACTIONS(5912), 1, anon_sym_LBRACK, - STATE(3414), 1, + STATE(3450), 1, sym_type_parameters, - ACTIONS(5846), 8, + ACTIONS(6014), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291160,362 +294711,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [119463] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5858), 1, - anon_sym_const, - ACTIONS(5860), 1, - anon_sym___global, - ACTIONS(5862), 1, - anon_sym_fn, - ACTIONS(5866), 1, - anon_sym_pub, - ACTIONS(5868), 1, - anon_sym_enum, - ACTIONS(5870), 1, - anon_sym_interface, - STATE(3653), 1, - sym_visibility_modifiers, - ACTIONS(5864), 2, - anon_sym_struct, - anon_sym_union, - [119492] = 8, + [119127] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3501), 1, + STATE(3524), 1, sym_capture_list, - STATE(3818), 1, + STATE(3786), 1, sym_generic_parameters, - STATE(4348), 1, + STATE(4271), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119519] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2764), 1, - anon_sym_LBRACE, - ACTIONS(5846), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119536] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 1, - sym_identifier, - ACTIONS(5874), 1, - anon_sym_LPAREN, - STATE(1533), 1, - sym_global_var_definition, - ACTIONS(5852), 6, - anon_sym_const, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [119557] = 8, + [119154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3532), 1, + STATE(3533), 1, sym_capture_list, - STATE(3826), 1, + STATE(3837), 1, sym_generic_parameters, - STATE(4197), 1, + STATE(4022), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119584] = 8, + [119181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3489), 1, + STATE(3563), 1, sym_capture_list, - STATE(3829), 1, + STATE(3833), 1, sym_generic_parameters, - STATE(4013), 1, + STATE(4436), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119611] = 4, - ACTIONS(493), 1, + [119208] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3703), 1, anon_sym_COLON, - ACTIONS(3583), 3, + ACTIONS(3701), 3, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(5876), 5, + ACTIONS(6040), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [119630] = 8, + [119227] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3531), 1, + STATE(3565), 1, sym_capture_list, - STATE(3807), 1, + STATE(3774), 1, sym_generic_parameters, - STATE(4137), 1, + STATE(4198), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119657] = 8, + [119254] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3533), 1, + STATE(3536), 1, sym_capture_list, - STATE(3704), 1, - sym_generic_parameters, - STATE(4244), 1, + STATE(3719), 1, sym_signature, - ACTIONS(4707), 2, + STATE(3811), 1, + sym_generic_parameters, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119684] = 8, + [119281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3558), 1, sym_capture_list, - STATE(3745), 1, + STATE(3885), 1, sym_generic_parameters, - STATE(4247), 1, + STATE(4418), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119711] = 5, - ACTIONS(493), 1, + [119308] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(5880), 1, + ACTIONS(6044), 1, anon_sym_EQ, - STATE(3664), 1, + STATE(3694), 1, sym_attribute, - ACTIONS(4673), 2, + ACTIONS(4841), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(5878), 5, + ACTIONS(6042), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, sym_identifier, - [119732] = 8, + [119329] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6018), 1, + anon_sym_const, + ACTIONS(6020), 1, + anon_sym___global, + ACTIONS(6022), 1, + anon_sym_fn, + ACTIONS(6026), 1, + anon_sym_pub, + ACTIONS(6028), 1, + anon_sym_enum, + ACTIONS(6030), 1, + anon_sym_interface, + STATE(3657), 1, + sym_visibility_modifiers, + ACTIONS(6024), 2, + anon_sym_struct, + anon_sym_union, + [119358] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3514), 1, + STATE(3561), 1, sym_capture_list, - STATE(3729), 1, + STATE(3867), 1, sym_generic_parameters, - STATE(4232), 1, + STATE(4207), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119759] = 8, + [119385] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3505), 1, + STATE(3537), 1, sym_capture_list, - STATE(3736), 1, + STATE(3851), 1, sym_generic_parameters, - STATE(4141), 1, + STATE(4239), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119786] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(2740), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - sym_identifier, - [119801] = 8, + [119412] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3538), 1, + STATE(3529), 1, sym_capture_list, - STATE(3699), 1, + STATE(3874), 1, sym_generic_parameters, - STATE(4238), 1, + STATE(4134), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119828] = 8, + [119439] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2890), 1, + anon_sym_LBRACE, + ACTIONS(6014), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [119456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6032), 1, + sym_identifier, + ACTIONS(6046), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym_global_var_definition, + ACTIONS(6034), 6, + anon_sym_const, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [119477] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3529), 1, + STATE(3572), 1, sym_capture_list, - STATE(3676), 1, - sym_signature, - STATE(3710), 1, + STATE(3844), 1, sym_generic_parameters, - ACTIONS(4707), 2, + STATE(4409), 1, + sym_signature, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119855] = 8, + [119504] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3494), 1, + STATE(3546), 1, sym_capture_list, - STATE(3693), 1, + STATE(3841), 1, sym_generic_parameters, - STATE(4405), 1, + STATE(4353), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119882] = 8, + [119531] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2914), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + sym_identifier, + [119546] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(5835), 1, anon_sym_LBRACK2, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3508), 1, + STATE(3541), 1, sym_capture_list, - STATE(3757), 1, + STATE(3859), 1, sym_generic_parameters, - STATE(4370), 1, + STATE(4306), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [119909] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5884), 1, - anon_sym_DOT, - STATE(3473), 1, - aux_sym_import_path_repeat1, - ACTIONS(5882), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [119927] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(5890), 1, - anon_sym_LBRACE, - STATE(3642), 1, - sym_import_alias, - STATE(3856), 1, - sym_selective_import_list, - ACTIONS(5886), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [119949] = 2, - ACTIONS(493), 1, + [119573] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5892), 8, + ACTIONS(6048), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291524,24 +295045,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [119963] = 4, - ACTIONS(493), 1, + [119587] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5884), 1, + ACTIONS(6052), 1, anon_sym_DOT, - STATE(3468), 1, + STATE(3514), 1, aux_sym_import_path_repeat1, - ACTIONS(5894), 6, + ACTIONS(6050), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [119981] = 2, - ACTIONS(493), 1, + [119605] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5896), 8, + ACTIONS(6054), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291550,55 +295071,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [119995] = 4, - ACTIONS(493), 1, + [119619] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(5900), 1, + ACTIONS(6058), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6056), 5, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [119635] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6052), 1, anon_sym_DOT, - STATE(3473), 1, + STATE(3501), 1, aux_sym_import_path_repeat1, - ACTIONS(5898), 6, + ACTIONS(6060), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [120013] = 8, + [119653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, + ACTIONS(6062), 1, sym_identifier, - ACTIONS(5906), 1, + ACTIONS(6065), 1, anon_sym_RBRACE, - ACTIONS(5908), 1, + ACTIONS(6067), 1, anon_sym_DOT_DOT_DOT, - STATE(3456), 1, + STATE(3485), 1, sym_reference_expression, - STATE(3474), 1, + STATE(3505), 1, aux_sym_element_list_repeat1, - STATE(4548), 1, + STATE(4470), 1, sym_field_name, - STATE(3481), 2, + STATE(3508), 2, sym_keyed_element, sym_spread_expression, - [120039] = 3, - ACTIONS(493), 1, + [119679] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5913), 3, + ACTIONS(6070), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(5911), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [120055] = 2, - ACTIONS(493), 1, + [119693] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5915), 8, + ACTIONS(6072), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291607,41 +295140,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120069] = 8, - ACTIONS(3), 1, + [119707] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(641), 1, + ACTIONS(3701), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - ACTIONS(5917), 1, sym_identifier, - ACTIONS(5919), 1, - anon_sym_RBRACE, - STATE(3456), 1, - sym_reference_expression, - STATE(3474), 1, - aux_sym_element_list_repeat1, - STATE(4548), 1, - sym_field_name, - STATE(3481), 2, - sym_keyed_element, - sym_spread_expression, - [120095] = 3, - ACTIONS(493), 1, + ACTIONS(6040), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [119723] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5923), 3, + ACTIONS(6074), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(5921), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [120111] = 2, - ACTIONS(493), 1, + [119737] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5925), 8, + ACTIONS(6076), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291650,10 +295177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120125] = 2, - ACTIONS(493), 1, + [119751] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5927), 8, + ACTIONS(6078), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291662,35 +295189,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120139] = 3, - ACTIONS(493), 1, + [119765] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3583), 3, + ACTIONS(6082), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6080), 5, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, sym_identifier, - ACTIONS(5876), 5, + [119781] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6086), 1, + anon_sym_as, + ACTIONS(6088), 1, + anon_sym_LBRACE, + STATE(3626), 1, + sym_import_alias, + STATE(3864), 1, + sym_selective_import_list, + ACTIONS(6084), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - [120155] = 2, - ACTIONS(493), 1, + [119803] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5929), 8, + ACTIONS(6092), 1, + anon_sym_DOT, + STATE(3514), 1, + aux_sym_import_path_repeat1, + ACTIONS(6090), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120169] = 2, - ACTIONS(493), 1, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [119821] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6095), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291699,10 +295244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120183] = 2, - ACTIONS(493), 1, + [119835] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5931), 8, + ACTIONS(6014), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291711,13475 +295256,13499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120197] = 9, + [119849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, + ACTIONS(643), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6097), 1, sym_identifier, - ACTIONS(5933), 1, + ACTIONS(6099), 1, + anon_sym_RBRACE, + STATE(3485), 1, + sym_reference_expression, + STATE(3505), 1, + aux_sym_element_list_repeat1, + STATE(4470), 1, + sym_field_name, + STATE(3508), 2, + sym_keyed_element, + sym_spread_expression, + [119875] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(6101), 1, anon_sym_COMMA, - ACTIONS(5935), 1, + ACTIONS(6103), 1, anon_sym_RBRACK, - ACTIONS(5937), 1, + ACTIONS(6105), 1, anon_sym_mut, - ACTIONS(5939), 1, + ACTIONS(6107), 1, anon_sym_shared, - STATE(3942), 1, + STATE(3917), 1, sym_capture, - STATE(4292), 1, + STATE(4410), 1, sym_mutability_modifiers, - STATE(4297), 1, + STATE(4413), 1, sym_reference_expression, - [120225] = 2, - ACTIONS(493), 1, + [119903] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5941), 8, + ACTIONS(6109), 1, + sym_identifier, + STATE(3710), 1, + sym_reference_expression, + ACTIONS(6111), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120239] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5943), 1, - anon_sym_LPAREN, - STATE(1466), 1, - sym_signature, - STATE(3755), 1, - sym_generic_parameters, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1119), 2, - sym_parameter_list, - sym_type_parameter_list, - [120260] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5943), 1, - anon_sym_LPAREN, - STATE(1448), 1, - sym_signature, - STATE(3751), 1, - sym_generic_parameters, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1119), 2, - sym_parameter_list, - sym_type_parameter_list, - [120281] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5872), 1, - anon_sym_LPAREN, - STATE(3835), 1, - sym_generic_parameters, - STATE(4150), 1, - sym_signature, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2897), 2, - sym_parameter_list, - sym_type_parameter_list, - [120302] = 4, - ACTIONS(493), 1, + [119920] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5947), 1, + ACTIONS(6115), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(5945), 5, + ACTIONS(6113), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120319] = 4, - ACTIONS(493), 1, + [119937] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5951), 1, + ACTIONS(6119), 1, anon_sym_RPAREN, - STATE(3503), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(5949), 5, + ACTIONS(6117), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120336] = 6, + [119954] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6121), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [119967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1463), 1, + STATE(1502), 1, sym_signature, - STATE(3749), 1, + STATE(3751), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120357] = 6, + [119988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3748), 1, + STATE(3845), 1, sym_generic_parameters, - STATE(4388), 1, + STATE(4403), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [120378] = 6, + [120009] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6127), 1, + anon_sym_RPAREN, + STATE(3528), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6125), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [120026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(3798), 1, - sym_generic_parameters, - STATE(4358), 1, + STATE(1477), 1, sym_signature, - ACTIONS(4707), 2, + STATE(3736), 1, + sym_generic_parameters, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120399] = 4, - ACTIONS(493), 1, + [120047] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5955), 1, + ACTIONS(6131), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(5953), 5, + ACTIONS(6129), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120416] = 4, - ACTIONS(493), 1, + [120064] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5960), 1, + ACTIONS(6135), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(5957), 5, + ACTIONS(6133), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120433] = 4, - ACTIONS(493), 1, + [120081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(3865), 1, + sym_generic_parameters, + STATE(4206), 1, + sym_signature, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [120102] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5964), 1, + ACTIONS(6139), 1, anon_sym_RPAREN, - STATE(3509), 1, + STATE(3564), 1, aux_sym_argument_list_repeat1, - ACTIONS(5962), 5, + ACTIONS(6137), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120450] = 6, + [120119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1464), 1, + STATE(1521), 1, sym_signature, - STATE(3715), 1, + STATE(3762), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120471] = 6, + [120140] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6090), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [120153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(1473), 1, + STATE(3832), 1, + sym_generic_parameters, + STATE(4236), 1, + sym_signature, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [120174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6123), 1, + anon_sym_LPAREN, + STATE(1500), 1, sym_signature, - STATE(3779), 1, + STATE(3760), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120492] = 4, - ACTIONS(493), 1, + [120195] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5968), 1, + ACTIONS(6143), 1, anon_sym_RPAREN, - STATE(3490), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(5966), 5, + ACTIONS(6141), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120509] = 6, + [120212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3822), 1, + STATE(3818), 1, sym_generic_parameters, - STATE(4294), 1, + STATE(4359), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [120530] = 6, + [120233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(1471), 1, - sym_signature, - STATE(3694), 1, + STATE(3857), 1, sym_generic_parameters, - ACTIONS(4707), 2, + STATE(4178), 1, + sym_signature, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [120551] = 4, - ACTIONS(493), 1, + [120254] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(6105), 1, + anon_sym_mut, + ACTIONS(6107), 1, + anon_sym_shared, + ACTIONS(6145), 1, + anon_sym_RBRACK, + STATE(4133), 1, + sym_capture, + STATE(4410), 1, + sym_mutability_modifiers, + STATE(4413), 1, + sym_reference_expression, + [120279] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5972), 1, + ACTIONS(6149), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3547), 1, aux_sym_argument_list_repeat1, - ACTIONS(5970), 5, + ACTIONS(6147), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120568] = 4, - ACTIONS(493), 1, + [120296] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5976), 1, + ACTIONS(6153), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3520), 1, aux_sym_argument_list_repeat1, - ACTIONS(5974), 5, + ACTIONS(6151), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120585] = 6, + [120313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3728), 1, + STATE(3855), 1, sym_generic_parameters, - STATE(4213), 1, + STATE(4371), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [120606] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5980), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5978), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120623] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5898), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [120636] = 6, + [120334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(3800), 1, - sym_generic_parameters, - STATE(4259), 1, + STATE(1507), 1, sym_signature, - ACTIONS(4707), 2, + STATE(3763), 1, + sym_generic_parameters, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120657] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5984), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5982), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120674] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(5986), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [120687] = 6, + [120355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1489), 1, + STATE(1496), 1, sym_signature, - STATE(3712), 1, + STATE(3771), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120708] = 4, - ACTIONS(493), 1, + [120376] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_RPAREN, - STATE(3504), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5988), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120725] = 4, - ACTIONS(493), 1, + ACTIONS(6123), 1, + anon_sym_LPAREN, + STATE(1490), 1, + sym_signature, + STATE(3838), 1, + sym_generic_parameters, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1141), 2, + sym_parameter_list, + sym_type_parameter_list, + [120397] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5994), 1, + ACTIONS(6157), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3527), 1, aux_sym_argument_list_repeat1, - ACTIONS(5992), 5, + ACTIONS(6155), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120742] = 6, + [120414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3732), 1, + STATE(3846), 1, sym_generic_parameters, - STATE(4131), 1, + STATE(4317), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [120763] = 4, - ACTIONS(493), 1, + [120435] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5998), 1, + ACTIONS(6161), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(5996), 5, + ACTIONS(6159), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120780] = 4, - ACTIONS(493), 1, + [120452] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6002), 1, + ACTIONS(6165), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(6000), 5, + ACTIONS(6163), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120797] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5937), 1, - anon_sym_mut, - ACTIONS(5939), 1, - anon_sym_shared, - ACTIONS(6004), 1, - anon_sym_RBRACK, - STATE(4292), 1, - sym_mutability_modifiers, - STATE(4297), 1, - sym_reference_expression, - STATE(4308), 1, - sym_capture, - [120822] = 4, - ACTIONS(493), 1, + [120469] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6006), 1, - sym_identifier, - STATE(3677), 1, - sym_reference_expression, - ACTIONS(6008), 5, + ACTIONS(6169), 1, + anon_sym_RPAREN, + STATE(3573), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6167), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - [120839] = 6, + [120486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1434), 1, + STATE(1484), 1, sym_signature, - STATE(3839), 1, + STATE(3761), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120860] = 4, - ACTIONS(493), 1, + [120507] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6012), 1, + ACTIONS(6173), 1, anon_sym_RPAREN, - STATE(3536), 1, + STATE(3548), 1, aux_sym_argument_list_repeat1, - ACTIONS(6010), 5, + ACTIONS(6171), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120877] = 6, + [120524] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1478), 1, + STATE(1491), 1, sym_signature, - STATE(3743), 1, + STATE(3889), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120898] = 6, + [120545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1483), 1, + STATE(1481), 1, sym_signature, - STATE(3741), 1, + STATE(3767), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [120919] = 4, - ACTIONS(493), 1, + [120566] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6016), 1, + ACTIONS(6177), 1, anon_sym_RPAREN, - STATE(3515), 1, + STATE(3559), 1, aux_sym_argument_list_repeat1, - ACTIONS(6014), 5, + ACTIONS(6175), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6018), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [120949] = 4, - ACTIONS(493), 1, + [120583] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6022), 1, + ACTIONS(6181), 1, anon_sym_RPAREN, - STATE(3506), 1, + STATE(3574), 1, aux_sym_argument_list_repeat1, - ACTIONS(6020), 5, + ACTIONS(6179), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120966] = 4, - ACTIONS(493), 1, + [120600] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6026), 1, + ACTIONS(6186), 1, anon_sym_RPAREN, - STATE(3513), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(6024), 5, + ACTIONS(6183), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120983] = 4, - ACTIONS(493), 1, + [120617] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6030), 1, + ACTIONS(6190), 1, anon_sym_RPAREN, - STATE(3495), 1, + STATE(3521), 1, aux_sym_argument_list_repeat1, - ACTIONS(6028), 5, + ACTIONS(6188), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [121000] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5943), 1, - anon_sym_LPAREN, - STATE(1459), 1, - sym_signature, - STATE(3740), 1, - sym_generic_parameters, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1119), 2, - sym_parameter_list, - sym_type_parameter_list, - [121021] = 6, + [120634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3705), 1, + STATE(3882), 1, sym_generic_parameters, - STATE(4263), 1, + STATE(4365), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [121042] = 4, - ACTIONS(493), 1, + [120655] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6034), 1, + ACTIONS(6194), 1, anon_sym_RPAREN, - STATE(3534), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(6032), 5, + ACTIONS(6192), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [121059] = 6, + [120672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(3813), 1, - sym_generic_parameters, - STATE(4411), 1, + STATE(1476), 1, sym_signature, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2897), 2, - sym_parameter_list, - sym_type_parameter_list, - [121080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5872), 1, - anon_sym_LPAREN, - STATE(3836), 1, + STATE(3848), 1, sym_generic_parameters, - STATE(4277), 1, - sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [121101] = 6, + [120693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3701), 1, + STATE(3890), 1, sym_generic_parameters, - STATE(4305), 1, + STATE(4296), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [121122] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6038), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6036), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121139] = 4, - ACTIONS(493), 1, + [120714] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6042), 1, + ACTIONS(6198), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(6040), 5, + ACTIONS(6196), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [121156] = 4, - ACTIONS(493), 1, + [120731] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6044), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121173] = 4, - ACTIONS(493), 1, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(3835), 1, + sym_generic_parameters, + STATE(4401), 1, + sym_signature, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [120752] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6050), 1, + ACTIONS(6202), 1, anon_sym_RPAREN, - STATE(3516), 1, + STATE(3556), 1, aux_sym_argument_list_repeat1, - ACTIONS(6048), 5, + ACTIONS(6200), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [121190] = 6, + [120769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(3698), 1, + STATE(3787), 1, sym_generic_parameters, - STATE(4124), 1, + STATE(4250), 1, sym_signature, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [121211] = 4, - ACTIONS(493), 1, + [120790] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6054), 1, - anon_sym_RPAREN, - STATE(3535), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6052), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121228] = 7, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(6105), 1, + anon_sym_mut, + ACTIONS(6107), 1, + anon_sym_shared, + ACTIONS(6204), 1, + anon_sym_RBRACK, + STATE(4133), 1, + sym_capture, + STATE(4410), 1, + sym_mutability_modifiers, + STATE(4413), 1, + sym_reference_expression, + [120815] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6056), 1, + ACTIONS(6206), 1, anon_sym_const, - ACTIONS(6058), 1, + ACTIONS(6208), 1, anon_sym_type, - ACTIONS(6060), 1, + ACTIONS(6210), 1, anon_sym_fn, - ACTIONS(6064), 1, + ACTIONS(6214), 1, anon_sym_enum, - ACTIONS(6066), 1, + ACTIONS(6216), 1, anon_sym_interface, - ACTIONS(6062), 2, + ACTIONS(6212), 2, anon_sym_struct, anon_sym_union, - [121251] = 6, + [120838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6218), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [120851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1440), 1, + STATE(1486), 1, sym_signature, - STATE(3724), 1, + STATE(3853), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [121272] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5937), 1, - anon_sym_mut, - ACTIONS(5939), 1, - anon_sym_shared, - ACTIONS(6068), 1, - anon_sym_RBRACK, - STATE(4292), 1, - sym_mutability_modifiers, - STATE(4297), 1, - sym_reference_expression, - STATE(4308), 1, - sym_capture, - [121297] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6070), 1, - sym_escape_sequence, - ACTIONS(6072), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6076), 1, - sym___double_quote, - STATE(3558), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121317] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6078), 1, - sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6082), 1, - sym___double_quote, - STATE(3549), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121337] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6084), 1, - sym_escape_sequence, - ACTIONS(6086), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6088), 1, - sym___double_quote, - STATE(3595), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121357] = 2, - ACTIONS(493), 1, + [120872] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4785), 6, + ACTIONS(6222), 1, + anon_sym_RPAREN, + STATE(3562), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6220), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, + [120889] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6226), 1, anon_sym_RPAREN, - [121369] = 4, + STATE(3535), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6224), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [120906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6090), 1, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(3842), 1, + sym_generic_parameters, + STATE(4380), 1, + sym_signature, + ACTIONS(4861), 2, anon_sym_LBRACK, - STATE(2380), 1, - sym_type_parameters, - ACTIONS(2762), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [121385] = 6, - ACTIONS(493), 1, + anon_sym_LT2, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [120927] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6092), 1, - sym_escape_sequence, - ACTIONS(6095), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6098), 1, - sym___dolcbr, - ACTIONS(6101), 1, - sym___single_quote, - STATE(3548), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121405] = 6, - ACTIONS(493), 1, + ACTIONS(6230), 1, + anon_sym_RPAREN, + STATE(3556), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6228), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [120944] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6103), 1, + ACTIONS(6234), 1, + anon_sym_RPAREN, + STATE(3556), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6232), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [120961] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6236), 1, sym_escape_sequence, - ACTIONS(6106), 1, + ACTIONS(6238), 1, aux_sym_c_string_literal_token2, - ACTIONS(6109), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6112), 1, + ACTIONS(6242), 1, sym___double_quote, - STATE(3549), 2, + STATE(3637), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121425] = 6, - ACTIONS(493), 1, + [120981] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6114), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6116), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6118), 1, - sym___double_quote, - STATE(3644), 2, + ACTIONS(6246), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6250), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121445] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat1, + [121001] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6118), 1, - sym___single_quote, - ACTIONS(6120), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6122), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - STATE(3646), 2, + ACTIONS(6252), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121465] = 6, - ACTIONS(493), 1, + [121021] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6088), 1, - sym___single_quote, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6126), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6128), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - STATE(3596), 2, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6254), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121485] = 4, - ACTIONS(493), 1, + [121041] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6130), 1, - anon_sym_COMMA, - STATE(3553), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1716), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [121501] = 4, - ACTIONS(493), 1, + ACTIONS(6240), 1, + sym___dolcbr, + ACTIONS(6254), 1, + sym___double_quote, + ACTIONS(6256), 1, + sym_escape_sequence, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + STATE(3677), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [121061] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4781), 1, + ACTIONS(4955), 1, anon_sym_COMMA, - STATE(3553), 1, + STATE(3644), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3761), 4, + ACTIONS(3955), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [121517] = 6, - ACTIONS(493), 1, + [121077] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6262), 1, aux_sym_c_string_literal_token1, - ACTIONS(6137), 1, + ACTIONS(6264), 1, sym___single_quote, - STATE(3548), 2, + STATE(3577), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121537] = 6, - ACTIONS(493), 1, + [121097] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6264), 1, + sym___double_quote, + ACTIONS(6266), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6137), 1, - sym___double_quote, - STATE(3549), 2, + STATE(3647), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121557] = 6, - ACTIONS(493), 1, + [121117] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6270), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6272), 1, aux_sym_c_string_literal_token1, - ACTIONS(6139), 1, + ACTIONS(6274), 1, sym___single_quote, - STATE(3548), 2, + STATE(3587), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121577] = 6, - ACTIONS(493), 1, + [121137] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6274), 1, + sym___double_quote, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6278), 1, aux_sym_c_string_literal_token2, - ACTIONS(6139), 1, - sym___double_quote, - STATE(3549), 2, + STATE(3589), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121597] = 6, - ACTIONS(493), 1, + [121157] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6280), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6282), 1, aux_sym_c_string_literal_token2, - ACTIONS(6141), 1, + ACTIONS(6284), 1, sym___double_quote, - STATE(3549), 2, + STATE(3621), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_DOT, - ACTIONS(2844), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [121631] = 4, - ACTIONS(493), 1, + [121177] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(4781), 1, - anon_sym_COMMA, - STATE(3553), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3738), 4, + ACTIONS(6186), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [121647] = 6, - ACTIONS(493), 1, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [121189] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6143), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6286), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121667] = 6, - ACTIONS(493), 1, + [121209] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6288), 1, + anon_sym_DOT, + ACTIONS(6290), 1, + anon_sym_RBRACE, + ACTIONS(6292), 1, + sym_int_literal, + ACTIONS(6294), 1, + aux_sym_format_specifier_token1, + ACTIONS(6296), 1, + aux_sym_format_specifier_token2, + ACTIONS(6298), 1, + anon_sym_0, + [121231] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6145), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6147), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6149), 1, + ACTIONS(6286), 1, sym___double_quote, - STATE(3582), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121687] = 6, - ACTIONS(493), 1, + [121251] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6149), 1, - sym___single_quote, - ACTIONS(6151), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6153), 1, - aux_sym_c_string_literal_token1, - STATE(3583), 2, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6300), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121707] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6155), 1, - sym_identifier, - STATE(3765), 1, - sym_label_reference, - ACTIONS(3811), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [121723] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6155), 1, - sym_identifier, - STATE(3764), 1, - sym_label_reference, - ACTIONS(3815), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [121739] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat2, + [121271] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6157), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6159), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6161), 1, + ACTIONS(6302), 1, sym___double_quote, - STATE(3584), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121759] = 6, - ACTIONS(493), 1, + [121291] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6161), 1, - sym___single_quote, - ACTIONS(6163), 1, + ACTIONS(6304), 1, sym_escape_sequence, - ACTIONS(6165), 1, + ACTIONS(6306), 1, aux_sym_c_string_literal_token1, - STATE(3585), 2, + ACTIONS(6308), 1, + sym___single_quote, + STATE(3597), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121779] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6078), 1, - sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6143), 1, - sym___double_quote, - STATE(3549), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121799] = 6, - ACTIONS(493), 1, + [121311] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6167), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6310), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121819] = 6, - ACTIONS(493), 1, + [121331] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6167), 1, + ACTIONS(6310), 1, sym___double_quote, - STATE(3549), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121839] = 6, - ACTIONS(493), 1, + [121351] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6169), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6312), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121859] = 6, - ACTIONS(493), 1, + [121371] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6171), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6173), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6175), 1, - sym___single_quote, - STATE(3636), 2, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6312), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121879] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat2, + [121391] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6177), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6302), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121899] = 6, - ACTIONS(493), 1, + [121411] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6314), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6316), 1, aux_sym_c_string_literal_token2, - ACTIONS(6177), 1, + ACTIONS(6318), 1, sym___double_quote, - STATE(3549), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121919] = 6, - ACTIONS(493), 1, + [121431] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6318), 1, + sym___single_quote, + ACTIONS(6320), 1, sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6169), 1, - sym___double_quote, - STATE(3549), 2, + ACTIONS(6322), 1, + aux_sym_c_string_literal_token1, + STATE(3628), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121939] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat1, + [121451] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6324), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6326), 1, aux_sym_c_string_literal_token2, - ACTIONS(6179), 1, + ACTIONS(6328), 1, sym___double_quote, - STATE(3549), 2, + STATE(3629), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121959] = 6, - ACTIONS(493), 1, + [121471] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6328), 1, + sym___single_quote, + ACTIONS(6330), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6332), 1, aux_sym_c_string_literal_token1, - ACTIONS(6181), 1, - sym___single_quote, - STATE(3548), 2, + STATE(3630), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121979] = 6, - ACTIONS(493), 1, + [121491] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6308), 1, + sym___double_quote, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6336), 1, aux_sym_c_string_literal_token2, - ACTIONS(6181), 1, - sym___double_quote, - STATE(3549), 2, + STATE(3591), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121999] = 6, - ACTIONS(493), 1, + [121511] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6338), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6340), 1, aux_sym_c_string_literal_token1, - ACTIONS(6183), 1, + ACTIONS(6342), 1, sym___single_quote, - STATE(3548), 2, + STATE(3578), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122019] = 6, - ACTIONS(493), 1, + [121531] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6344), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6346), 1, aux_sym_c_string_literal_token2, - ACTIONS(6183), 1, + ACTIONS(6348), 1, sym___double_quote, - STATE(3549), 2, + STATE(3618), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122039] = 6, - ACTIONS(493), 1, + [121551] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6342), 1, + sym___double_quote, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6352), 1, aux_sym_c_string_literal_token2, - ACTIONS(6185), 1, - sym___double_quote, - STATE(3549), 2, + STATE(3579), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122059] = 6, - ACTIONS(493), 1, + [121571] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6135), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6185), 1, - sym___single_quote, - STATE(3548), 2, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6354), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122079] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat2, + [121591] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6348), 1, + sym___single_quote, + ACTIONS(6356), 1, sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6187), 1, - sym___double_quote, - STATE(3549), 2, + ACTIONS(6358), 1, + aux_sym_c_string_literal_token1, + STATE(3619), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122099] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat1, + [121611] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6360), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6362), 1, aux_sym_c_string_literal_token1, - ACTIONS(6187), 1, + ACTIONS(6364), 1, sym___single_quote, - STATE(3548), 2, + STATE(3593), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122119] = 6, - ACTIONS(493), 1, + [121631] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6189), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6191), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6193), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6354), 1, sym___single_quote, - STATE(3578), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122139] = 6, - ACTIONS(493), 1, + [121651] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6193), 1, + ACTIONS(6364), 1, sym___double_quote, - ACTIONS(6195), 1, + ACTIONS(6366), 1, sym_escape_sequence, - ACTIONS(6197), 1, + ACTIONS(6368), 1, aux_sym_c_string_literal_token2, - STATE(3579), 2, + STATE(3594), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122159] = 6, - ACTIONS(493), 1, + [121671] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6199), 1, + ACTIONS(6370), 1, sym_escape_sequence, - ACTIONS(6201), 1, + ACTIONS(6372), 1, aux_sym_c_string_literal_token1, - ACTIONS(6203), 1, + ACTIONS(6374), 1, sym___single_quote, - STATE(3580), 2, + STATE(3595), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122179] = 6, - ACTIONS(493), 1, + [121691] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6240), 1, + sym___dolcbr, + ACTIONS(6256), 1, + sym_escape_sequence, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6376), 1, + sym___double_quote, + STATE(3677), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [121711] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6240), 1, + sym___dolcbr, + ACTIONS(6374), 1, + sym___double_quote, + ACTIONS(6378), 1, + sym_escape_sequence, + ACTIONS(6380), 1, + aux_sym_c_string_literal_token2, + STATE(3596), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [121731] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6205), 1, + ACTIONS(6382), 1, sym_escape_sequence, - ACTIONS(6207), 1, + ACTIONS(6384), 1, aux_sym_c_string_literal_token2, - ACTIONS(6209), 1, + ACTIONS(6386), 1, sym___double_quote, - STATE(3618), 2, + STATE(3625), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122199] = 6, - ACTIONS(493), 1, + [121751] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6209), 1, + ACTIONS(6386), 1, sym___single_quote, - ACTIONS(6211), 1, + ACTIONS(6388), 1, sym_escape_sequence, - ACTIONS(6213), 1, + ACTIONS(6390), 1, aux_sym_c_string_literal_token1, - STATE(3619), 2, + STATE(3631), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [121771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2912), 1, + anon_sym_DOT, + ACTIONS(3070), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [121785] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6244), 1, + sym_escape_sequence, + ACTIONS(6246), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6376), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122219] = 6, - ACTIONS(493), 1, + [121805] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6215), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6217), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6219), 1, + ACTIONS(6392), 1, sym___double_quote, - STATE(3620), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122239] = 6, - ACTIONS(493), 1, + [121825] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6244), 1, + sym_escape_sequence, + ACTIONS(6246), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6219), 1, + ACTIONS(6392), 1, sym___single_quote, - ACTIONS(6221), 1, + STATE(3678), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [121845] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6223), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - STATE(3621), 2, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6394), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122259] = 6, - ACTIONS(493), 1, + [121865] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6203), 1, + ACTIONS(6250), 1, sym___double_quote, - ACTIONS(6225), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6227), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - STATE(3581), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122279] = 6, - ACTIONS(493), 1, + [121885] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6175), 1, - sym___double_quote, - ACTIONS(6229), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6231), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - STATE(3632), 2, + ACTIONS(6394), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122299] = 6, - ACTIONS(493), 1, + [121905] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6244), 1, + sym_escape_sequence, + ACTIONS(6246), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6396), 1, + sym___single_quote, + STATE(3678), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [121925] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6233), 1, + ACTIONS(6396), 1, sym___double_quote, - STATE(3549), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122319] = 6, - ACTIONS(493), 1, + [121945] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6135), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6233), 1, - sym___single_quote, - STATE(3548), 2, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6398), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122339] = 7, - ACTIONS(3), 1, + aux_sym_c_string_literal_repeat2, + [121965] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5937), 1, - anon_sym_mut, - ACTIONS(5939), 1, - anon_sym_shared, - STATE(4292), 1, - sym_mutability_modifiers, - STATE(4297), 1, - sym_reference_expression, - STATE(4308), 1, - sym_capture, - [122361] = 6, - ACTIONS(493), 1, + ACTIONS(6088), 1, + anon_sym_LBRACE, + STATE(3757), 1, + sym_selective_import_list, + ACTIONS(6400), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [121981] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6235), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6237), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6239), 1, - sym___single_quote, - STATE(3555), 2, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6402), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122381] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat2, + [122001] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6179), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6402), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122401] = 6, - ACTIONS(493), 1, + [122021] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6239), 1, - sym___double_quote, - ACTIONS(6241), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6243), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - STATE(3556), 2, + ACTIONS(6404), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122421] = 6, - ACTIONS(493), 1, + [122041] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6076), 1, - sym___single_quote, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6245), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6247), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - STATE(3557), 2, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6404), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122441] = 6, - ACTIONS(493), 1, + [122061] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6249), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6251), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6253), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6398), 1, sym___single_quote, - STATE(3599), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122461] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6258), 1, - anon_sym_RBRACE, - STATE(3603), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6255), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [122477] = 6, - ACTIONS(493), 1, + [122081] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6260), 1, + ACTIONS(6406), 1, sym_escape_sequence, - ACTIONS(6262), 1, + ACTIONS(6408), 1, aux_sym_c_string_literal_token1, - ACTIONS(6264), 1, + ACTIONS(6410), 1, sym___single_quote, - STATE(3562), 2, + STATE(3645), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122497] = 2, - ACTIONS(493), 1, + [122101] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(5960), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [122509] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6074), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6264), 1, - sym___double_quote, - ACTIONS(6266), 1, + ACTIONS(6284), 1, + sym___single_quote, + ACTIONS(6412), 1, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - STATE(3569), 2, + ACTIONS(6414), 1, + aux_sym_c_string_literal_token1, + STATE(3576), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122529] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat1, + [122121] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6270), 1, + ACTIONS(6416), 1, sym_escape_sequence, - ACTIONS(6272), 1, + ACTIONS(6418), 1, aux_sym_c_string_literal_token1, - ACTIONS(6274), 1, + ACTIONS(6420), 1, sym___single_quote, - STATE(3574), 2, + STATE(3620), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122549] = 6, - ACTIONS(493), 1, + [122141] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6280), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6422), 1, sym___single_quote, - STATE(3570), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122569] = 6, - ACTIONS(493), 1, + [122161] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6282), 1, + ACTIONS(6420), 1, + sym___double_quote, + ACTIONS(6424), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6426), 1, aux_sym_c_string_literal_token2, - ACTIONS(6286), 1, - sym___double_quote, - STATE(3559), 2, + STATE(3622), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122589] = 6, - ACTIONS(493), 1, + [122181] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6280), 1, - sym___double_quote, - ACTIONS(6288), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - STATE(3571), 2, + ACTIONS(6428), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122609] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, - sym_escape_sequence, - ACTIONS(6135), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6292), 1, - sym___single_quote, - STATE(3548), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122629] = 6, - ACTIONS(493), 1, + [122201] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6294), 1, + ACTIONS(6430), 1, sym_escape_sequence, - ACTIONS(6296), 1, + ACTIONS(6432), 1, aux_sym_c_string_literal_token1, - ACTIONS(6298), 1, + ACTIONS(6434), 1, sym___single_quote, - STATE(3572), 2, + STATE(3623), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122649] = 6, - ACTIONS(493), 1, + [122221] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6298), 1, + ACTIONS(6434), 1, sym___double_quote, - ACTIONS(6300), 1, + ACTIONS(6436), 1, sym_escape_sequence, - ACTIONS(6302), 1, + ACTIONS(6438), 1, aux_sym_c_string_literal_token2, - STATE(3576), 2, + STATE(3624), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122669] = 6, - ACTIONS(493), 1, + [122241] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6292), 1, + ACTIONS(6422), 1, sym___double_quote, - STATE(3549), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122689] = 6, - ACTIONS(493), 1, + [122261] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6082), 1, - sym___single_quote, - ACTIONS(6124), 1, + ACTIONS(6443), 1, + anon_sym_RBRACE, + STATE(3641), 1, + aux_sym_selective_import_list_repeat1, + ACTIONS(6440), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [122277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6445), 1, + anon_sym_LBRACK, + STATE(2465), 1, + sym_type_parameters, + ACTIONS(2888), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [122293] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6447), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6449), 1, aux_sym_c_string_literal_token1, - STATE(3548), 2, + ACTIONS(6451), 1, + sym___single_quote, + STATE(3617), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122709] = 4, - ACTIONS(493), 1, + [122313] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4781), 1, + ACTIONS(6453), 1, anon_sym_COMMA, - STATE(3554), 1, + STATE(3644), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(1780), 4, + ACTIONS(1930), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [122725] = 6, - ACTIONS(493), 1, + [122329] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6244), 1, + sym_escape_sequence, + ACTIONS(6246), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6274), 1, + ACTIONS(6300), 1, + sym___single_quote, + STATE(3678), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [122349] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5819), 1, + sym_identifier, + ACTIONS(6105), 1, + anon_sym_mut, + ACTIONS(6107), 1, + anon_sym_shared, + STATE(4133), 1, + sym_capture, + STATE(4410), 1, + sym_mutability_modifiers, + STATE(4413), 1, + sym_reference_expression, + [122371] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6240), 1, + sym___dolcbr, + ACTIONS(6252), 1, sym___double_quote, - ACTIONS(6304), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6306), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - STATE(3575), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122745] = 6, - ACTIONS(493), 1, + [122391] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6456), 1, sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6308), 1, - sym___double_quote, - STATE(3549), 2, + ACTIONS(6458), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6460), 1, + sym___single_quote, + STATE(3635), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122765] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat1, + [122411] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6308), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6462), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122785] = 6, - ACTIONS(493), 1, + [122431] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6460), 1, + sym___double_quote, + ACTIONS(6464), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6466), 1, aux_sym_c_string_literal_token2, - ACTIONS(6310), 1, - sym___double_quote, - STATE(3549), 2, + STATE(3640), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122805] = 6, - ACTIONS(493), 1, + [122451] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6451), 1, + sym___double_quote, + ACTIONS(6468), 1, sym_escape_sequence, - ACTIONS(6135), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6310), 1, - sym___single_quote, - STATE(3548), 2, + ACTIONS(6470), 1, + aux_sym_c_string_literal_token2, + STATE(3612), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122825] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat2, + [122471] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6312), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6314), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6316), 1, + ACTIONS(6462), 1, sym___double_quote, - STATE(3635), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122845] = 6, - ACTIONS(493), 1, + [122491] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6244), 1, + sym_escape_sequence, + ACTIONS(6246), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6316), 1, + ACTIONS(6428), 1, sym___single_quote, - ACTIONS(6318), 1, + STATE(3678), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [122511] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6320), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - STATE(3638), 2, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6472), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122865] = 6, - ACTIONS(493), 1, + [122531] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6322), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6324), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6326), 1, + ACTIONS(6472), 1, sym___double_quote, - STATE(3639), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122885] = 6, - ACTIONS(493), 1, + [122551] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6242), 1, + sym___single_quote, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6328), 1, + ACTIONS(6474), 1, sym_escape_sequence, - ACTIONS(6330), 1, + ACTIONS(6476), 1, aux_sym_c_string_literal_token1, - ACTIONS(6332), 1, - sym___single_quote, - STATE(3611), 2, + STATE(3653), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122905] = 6, - ACTIONS(493), 1, + [122571] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6478), 1, + anon_sym_const, + ACTIONS(6480), 1, + anon_sym_fn, + ACTIONS(6484), 1, + anon_sym_enum, + ACTIONS(6486), 1, + anon_sym_interface, + ACTIONS(6482), 2, + anon_sym_struct, + anon_sym_union, + [122591] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6332), 1, - sym___double_quote, - ACTIONS(6334), 1, + ACTIONS(6488), 1, sym_escape_sequence, - ACTIONS(6336), 1, + ACTIONS(6490), 1, aux_sym_c_string_literal_token2, - STATE(3614), 2, + ACTIONS(6492), 1, + sym___double_quote, + STATE(3606), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122925] = 6, - ACTIONS(493), 1, + [122611] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6496), 1, + anon_sym_RBRACE, + STATE(3641), 1, + aux_sym_selective_import_list_repeat1, + ACTIONS(6494), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [122627] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4955), 1, + anon_sym_COMMA, + STATE(3580), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1868), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [122643] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6338), 1, + ACTIONS(6492), 1, + sym___single_quote, + ACTIONS(6498), 1, sym_escape_sequence, - ACTIONS(6340), 1, + ACTIONS(6500), 1, aux_sym_c_string_literal_token1, - ACTIONS(6342), 1, - sym___single_quote, - STATE(3615), 2, + STATE(3609), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122945] = 6, - ACTIONS(493), 1, + [122663] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6342), 1, - sym___double_quote, - ACTIONS(6344), 1, + ACTIONS(6502), 1, sym_escape_sequence, - ACTIONS(6346), 1, + ACTIONS(6504), 1, aux_sym_c_string_literal_token2, - STATE(3544), 2, + ACTIONS(6506), 1, + sym___double_quote, + STATE(3679), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122965] = 6, - ACTIONS(493), 1, + [122683] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6326), 1, + ACTIONS(6506), 1, sym___single_quote, - ACTIONS(6348), 1, + ACTIONS(6508), 1, sym_escape_sequence, - ACTIONS(6350), 1, + ACTIONS(6510), 1, aux_sym_c_string_literal_token1, - STATE(3640), 2, + STATE(3680), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122985] = 6, - ACTIONS(493), 1, + [122703] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6512), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6514), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6516), 1, + sym___double_quote, + STATE(3681), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [122723] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6518), 1, + sym_escape_sequence, + ACTIONS(6520), 1, aux_sym_c_string_literal_token1, - ACTIONS(6141), 1, + ACTIONS(6522), 1, sym___single_quote, - STATE(3548), 2, + STATE(3649), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123005] = 6, - ACTIONS(493), 1, + [122743] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6253), 1, + ACTIONS(6522), 1, sym___double_quote, - ACTIONS(6352), 1, + ACTIONS(6524), 1, sym_escape_sequence, - ACTIONS(6354), 1, + ACTIONS(6526), 1, aux_sym_c_string_literal_token2, - STATE(3577), 2, + STATE(3652), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123025] = 6, - ACTIONS(493), 1, + [122763] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6528), 1, sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6356), 1, - sym___double_quote, - STATE(3549), 2, + ACTIONS(6530), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6532), 1, + sym___single_quote, + STATE(3654), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123045] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat1, + [122783] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6532), 1, + sym___double_quote, + ACTIONS(6534), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6536), 1, aux_sym_c_string_literal_token2, - ACTIONS(6358), 1, - sym___double_quote, - STATE(3549), 2, + STATE(3655), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123065] = 6, - ACTIONS(493), 1, + [122803] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6286), 1, + ACTIONS(6516), 1, sym___single_quote, - ACTIONS(6360), 1, + ACTIONS(6538), 1, sym_escape_sequence, - ACTIONS(6362), 1, + ACTIONS(6540), 1, aux_sym_c_string_literal_token1, - STATE(3630), 2, + STATE(3682), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123085] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6078), 1, - sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6364), 1, - sym___double_quote, - STATE(3549), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123105] = 6, - ACTIONS(493), 1, + [122823] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6356), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6542), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123125] = 4, - ACTIONS(493), 1, + [122843] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6368), 1, - anon_sym_RBRACE, - STATE(3648), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6366), 4, + ACTIONS(4955), 1, + anon_sym_COMMA, + STATE(3644), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3951), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - [123141] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, - sym_escape_sequence, - ACTIONS(6135), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6364), 1, - sym___single_quote, - STATE(3548), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123161] = 6, - ACTIONS(493), 1, + anon_sym_RBRACE, + [122859] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6370), 1, + ACTIONS(6542), 1, sym___double_quote, - STATE(3549), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123181] = 6, - ACTIONS(493), 1, + [122879] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6370), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6544), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123201] = 6, - ACTIONS(493), 1, + [122899] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6372), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6374), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6376), 1, + ACTIONS(6544), 1, sym___double_quote, - STATE(3633), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123221] = 4, - ACTIONS(493), 1, + [122919] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5890), 1, - anon_sym_LBRACE, - STATE(3734), 1, - sym_selective_import_list, - ACTIONS(6378), 4, + ACTIONS(6546), 1, + sym_identifier, + STATE(3875), 1, + sym_label_reference, + ACTIONS(4019), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [123237] = 6, - ACTIONS(493), 1, + anon_sym_RBRACE, + [122935] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6546), 1, + sym_identifier, + STATE(3836), 1, + sym_label_reference, + ACTIONS(4071), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [122951] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6548), 1, + sym_escape_sequence, + ACTIONS(6551), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6554), 1, sym___dolcbr, - ACTIONS(6376), 1, - sym___single_quote, - ACTIONS(6380), 1, + ACTIONS(6557), 1, + sym___double_quote, + STATE(3677), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [122971] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6559), 1, sym_escape_sequence, - ACTIONS(6382), 1, + ACTIONS(6562), 1, aux_sym_c_string_literal_token1, - STATE(3645), 2, + ACTIONS(6565), 1, + sym___dolcbr, + ACTIONS(6568), 1, + sym___single_quote, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123257] = 6, - ACTIONS(493), 1, + [122991] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6258), 1, aux_sym_c_string_literal_token2, - ACTIONS(6384), 1, + ACTIONS(6570), 1, sym___double_quote, - STATE(3549), 2, + STATE(3677), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123277] = 6, - ACTIONS(493), 1, + [123011] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6358), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6570), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123297] = 6, - ACTIONS(493), 1, + [123031] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6256), 1, sym_escape_sequence, - ACTIONS(6135), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6384), 1, - sym___single_quote, - STATE(3548), 2, + ACTIONS(6258), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6572), 1, + sym___double_quote, + STATE(3677), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123317] = 6, - ACTIONS(493), 1, + aux_sym_c_string_literal_repeat2, + [123051] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, - sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6244), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6246), 1, aux_sym_c_string_literal_token1, - ACTIONS(6386), 1, + ACTIONS(6248), 1, + sym___dolcbr, + ACTIONS(6572), 1, sym___single_quote, - STATE(3548), 2, + STATE(3678), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123337] = 4, - ACTIONS(493), 1, + [123071] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6388), 1, + ACTIONS(6574), 1, anon_sym_RBRACE, - STATE(3603), 1, + STATE(3659), 1, aux_sym_selective_import_list_repeat1, - ACTIONS(6366), 4, + ACTIONS(6494), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - [123353] = 6, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6078), 1, - sym_escape_sequence, - ACTIONS(6080), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6386), 1, - sym___double_quote, - STATE(3549), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123373] = 6, - ACTIONS(493), 1, + [123087] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, - sym___dolcbr, - ACTIONS(6390), 1, - sym_escape_sequence, - ACTIONS(6392), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6394), 1, - sym___double_quote, - STATE(3652), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123393] = 6, - ACTIONS(493), 1, + ACTIONS(4957), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [123099] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6133), 1, + ACTIONS(6576), 1, sym_escape_sequence, - ACTIONS(6135), 1, + ACTIONS(6578), 1, aux_sym_c_string_literal_token1, - ACTIONS(6396), 1, + ACTIONS(6580), 1, sym___single_quote, - STATE(3548), 2, + STATE(3670), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123413] = 6, - ACTIONS(493), 1, + [123119] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6580), 1, + sym___double_quote, + ACTIONS(6582), 1, sym_escape_sequence, - ACTIONS(6080), 1, + ACTIONS(6584), 1, aux_sym_c_string_literal_token2, - ACTIONS(6396), 1, - sym___double_quote, - STATE(3549), 2, + STATE(3672), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123433] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6398), 1, - anon_sym_const, - ACTIONS(6400), 1, - anon_sym_fn, - ACTIONS(6404), 1, - anon_sym_enum, - ACTIONS(6406), 1, - anon_sym_interface, - ACTIONS(6402), 2, - anon_sym_struct, - anon_sym_union, - [123453] = 6, - ACTIONS(493), 1, + [123139] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6248), 1, sym___dolcbr, - ACTIONS(6394), 1, - sym___single_quote, - ACTIONS(6408), 1, + ACTIONS(6586), 1, sym_escape_sequence, - ACTIONS(6410), 1, + ACTIONS(6588), 1, aux_sym_c_string_literal_token1, - STATE(3651), 2, + ACTIONS(6590), 1, + sym___single_quote, + STATE(3673), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123473] = 6, - ACTIONS(493), 1, + [123159] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6412), 1, + ACTIONS(6590), 1, + sym___double_quote, + ACTIONS(6592), 1, sym_escape_sequence, - ACTIONS(6414), 1, + ACTIONS(6594), 1, aux_sym_c_string_literal_token2, - ACTIONS(6416), 1, - sym___double_quote, - STATE(3649), 2, + STATE(3674), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123493] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6418), 1, - anon_sym_DOT, - ACTIONS(6420), 1, - anon_sym_RBRACE, - ACTIONS(6422), 1, - sym_int_literal, - ACTIONS(6424), 1, - aux_sym_format_specifier_token1, - ACTIONS(6426), 1, - aux_sym_format_specifier_token2, - ACTIONS(6428), 1, - anon_sym_0, - [123515] = 6, - ACTIONS(493), 1, + [123179] = 6, + ACTIONS(495), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(6240), 1, sym___dolcbr, - ACTIONS(6416), 1, - sym___single_quote, - ACTIONS(6430), 1, + ACTIONS(6410), 1, + sym___double_quote, + ACTIONS(6596), 1, sym_escape_sequence, - ACTIONS(6432), 1, - aux_sym_c_string_literal_token1, - STATE(3647), 2, + ACTIONS(6598), 1, + aux_sym_c_string_literal_token2, + STATE(3590), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 1, - anon_sym_LBRACE, - STATE(1338), 1, - sym_block, - ACTIONS(6434), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [123550] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6436), 1, - anon_sym_LBRACE, - ACTIONS(6438), 1, - anon_sym_COMMA, - ACTIONS(6440), 1, - anon_sym_RPAREN, - STATE(2385), 1, - sym_type_initializer_body, - STATE(3886), 1, - aux_sym_type_parameters_repeat1, - [123569] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1525), 1, - sym__struct_body, - STATE(4255), 1, - sym_generic_parameters, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123586] = 5, + aux_sym_c_string_literal_repeat2, + [123199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(6600), 1, anon_sym_LBRACE, - STATE(1528), 1, + STATE(1540), 1, sym__interface_body, - STATE(4253), 1, + STATE(4277), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - [123603] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_mut, - ACTIONS(5939), 1, - anon_sym_shared, - ACTIONS(6446), 1, - sym_identifier, - STATE(4293), 1, - sym_mutable_identifier, - STATE(4446), 1, - sym_mutability_modifiers, - [123622] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6448), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(6450), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [123635] = 2, - ACTIONS(493), 1, + [123216] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6452), 5, + ACTIONS(6602), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [123646] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + [123227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(1580), 1, - sym__interface_body, - STATE(4148), 1, + STATE(1608), 1, + sym__struct_body, + STATE(4385), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - [123663] = 3, + [123244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 1, + ACTIONS(5868), 1, anon_sym_RBRACE, - ACTIONS(6454), 4, + ACTIONS(6606), 4, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [123676] = 4, - ACTIONS(493), 1, + [123257] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6459), 1, - anon_sym_RBRACE, - STATE(3667), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6456), 3, + ACTIONS(6608), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [123691] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6463), 1, anon_sym_RBRACE, - STATE(3667), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6461), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [123706] = 3, + sym_identifier, + [123268] = 4, ACTIONS(3), 1, sym_comment, - STATE(2385), 1, - sym_type_initializer_body, - ACTIONS(2872), 4, + ACTIONS(6610), 1, anon_sym_LBRACE, + STATE(2369), 1, + sym_type_initializer_body, + ACTIONS(3146), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [123719] = 4, + [123283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6436), 1, - anon_sym_LBRACE, - STATE(2385), 1, - sym_type_initializer_body, - ACTIONS(2880), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123734] = 3, + ACTIONS(6105), 1, + anon_sym_mut, + ACTIONS(6107), 1, + anon_sym_shared, + ACTIONS(6612), 1, + sym_identifier, + STATE(4279), 1, + sym_parameter_declaration, + STATE(4650), 1, + sym_mutability_modifiers, + [123302] = 3, ACTIONS(3), 1, sym_comment, - STATE(2385), 1, + STATE(2369), 1, sym_type_initializer_body, - ACTIONS(2884), 4, + ACTIONS(3212), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [123747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_mut, - ACTIONS(5939), 1, - anon_sym_shared, - ACTIONS(6465), 1, - sym_identifier, - STATE(4321), 1, - sym_parameter_declaration, - STATE(4437), 1, - sym_mutability_modifiers, - [123766] = 5, + [123315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(6600), 1, anon_sym_LBRACE, - STATE(1567), 1, - sym__struct_body, - STATE(4206), 1, + STATE(1591), 1, + sym__interface_body, + STATE(4437), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - [123783] = 6, + [123332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, - sym_identifier, - ACTIONS(6469), 1, - anon_sym_mut, - STATE(3973), 1, - sym_var_definition, - STATE(4185), 1, - sym_range_clause, - STATE(4636), 1, - sym_var_definition_list, - [123802] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6471), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5023), 1, anon_sym_LBRACE, - [123813] = 4, + STATE(1364), 1, + sym_block, + ACTIONS(6614), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [123347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(6610), 1, anon_sym_LBRACE, - STATE(2390), 1, - sym_block, - ACTIONS(2892), 3, + ACTIONS(6616), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6618), 1, anon_sym_RBRACK, - [123828] = 2, - ACTIONS(493), 1, + STATE(2369), 1, + sym_type_initializer_body, + STATE(3964), 1, + aux_sym_type_parameters_repeat1, + [123366] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 5, + ACTIONS(6620), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, anon_sym_RBRACE, - [123839] = 4, - ACTIONS(493), 1, + sym_identifier, + [123377] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6475), 1, + ACTIONS(5921), 1, anon_sym_RBRACE, - STATE(3668), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6473), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [123854] = 6, + ACTIONS(6622), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [123390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6600), 1, + anon_sym_LBRACE, + STATE(1598), 1, + sym__interface_body, + STATE(4379), 1, + sym_generic_parameters, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [123407] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, + ACTIONS(6624), 1, sym_identifier, - ACTIONS(6469), 1, + ACTIONS(6626), 1, anon_sym_mut, - STATE(3973), 1, + STATE(3961), 1, sym_var_definition, - STATE(4231), 1, + STATE(4310), 1, sym_range_clause, - STATE(4636), 1, + STATE(4608), 1, sym_var_definition_list, - [123873] = 5, + [123426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - STATE(1571), 1, - sym__interface_body, - STATE(4335), 1, - sym_generic_parameters, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123890] = 5, + STATE(2414), 1, + sym_block, + ACTIONS(6614), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [123441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(1568), 1, + STATE(1594), 1, sym__struct_body, - STATE(4337), 1, + STATE(4432), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - [123907] = 4, + [123458] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6631), 1, + anon_sym_RBRACE, + STATE(3707), 1, + aux_sym__statement_list_repeat1, + ACTIONS(6628), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [123473] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6633), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(6635), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [123486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(6600), 1, anon_sym_LBRACE, - STATE(2364), 1, - sym_block, - ACTIONS(6434), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [123922] = 2, - ACTIONS(493), 1, + STATE(1602), 1, + sym__interface_body, + STATE(4425), 1, + sym_generic_parameters, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [123503] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6477), 5, + ACTIONS(6443), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_COMMA, anon_sym_RBRACE, + [123514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6624), 1, sym_identifier, - [123933] = 5, + ACTIONS(6626), 1, + anon_sym_mut, + STATE(3961), 1, + sym_var_definition, + STATE(4229), 1, + sym_range_clause, + STATE(4608), 1, + sym_var_definition_list, + [123533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(1493), 1, - sym__interface_body, - STATE(4342), 1, + STATE(1604), 1, + sym__struct_body, + STATE(4415), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - [123950] = 5, + [123550] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(1930), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [123561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(1497), 1, + STATE(1543), 1, sym__struct_body, - STATE(4344), 1, + STATE(4205), 1, sym_generic_parameters, - ACTIONS(4707), 2, + ACTIONS(4861), 2, anon_sym_LBRACK, anon_sym_LT2, - [123967] = 3, + [123578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5785), 1, - anon_sym_RBRACE, - ACTIONS(6479), 4, - anon_sym___global, - anon_sym_pub, + ACTIONS(6105), 1, anon_sym_mut, + ACTIONS(6107), 1, + anon_sym_shared, + ACTIONS(6637), 1, sym_identifier, - [123980] = 2, - ACTIONS(493), 1, + STATE(4374), 1, + sym_mutable_identifier, + STATE(4513), 1, + sym_mutability_modifiers, + [123597] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(1716), 5, + ACTIONS(6641), 1, + anon_sym_RBRACE, + STATE(3707), 1, + aux_sym__statement_list_repeat1, + ACTIONS(6639), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [123991] = 6, + [123612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6436), 1, + ACTIONS(6610), 1, anon_sym_LBRACE, - ACTIONS(6481), 1, + ACTIONS(6643), 1, anon_sym_COMMA, - ACTIONS(6483), 1, - anon_sym_RBRACK, - STATE(2385), 1, + ACTIONS(6645), 1, + anon_sym_RPAREN, + STATE(2369), 1, sym_type_initializer_body, - STATE(3910), 1, + STATE(3900), 1, aux_sym_type_parameters_repeat1, - [124010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6485), 1, - anon_sym_LPAREN, - STATE(1869), 1, - sym_signature, - STATE(1130), 2, - sym_parameter_list, - sym_type_parameter_list, - [124024] = 4, + [123631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + STATE(2369), 1, + sym_type_initializer_body, + ACTIONS(3243), 4, anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_DOLLARif, - STATE(1361), 2, - sym_compile_time_if_expression, - sym_block, - [124038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6489), 1, - sym_identifier, - STATE(3928), 1, - sym_generic_parameter, - ACTIONS(6491), 2, - anon_sym_GT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, - [124052] = 4, + [123644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, + ACTIONS(5017), 1, + anon_sym_LBRACE, + STATE(2391), 1, + sym_block, + ACTIONS(3239), 3, anon_sym_COMMA, - STATE(3722), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6491), 2, - anon_sym_GT, + anon_sym_RPAREN, anon_sym_RBRACK, - [124066] = 4, + [123659] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6649), 1, + anon_sym_RBRACE, + STATE(3716), 1, + aux_sym__statement_list_repeat1, + ACTIONS(6647), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [123674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6651), 1, anon_sym_LPAREN, - STATE(4365), 1, + STATE(1850), 1, sym_signature, - STATE(2897), 2, + STATE(1150), 2, sym_parameter_list, sym_type_parameter_list, - [124080] = 4, + [123688] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4442), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [123698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, - anon_sym_LPAREN, - STATE(1443), 1, - sym_signature, - STATE(1119), 2, - sym_parameter_list, - sym_type_parameter_list, - [124094] = 4, + ACTIONS(5033), 1, + anon_sym_LBRACE, + ACTIONS(6653), 1, + anon_sym_DOLLARif, + STATE(2070), 2, + sym_compile_time_if_expression, + sym_block, + [123712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - ACTIONS(6495), 1, + ACTIONS(6653), 1, anon_sym_DOLLARif, - STATE(1236), 2, + STATE(2061), 2, sym_compile_time_if_expression, sym_block, - [124108] = 4, + [123726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6655), 1, sym_identifier, - ACTIONS(6499), 1, - anon_sym_DOLLAR, - STATE(1854), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124122] = 5, + ACTIONS(6657), 1, + anon_sym_RBRACE, + STATE(3708), 1, + sym_enum_field_definition, + STATE(3781), 1, + aux_sym__enum_body_repeat1, + [123742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 1, + ACTIONS(6659), 1, sym_identifier, - STATE(3469), 1, - sym_import_path, - STATE(3471), 1, + STATE(3504), 1, sym_import_name, - STATE(3812), 1, + STATE(3513), 1, + sym_import_path, + STATE(3753), 1, sym_import_spec, - [124138] = 4, + [123758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, - anon_sym_LPAREN, - STATE(4210), 1, - sym_signature, - STATE(2897), 2, - sym_parameter_list, - sym_type_parameter_list, - [124152] = 4, + ACTIONS(5033), 1, + anon_sym_LBRACE, + ACTIONS(6661), 1, + anon_sym_if, + STATE(2057), 1, + sym_if_expression, + STATE(2060), 1, + sym_block, + [123774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6663), 1, anon_sym_LPAREN, - STATE(4119), 1, + STATE(1086), 1, sym_signature, - STATE(2897), 2, + STATE(226), 2, sym_parameter_list, sym_type_parameter_list, - [124166] = 5, + [123788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6503), 1, + ACTIONS(6665), 1, sym_identifier, - ACTIONS(6505), 1, - anon_sym_RBRACE, - STATE(3663), 1, - sym_enum_field_definition, - STATE(3725), 1, - aux_sym__enum_body_repeat1, - [124182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5872), 1, - anon_sym_LPAREN, - STATE(4147), 1, - sym_signature, - STATE(2897), 2, - sym_parameter_list, - sym_type_parameter_list, - [124196] = 5, + ACTIONS(6667), 1, + anon_sym_DOLLAR, + STATE(1215), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [123802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(6507), 1, + ACTIONS(6669), 1, anon_sym_if, - STATE(890), 1, + STATE(2132), 1, sym_block, - STATE(891), 1, + STATE(2141), 1, sym_if_expression, - [124212] = 4, + [123818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - ACTIONS(6509), 1, + ACTIONS(6671), 1, anon_sym_DOLLARif, - STATE(889), 2, + STATE(2130), 2, sym_compile_time_if_expression, sym_block, - [124226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5872), 1, - anon_sym_LPAREN, - STATE(4219), 1, - sym_signature, - STATE(2897), 2, - sym_parameter_list, - sym_type_parameter_list, - [124240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5872), 1, - anon_sym_LPAREN, - STATE(4149), 1, - sym_signature, - STATE(2897), 2, - sym_parameter_list, - sym_type_parameter_list, - [124254] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6513), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6511), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [124266] = 5, + [123832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6515), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_RPAREN, - STATE(3707), 1, - aux_sym_const_declaration_repeat1, - STATE(3852), 1, - sym_const_definition, - [124282] = 4, + ACTIONS(6673), 1, + anon_sym_COMMA, + STATE(3732), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6676), 2, + anon_sym_GT, + anon_sym_RBRACK, + [123846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6520), 1, + ACTIONS(6678), 1, anon_sym_LPAREN, - STATE(1100), 1, + STATE(2068), 1, sym_signature, - STATE(221), 2, + STATE(1179), 2, sym_parameter_list, sym_type_parameter_list, - [124296] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6524), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6522), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [124308] = 4, + [123860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, - anon_sym_LPAREN, - STATE(4212), 1, - sym_signature, - STATE(2897), 2, - sym_parameter_list, - sym_type_parameter_list, - [124322] = 5, + ACTIONS(5035), 1, + anon_sym_LBRACE, + ACTIONS(6671), 1, + anon_sym_DOLLARif, + STATE(2119), 2, + sym_compile_time_if_expression, + sym_block, + [123874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(6680), 1, sym_identifier, - ACTIONS(6528), 1, - anon_sym_RPAREN, - STATE(3707), 1, - aux_sym_const_declaration_repeat1, - STATE(3852), 1, - sym_const_definition, - [124338] = 4, + STATE(4106), 1, + sym_generic_parameter, + ACTIONS(6682), 2, + anon_sym_GT, + anon_sym_RBRACK, + [123888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1486), 1, + STATE(1483), 1, sym_signature, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6530), 1, - anon_sym_RPAREN, - STATE(3707), 1, - aux_sym_const_declaration_repeat1, - STATE(3852), 1, - sym_const_definition, - [124368] = 5, - ACTIONS(3), 1, + [123902] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6532), 1, - sym_identifier, - ACTIONS(6534), 1, - anon_sym_RPAREN, - STATE(3719), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3845), 1, - sym_global_var_definition, - [124384] = 4, + ACTIONS(6684), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [123912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, - anon_sym_LPAREN, - STATE(1487), 1, - sym_signature, - STATE(1119), 2, - sym_parameter_list, - sym_type_parameter_list, - [124398] = 5, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(6686), 1, + anon_sym_if, + STATE(930), 1, + sym_if_expression, + STATE(931), 1, + sym_block, + [123928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6530), 1, - anon_sym_RPAREN, - STATE(3742), 1, - aux_sym_const_declaration_repeat1, - STATE(3852), 1, - sym_const_definition, - [124414] = 5, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(6688), 1, + anon_sym_DOLLARif, + STATE(933), 2, + sym_compile_time_if_expression, + sym_block, + [123942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 1, - anon_sym_as, - ACTIONS(6538), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(1527), 1, - sym__enum_body, - STATE(4098), 1, - sym_enum_backed_type, - [124430] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6540), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124440] = 5, + ACTIONS(6690), 1, + anon_sym_DOLLARif, + STATE(2726), 2, + sym_compile_time_if_expression, + sym_block, + [123956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6542), 1, - sym_identifier, - ACTIONS(6545), 1, - anon_sym_RPAREN, - STATE(3719), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3845), 1, - sym_global_var_definition, - [124456] = 5, + ACTIONS(5021), 1, + anon_sym_LBRACE, + ACTIONS(6690), 1, + anon_sym_DOLLARif, + STATE(2721), 2, + sym_compile_time_if_expression, + sym_block, + [123970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - ACTIONS(6547), 1, + ACTIONS(6692), 1, anon_sym_if, - STATE(2075), 1, + STATE(2719), 1, sym_if_expression, - STATE(2076), 1, + STATE(2720), 1, sym_block, - [124472] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6489), 1, - sym_identifier, - STATE(3928), 1, - sym_generic_parameter, - ACTIONS(6549), 2, - anon_sym_GT, - anon_sym_RBRACK, - [124486] = 4, + [123986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, + ACTIONS(6694), 1, anon_sym_COMMA, - STATE(3722), 1, + STATE(3732), 1, aux_sym_generic_parameters_repeat1, - ACTIONS(6554), 2, + ACTIONS(6696), 2, anon_sym_GT, anon_sym_RBRACK, - [124500] = 4, + [124000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(6556), 1, - anon_sym_DOLLARif, - STATE(2098), 2, - sym_compile_time_if_expression, - sym_block, - [124514] = 4, + ACTIONS(6680), 1, + sym_identifier, + STATE(4106), 1, + sym_generic_parameter, + ACTIONS(6696), 2, + anon_sym_GT, + anon_sym_RBRACK, + [124014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6698), 1, anon_sym_LPAREN, - STATE(1467), 1, + STATE(2253), 1, sym_signature, - STATE(1119), 2, + STATE(1444), 2, sym_parameter_list, sym_type_parameter_list, - [124528] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6558), 1, - sym_identifier, - ACTIONS(6561), 1, - anon_sym_RBRACE, - STATE(3663), 1, - sym_enum_field_definition, - STATE(3725), 1, - aux_sym__enum_body_repeat1, - [124544] = 4, + [124028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(3434), 1, + STATE(1514), 1, sym_signature, - STATE(2486), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - ACTIONS(6509), 1, - anon_sym_DOLLARif, - STATE(926), 2, - sym_compile_time_if_expression, - sym_block, - [124572] = 4, + [124042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6700), 1, anon_sym_LPAREN, - STATE(4281), 1, + STATE(3472), 1, sym_signature, - STATE(2897), 2, + STATE(2561), 2, sym_parameter_list, sym_type_parameter_list, - [124586] = 4, + [124056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6702), 1, anon_sym_LPAREN, - STATE(4132), 1, + STATE(2758), 1, sym_signature, - STATE(2897), 2, + STATE(1622), 2, sym_parameter_list, sym_type_parameter_list, - [124600] = 4, + [124070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(6556), 1, - anon_sym_DOLLARif, - STATE(2137), 2, - sym_compile_time_if_expression, - sym_block, - [124614] = 4, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6707), 1, + anon_sym_RPAREN, + STATE(3749), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3883), 1, + sym_global_var_definition, + [124086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, + ACTIONS(6709), 1, anon_sym_COMMA, - STATE(3731), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - ACTIONS(6568), 2, + ACTIONS(6712), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [124628] = 4, + [124100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(4106), 1, + STATE(1508), 1, sym_signature, - STATE(2897), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124642] = 2, - ACTIONS(493), 1, + [124114] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6459), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124652] = 2, - ACTIONS(493), 1, + ACTIONS(6714), 1, + sym_identifier, + ACTIONS(6717), 1, + anon_sym_RPAREN, + STATE(3752), 1, + aux_sym_const_declaration_repeat1, + STATE(3878), 1, + sym_const_definition, + [124130] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6570), 4, + ACTIONS(6719), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [124662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_RBRACE, - ACTIONS(6576), 1, - sym_int_literal, - ACTIONS(6578), 1, - aux_sym_format_specifier_token1, - [124678] = 4, + [124140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6700), 1, anon_sym_LPAREN, - STATE(4157), 1, + STATE(1674), 1, sym_signature, - STATE(2897), 2, + STATE(2956), 2, sym_parameter_list, sym_type_parameter_list, - [124692] = 4, + [124154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, - anon_sym_LPAREN, - STATE(1676), 1, - sym_signature, - STATE(1126), 2, - sym_parameter_list, - sym_type_parameter_list, - [124706] = 3, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6584), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6582), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [124718] = 4, - ACTIONS(3), 1, + ACTIONS(6721), 1, + anon_sym_as, + ACTIONS(6723), 1, + anon_sym_LBRACE, + STATE(1593), 1, + sym__enum_body, + STATE(4433), 1, + sym_enum_backed_type, + [124170] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6586), 1, - sym_identifier, - ACTIONS(6588), 1, - anon_sym_DOLLAR, - STATE(2547), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124732] = 4, - ACTIONS(3), 1, + ACTIONS(6631), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [124180] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5943), 1, - anon_sym_LPAREN, - STATE(1465), 1, - sym_signature, - STATE(1119), 2, - sym_parameter_list, - sym_type_parameter_list, - [124746] = 4, + ACTIONS(6725), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [124190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, - anon_sym_LPAREN, - STATE(1453), 1, - sym_signature, - STATE(1119), 2, - sym_parameter_list, - sym_type_parameter_list, - [124760] = 5, + ACTIONS(6727), 1, + sym_identifier, + ACTIONS(6729), 1, + anon_sym_RPAREN, + STATE(3752), 1, + aux_sym_const_declaration_repeat1, + STATE(3878), 1, + sym_const_definition, + [124206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(6727), 1, sym_identifier, - ACTIONS(6590), 1, + ACTIONS(6731), 1, anon_sym_RPAREN, - STATE(3707), 1, - aux_sym_const_declaration_repeat1, - STATE(3852), 1, + STATE(3878), 1, sym_const_definition, - [124776] = 4, + STATE(3879), 1, + aux_sym_const_declaration_repeat1, + [124222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1452), 1, + STATE(1512), 1, sym_signature, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124790] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6592), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124800] = 4, + [124236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(4387), 1, + STATE(1495), 1, sym_signature, - STATE(2897), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124814] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_DOLLARif, - STATE(1080), 2, - sym_compile_time_if_expression, - sym_block, - [124828] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6536), 1, - anon_sym_as, - ACTIONS(6538), 1, - anon_sym_LBRACE, - STATE(1569), 1, - sym__enum_body, - STATE(4336), 1, - sym_enum_backed_type, - [124844] = 4, + [124250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(4165), 1, + STATE(1492), 1, sym_signature, - STATE(2897), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124858] = 4, + [124264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1469), 1, + STATE(1465), 1, sym_signature, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124872] = 4, + [124278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_LPAREN, - STATE(3444), 1, - sym_signature, - STATE(2486), 2, - sym_parameter_list, - sym_type_parameter_list, - [124886] = 4, + ACTIONS(6733), 1, + sym_identifier, + ACTIONS(6735), 1, + anon_sym_RPAREN, + STATE(3883), 1, + sym_global_var_definition, + STATE(3887), 1, + aux_sym_global_var_declaration_repeat1, + [124294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6737), 1, + anon_sym_EQ, + STATE(4472), 1, + sym_generic_parameters, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [124308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6739), 1, + sym_identifier, + ACTIONS(6741), 1, + anon_sym_DOLLAR, + STATE(2543), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [124322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1457), 1, + STATE(1515), 1, sym_signature, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_DOLLARif, - STATE(1072), 2, - sym_compile_time_if_expression, - sym_block, - [124914] = 5, + [124336] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 1, + ACTIONS(6733), 1, sym_identifier, - ACTIONS(6596), 1, + ACTIONS(6743), 1, anon_sym_RPAREN, - STATE(3714), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3845), 1, + STATE(3883), 1, sym_global_var_definition, - [124930] = 5, + STATE(3891), 1, + aux_sym_global_var_declaration_repeat1, + [124352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(6727), 1, sym_identifier, - ACTIONS(6598), 1, + ACTIONS(6745), 1, anon_sym_RPAREN, - STATE(3713), 1, + STATE(3869), 1, aux_sym_const_declaration_repeat1, - STATE(3852), 1, + STATE(3878), 1, sym_const_definition, - [124946] = 4, + [124368] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5029), 1, + anon_sym_LBRACE, + ACTIONS(6747), 1, + anon_sym_DOLLARif, + STATE(1047), 2, + sym_compile_time_if_expression, + sym_block, + [124382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1446), 1, + STATE(1522), 1, sym_signature, - STATE(1119), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [124960] = 5, + [124396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(6721), 1, + anon_sym_as, + ACTIONS(6723), 1, anon_sym_LBRACE, - ACTIONS(6600), 1, - anon_sym_if, - STATE(1070), 1, - sym_if_expression, - STATE(1071), 1, - sym_block, - [124976] = 4, + STATE(1603), 1, + sym__enum_body, + STATE(4424), 1, + sym_enum_backed_type, + [124412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6749), 1, anon_sym_LPAREN, - STATE(4261), 1, + STATE(1228), 1, sym_signature, - STATE(2897), 2, + STATE(1002), 2, sym_parameter_list, sym_type_parameter_list, - [124990] = 4, + [124426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(2752), 1, + STATE(4249), 1, sym_signature, - STATE(1589), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125004] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(1776), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125014] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4068), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125024] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4008), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125034] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4052), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125044] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3960), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125054] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3972), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125064] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(3976), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125074] = 5, + [124440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - ACTIONS(6604), 1, + ACTIONS(6751), 1, anon_sym_if, - STATE(2920), 1, + STATE(2953), 1, sym_block, - STATE(2922), 1, + STATE(2955), 1, sym_if_expression, - [125090] = 4, + [124456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - ACTIONS(6606), 1, + ACTIONS(6753), 1, anon_sym_DOLLARif, - STATE(2918), 2, + STATE(2952), 2, sym_compile_time_if_expression, sym_block, - [125104] = 2, - ACTIONS(493), 1, + [124470] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125114] = 2, - ACTIONS(493), 1, + ACTIONS(5029), 1, + anon_sym_LBRACE, + ACTIONS(6747), 1, + anon_sym_DOLLARif, + STATE(1034), 2, + sym_compile_time_if_expression, + sym_block, + [124484] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125124] = 2, - ACTIONS(493), 1, + ACTIONS(2912), 1, + anon_sym_DOT, + ACTIONS(6755), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [124496] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125134] = 5, + ACTIONS(4598), 1, + anon_sym_LBRACE, + ACTIONS(6757), 1, + anon_sym_if, + STATE(1740), 1, + sym_block, + STATE(1742), 1, + sym_if_expression, + [124512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 1, - anon_sym_as, - ACTIONS(6538), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(1494), 1, - sym__enum_body, - STATE(4343), 1, - sym_enum_backed_type, - [125150] = 4, + ACTIONS(6759), 1, + anon_sym_if, + STATE(1032), 1, + sym_if_expression, + STATE(1033), 1, + sym_block, + [124528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(6761), 1, sym_identifier, - ACTIONS(6610), 1, - anon_sym_DOLLAR, - STATE(1683), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125164] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4088), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(6764), 1, anon_sym_RBRACE, - [125174] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4152), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [125184] = 4, + STATE(3708), 1, + sym_enum_field_definition, + STATE(3781), 1, + aux_sym__enum_body_repeat1, + [124544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, + ACTIONS(6700), 1, anon_sym_LPAREN, - STATE(2246), 1, + STATE(3470), 1, sym_signature, - STATE(1307), 2, + STATE(2561), 2, sym_parameter_list, sym_type_parameter_list, - [125198] = 4, + [124558] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6105), 1, + anon_sym_mut, + ACTIONS(6107), 1, + anon_sym_shared, + ACTIONS(6766), 1, + sym_identifier, + STATE(4474), 1, + sym_mutability_modifiers, + [124574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 1, + anon_sym_LBRACE, + ACTIONS(6768), 1, + anon_sym_DOLLARif, + STATE(1739), 2, + sym_compile_time_if_expression, + sym_block, + [124588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - ACTIONS(6606), 1, + ACTIONS(6753), 1, anon_sym_DOLLARif, - STATE(2934), 2, + STATE(2962), 2, sym_compile_time_if_expression, sym_block, - [125212] = 4, + [124602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(2379), 1, + STATE(4404), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125226] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4160), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [125236] = 4, + [124616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(1460), 1, + STATE(4267), 1, sym_signature, - STATE(1119), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125250] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(4184), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125260] = 4, + [124630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 1, + ACTIONS(6770), 1, sym_identifier, - ACTIONS(6616), 1, + ACTIONS(6772), 1, anon_sym_DOLLAR, - STATE(2243), 2, + STATE(1941), 2, sym_reference_expression, sym_compile_time_selector_expression, - [125274] = 2, - ACTIONS(493), 1, + [124644] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125284] = 4, + ACTIONS(6774), 1, + anon_sym_EQ, + STATE(4491), 1, + sym_generic_parameters, + ACTIONS(4861), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [124658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6776), 1, sym_identifier, - ACTIONS(6620), 1, + ACTIONS(6778), 1, anon_sym_DOLLAR, - STATE(1041), 2, + STATE(2229), 2, sym_reference_expression, sym_compile_time_selector_expression, - [125298] = 2, - ACTIONS(493), 1, + [124672] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125308] = 4, + ACTIONS(6721), 1, + anon_sym_as, + ACTIONS(6723), 1, + anon_sym_LBRACE, + STATE(1599), 1, + sym__enum_body, + STATE(4382), 1, + sym_enum_backed_type, + [124688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(2474), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [124702] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, + sym_identifier, + ACTIONS(6780), 1, + anon_sym_RPAREN, + STATE(3823), 1, + aux_sym_const_declaration_repeat1, + STATE(3878), 1, + sym_const_definition, + [124718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 1, anon_sym_LBRACE, - ACTIONS(6622), 1, + ACTIONS(6782), 1, anon_sym_DOLLARif, - STATE(2391), 2, + STATE(1269), 2, sym_compile_time_if_expression, sym_block, - [125322] = 2, - ACTIONS(493), 1, + [124732] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4192), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125332] = 5, + ACTIONS(6786), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6784), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [124744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 1, - anon_sym_as, - ACTIONS(6538), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(1579), 1, - sym__enum_body, - STATE(4181), 1, - sym_enum_backed_type, - [125348] = 3, - ACTIONS(493), 1, + ACTIONS(6768), 1, + anon_sym_DOLLARif, + STATE(1727), 2, + sym_compile_time_if_expression, + sym_block, + [124758] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(6513), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6511), 3, + ACTIONS(6790), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6788), 3, sym_escape_sequence, sym___dolcbr, - sym___single_quote, - [125360] = 3, - ACTIONS(493), 1, + sym___double_quote, + [124770] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(6524), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6522), 3, + ACTIONS(6794), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6792), 3, sym_escape_sequence, sym___dolcbr, - sym___single_quote, - [125372] = 4, + sym___double_quote, + [124782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - ACTIONS(6495), 1, + ACTIONS(6796), 1, anon_sym_DOLLARif, - STATE(1171), 2, + STATE(2284), 2, sym_compile_time_if_expression, sym_block, - [125386] = 4, + [124796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 1, + ACTIONS(5019), 1, + anon_sym_LBRACE, + ACTIONS(6796), 1, + anon_sym_DOLLARif, + STATE(2293), 2, + sym_compile_time_if_expression, + sym_block, + [124810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6798), 1, sym_identifier, - ACTIONS(6626), 1, + ACTIONS(6800), 1, anon_sym_DOLLAR, - STATE(917), 2, + STATE(1384), 2, sym_reference_expression, sym_compile_time_selector_expression, - [125400] = 4, + [124824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(6802), 1, + sym_identifier, + ACTIONS(6804), 1, + anon_sym_DOLLAR, + STATE(2387), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [124838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5019), 1, anon_sym_LBRACE, - ACTIONS(6622), 1, - anon_sym_DOLLARif, - STATE(2399), 2, - sym_compile_time_if_expression, + ACTIONS(6806), 1, + anon_sym_if, + STATE(2294), 1, sym_block, - [125414] = 3, - ACTIONS(493), 1, + STATE(2297), 1, + sym_if_expression, + [124854] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6582), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [125426] = 5, + ACTIONS(6808), 1, + anon_sym_LPAREN, + STATE(2474), 1, + sym_signature, + STATE(1445), 2, + sym_parameter_list, + sym_type_parameter_list, + [124868] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, - anon_sym_mut, - ACTIONS(5939), 1, - anon_sym_shared, - ACTIONS(6628), 1, - sym_identifier, - STATE(4440), 1, - sym_mutability_modifiers, - [125442] = 4, + ACTIONS(5031), 1, + anon_sym_LBRACE, + ACTIONS(6810), 1, + anon_sym_if, + STATE(2500), 1, + sym_block, + STATE(2614), 1, + sym_if_expression, + [124884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_EQ, - STATE(4439), 1, - sym_generic_parameters, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [125456] = 5, + ACTIONS(5015), 1, + anon_sym_LBRACE, + ACTIONS(6782), 1, + anon_sym_DOLLARif, + STATE(1291), 2, + sym_compile_time_if_expression, + sym_block, + [124898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - ACTIONS(6632), 1, + ACTIONS(6812), 1, anon_sym_if, - STATE(1172), 1, - sym_block, - STATE(1174), 1, + STATE(1285), 1, sym_if_expression, - [125472] = 2, - ACTIONS(493), 1, + STATE(1286), 1, + sym_block, + [124914] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(4148), 4, + ACTIONS(1858), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [125482] = 4, + [124924] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4279), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [124934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5031), 1, + anon_sym_LBRACE, + ACTIONS(6814), 1, + anon_sym_DOLLARif, + STATE(2501), 2, + sym_compile_time_if_expression, + sym_block, + [124948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(4326), 1, + STATE(4357), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125496] = 4, + [124962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5031), 1, + anon_sym_LBRACE, + ACTIONS(6814), 1, + anon_sym_DOLLARif, + STATE(2565), 2, + sym_compile_time_if_expression, + sym_block, + [124976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, + ACTIONS(6816), 1, sym_identifier, - ACTIONS(6636), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR, - STATE(2402), 2, + STATE(2000), 2, sym_reference_expression, sym_compile_time_selector_expression, - [125510] = 4, + [124990] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4271), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6820), 1, anon_sym_LPAREN, - STATE(4202), 1, + STATE(950), 1, sym_signature, - STATE(2897), 2, + STATE(68), 2, sym_parameter_list, sym_type_parameter_list, - [125524] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6638), 1, - anon_sym_RPAREN, - STATE(3711), 1, - aux_sym_const_declaration_repeat1, - STATE(3852), 1, - sym_const_definition, - [125540] = 4, + [125014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 1, + ACTIONS(6822), 1, sym_identifier, - ACTIONS(6642), 1, + ACTIONS(6824), 1, anon_sym_DOLLAR, - STATE(1211), 2, + STATE(2125), 2, sym_reference_expression, sym_compile_time_selector_expression, - [125554] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4859), 1, - anon_sym_LBRACE, - ACTIONS(6644), 1, - anon_sym_if, - STATE(2405), 1, - sym_block, - STATE(2407), 1, - sym_if_expression, - [125570] = 4, + [125028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(5023), 1, anon_sym_LBRACE, - ACTIONS(6646), 1, + ACTIONS(6826), 1, anon_sym_DOLLARif, - STATE(2092), 2, + STATE(1376), 2, sym_compile_time_if_expression, sym_block, - [125584] = 4, + [125042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4372), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [125056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5023), 1, anon_sym_LBRACE, - ACTIONS(6646), 1, + ACTIONS(6826), 1, anon_sym_DOLLARif, - STATE(2104), 2, + STATE(1422), 2, sym_compile_time_if_expression, sym_block, - [125598] = 5, + [125070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(6828), 1, + anon_sym_LPAREN, + STATE(2093), 1, + sym_signature, + STATE(1166), 2, + sym_parameter_list, + sym_type_parameter_list, + [125084] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4275), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125094] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6832), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6830), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [125106] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, + sym_identifier, + ACTIONS(6834), 1, + anon_sym_RPAREN, + STATE(3752), 1, + aux_sym_const_declaration_repeat1, + STATE(3878), 1, + sym_const_definition, + [125122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6655), 1, + sym_identifier, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(3708), 1, + sym_enum_field_definition, + STATE(3725), 1, + aux_sym__enum_body_repeat1, + [125138] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4351), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125148] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6838), 1, + anon_sym_DOT, + ACTIONS(6840), 1, + anon_sym_RBRACE, + ACTIONS(6842), 1, + sym_int_literal, + ACTIONS(6844), 1, + aux_sym_format_specifier_token1, + [125164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6846), 1, + sym_identifier, + ACTIONS(6848), 1, + anon_sym_DOLLAR, + STATE(900), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125178] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6832), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6830), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [125190] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6850), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [125200] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4137), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(6648), 1, - anon_sym_if, - STATE(2105), 1, + ACTIONS(6688), 1, + anon_sym_DOLLARif, + STATE(893), 2, + sym_compile_time_if_expression, sym_block, - STATE(2106), 1, - sym_if_expression, - [125614] = 4, + [125224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(4284), 1, + STATE(4197), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125628] = 4, + [125238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(2053), 1, + STATE(4405), 1, sym_signature, - STATE(1151), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125642] = 5, + [125252] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(5023), 1, anon_sym_LBRACE, - ACTIONS(6652), 1, + ACTIONS(6852), 1, anon_sym_if, - STATE(2526), 1, + STATE(1425), 1, sym_block, - STATE(2530), 1, + STATE(1430), 1, sym_if_expression, - [125658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_DOLLARif, - STATE(2522), 2, - sym_compile_time_if_expression, - sym_block, - [125672] = 4, + [125268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6656), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(2021), 1, + STATE(4393), 1, sym_signature, - STATE(1156), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125686] = 2, - ACTIONS(493), 1, + [125282] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6658), 4, + ACTIONS(4283), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [125696] = 4, + anon_sym_RBRACE, + [125292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(4386), 1, + STATE(4244), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6660), 1, - anon_sym_DOLLARif, - STATE(2720), 2, - sym_compile_time_if_expression, - sym_block, - [125724] = 4, + [125306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(1676), 1, + STATE(1482), 1, sym_signature, - STATE(2908), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [125738] = 4, - ACTIONS(3), 1, + [125320] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6660), 1, - anon_sym_DOLLARif, - STATE(2715), 2, - sym_compile_time_if_expression, - sym_block, - [125752] = 5, - ACTIONS(3), 1, + ACTIONS(4299), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125330] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6662), 1, - anon_sym_if, - STATE(2713), 1, - sym_if_expression, - STATE(2714), 1, - sym_block, - [125768] = 4, + ACTIONS(6786), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6784), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [125342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(4295), 1, + STATE(4318), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125782] = 4, + [125356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_DOLLARif, - STATE(2507), 2, - sym_compile_time_if_expression, - sym_block, - [125796] = 4, - ACTIONS(3), 1, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4261), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [125370] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6664), 1, - sym_identifier, - ACTIONS(6666), 1, - anon_sym_DOLLAR, - STATE(2119), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125810] = 4, + ACTIONS(4327), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(1461), 1, + STATE(4381), 1, sym_signature, - STATE(1119), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125824] = 4, + [125394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(4268), 1, + STATE(4173), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125838] = 4, + [125408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(1229), 1, + STATE(4289), 1, sym_signature, - STATE(965), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125852] = 5, + [125422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(6721), 1, + anon_sym_as, + ACTIONS(6723), 1, anon_sym_LBRACE, - ACTIONS(6670), 1, - anon_sym_if, - STATE(1380), 1, - sym_block, - STATE(1382), 1, - sym_if_expression, - [125868] = 4, + STATE(1542), 1, + sym__enum_body, + STATE(4189), 1, + sym_enum_backed_type, + [125438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6672), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(2379), 1, + STATE(1479), 1, sym_signature, - STATE(1413), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [125882] = 4, + [125452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6698), 1, anon_sym_LPAREN, - STATE(4283), 1, + STATE(2571), 1, sym_signature, - STATE(2897), 2, + STATE(1454), 2, sym_parameter_list, sym_type_parameter_list, - [125896] = 4, + [125466] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4331), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, - anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_DOLLARif, - STATE(1373), 2, - sym_compile_time_if_expression, - sym_block, - [125910] = 5, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4179), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [125490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6503), 1, + ACTIONS(6854), 1, sym_identifier, - ACTIONS(6674), 1, - anon_sym_RBRACE, - STATE(3663), 1, - sym_enum_field_definition, - STATE(3700), 1, - aux_sym__enum_body_repeat1, - [125926] = 4, + ACTIONS(6856), 1, + anon_sym_DOLLAR, + STATE(1744), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(4152), 1, + STATE(1466), 1, sym_signature, - STATE(2897), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [125940] = 4, + [125518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - ACTIONS(6676), 1, - anon_sym_DOLLARif, - STATE(2271), 2, - sym_compile_time_if_expression, + ACTIONS(6858), 1, + anon_sym_if, + STATE(2453), 1, sym_block, - [125954] = 4, + STATE(2468), 1, + sym_if_expression, + [125534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(1313), 1, + STATE(4442), 1, sym_signature, - STATE(1117), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [125968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_DOT, - ACTIONS(6680), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [125980] = 4, + [125548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - ACTIONS(6676), 1, + ACTIONS(6860), 1, anon_sym_DOLLARif, - STATE(2262), 2, + STATE(2454), 2, sym_compile_time_if_expression, sym_block, - [125994] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - ACTIONS(6682), 1, - anon_sym_if, - STATE(2259), 1, - sym_if_expression, - STATE(2260), 1, - sym_block, - [126010] = 4, + [125562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(4129), 1, + STATE(4148), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [126024] = 4, + [125576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, + ACTIONS(5017), 1, + anon_sym_LBRACE, + ACTIONS(6860), 1, + anon_sym_DOLLARif, + STATE(2461), 2, + sym_compile_time_if_expression, + sym_block, + [125590] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(4397), 1, + STATE(4378), 1, sym_signature, - STATE(2897), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [126038] = 5, + [125604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - anon_sym_LBRACE, - ACTIONS(6684), 1, - anon_sym_if, - STATE(1707), 1, - sym_if_expression, - STATE(1710), 1, - sym_block, - [126054] = 4, + ACTIONS(6862), 1, + anon_sym_COMMA, + STATE(3743), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6864), 2, + anon_sym_GT, + anon_sym_RBRACK, + [125618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - anon_sym_LBRACE, - ACTIONS(6686), 1, - anon_sym_DOLLARif, - STATE(1714), 2, - sym_compile_time_if_expression, - sym_block, - [126068] = 4, + ACTIONS(6866), 1, + sym_identifier, + ACTIONS(6868), 1, + anon_sym_DOLLAR, + STATE(1091), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125632] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4133), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125642] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4367), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125652] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6400), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [125662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4263), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [125676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 1, + ACTIONS(6870), 1, anon_sym_LPAREN, - STATE(1470), 1, + STATE(1398), 1, sym_signature, - STATE(1119), 2, + STATE(1028), 2, sym_parameter_list, sym_type_parameter_list, - [126082] = 4, + [125690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4286), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [125704] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6790), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6788), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [125716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, sym_identifier, - ACTIONS(6690), 1, - anon_sym_DOLLAR, - STATE(1997), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [126096] = 4, + ACTIONS(6872), 1, + anon_sym_RPAREN, + STATE(3752), 1, + aux_sym_const_declaration_repeat1, + STATE(3878), 1, + sym_const_definition, + [125732] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6794), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6792), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [125744] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4115), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125754] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4111), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125764] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4450), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, + ACTIONS(6038), 1, anon_sym_LPAREN, - STATE(2523), 1, + STATE(4202), 1, sym_signature, - STATE(1424), 2, + STATE(2957), 2, sym_parameter_list, sym_type_parameter_list, - [126110] = 4, - ACTIONS(3), 1, + [125788] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3692), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6694), 2, - anon_sym_GT, - anon_sym_RBRACK, - [126124] = 4, + ACTIONS(4295), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6696), 1, - anon_sym_EQ, - STATE(4587), 1, - sym_generic_parameters, - ACTIONS(4707), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [126138] = 4, + ACTIONS(5011), 1, + anon_sym_LBRACE, + ACTIONS(6874), 1, + anon_sym_if, + STATE(1884), 1, + sym_if_expression, + STATE(1893), 1, + sym_block, + [125814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(5011), 1, anon_sym_LBRACE, - ACTIONS(6698), 1, + ACTIONS(6876), 1, anon_sym_DOLLARif, - STATE(1918), 2, + STATE(1896), 2, sym_compile_time_if_expression, sym_block, - [126152] = 2, - ACTIONS(493), 1, + [125828] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6700), 4, + ACTIONS(6878), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [126162] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6532), 1, - sym_identifier, - ACTIONS(6702), 1, - anon_sym_RPAREN, - STATE(3719), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3845), 1, - sym_global_var_definition, - [126178] = 5, + [125838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(6727), 1, sym_identifier, - ACTIONS(6704), 1, + ACTIONS(6780), 1, anon_sym_RPAREN, - STATE(3852), 1, - sym_const_definition, - STATE(3854), 1, + STATE(3752), 1, aux_sym_const_declaration_repeat1, - [126194] = 5, + STATE(3878), 1, + sym_const_definition, + [125854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 1, + ACTIONS(6727), 1, sym_identifier, - ACTIONS(6706), 1, + ACTIONS(6872), 1, anon_sym_RPAREN, - STATE(3845), 1, - sym_global_var_definition, - STATE(3846), 1, - aux_sym_global_var_declaration_repeat1, - [126210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6708), 1, - sym_identifier, - ACTIONS(6710), 1, - anon_sym_DOLLAR, - STATE(2849), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [126224] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - ACTIONS(6712), 1, - anon_sym_if, - STATE(1910), 1, - sym_if_expression, - STATE(1911), 1, - sym_block, - [126240] = 4, + STATE(3758), 1, + aux_sym_const_declaration_repeat1, + STATE(3878), 1, + sym_const_definition, + [125870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(5011), 1, anon_sym_LBRACE, - ACTIONS(6698), 1, + ACTIONS(6876), 1, anon_sym_DOLLARif, - STATE(1912), 2, + STATE(1909), 2, sym_compile_time_if_expression, sym_block, - [126254] = 2, - ACTIONS(493), 1, + [125884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4292), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [125898] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6714), 4, + ACTIONS(6880), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [126264] = 4, + [125908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6882), 1, sym_identifier, - ACTIONS(6718), 1, + ACTIONS(6884), 1, anon_sym_DOLLAR, - STATE(1383), 2, + STATE(2892), 2, sym_reference_expression, sym_compile_time_selector_expression, - [126278] = 5, + [125922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6638), 1, - anon_sym_RPAREN, - STATE(3707), 1, - aux_sym_const_declaration_repeat1, - STATE(3852), 1, - sym_const_definition, - [126294] = 4, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4368), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [125936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - anon_sym_LBRACE, - ACTIONS(6686), 1, - anon_sym_DOLLARif, - STATE(1743), 2, - sym_compile_time_if_expression, - sym_block, - [126308] = 2, - ACTIONS(493), 1, + ACTIONS(6886), 1, + anon_sym_LPAREN, + STATE(1674), 1, + sym_signature, + STATE(1145), 2, + sym_parameter_list, + sym_type_parameter_list, + [125950] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6733), 1, + sym_identifier, + ACTIONS(6888), 1, + anon_sym_RPAREN, + STATE(3749), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3883), 1, + sym_global_var_definition, + [125966] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6378), 4, + ACTIONS(4446), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [126318] = 4, + [125976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6123), 1, anon_sym_LPAREN, - STATE(877), 1, + STATE(1498), 1, sym_signature, - STATE(68), 2, + STATE(1141), 2, sym_parameter_list, sym_type_parameter_list, - [126332] = 4, + [125990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 1, - anon_sym_DOT, - ACTIONS(6724), 1, - anon_sym_RBRACE, - ACTIONS(6726), 1, - aux_sym_format_specifier_token1, - [126345] = 4, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(4336), 1, + sym_signature, + STATE(2957), 2, + sym_parameter_list, + sym_type_parameter_list, + [126004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6733), 1, + sym_identifier, + ACTIONS(6890), 1, + anon_sym_RPAREN, + STATE(3749), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3883), 1, + sym_global_var_definition, + [126020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(6728), 1, + ACTIONS(6892), 1, anon_sym_RBRACK, - STATE(4070), 1, + STATE(3995), 1, aux_sym_type_parameters_repeat1, - [126358] = 4, + [126033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, - anon_sym_RPAREN, - ACTIONS(6730), 1, + ACTIONS(6894), 1, anon_sym_COMMA, - STATE(3731), 1, + ACTIONS(6896), 1, + anon_sym_RPAREN, + STATE(4104), 1, aux_sym_type_parameters_repeat1, - [126371] = 4, + [126046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6898), 1, anon_sym_COMMA, - ACTIONS(6734), 1, - anon_sym_RPAREN, - STATE(3882), 1, - aux_sym_parameter_list_repeat1, - [126384] = 4, + ACTIONS(6901), 1, + anon_sym_COLON_EQ, + STATE(3894), 1, + aux_sym_identifier_list_repeat1, + [126059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(6738), 1, - anon_sym_RPAREN, - STATE(3883), 1, - aux_sym_type_parameter_list_repeat1, - [126397] = 4, + ACTIONS(6903), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [126072] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6905), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6907), 1, + sym___single_quote, + STATE(3908), 1, + aux_sym_raw_string_literal_repeat1, + [126085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6740), 1, + ACTIONS(6911), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4019), 1, aux_sym_type_parameter_list_repeat1, - [126410] = 4, + [126098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_COLON_EQ, - ACTIONS(4805), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - STATE(3952), 1, - aux_sym_strictly_expression_list_repeat1, - [126423] = 2, + ACTIONS(6915), 1, + anon_sym_RPAREN, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [126111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [126432] = 4, + ACTIONS(6917), 1, + anon_sym_COMMA, + ACTIONS(6919), 1, + anon_sym_RPAREN, + STATE(4049), 1, + aux_sym_type_parameters_repeat1, + [126124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(5649), 1, + anon_sym_RPAREN, + ACTIONS(6921), 1, anon_sym_COMMA, - ACTIONS(6744), 1, - anon_sym_RBRACK, - STATE(3875), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [126445] = 2, + [126137] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6907), 1, + sym___double_quote, + ACTIONS(6923), 1, + aux_sym_raw_string_literal_token2, + STATE(3905), 1, + aux_sym_raw_string_literal_repeat2, + [126150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [126454] = 4, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(6925), 1, + anon_sym_RPAREN, + STATE(3898), 1, + aux_sym_parameter_list_repeat1, + [126163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(6750), 1, - anon_sym_RBRACK, - STATE(3988), 1, - aux_sym_attribute_repeat1, - [126467] = 4, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(6927), 1, + anon_sym_RPAREN, + STATE(4072), 1, + aux_sym_parameter_list_repeat1, + [126176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6068), 1, - anon_sym_RBRACK, - ACTIONS(6752), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - STATE(3932), 1, - aux_sym_capture_list_repeat1, - [126480] = 4, - ACTIONS(493), 1, + ACTIONS(6929), 1, + anon_sym_RPAREN, + STATE(4076), 1, + aux_sym_type_parameter_list_repeat1, + [126189] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(6931), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6756), 1, + ACTIONS(6933), 1, sym___double_quote, - STATE(3939), 1, + STATE(3997), 1, aux_sym_raw_string_literal_repeat2, - [126493] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6756), 1, - sym___single_quote, - ACTIONS(6758), 1, - aux_sym_raw_string_literal_token1, - STATE(3940), 1, - aux_sym_raw_string_literal_repeat1, - [126506] = 2, + [126202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, + ACTIONS(6935), 1, sym_identifier, - [126515] = 4, - ACTIONS(493), 1, + ACTIONS(6937), 1, + anon_sym_LBRACE, + STATE(2227), 1, + sym__content_block, + [126215] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6762), 1, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(6939), 1, + anon_sym_RBRACK, + STATE(3895), 1, + aux_sym_type_parameters_repeat1, + [126228] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6933), 1, sym___single_quote, - STATE(4066), 1, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + STATE(3998), 1, aux_sym_raw_string_literal_repeat1, - [126528] = 4, - ACTIONS(493), 1, + [126241] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6762), 1, - sym___double_quote, - ACTIONS(6764), 1, + ACTIONS(6931), 1, aux_sym_raw_string_literal_token2, - STATE(4073), 1, + ACTIONS(6943), 1, + sym___double_quote, + STATE(3997), 1, aux_sym_raw_string_literal_repeat2, - [126541] = 4, + [126254] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6943), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [126267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6945), 3, anon_sym_COMMA, - ACTIONS(6766), 1, + anon_sym_GT, anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [126554] = 4, - ACTIONS(493), 1, + [126276] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(6947), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6768), 1, + ACTIONS(6949), 1, sym___double_quote, - STATE(4073), 1, + STATE(3941), 1, aux_sym_raw_string_literal_repeat2, - [126567] = 4, + [126289] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6949), 1, + sym___single_quote, + ACTIONS(6951), 1, + aux_sym_raw_string_literal_token1, + STATE(3942), 1, + aux_sym_raw_string_literal_repeat1, + [126302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6953), 1, anon_sym_COMMA, - ACTIONS(6770), 1, - anon_sym_RBRACK, - STATE(3889), 1, + ACTIONS(6955), 1, + anon_sym_RPAREN, + STATE(4077), 1, aux_sym_type_parameters_repeat1, - [126580] = 2, + [126315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6772), 3, + ACTIONS(6957), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [126589] = 4, + [126324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, - anon_sym_RPAREN, - ACTIONS(6774), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - STATE(3731), 1, + ACTIONS(6959), 1, + anon_sym_RBRACK, + STATE(3918), 1, aux_sym_type_parameters_repeat1, - [126602] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6768), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [126615] = 4, + [126337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6961), 1, anon_sym_COMMA, - ACTIONS(6776), 1, - anon_sym_RPAREN, - STATE(4039), 1, - aux_sym_type_parameter_list_repeat1, - [126628] = 4, + ACTIONS(6963), 1, + anon_sym_RBRACK, + STATE(4086), 1, + aux_sym_capture_list_repeat1, + [126350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(6778), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [126641] = 4, + ACTIONS(6965), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [126363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6967), 1, + sym_identifier, + ACTIONS(6969), 1, + anon_sym_LPAREN, + STATE(1538), 1, + sym_const_definition, + [126376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6780), 1, + ACTIONS(6971), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(3897), 1, aux_sym_type_parameter_list_repeat1, - [126654] = 4, + [126389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5487), 1, - anon_sym_RPAREN, - ACTIONS(6782), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [126667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6784), 1, - anon_sym_SEMI, - ACTIONS(6787), 1, + ACTIONS(6973), 1, anon_sym_RBRACK, - STATE(3885), 1, - aux_sym_attribute_repeat1, - [126680] = 4, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [126402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(5617), 1, anon_sym_RPAREN, - ACTIONS(6789), 1, + ACTIONS(6975), 1, anon_sym_COMMA, - STATE(3731), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [126693] = 4, + [126415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym_COMMA, - ACTIONS(6793), 1, + ACTIONS(5651), 1, anon_sym_RPAREN, - STATE(4037), 1, + ACTIONS(6977), 1, + anon_sym_COMMA, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [126706] = 4, + [126428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6795), 1, + ACTIONS(6979), 1, anon_sym_RPAREN, - STATE(4040), 1, + STATE(3939), 1, aux_sym_parameter_list_repeat1, - [126719] = 4, + [126441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(6797), 1, - anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [126732] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6799), 1, + ACTIONS(6981), 1, anon_sym_RPAREN, - STATE(3921), 1, + STATE(3962), 1, aux_sym_parameter_list_repeat1, - [126745] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5491), 1, - anon_sym_RPAREN, - ACTIONS(6801), 1, - anon_sym_COMMA, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [126758] = 4, + [126454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6803), 1, + ACTIONS(6983), 1, anon_sym_RPAREN, - STATE(3922), 1, + STATE(3940), 1, aux_sym_type_parameter_list_repeat1, - [126771] = 4, + [126467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, - anon_sym_LBRACE, - ACTIONS(5009), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - STATE(3943), 1, - aux_sym_match_expression_list_repeat1, - [126784] = 4, + ACTIONS(6985), 1, + anon_sym_RPAREN, + STATE(3965), 1, + aux_sym_type_parameter_list_repeat1, + [126480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6807), 1, + ACTIONS(6987), 1, anon_sym_RPAREN, - STATE(3860), 1, - aux_sym_type_parameters_repeat1, - [126797] = 4, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [126493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6809), 1, + ACTIONS(6989), 1, anon_sym_RPAREN, - STATE(3907), 1, + STATE(4007), 1, aux_sym_parameter_list_repeat1, - [126810] = 3, + [126506] = 4, ACTIONS(3), 1, sym_comment, - STATE(2675), 1, - sym_type_initializer_body, - ACTIONS(6811), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [126821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5009), 1, + ACTIONS(6991), 1, anon_sym_COMMA, - ACTIONS(6813), 1, - anon_sym_LBRACE, - STATE(3947), 1, - aux_sym_match_expression_list_repeat1, - [126834] = 4, - ACTIONS(493), 1, + ACTIONS(6993), 1, + anon_sym_RPAREN, + STATE(4061), 1, + aux_sym_type_parameters_repeat1, + [126519] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6815), 1, + ACTIONS(6995), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6817), 1, + ACTIONS(6997), 1, sym___single_quote, - STATE(3873), 1, + STATE(3910), 1, aux_sym_raw_string_literal_repeat1, - [126847] = 4, - ACTIONS(493), 1, + [126532] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6817), 1, + ACTIONS(6997), 1, sym___double_quote, - ACTIONS(6819), 1, + ACTIONS(6999), 1, aux_sym_raw_string_literal_token2, - STATE(3874), 1, + STATE(3909), 1, aux_sym_raw_string_literal_repeat2, - [126860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 1, - anon_sym_COMMA, - ACTIONS(6821), 1, - anon_sym_COLON_EQ, - STATE(3950), 1, - aux_sym_identifier_list_repeat1, - [126873] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6823), 1, - anon_sym_COMMA, - ACTIONS(6826), 1, - anon_sym_in, - STATE(3901), 1, - aux_sym_var_definition_list_repeat1, - [126886] = 4, + [126545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6828), 1, + ACTIONS(6967), 1, sym_identifier, - ACTIONS(6830), 1, - anon_sym_LBRACE, - STATE(2209), 1, - sym__content_block, - [126899] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6736), 1, - anon_sym_COMMA, - ACTIONS(6832), 1, - anon_sym_RPAREN, - STATE(3863), 1, - aux_sym_type_parameter_list_repeat1, - [126912] = 4, - ACTIONS(493), 1, + ACTIONS(7001), 1, + anon_sym_LPAREN, + STATE(1612), 1, + sym_const_definition, + [126558] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6760), 1, + ACTIONS(6941), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6834), 1, + ACTIONS(7003), 1, sym___single_quote, - STATE(4066), 1, + STATE(3998), 1, aux_sym_raw_string_literal_repeat1, - [126925] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(3948), 1, - aux_sym_strictly_expression_list_repeat1, - [126938] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6764), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6834), 1, - sym___double_quote, - STATE(4073), 1, - aux_sym_raw_string_literal_repeat2, - [126951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6732), 1, - anon_sym_COMMA, - ACTIONS(6836), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [126964] = 4, - ACTIONS(493), 1, + [126571] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6838), 1, + ACTIONS(6931), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6840), 1, + ACTIONS(7003), 1, sym___double_quote, - STATE(3933), 1, + STATE(3997), 1, aux_sym_raw_string_literal_repeat2, - [126977] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6840), 1, - sym___single_quote, - ACTIONS(6842), 1, - aux_sym_raw_string_literal_token1, - STATE(3934), 1, - aux_sym_raw_string_literal_repeat1, - [126990] = 4, + [126584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(6844), 1, - anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [127003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6846), 1, - sym_identifier, - ACTIONS(6848), 1, - anon_sym_LPAREN, - STATE(1502), 1, - sym_const_definition, - [127016] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6852), 1, + ACTIONS(7005), 1, anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [127029] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6854), 1, - sym_identifier, - ACTIONS(6856), 1, - anon_sym_LBRACE, - STATE(1019), 1, - sym__content_block, - [127042] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6858), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [127055] = 2, + STATE(4070), 1, + aux_sym_match_expression_list_repeat1, + [126597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6860), 3, + ACTIONS(6616), 1, anon_sym_COMMA, - anon_sym_GT, + ACTIONS(7007), 1, anon_sym_RBRACK, - [127064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - anon_sym_SEMI, - ACTIONS(4993), 1, - anon_sym_COMMA, - STATE(4003), 1, - aux_sym_strictly_expression_list_repeat1, - [127077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_SEMI, - ACTIONS(6862), 1, - anon_sym_COMMA, - STATE(3917), 1, - aux_sym_strictly_expression_list_repeat1, - [127090] = 4, + STATE(4039), 1, + aux_sym_type_parameters_repeat1, + [126610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6865), 1, + ACTIONS(7009), 1, sym_identifier, - ACTIONS(6867), 1, + ACTIONS(7011), 1, anon_sym_LBRACE, - STATE(2369), 1, + STATE(1248), 1, sym__content_block, - [127103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5465), 1, - anon_sym_RPAREN, - ACTIONS(6869), 1, - anon_sym_COMMA, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [127116] = 4, + [126623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(6871), 1, - anon_sym_RBRACK, - STATE(3941), 1, - aux_sym_type_parameters_repeat1, - [127129] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6873), 1, + ACTIONS(7013), 1, anon_sym_RPAREN, - STATE(3923), 1, + STATE(4007), 1, aux_sym_parameter_list_repeat1, - [127142] = 4, + [126636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6875), 1, + ACTIONS(7015), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4019), 1, aux_sym_type_parameter_list_repeat1, - [127155] = 4, + [126649] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6931), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7017), 1, + sym___double_quote, + STATE(3997), 1, + aux_sym_raw_string_literal_repeat2, + [126662] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7017), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [126675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_COMMA, - ACTIONS(6880), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [127168] = 4, + ACTIONS(6838), 1, + anon_sym_DOT, + ACTIONS(6840), 1, + anon_sym_RBRACE, + ACTIONS(6844), 1, + aux_sym_format_specifier_token1, + [126688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6882), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6885), 1, + ACTIONS(7019), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(3928), 1, aux_sym_type_parameter_list_repeat1, - [127181] = 2, + [126701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 3, + ACTIONS(5205), 1, + anon_sym_COMMA, + ACTIONS(7021), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [127190] = 4, + STATE(4070), 1, + aux_sym_match_expression_list_repeat1, + [126714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6891), 1, + ACTIONS(7023), 1, anon_sym_RPAREN, - STATE(3891), 1, - aux_sym_type_parameters_repeat1, - [127203] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3736), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(3948), 1, - aux_sym_strictly_expression_list_repeat1, - [127216] = 2, + STATE(3929), 1, + aux_sym_parameter_list_repeat1, + [126727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6554), 3, + ACTIONS(5663), 1, + anon_sym_RPAREN, + ACTIONS(7025), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [127225] = 3, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [126740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6895), 1, - anon_sym_COLON, - ACTIONS(6893), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [127236] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6764), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6858), 1, - sym___double_quote, - STATE(4073), 1, - aux_sym_raw_string_literal_repeat2, - [127249] = 2, - ACTIONS(3), 1, + ACTIONS(4488), 1, + sym_identifier, + ACTIONS(7027), 1, + anon_sym_static, + ACTIONS(7029), 1, + anon_sym_volatile, + [126753] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6897), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [127258] = 4, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7031), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [126766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6902), 1, - anon_sym_RBRACK, - STATE(3932), 1, - aux_sym_capture_list_repeat1, - [127271] = 4, - ACTIONS(493), 1, + ACTIONS(7033), 1, + anon_sym_RPAREN, + STATE(4119), 1, + aux_sym_parameter_list_repeat1, + [126779] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(6931), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6904), 1, + ACTIONS(7031), 1, sym___double_quote, - STATE(4073), 1, + STATE(3997), 1, aux_sym_raw_string_literal_repeat2, - [127284] = 4, - ACTIONS(493), 1, + [126792] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6760), 1, + ACTIONS(6941), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6904), 1, + ACTIONS(7035), 1, sym___single_quote, - STATE(4066), 1, + STATE(3998), 1, aux_sym_raw_string_literal_repeat1, - [127297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6906), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [127306] = 4, + [126805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 1, - anon_sym_LBRACE, - ACTIONS(6908), 1, + ACTIONS(5603), 1, + anon_sym_RPAREN, + ACTIONS(7037), 1, anon_sym_COMMA, - STATE(3936), 1, - aux_sym_expression_without_blocks_list_repeat1, - [127319] = 4, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [126818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6911), 1, - sym_identifier, ACTIONS(6913), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym__content_block, - [127332] = 4, + anon_sym_COMMA, + ACTIONS(7039), 1, + anon_sym_RPAREN, + STATE(3978), 1, + aux_sym_parameter_list_repeat1, + [126831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6915), 1, - anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [127345] = 4, - ACTIONS(493), 1, + ACTIONS(7041), 1, + anon_sym_RPAREN, + STATE(3979), 1, + aux_sym_type_parameter_list_repeat1, + [126844] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(6931), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6917), 1, + ACTIONS(7035), 1, sym___double_quote, - STATE(4073), 1, + STATE(3997), 1, aux_sym_raw_string_literal_repeat2, - [127358] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6917), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [127371] = 4, + [126857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6643), 1, anon_sym_COMMA, - ACTIONS(6919), 1, - anon_sym_RBRACK, - STATE(3731), 1, + ACTIONS(6645), 1, + anon_sym_RPAREN, + STATE(3900), 1, aux_sym_type_parameters_repeat1, - [127384] = 4, + [126870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_COMMA, - ACTIONS(6923), 1, + ACTIONS(3834), 3, + anon_sym_SEMI, anon_sym_RBRACK, - STATE(3869), 1, - aux_sym_capture_list_repeat1, - [127397] = 4, + anon_sym_COLON, + [126879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, - anon_sym_COMMA, - ACTIONS(6925), 1, - anon_sym_LBRACE, - STATE(3984), 1, - aux_sym_match_expression_list_repeat1, - [127410] = 4, + ACTIONS(6614), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [126888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5439), 1, - anon_sym_RPAREN, - ACTIONS(6927), 1, + ACTIONS(7043), 1, anon_sym_COMMA, - STATE(3731), 1, + ACTIONS(7045), 1, + anon_sym_RPAREN, + STATE(4130), 1, aux_sym_type_parameters_repeat1, - [127423] = 4, + [126901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(7047), 1, anon_sym_COMMA, - ACTIONS(6929), 1, + ACTIONS(7049), 1, + anon_sym_in, + STATE(3986), 1, + aux_sym_var_definition_list_repeat1, + [126914] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(7051), 1, anon_sym_RPAREN, - STATE(3969), 1, + STATE(4007), 1, aux_sym_parameter_list_repeat1, - [127436] = 4, + [126927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(3953), 1, + anon_sym_LBRACE, + ACTIONS(5159), 1, anon_sym_COMMA, - ACTIONS(6931), 1, - anon_sym_RPAREN, - STATE(3970), 1, - aux_sym_type_parameter_list_repeat1, - [127449] = 4, + STATE(4009), 1, + aux_sym_strictly_expression_list_repeat1, + [126940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(6933), 1, - anon_sym_LBRACE, - STATE(3984), 1, - aux_sym_match_expression_list_repeat1, - [127462] = 4, + ACTIONS(7053), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [126953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_LBRACE, - ACTIONS(6935), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - STATE(3948), 1, - aux_sym_strictly_expression_list_repeat1, - [127475] = 4, - ACTIONS(493), 1, + ACTIONS(7055), 1, + anon_sym_RPAREN, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [126966] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6938), 1, + ACTIONS(7057), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6940), 1, + ACTIONS(7059), 1, sym___single_quote, - STATE(3880), 1, + STATE(3952), 1, aux_sym_raw_string_literal_repeat1, - [127488] = 4, + [126979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6942), 1, - anon_sym_COMMA, - ACTIONS(6945), 1, - anon_sym_COLON_EQ, - STATE(3950), 1, - aux_sym_identifier_list_repeat1, - [127501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5291), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(5688), 1, - anon_sym_LBRACE, - STATE(3936), 1, - aux_sym_expression_without_blocks_list_repeat1, - [127514] = 4, + ACTIONS(7061), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [126992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COLON_EQ, - ACTIONS(4805), 1, + ACTIONS(7063), 1, anon_sym_COMMA, - STATE(3965), 1, - aux_sym_strictly_expression_list_repeat1, - [127527] = 4, + ACTIONS(7065), 1, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_type_parameters_repeat1, + [127005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6947), 1, + ACTIONS(7067), 1, sym_identifier, - ACTIONS(6949), 1, + ACTIONS(7069), 1, anon_sym_LBRACE, - STATE(2906), 1, + STATE(1097), 1, sym__content_block, - [127540] = 4, - ACTIONS(3), 1, + [127018] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6736), 1, - anon_sym_COMMA, - ACTIONS(6951), 1, - anon_sym_RPAREN, - STATE(4053), 1, - aux_sym_type_parameter_list_repeat1, - [127553] = 2, + ACTIONS(7059), 1, + sym___double_quote, + ACTIONS(7071), 1, + aux_sym_raw_string_literal_token2, + STATE(3956), 1, + aux_sym_raw_string_literal_repeat2, + [127031] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7073), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7075), 1, + sym___double_quote, + STATE(3996), 1, + aux_sym_raw_string_literal_repeat2, + [127044] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 3, + ACTIONS(6616), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7077), 1, anon_sym_RBRACK, - [127562] = 4, - ACTIONS(493), 1, + STATE(3989), 1, + aux_sym_type_parameters_repeat1, + [127057] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7075), 1, + sym___single_quote, + ACTIONS(7079), 1, + aux_sym_raw_string_literal_token1, + STATE(3999), 1, + aux_sym_raw_string_literal_repeat1, + [127070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7081), 1, + sym_identifier, + ACTIONS(7083), 1, + anon_sym_LBRACE, + STATE(2413), 1, + sym__content_block, + [127083] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7085), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7087), 1, + sym___single_quote, + STATE(3934), 1, + aux_sym_raw_string_literal_repeat1, + [127096] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(7087), 1, sym___double_quote, - ACTIONS(6953), 1, + ACTIONS(7089), 1, aux_sym_raw_string_literal_token2, - STATE(3876), 1, + STATE(3935), 1, aux_sym_raw_string_literal_repeat2, - [127575] = 4, + [127109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, + ACTIONS(3379), 1, + anon_sym_COLON_EQ, + ACTIONS(4971), 1, anon_sym_COMMA, - STATE(3905), 1, + STATE(4012), 1, aux_sym_strictly_expression_list_repeat1, - [127588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6736), 1, - anon_sym_COMMA, - ACTIONS(6955), 1, - anon_sym_RPAREN, - STATE(3924), 1, - aux_sym_type_parameter_list_repeat1, - [127601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6572), 1, - anon_sym_DOT, - ACTIONS(6574), 1, - anon_sym_RBRACE, - ACTIONS(6578), 1, - aux_sym_format_specifier_token1, - [127614] = 4, + [127122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6957), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6959), 1, + ACTIONS(7091), 1, anon_sym_RPAREN, - STATE(4046), 1, - aux_sym_type_parameters_repeat1, - [127627] = 4, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [127135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6961), 1, + ACTIONS(7093), 1, anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [127640] = 4, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [127148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5475), 1, - anon_sym_RPAREN, - ACTIONS(6963), 1, - anon_sym_COMMA, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [127653] = 4, + ACTIONS(7097), 1, + anon_sym_COLON, + ACTIONS(7095), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [127159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(6965), 1, + ACTIONS(7099), 1, + anon_sym_SEMI, + ACTIONS(7101), 1, anon_sym_RBRACK, - STATE(3980), 1, - aux_sym_type_parameters_repeat1, - [127666] = 4, + STATE(3983), 1, + aux_sym_attribute_repeat1, + [127172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6967), 1, + ACTIONS(7103), 1, sym_identifier, - ACTIONS(6969), 1, + ACTIONS(7105), 1, anon_sym_LBRACE, - STATE(1962), 1, + STATE(1894), 1, sym__content_block, - [127679] = 4, + [127185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_COLON_EQ, - ACTIONS(6971), 1, - anon_sym_COMMA, - STATE(3965), 1, - aux_sym_strictly_expression_list_repeat1, - [127692] = 4, + ACTIONS(7099), 1, + anon_sym_SEMI, + ACTIONS(7107), 1, + anon_sym_RBRACK, + STATE(4105), 1, + aux_sym_attribute_repeat1, + [127198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(4724), 1, anon_sym_COMMA, - ACTIONS(6974), 1, - anon_sym_RPAREN, - STATE(4000), 1, - aux_sym_parameter_list_repeat1, - [127705] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6976), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6978), 1, - sym___double_quote, - STATE(4069), 1, - aux_sym_raw_string_literal_repeat2, - [127718] = 4, + ACTIONS(4726), 1, + anon_sym_COLON_EQ, + STATE(4036), 1, + aux_sym_identifier_list_repeat1, + [127211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(6980), 1, - anon_sym_RBRACK, - STATE(3938), 1, - aux_sym_type_parameters_repeat1, - [127731] = 4, + ACTIONS(6624), 1, + sym_identifier, + ACTIONS(6626), 1, + anon_sym_mut, + STATE(4321), 1, + sym_var_definition, + [127224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(7047), 1, anon_sym_COMMA, - ACTIONS(6982), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [127744] = 4, + ACTIONS(7109), 1, + anon_sym_in, + STATE(4001), 1, + aux_sym_var_definition_list_repeat1, + [127237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(6984), 1, + ACTIONS(7111), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4019), 1, aux_sym_type_parameter_list_repeat1, - [127757] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6986), 1, - anon_sym_COMMA, - ACTIONS(6988), 1, - anon_sym_RPAREN, - STATE(3944), 1, - aux_sym_type_parameters_repeat1, - [127770] = 4, + [127250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(6990), 1, + ACTIONS(7113), 1, anon_sym_RPAREN, STATE(4007), 1, - aux_sym_type_parameter_list_repeat1, - [127783] = 4, + aux_sym_parameter_list_repeat1, + [127263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6992), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(6994), 1, - anon_sym_in, - STATE(4087), 1, - aux_sym_var_definition_list_repeat1, - [127796] = 4, + ACTIONS(7115), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [127276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, - sym_identifier, - ACTIONS(6998), 1, - anon_sym_LBRACE, - STATE(2519), 1, - sym__content_block, - [127809] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7000), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7002), 1, - sym___double_quote, - STATE(4038), 1, - aux_sym_raw_string_literal_repeat2, - [127822] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6978), 1, - sym___single_quote, - ACTIONS(7004), 1, - aux_sym_raw_string_literal_token1, - STATE(4079), 1, - aux_sym_raw_string_literal_repeat1, - [127835] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7002), 1, - sym___single_quote, - ACTIONS(7006), 1, - aux_sym_raw_string_literal_token1, - STATE(4043), 1, - aux_sym_raw_string_literal_repeat1, - [127848] = 2, + ACTIONS(7117), 1, + anon_sym_QMARK, + ACTIONS(5267), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [127287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7008), 3, + ACTIONS(3949), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [127857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7010), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [127866] = 4, + ACTIONS(5159), 1, + anon_sym_COMMA, + STATE(4009), 1, + aux_sym_strictly_expression_list_repeat1, + [127300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(7119), 1, anon_sym_COMMA, - ACTIONS(7012), 1, - anon_sym_RBRACK, - STATE(3731), 1, + ACTIONS(7121), 1, + anon_sym_RPAREN, + STATE(3947), 1, aux_sym_type_parameters_repeat1, - [127879] = 3, + [127313] = 4, ACTIONS(3), 1, sym_comment, - STATE(4094), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(7014), 2, + ACTIONS(4785), 1, + anon_sym_LBRACE, + ACTIONS(7123), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [127890] = 4, + STATE(3993), 1, + aux_sym_expression_without_blocks_list_repeat1, + [127326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7016), 1, + ACTIONS(7126), 1, anon_sym_RBRACK, - STATE(3731), 1, + STATE(3967), 1, aux_sym_type_parameters_repeat1, - [127903] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7018), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [127916] = 4, + [127339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 1, - anon_sym_LBRACE, - ACTIONS(7020), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - STATE(3984), 1, - aux_sym_match_expression_list_repeat1, - [127929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6846), 1, - sym_identifier, - ACTIONS(7023), 1, - anon_sym_LPAREN, - STATE(1492), 1, - sym_const_definition, - [127942] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7025), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7027), 1, - sym___single_quote, - STATE(3904), 1, - aux_sym_raw_string_literal_repeat1, - [127955] = 4, - ACTIONS(493), 1, + ACTIONS(7128), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [127352] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7027), 1, + ACTIONS(6931), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7130), 1, sym___double_quote, - ACTIONS(7029), 1, + STATE(3997), 1, + aux_sym_raw_string_literal_repeat2, + [127365] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7132), 1, aux_sym_raw_string_literal_token2, - STATE(3906), 1, + ACTIONS(7135), 1, + sym___double_quote, + STATE(3997), 1, aux_sym_raw_string_literal_repeat2, - [127968] = 4, - ACTIONS(3), 1, + [127378] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6748), 1, - anon_sym_SEMI, - ACTIONS(7031), 1, - anon_sym_RBRACK, - STATE(3885), 1, - aux_sym_attribute_repeat1, - [127981] = 4, - ACTIONS(3), 1, + ACTIONS(7137), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7140), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [127391] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(7033), 1, - anon_sym_RBRACK, - STATE(4017), 1, - aux_sym_type_parameters_repeat1, - [127994] = 4, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7130), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [127404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, - anon_sym_COMMA, - ACTIONS(7035), 1, + ACTIONS(5639), 1, anon_sym_RPAREN, - STATE(4075), 1, - aux_sym_type_parameter_list_repeat1, - [128007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6732), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(7037), 1, - anon_sym_RPAREN, - STATE(4015), 1, - aux_sym_parameter_list_repeat1, - [128020] = 4, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [127417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(7144), 1, anon_sym_COMMA, - ACTIONS(7039), 1, - anon_sym_RPAREN, - STATE(3958), 1, - aux_sym_type_parameter_list_repeat1, - [128033] = 4, + ACTIONS(7147), 1, + anon_sym_in, + STATE(4001), 1, + aux_sym_var_definition_list_repeat1, + [127430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7041), 1, + ACTIONS(7149), 1, anon_sym_RPAREN, - STATE(3961), 1, + STATE(4013), 1, aux_sym_parameter_list_repeat1, - [128046] = 4, + [127443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7043), 1, + ACTIONS(7151), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4016), 1, aux_sym_type_parameter_list_repeat1, - [128059] = 4, + [127456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5471), 1, - anon_sym_RPAREN, - ACTIONS(7045), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - STATE(3731), 1, + ACTIONS(6618), 1, + anon_sym_RBRACK, + STATE(3964), 1, aux_sym_type_parameters_repeat1, - [128072] = 2, + [127469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 3, - anon_sym_SEMI, + ACTIONS(7153), 1, + anon_sym_COMMA, + ACTIONS(7156), 1, anon_sym_RBRACK, - anon_sym_COLON, - [128081] = 4, + STATE(4005), 1, + aux_sym_capture_list_repeat1, + [127482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7047), 1, - anon_sym_RPAREN, - STATE(4054), 1, - aux_sym_parameter_list_repeat1, - [128094] = 2, + ACTIONS(7158), 1, + anon_sym_RBRACK, + STATE(4026), 1, + aux_sym_type_parameters_repeat1, + [127495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [128103] = 4, + ACTIONS(7160), 1, + anon_sym_COMMA, + ACTIONS(7163), 1, + anon_sym_RPAREN, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [127508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 1, + ACTIONS(7165), 1, sym_identifier, - ACTIONS(7051), 1, + ACTIONS(7167), 1, anon_sym_LBRACE, - STATE(2710), 1, + STATE(2798), 1, sym__content_block, - [128116] = 4, + [127521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(3461), 1, + anon_sym_LBRACE, + ACTIONS(7169), 1, anon_sym_COMMA, - ACTIONS(7053), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [128129] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7055), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7057), 1, - sym___single_quote, - STATE(3914), 1, - aux_sym_raw_string_literal_repeat1, - [128142] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7057), 1, - sym___double_quote, - ACTIONS(7059), 1, - aux_sym_raw_string_literal_token2, - STATE(3930), 1, - aux_sym_raw_string_literal_repeat2, - [128155] = 4, + STATE(4009), 1, + aux_sym_strictly_expression_list_repeat1, + [127534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_SEMI, - ACTIONS(4993), 1, + ACTIONS(5461), 1, anon_sym_COMMA, - STATE(3917), 1, - aux_sym_strictly_expression_list_repeat1, - [128168] = 4, + ACTIONS(5859), 1, + anon_sym_LBRACE, + STATE(3993), 1, + aux_sym_expression_without_blocks_list_repeat1, + [127547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7061), 1, + ACTIONS(7172), 1, sym_identifier, - ACTIONS(7063), 1, + ACTIONS(7174), 1, anon_sym_LBRACE, - STATE(1272), 1, + STATE(1361), 1, sym__content_block, - [128181] = 4, - ACTIONS(493), 1, + [127560] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(3953), 1, + anon_sym_COLON_EQ, + ACTIONS(4971), 1, + anon_sym_COMMA, + STATE(4034), 1, + aux_sym_strictly_expression_list_repeat1, + [127573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(7176), 1, + anon_sym_RPAREN, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [127586] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7178), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7067), 1, + ACTIONS(7180), 1, sym___double_quote, - STATE(4034), 1, + STATE(4043), 1, aux_sym_raw_string_literal_repeat2, - [128194] = 4, - ACTIONS(493), 1, + [127599] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7067), 1, + ACTIONS(7180), 1, sym___single_quote, - ACTIONS(7069), 1, + ACTIONS(7182), 1, aux_sym_raw_string_literal_token1, - STATE(4035), 1, + STATE(4044), 1, aux_sym_raw_string_literal_repeat1, - [128207] = 4, + [127612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7071), 1, + ACTIONS(7184), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4019), 1, aux_sym_type_parameter_list_repeat1, - [128220] = 4, + [127625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(3379), 1, + anon_sym_LBRACE, + ACTIONS(5159), 1, anon_sym_COMMA, - ACTIONS(7073), 1, + STATE(3963), 1, + aux_sym_strictly_expression_list_repeat1, + [127638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(7186), 1, anon_sym_RBRACK, - STATE(3731), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [128233] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6764), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7018), 1, - sym___double_quote, - STATE(4073), 1, - aux_sym_raw_string_literal_repeat2, - [128246] = 4, - ACTIONS(493), 1, + [127651] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7075), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [128259] = 4, - ACTIONS(493), 1, + ACTIONS(7188), 1, + anon_sym_COMMA, + ACTIONS(7191), 1, + anon_sym_RPAREN, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [127664] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7075), 1, - sym___double_quote, - STATE(4073), 1, - aux_sym_raw_string_literal_repeat2, - [128272] = 4, + ACTIONS(6909), 1, + anon_sym_COMMA, + ACTIONS(7193), 1, + anon_sym_RPAREN, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [127677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 1, - sym_identifier, - ACTIONS(7079), 1, - anon_sym_LBRACE, - STATE(1339), 1, - sym__content_block, - [128285] = 4, + ACTIONS(6909), 1, + anon_sym_COMMA, + ACTIONS(7195), 1, + anon_sym_RPAREN, + STATE(3987), 1, + aux_sym_type_parameter_list_repeat1, + [127690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(3239), 1, anon_sym_COMMA, - ACTIONS(4877), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(2780), 1, + STATE(2863), 1, sym_block, - [128298] = 3, + [127703] = 3, ACTIONS(3), 1, sym_comment, - STATE(2675), 1, + STATE(2779), 1, sym_type_initializer_body, - ACTIONS(2884), 2, + ACTIONS(3243), 2, anon_sym_LBRACE, anon_sym_COMMA, - [128309] = 4, + [127714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7081), 1, + ACTIONS(7197), 1, anon_sym_RPAREN, - STATE(3923), 1, + STATE(3988), 1, aux_sym_parameter_list_repeat1, - [128322] = 4, + [127727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(7083), 1, - anon_sym_RBRACK, - STATE(4008), 1, - aux_sym_type_parameters_repeat1, - [128335] = 4, + ACTIONS(7199), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [127736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7085), 1, + ACTIONS(7201), 1, anon_sym_RBRACK, - STATE(3731), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [128348] = 4, + [127749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7089), 1, + ACTIONS(7203), 1, anon_sym_RPAREN, - STATE(3995), 1, - aux_sym_type_parameters_repeat1, - [128361] = 4, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [127762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3146), 1, anon_sym_COMMA, - ACTIONS(7091), 1, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(2675), 1, + STATE(2779), 1, sym_type_initializer_body, - [128374] = 4, + [127775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7093), 1, - anon_sym_COMMA, - ACTIONS(7095), 1, + ACTIONS(5625), 1, anon_sym_RPAREN, - STATE(3962), 1, + ACTIONS(7207), 1, + anon_sym_COMMA, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [128387] = 3, + [127788] = 3, ACTIONS(3), 1, sym_comment, - STATE(2675), 1, + STATE(2779), 1, sym_type_initializer_body, - ACTIONS(2872), 2, + ACTIONS(3212), 2, anon_sym_LBRACE, anon_sym_COMMA, - [128398] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6764), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7097), 1, - sym___double_quote, - STATE(4073), 1, - aux_sym_raw_string_literal_repeat2, - [128411] = 4, + [127799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7099), 1, - anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [128424] = 4, - ACTIONS(493), 1, + ACTIONS(7209), 1, + anon_sym_RPAREN, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [127812] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7097), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [128437] = 4, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(7211), 1, + anon_sym_RPAREN, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [127825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7101), 1, + ACTIONS(7213), 1, anon_sym_RBRACK, - STATE(3731), 1, + STATE(3921), 1, aux_sym_type_parameters_repeat1, - [128450] = 4, + [127838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(3461), 1, + anon_sym_COLON_EQ, + ACTIONS(7215), 1, anon_sym_COMMA, - ACTIONS(7103), 1, - anon_sym_RPAREN, - STATE(3924), 1, - aux_sym_type_parameter_list_repeat1, - [128463] = 4, + STATE(4034), 1, + aux_sym_strictly_expression_list_repeat1, + [127851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(3461), 1, + anon_sym_SEMI, + ACTIONS(7218), 1, anon_sym_COMMA, - ACTIONS(7105), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [128476] = 4, + STATE(4035), 1, + aux_sym_strictly_expression_list_repeat1, + [127864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(4724), 1, anon_sym_COMMA, - ACTIONS(7107), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [128489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7109), 1, - sym_identifier, - ACTIONS(7111), 1, - anon_sym_LBRACE, - STATE(1827), 1, - sym__content_block, - [128502] = 4, + ACTIONS(7221), 1, + anon_sym_COLON_EQ, + STATE(3894), 1, + aux_sym_identifier_list_repeat1, + [127877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(7223), 1, anon_sym_COMMA, - ACTIONS(7113), 1, + ACTIONS(7225), 1, anon_sym_RPAREN, - STATE(3994), 1, - aux_sym_type_parameter_list_repeat1, - [128515] = 4, + STATE(3953), 1, + aux_sym_type_parameters_repeat1, + [127890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7115), 1, + ACTIONS(7227), 1, anon_sym_RBRACK, - STATE(4025), 1, + STATE(4018), 1, aux_sym_type_parameters_repeat1, - [128528] = 4, + [127903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, - sym_identifier, - ACTIONS(7117), 1, - anon_sym_static, - ACTIONS(7119), 1, - anon_sym_volatile, - [128541] = 4, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(7229), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [127916] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7231), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [127929] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6931), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7231), 1, + sym___double_quote, + STATE(3997), 1, + aux_sym_raw_string_literal_repeat2, + [127942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, - anon_sym_COMMA, - ACTIONS(7121), 1, - anon_sym_RPAREN, - STATE(4026), 1, - aux_sym_type_parameter_list_repeat1, - [128554] = 4, - ACTIONS(493), 1, + ACTIONS(7233), 1, + sym_identifier, + ACTIONS(7235), 1, + anon_sym_LBRACE, + STATE(2934), 1, + sym__content_block, + [127955] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(6931), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7123), 1, + ACTIONS(7237), 1, sym___double_quote, - STATE(4073), 1, + STATE(3997), 1, aux_sym_raw_string_literal_repeat2, - [128567] = 4, - ACTIONS(493), 1, + [127968] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6760), 1, + ACTIONS(6941), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7123), 1, + ACTIONS(7237), 1, sym___single_quote, - STATE(4066), 1, + STATE(3998), 1, aux_sym_raw_string_literal_repeat1, - [128580] = 4, + [127981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7125), 1, + ACTIONS(7239), 1, anon_sym_RPAREN, - STATE(4027), 1, - aux_sym_parameter_list_repeat1, - [128593] = 4, + STATE(4020), 1, + aux_sym_type_parameter_list_repeat1, + [127994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, - anon_sym_RPAREN, - ACTIONS(7127), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [128606] = 4, - ACTIONS(493), 1, + ACTIONS(7241), 1, + anon_sym_RPAREN, + STATE(4032), 1, + aux_sym_parameter_list_repeat1, + [128007] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7129), 1, - sym___double_quote, - STATE(4073), 1, - aux_sym_raw_string_literal_repeat2, - [128619] = 4, + ACTIONS(7243), 1, + sym_identifier, + ACTIONS(7245), 1, + anon_sym_LBRACE, + STATE(1980), 1, + sym__content_block, + [128020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, - anon_sym_COMMA, - ACTIONS(7131), 1, - anon_sym_RPAREN, - STATE(3924), 1, - aux_sym_type_parameter_list_repeat1, - [128632] = 4, + ACTIONS(6967), 1, + sym_identifier, + ACTIONS(7247), 1, + anon_sym_LPAREN, + STATE(1601), 1, + sym_const_definition, + [128033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, - anon_sym_COMMA, - ACTIONS(7133), 1, + ACTIONS(5641), 1, anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [128645] = 4, - ACTIONS(493), 1, + ACTIONS(7249), 1, + anon_sym_COMMA, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [128046] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7135), 1, + ACTIONS(7251), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7137), 1, + ACTIONS(7253), 1, sym___double_quote, - STATE(4009), 1, + STATE(4073), 1, aux_sym_raw_string_literal_repeat2, - [128658] = 4, - ACTIONS(493), 1, + [128059] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7137), 1, + ACTIONS(7253), 1, sym___single_quote, - ACTIONS(7139), 1, + ACTIONS(7255), 1, aux_sym_raw_string_literal_token1, - STATE(3983), 1, + STATE(4075), 1, aux_sym_raw_string_literal_repeat1, - [128671] = 4, - ACTIONS(493), 1, + [128072] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7129), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [128684] = 4, + ACTIONS(7257), 1, + anon_sym_DOT, + ACTIONS(7259), 1, + anon_sym_RBRACE, + ACTIONS(7261), 1, + aux_sym_format_specifier_token1, + [128085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7141), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7143), 1, - anon_sym_RPAREN, - STATE(3919), 1, + ACTIONS(7263), 1, + anon_sym_RBRACK, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [128697] = 4, - ACTIONS(3), 1, + [128098] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3736), 1, - anon_sym_SEMI, - ACTIONS(4993), 1, - anon_sym_COMMA, - STATE(3917), 1, - aux_sym_strictly_expression_list_repeat1, - [128710] = 4, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7265), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [128111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, + ACTIONS(5623), 1, anon_sym_RPAREN, - ACTIONS(7145), 1, + ACTIONS(7267), 1, anon_sym_COMMA, - STATE(3731), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [128723] = 4, + [128124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7147), 1, + ACTIONS(7269), 1, anon_sym_RPAREN, - STATE(4071), 1, + STATE(4080), 1, aux_sym_parameter_list_repeat1, - [128736] = 4, + [128137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7149), 1, + ACTIONS(7271), 1, anon_sym_RPAREN, - STATE(4072), 1, + STATE(4081), 1, aux_sym_type_parameter_list_repeat1, - [128749] = 4, + [128150] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7273), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7275), 1, + sym___double_quote, + STATE(4100), 1, + aux_sym_raw_string_literal_repeat2, + [128163] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6931), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7265), 1, + sym___double_quote, + STATE(3997), 1, + aux_sym_raw_string_literal_repeat2, + [128176] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7275), 1, + sym___single_quote, + ACTIONS(7277), 1, + aux_sym_raw_string_literal_token1, + STATE(4093), 1, + aux_sym_raw_string_literal_repeat1, + [128189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(5647), 1, + anon_sym_RPAREN, + ACTIONS(7279), 1, anon_sym_COMMA, - ACTIONS(6483), 1, - anon_sym_RBRACK, - STATE(3910), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [128762] = 4, + [128202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6712), 3, anon_sym_COMMA, - ACTIONS(7151), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [128775] = 4, - ACTIONS(493), 1, + [128211] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7153), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7155), 1, + ACTIONS(7281), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7283), 1, + sym___single_quote, + STATE(3949), 1, + aux_sym_raw_string_literal_repeat1, + [128224] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7283), 1, sym___double_quote, - STATE(4022), 1, + ACTIONS(7285), 1, + aux_sym_raw_string_literal_token2, + STATE(3951), 1, aux_sym_raw_string_literal_repeat2, - [128788] = 4, + [128237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6438), 1, + ACTIONS(3953), 1, + anon_sym_SEMI, + ACTIONS(5157), 1, anon_sym_COMMA, - ACTIONS(6440), 1, - anon_sym_RPAREN, - STATE(3886), 1, - aux_sym_type_parameters_repeat1, - [128801] = 4, + STATE(4035), 1, + aux_sym_strictly_expression_list_repeat1, + [128250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(7157), 1, - anon_sym_RPAREN, - STATE(3924), 1, - aux_sym_type_parameter_list_repeat1, - [128814] = 4, + ACTIONS(7287), 1, + anon_sym_LBRACE, + STATE(3936), 1, + aux_sym_match_expression_list_repeat1, + [128263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7159), 1, + ACTIONS(7289), 1, anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [128827] = 4, + STATE(4027), 1, + aux_sym_type_parameter_list_repeat1, + [128276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + STATE(2779), 1, + sym_type_initializer_body, + ACTIONS(7291), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7161), 1, - anon_sym_RPAREN, - STATE(3924), 1, - aux_sym_type_parameter_list_repeat1, - [128840] = 4, + [128287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(5203), 1, + anon_sym_LBRACE, + ACTIONS(5205), 1, anon_sym_COMMA, - ACTIONS(7163), 1, - anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [128853] = 4, + STATE(3945), 1, + aux_sym_match_expression_list_repeat1, + [128300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7165), 1, + ACTIONS(5385), 1, + anon_sym_LBRACE, + ACTIONS(7293), 1, anon_sym_COMMA, - ACTIONS(7167), 1, - anon_sym_RPAREN, - STATE(3879), 1, - aux_sym_type_parameters_repeat1, - [128866] = 4, + STATE(4070), 1, + aux_sym_match_expression_list_repeat1, + [128313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(7169), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [128879] = 4, + ACTIONS(7296), 1, + anon_sym_RPAREN, + STATE(4031), 1, + aux_sym_parameter_list_repeat1, + [128326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7171), 1, + ACTIONS(7298), 1, anon_sym_RPAREN, - STATE(4090), 1, + STATE(4007), 1, aux_sym_parameter_list_repeat1, - [128892] = 4, - ACTIONS(493), 1, + [128339] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7173), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7175), 1, - sym___single_quote, - STATE(4010), 1, - aux_sym_raw_string_literal_repeat1, - [128905] = 4, + ACTIONS(6931), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7300), 1, + sym___double_quote, + STATE(3997), 1, + aux_sym_raw_string_literal_repeat2, + [128352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7177), 1, + ACTIONS(7302), 1, anon_sym_RBRACK, - STATE(4050), 1, + STATE(4091), 1, aux_sym_type_parameters_repeat1, - [128918] = 4, + [128365] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7300), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [128378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7179), 1, + ACTIONS(7304), 1, anon_sym_RPAREN, - STATE(4086), 1, + STATE(4019), 1, aux_sym_type_parameter_list_repeat1, - [128931] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7175), 1, - sym___double_quote, - ACTIONS(7181), 1, - aux_sym_raw_string_literal_token2, - STATE(4011), 1, - aux_sym_raw_string_literal_repeat2, - [128944] = 4, + [128391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7183), 1, - anon_sym_COMMA, - ACTIONS(7185), 1, + ACTIONS(5659), 1, anon_sym_RPAREN, - STATE(4078), 1, + ACTIONS(7306), 1, + anon_sym_COMMA, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [128957] = 4, + [128404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(7308), 1, anon_sym_COMMA, - ACTIONS(7187), 1, - anon_sym_RBRACK, - STATE(4082), 1, + ACTIONS(7310), 1, + anon_sym_RPAREN, + STATE(3922), 1, aux_sym_type_parameters_repeat1, - [128970] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7189), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7192), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [128983] = 4, + [128417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6846), 1, - sym_identifier, - ACTIONS(7194), 1, + ACTIONS(7312), 3, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(1554), 1, - sym_const_definition, - [128996] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7155), 1, - sym___single_quote, - ACTIONS(7196), 1, - aux_sym_raw_string_literal_token1, - STATE(4024), 1, - aux_sym_raw_string_literal_repeat1, - [129009] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6764), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7198), 1, - sym___double_quote, - STATE(4073), 1, - aux_sym_raw_string_literal_repeat2, - [129022] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(7200), 1, - anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [129035] = 4, + anon_sym_EQ, + [128426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7202), 1, + ACTIONS(7314), 1, anon_sym_RPAREN, - STATE(3923), 1, + STATE(4007), 1, aux_sym_parameter_list_repeat1, - [129048] = 4, + [128439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7204), 1, + ACTIONS(7316), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4019), 1, aux_sym_type_parameter_list_repeat1, - [129061] = 4, - ACTIONS(493), 1, + [128452] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7206), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7209), 1, + ACTIONS(7318), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7320), 1, + sym___single_quote, + STATE(4054), 1, + aux_sym_raw_string_literal_repeat1, + [128465] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7320), 1, sym___double_quote, - STATE(4073), 1, + ACTIONS(7322), 1, + aux_sym_raw_string_literal_token2, + STATE(4059), 1, aux_sym_raw_string_literal_repeat2, - [129074] = 4, + [128478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(7324), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [128487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7326), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [128496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6145), 1, + anon_sym_RBRACK, + ACTIONS(7328), 1, anon_sym_COMMA, - ACTIONS(7211), 1, - anon_sym_RPAREN, - STATE(4055), 1, - aux_sym_type_parameter_list_repeat1, - [129087] = 4, + STATE(4005), 1, + aux_sym_capture_list_repeat1, + [128509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7213), 1, - anon_sym_RPAREN, - STATE(3924), 1, - aux_sym_type_parameter_list_repeat1, - [129100] = 4, + ACTIONS(7330), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [128522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(4550), 1, - anon_sym_COLON_EQ, - STATE(3900), 1, - aux_sym_identifier_list_repeat1, - [129113] = 4, + ACTIONS(7332), 1, + anon_sym_RPAREN, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [128535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7215), 1, + ACTIONS(7334), 1, anon_sym_RPAREN, - STATE(4056), 1, + STATE(4007), 1, aux_sym_parameter_list_repeat1, - [129126] = 4, + [128548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 1, + ACTIONS(5605), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7336), 1, anon_sym_COMMA, - STATE(3731), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [129139] = 4, - ACTIONS(493), 1, - sym_comment, - ACTIONS(6760), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7198), 1, - sym___single_quote, - STATE(4066), 1, - aux_sym_raw_string_literal_repeat1, - [129152] = 4, + [128561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 1, - sym_identifier, - ACTIONS(6469), 1, - anon_sym_mut, - STATE(4363), 1, - sym_var_definition, - [129165] = 4, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(7338), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [128574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7219), 1, + ACTIONS(7340), 1, anon_sym_RPAREN, - STATE(4028), 1, + STATE(4110), 1, aux_sym_parameter_list_repeat1, - [129178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(7221), 1, - anon_sym_RBRACK, - STATE(3731), 1, - aux_sym_type_parameters_repeat1, - [129191] = 4, - ACTIONS(3), 1, + [128587] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(7223), 1, - sym_identifier, - ACTIONS(7225), 1, - anon_sym_LBRACE, - STATE(1958), 1, - sym__content_block, - [129204] = 4, + ACTIONS(6941), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7342), 1, + sym___single_quote, + STATE(3998), 1, + aux_sym_raw_string_literal_repeat1, + [128600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6481), 1, + ACTIONS(6616), 1, anon_sym_COMMA, - ACTIONS(7227), 1, + ACTIONS(7344), 1, anon_sym_RBRACK, - STATE(4023), 1, + STATE(4087), 1, aux_sym_type_parameters_repeat1, - [129217] = 4, - ACTIONS(3), 1, + [128613] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_COMMA, - ACTIONS(7229), 1, - anon_sym_RBRACK, - STATE(3982), 1, - aux_sym_type_parameters_repeat1, - [129230] = 4, + ACTIONS(7346), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7348), 1, + sym___single_quote, + STATE(4040), 1, + aux_sym_raw_string_literal_repeat1, + [128626] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7348), 1, + sym___double_quote, + ACTIONS(7350), 1, + aux_sym_raw_string_literal_token2, + STATE(4041), 1, + aux_sym_raw_string_literal_repeat2, + [128639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6736), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7231), 1, + ACTIONS(7352), 1, anon_sym_RPAREN, - STATE(3924), 1, + STATE(4113), 1, aux_sym_type_parameter_list_repeat1, - [129243] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6992), 1, - anon_sym_COMMA, - ACTIONS(7233), 1, - anon_sym_in, - STATE(3901), 1, - aux_sym_var_definition_list_repeat1, - [129256] = 4, + [128652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7235), 1, + ACTIONS(7354), 1, sym_identifier, - ACTIONS(7237), 1, + ACTIONS(7356), 1, anon_sym_LBRACE, - STATE(1747), 1, + STATE(2610), 1, sym__content_block, - [129269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, - anon_sym_QMARK, - ACTIONS(5081), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [129280] = 4, + [128665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 1, + ACTIONS(6909), 1, anon_sym_COMMA, - ACTIONS(7241), 1, + ACTIONS(7358), 1, anon_sym_RPAREN, - STATE(3923), 1, - aux_sym_parameter_list_repeat1, - [129293] = 2, + STATE(4088), 1, + aux_sym_type_parameter_list_repeat1, + [128678] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6931), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7342), 1, + sym___double_quote, + STATE(3997), 1, + aux_sym_raw_string_literal_repeat2, + [128691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_QMARK, - [129302] = 4, + ACTIONS(7360), 1, + sym_identifier, + ACTIONS(7362), 1, + anon_sym_LBRACE, + STATE(979), 1, + sym__content_block, + [128704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(6913), 1, anon_sym_COMMA, - ACTIONS(7245), 1, + ACTIONS(7364), 1, anon_sym_RPAREN, - STATE(4058), 1, - aux_sym_type_parameters_repeat1, - [129315] = 4, + STATE(4089), 1, + aux_sym_parameter_list_repeat1, + [128717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6846), 1, + ACTIONS(7366), 1, sym_identifier, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(1576), 1, - sym_const_definition, - [129328] = 4, + ACTIONS(7368), 1, + anon_sym_LBRACE, + STATE(1798), 1, + sym__content_block, + [128730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 1, + ACTIONS(5607), 1, anon_sym_RPAREN, - ACTIONS(7249), 1, + ACTIONS(7370), 1, anon_sym_COMMA, - STATE(3731), 1, + STATE(3750), 1, aux_sym_type_parameters_repeat1, - [129341] = 4, + [128743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7251), 1, - anon_sym_COMMA, - ACTIONS(7253), 1, - anon_sym_RPAREN, - STATE(3884), 1, - aux_sym_type_parameters_repeat1, - [129354] = 4, + ACTIONS(7372), 1, + anon_sym_SEMI, + ACTIONS(7375), 1, + anon_sym_RBRACK, + STATE(4105), 1, + aux_sym_attribute_repeat1, + [128756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, + ACTIONS(6676), 3, anon_sym_COMMA, - ACTIONS(7257), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_type_parameters_repeat1, - [129367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7259), 1, - anon_sym_LPAREN, - STATE(1758), 1, - sym_argument_list, - [129377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6538), 1, - anon_sym_LBRACE, - STATE(1582), 1, - sym__enum_body, - [129387] = 3, + anon_sym_GT, + anon_sym_RBRACK, + [128765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 1, + ACTIONS(6065), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(3763), 1, - sym_label_reference, - [129397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7263), 1, - anon_sym_LBRACE, - STATE(1841), 1, - sym_type_initializer_body, - [129407] = 3, + [128774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(7377), 1, + sym_identifier, + ACTIONS(7379), 1, anon_sym_LBRACE, - STATE(3761), 1, - sym_block, - [129417] = 3, + STATE(2049), 1, + sym__content_block, + [128787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - anon_sym_LBRACE, - STATE(1721), 1, - sym_block, - [129427] = 3, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(7381), 1, + anon_sym_RBRACK, + STATE(4053), 1, + aux_sym_type_parameters_repeat1, + [128800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 1, - anon_sym_LPAREN, - STATE(1684), 1, - sym_special_argument_list, - [129437] = 3, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(7383), 1, + anon_sym_RPAREN, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [128813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7267), 1, + ACTIONS(7385), 1, + sym_identifier, + ACTIONS(7387), 1, anon_sym_LBRACE, - STATE(1258), 1, + STATE(2382), 1, sym__struct_body, - [129447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7269), 1, - sym_identifier, - STATE(2421), 1, - sym_type_reference_expression, - [129457] = 3, + [128826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_LBRACE, - STATE(2537), 1, - sym_block, - [129467] = 3, + ACTIONS(6616), 1, + anon_sym_COMMA, + ACTIONS(7389), 1, + anon_sym_RBRACK, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [128839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1956), 1, - sym_block, - [129477] = 3, + ACTIONS(6909), 1, + anon_sym_COMMA, + ACTIONS(7391), 1, + anon_sym_RPAREN, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [128852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(7393), 3, anon_sym_LBRACE, - STATE(2675), 1, - sym_type_initializer_body, - [129487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7271), 1, anon_sym_LPAREN, - STATE(1048), 1, - sym_argument_list, - [129497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6852), 1, - anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [129507] = 3, + anon_sym_EQ, + [128861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_LBRACE, - STATE(1841), 1, - sym_type_initializer_body, - [129517] = 3, + ACTIONS(3379), 1, + anon_sym_SEMI, + ACTIONS(5157), 1, + anon_sym_COMMA, + STATE(4065), 1, + aux_sym_strictly_expression_list_repeat1, + [128874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2197), 1, - sym__struct_body, - [129527] = 3, + ACTIONS(3949), 1, + anon_sym_SEMI, + ACTIONS(5157), 1, + anon_sym_COMMA, + STATE(4035), 1, + aux_sym_strictly_expression_list_repeat1, + [128887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 1, + ACTIONS(6967), 1, sym_identifier, - STATE(1703), 1, - sym_type_reference_expression, - [129537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1887), 1, - sym_block, - [129547] = 3, + ACTIONS(7395), 1, + anon_sym_LPAREN, + STATE(1582), 1, + sym_const_definition, + [128900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(2057), 1, - sym_block, - [129557] = 3, + ACTIONS(6909), 1, + anon_sym_COMMA, + ACTIONS(7397), 1, + anon_sym_RPAREN, + STATE(4019), 1, + aux_sym_type_parameter_list_repeat1, + [128913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 1, - anon_sym_LBRACE, - STATE(2060), 1, - sym__content_block, - [129567] = 3, + ACTIONS(6913), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_RPAREN, + STATE(4007), 1, + aux_sym_parameter_list_repeat1, + [128926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_type_initializer_body, - [129577] = 3, + ACTIONS(7401), 1, + anon_sym_COMMA, + ACTIONS(7403), 1, + anon_sym_RPAREN, + STATE(4055), 1, + aux_sym_type_parameters_repeat1, + [128939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 1, - sym_identifier, - STATE(2280), 1, - sym_type_reference_expression, - [129587] = 3, + ACTIONS(7405), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [128948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_LBRACE, - STATE(1050), 1, - sym_block, - [129597] = 3, + ACTIONS(7407), 1, + anon_sym_COMMA, + ACTIONS(7409), 1, + anon_sym_RPAREN, + STATE(4090), 1, + aux_sym_type_parameters_repeat1, + [128961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, - anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [129607] = 3, + ACTIONS(7411), 1, + anon_sym_COMMA, + ACTIONS(7413), 1, + anon_sym_RPAREN, + STATE(4000), 1, + aux_sym_type_parameters_repeat1, + [128974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1437), 1, - sym__struct_body, - [129617] = 2, + ACTIONS(2912), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_QMARK, + [128983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 2, + ACTIONS(6616), 1, anon_sym_COMMA, - anon_sym_in, - [129625] = 3, + ACTIONS(7415), 1, + anon_sym_RBRACK, + STATE(4112), 1, + aux_sym_type_parameters_repeat1, + [128996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LBRACE, - STATE(1841), 1, - sym_type_initializer_body, - [129635] = 3, + STATE(4000), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(7417), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_LBRACE, - STATE(1051), 1, - sym_block, - [129645] = 3, + ACTIONS(7419), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [129016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1744), 1, - sym_block, - [129655] = 3, + ACTIONS(6909), 1, + anon_sym_COMMA, + ACTIONS(7421), 1, + anon_sym_RPAREN, + STATE(4118), 1, + aux_sym_type_parameter_list_repeat1, + [129029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, + ACTIONS(7423), 1, anon_sym_COMMA, - ACTIONS(7287), 1, + ACTIONS(7425), 1, anon_sym_RPAREN, - [129665] = 3, + STATE(4029), 1, + aux_sym_type_parameters_repeat1, + [129042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 1, - anon_sym_COMMA, - ACTIONS(7291), 1, + ACTIONS(5615), 1, anon_sym_RPAREN, - [129675] = 3, + ACTIONS(7427), 1, + anon_sym_COMMA, + STATE(3750), 1, + aux_sym_type_parameters_repeat1, + [129055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [129685] = 3, + STATE(1987), 1, + sym_type_initializer_body, + [129065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2788), 1, - sym_block, - [129695] = 3, + ACTIONS(6798), 1, + sym_identifier, + STATE(1374), 1, + sym_reference_expression, + [129075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7263), 1, - anon_sym_LBRACE, - STATE(1841), 1, - sym_type_initializer_body, - [129705] = 3, + ACTIONS(7156), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [129083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(2579), 1, + STATE(2102), 1, sym_block, - [129715] = 3, + [129093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(3243), 1, anon_sym_LBRACE, - STATE(2580), 1, - sym_block, - [129725] = 3, + STATE(2071), 1, + sym_type_initializer_body, + [129103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(1801), 1, - sym_block, - [129735] = 3, + STATE(2779), 1, + sym_type_initializer_body, + [129113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 1, + ACTIONS(6846), 1, sym_identifier, - STATE(1256), 1, + STATE(918), 1, sym_reference_expression, - [129745] = 3, + [129123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(7431), 1, anon_sym_LBRACE, - STATE(2162), 1, - sym_block, - [129755] = 3, + STATE(2623), 1, + sym__struct_body, + [129133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 1, + ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(1755), 1, + STATE(2071), 1, sym_type_initializer_body, - [129765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1845), 1, - sym_block, - [129775] = 3, + [129143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(3212), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(2071), 1, sym_type_initializer_body, - [129785] = 3, + [129153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, - anon_sym_LBRACE, - STATE(4423), 1, - sym_block, - [129795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_COMMA, - ACTIONS(7301), 1, - anon_sym_RPAREN, - [129805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4462), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(1720), 1, + STATE(2874), 1, sym_block, - [129815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7303), 1, - anon_sym_COMMA, - ACTIONS(7305), 1, - anon_sym_RPAREN, - [129825] = 3, + [129163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_type_initializer_body, - [129835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7307), 1, - anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [129845] = 3, + ACTIONS(6854), 1, + sym_identifier, + STATE(1781), 1, + sym_reference_expression, + [129173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, + ACTIONS(7435), 1, sym_identifier, - STATE(1111), 1, + STATE(2287), 1, sym_type_reference_expression, - [129855] = 3, + [129183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 1, + ACTIONS(7437), 1, anon_sym_LPAREN, - STATE(2588), 1, - sym_argument_list, - [129865] = 3, + STATE(1789), 1, + sym_special_argument_list, + [129193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(7379), 1, anon_sym_LBRACE, - STATE(1389), 1, - sym_block, - [129875] = 3, + STATE(2111), 1, + sym__content_block, + [129203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(1507), 1, - sym__interface_body, - [129885] = 3, + STATE(2920), 1, + sym_block, + [129213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(7235), 1, anon_sym_LBRACE, - STATE(2416), 1, - sym_block, - [129895] = 3, + STATE(2943), 1, + sym__content_block, + [129223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(2816), 1, + STATE(2053), 1, sym_block, - [129905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7313), 1, - anon_sym_LPAREN, - STATE(894), 1, - sym_argument_list, - [129915] = 3, + [129233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(2817), 1, + STATE(2010), 1, sym_block, - [129925] = 3, + [129243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(2488), 1, + STATE(1854), 1, sym_block, - [129935] = 2, + [129253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [129943] = 2, + ACTIONS(6739), 1, + sym_identifier, + STATE(2626), 1, + sym_reference_expression, + [129263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [129951] = 3, + ACTIONS(6680), 1, + sym_identifier, + STATE(4106), 1, + sym_generic_parameter, + [129273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 1, + ACTIONS(7439), 1, anon_sym_LBRACE, - STATE(2353), 1, + STATE(2382), 1, sym__struct_body, - [129961] = 3, + [129283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(1751), 1, + STATE(1796), 1, sym_block, - [129971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_LBRACE, - STATE(1359), 1, - sym_type_initializer_body, - [129981] = 3, + [129293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 1, + ACTIONS(7441), 1, anon_sym_LBRACE, - STATE(1755), 1, - sym_type_initializer_body, - [129991] = 3, + STATE(2382), 1, + sym__struct_body, + [129303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6856), 1, + ACTIONS(7443), 1, anon_sym_LBRACE, - STATE(1037), 1, - sym__content_block, - [130001] = 3, + STATE(2216), 1, + sym__struct_body, + [129313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, - sym_identifier, - STATE(1903), 1, - sym_type_reference_expression, - [130011] = 3, + ACTIONS(7445), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [129321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_LPAREN, - STATE(2829), 1, - sym_argument_list, - [130021] = 3, + ACTIONS(7447), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7319), 1, + ACTIONS(7449), 1, anon_sym_LBRACE, - STATE(2733), 1, + STATE(2382), 1, sym__struct_body, - [130031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_type_initializer_body, - [130041] = 3, + [129339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(1175), 1, - sym_block, - [130051] = 3, + ACTIONS(7451), 1, + anon_sym_LPAREN, + STATE(897), 1, + sym_special_argument_list, + [129349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 1, - sym_identifier, - ACTIONS(7321), 1, - anon_sym_volatile, - [130061] = 3, + ACTIONS(7453), 1, + anon_sym_LBRACE, + STATE(2382), 1, + sym__struct_body, + [129359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - STATE(869), 1, + STATE(975), 1, sym_block, - [130071] = 3, + [129369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - sym_identifier, - STATE(2764), 1, - sym_type_reference_expression, - [130081] = 3, + ACTIONS(7375), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [129377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(1631), 1, + STATE(2133), 1, sym_block, - [130091] = 2, + [129387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1774), 2, - anon_sym_SEMI, + ACTIONS(7455), 1, anon_sym_LBRACE, - [130099] = 3, + STATE(2382), 1, + sym__struct_body, + [129397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(7457), 1, anon_sym_LBRACE, - STATE(2835), 1, - sym_block, - [130109] = 3, + STATE(2382), 1, + sym__struct_body, + [129407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(1737), 1, + STATE(3814), 1, sym_block, - [130119] = 3, + [129417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 1, - anon_sym_LBRACE, - STATE(1735), 1, - sym__content_block, - [130129] = 3, + ACTIONS(7459), 1, + sym_identifier, + STATE(3825), 1, + sym_label_reference, + [129427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(7461), 1, anon_sym_LBRACE, - STATE(1036), 1, - sym_block, - [130139] = 3, + STATE(2382), 1, + sym__struct_body, + [129437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6998), 1, - anon_sym_LBRACE, - STATE(2538), 1, - sym__content_block, - [130149] = 3, + ACTIONS(7463), 1, + anon_sym_COMMA, + ACTIONS(7465), 1, + anon_sym_RPAREN, + [129447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4646), 1, anon_sym_LBRACE, - STATE(985), 1, + STATE(1570), 1, sym_block, - [130159] = 3, + [129457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - STATE(1031), 1, - sym_type_initializer_body, - [130169] = 3, + STATE(2739), 1, + sym__struct_body, + [129467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - STATE(950), 1, - sym_type_initializer_body, - [130179] = 3, + STATE(924), 1, + sym_block, + [129477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(1826), 1, + STATE(2048), 1, sym_block, - [130189] = 3, + [129487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(7469), 1, anon_sym_LBRACE, - STATE(2687), 1, - sym__content_block, - [130199] = 3, + STATE(2382), 1, + sym__struct_body, + [129497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6538), 1, - anon_sym_LBRACE, - STATE(1514), 1, - sym__enum_body, - [130209] = 3, + ACTIONS(7471), 1, + sym_identifier, + STATE(1592), 1, + sym_label_reference, + [129507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(7473), 1, + sym_identifier, + STATE(2770), 1, + sym_type_reference_expression, + [129517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(2686), 1, + STATE(2016), 1, sym_block, - [130219] = 3, + [129527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 1, - anon_sym_RBRACE, - STATE(3793), 1, - sym___rcbr, - [130229] = 3, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(2015), 1, + sym_block, + [129537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7325), 1, + ACTIONS(7475), 1, anon_sym_LPAREN, - STATE(1824), 1, + STATE(2616), 1, sym_special_argument_list, - [130239] = 3, + [129547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - anon_sym_LBRACE, - STATE(3797), 1, - sym_block, - [130249] = 3, + ACTIONS(7477), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [129555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(3780), 1, + STATE(2611), 1, sym_block, - [130259] = 3, + [129565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(7479), 1, anon_sym_LBRACE, - STATE(2617), 1, + STATE(2202), 1, sym_block, - [130269] = 3, + [129575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - sym_identifier, - STATE(1822), 1, - sym_reference_expression, - [130279] = 3, + ACTIONS(4654), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_argument_list, + [129585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 1, + ACTIONS(7481), 1, anon_sym_LBRACE, - STATE(3782), 1, - sym__content_block, - [130289] = 3, + STATE(2382), 1, + sym__struct_body, + [129595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_LBRACE, + STATE(2382), 1, + sym__struct_body, + [129605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(7485), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(2587), 1, sym_type_initializer_body, - [130299] = 3, + [129615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(7487), 1, sym_identifier, - STATE(1327), 1, - sym_reference_expression, - [130309] = 3, + STATE(1337), 1, + sym_type_reference_expression, + [129625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(6723), 1, anon_sym_LBRACE, - STATE(2536), 1, - sym_block, - [130319] = 3, + STATE(1549), 1, + sym__enum_body, + [129635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 1, - anon_sym_LPAREN, - STATE(1334), 1, - sym_special_argument_list, - [130329] = 3, + ACTIONS(7489), 1, + sym_identifier, + STATE(2530), 1, + sym_type_reference_expression, + [129645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(7479), 1, anon_sym_LBRACE, - STATE(1018), 1, + STATE(2195), 1, sym_block, - [130339] = 3, + [129655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(3436), 1, - sym__struct_body, - [130349] = 3, + ACTIONS(7491), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [129663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3196), 1, + anon_sym_COMMA, + ACTIONS(7493), 1, + anon_sym_RPAREN, + [129673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_LPAREN, + STATE(2006), 1, + sym_argument_list, + [129683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7387), 1, anon_sym_LBRACE, - STATE(1809), 1, + STATE(2382), 1, sym__struct_body, - [130359] = 3, + [129693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(4135), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(953), 1, - sym_block, - [130369] = 3, + [129701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7335), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [130379] = 3, + STATE(2704), 1, + sym_block, + [129711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(1270), 1, + STATE(1717), 1, sym_block, - [130389] = 3, + [129721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 1, - sym_identifier, - STATE(2082), 1, - sym_type_reference_expression, - [130399] = 2, + ACTIONS(7495), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130407] = 3, + ACTIONS(5033), 1, + anon_sym_LBRACE, + STATE(2003), 1, + sym_block, + [129739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(3243), 1, anon_sym_LBRACE, - STATE(2064), 1, - sym_block, - [130417] = 3, + STATE(1721), 1, + sym_type_initializer_body, + [129749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(1691), 1, + STATE(2145), 1, sym_block, - [130427] = 3, + [129759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 1, + ACTIONS(5385), 2, anon_sym_LBRACE, - STATE(2005), 1, - sym_type_initializer_body, - [130437] = 3, + anon_sym_COMMA, + [129767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(950), 1, - sym_type_initializer_body, - [130447] = 3, + STATE(1497), 1, + sym__struct_body, + [129777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(1518), 1, + STATE(1545), 1, sym__struct_body, - [130457] = 3, + [129787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(2711), 1, + STATE(2146), 1, sym_block, - [130467] = 3, + [129797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 1, - sym_identifier, - STATE(1425), 1, - sym_type_reference_expression, - [130477] = 3, + ACTIONS(5031), 1, + anon_sym_LBRACE, + STATE(2579), 1, + sym_block, + [129807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7343), 1, - anon_sym_LPAREN, - STATE(2731), 1, - sym_special_argument_list, - [130487] = 3, + ACTIONS(4131), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [129815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(7245), 1, anon_sym_LBRACE, - STATE(1069), 1, - sym_block, - [130497] = 3, + STATE(1992), 1, + sym__content_block, + [129825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(7497), 1, anon_sym_LBRACE, - STATE(2366), 1, - sym_block, - [130507] = 3, + STATE(1721), 1, + sym_type_initializer_body, + [129835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(7499), 2, anon_sym_LBRACE, - STATE(2406), 1, - sym_block, - [130517] = 3, + anon_sym_COMMA, + [129843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(1749), 1, + STATE(1989), 1, sym_block, - [130527] = 3, + [129853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, - anon_sym_RBRACE, - ACTIONS(7347), 1, - aux_sym_format_specifier_token1, - [130537] = 3, + ACTIONS(3196), 1, + anon_sym_COMMA, + ACTIONS(7501), 1, + anon_sym_RPAREN, + [129863] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7503), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3243), 1, anon_sym_LBRACE, - STATE(2484), 1, + STATE(2587), 1, sym_type_initializer_body, - [130547] = 3, + [129881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 1, - sym_identifier, - STATE(4089), 1, - sym_reference_expression, - [130557] = 3, + ACTIONS(7505), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 1, + ACTIONS(3212), 1, anon_sym_LBRACE, - STATE(1244), 1, + STATE(1721), 1, sym_type_initializer_body, - [130567] = 3, + [129899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, - anon_sym_RBRACE, - ACTIONS(7355), 1, - aux_sym_format_specifier_token1, - [130577] = 3, + ACTIONS(4598), 1, + anon_sym_LBRACE, + STATE(1668), 1, + sym_block, + [129909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(1398), 1, + STATE(1902), 1, sym_block, - [130587] = 3, + [129919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_LPAREN, - STATE(2058), 1, - sym_special_argument_list, - [130597] = 3, + ACTIONS(7507), 1, + anon_sym_LBRACE, + STATE(873), 1, + sym_type_initializer_body, + [129929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6707), 2, + anon_sym_RPAREN, + sym_identifier, + [129937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(1558), 1, - sym__content_block, - [130607] = 3, + STATE(1730), 1, + sym_block, + [129947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(3212), 1, anon_sym_LBRACE, - STATE(2484), 1, + STATE(1987), 1, sym_type_initializer_body, - [130617] = 3, + [129957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5487), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + [129965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7363), 1, + ACTIONS(7509), 1, anon_sym_LBRACE, - STATE(1087), 1, + STATE(1094), 1, sym__struct_body, - [130627] = 3, + [129975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(1386), 1, - sym_block, - [130637] = 3, + STATE(1987), 1, + sym_type_initializer_body, + [129985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 1, - sym_identifier, - STATE(2724), 1, - sym_reference_expression, - [130647] = 3, + ACTIONS(7511), 1, + anon_sym_COMMA, + ACTIONS(7513), 1, + anon_sym_RPAREN, + [129995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, + ACTIONS(7368), 1, anon_sym_LBRACE, - STATE(1561), 1, - sym_block, - [130657] = 3, + STATE(1731), 1, + sym__content_block, + [130005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [130667] = 3, + STATE(3873), 1, + sym_block, + [130015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6436), 1, + ACTIONS(7485), 1, anon_sym_LBRACE, - STATE(2385), 1, + STATE(2587), 1, sym_type_initializer_body, - [130677] = 3, + [130025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_LBRACE, - STATE(2484), 1, - sym_type_initializer_body, - [130687] = 3, + ACTIONS(6717), 2, + anon_sym_RPAREN, + sym_identifier, + [130033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(7515), 1, anon_sym_LBRACE, - STATE(2893), 1, - sym_block, - [130697] = 3, + STATE(1389), 1, + sym__struct_body, + [130043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(1552), 1, + STATE(3872), 1, sym_block, - [130707] = 3, + [130053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(7368), 1, anon_sym_LBRACE, - STATE(2510), 1, - sym_block, - [130717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6724), 1, - anon_sym_RBRACE, - ACTIONS(6726), 1, - aux_sym_format_specifier_token1, - [130727] = 3, + STATE(3871), 1, + sym__content_block, + [130063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(7517), 1, anon_sym_COMMA, - ACTIONS(7369), 1, + ACTIONS(7519), 1, anon_sym_RPAREN, - [130737] = 2, + [130073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [130745] = 3, + ACTIONS(5021), 1, + anon_sym_LBRACE, + STATE(2851), 1, + sym_block, + [130083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, + ACTIONS(3243), 1, anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [130755] = 2, + STATE(1987), 1, + sym_type_initializer_body, + [130093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 2, + ACTIONS(4598), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [130763] = 3, + STATE(1786), 1, + sym_block, + [130103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1971), 1, sym_block, - [130773] = 2, + [130113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [130781] = 3, + ACTIONS(7259), 1, + anon_sym_RBRACE, + ACTIONS(7261), 1, + aux_sym_format_specifier_token1, + [130123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, + ACTIONS(7521), 1, anon_sym_LBRACE, - STATE(2353), 1, + STATE(2382), 1, sym__struct_body, - [130791] = 3, + [130133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7377), 1, - anon_sym_COMMA, - ACTIONS(7379), 1, - anon_sym_RPAREN, - [130801] = 3, + ACTIONS(7523), 1, + anon_sym_LPAREN, + STATE(1776), 1, + sym_argument_list, + [130143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7381), 1, - anon_sym_COMMA, - ACTIONS(7383), 1, - anon_sym_RPAREN, - [130811] = 3, + ACTIONS(7525), 1, + sym_identifier, + STATE(1459), 1, + sym_type_reference_expression, + [130153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(2484), 1, - sym_type_initializer_body, - [130821] = 3, + STATE(2857), 1, + sym_block, + [130163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(7527), 1, anon_sym_LBRACE, - STATE(1366), 1, - sym_block, - [130831] = 3, + STATE(2935), 1, + sym_type_initializer_body, + [130173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(3212), 1, anon_sym_LBRACE, - STATE(1031), 1, + STATE(2587), 1, sym_type_initializer_body, - [130841] = 3, + [130183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - sym_identifier, - STATE(3928), 1, - sym_generic_parameter, - [130851] = 3, + ACTIONS(7529), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [130191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(1232), 1, + STATE(2945), 1, sym_block, - [130861] = 3, + [130201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(4598), 1, anon_sym_LBRACE, - STATE(1244), 1, - sym_type_initializer_body, - [130871] = 2, + STATE(1714), 1, + sym_block, + [130211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 1, + anon_sym_LBRACE, + STATE(1772), 1, + sym_block, + [130221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7385), 2, + ACTIONS(7531), 1, + sym_identifier, + STATE(1868), 1, + sym_type_reference_expression, + [130231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7533), 1, anon_sym_COMMA, + ACTIONS(7535), 1, anon_sym_RPAREN, - [130879] = 3, + [130241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - sym_identifier, - STATE(1740), 1, - sym_reference_expression, - [130889] = 3, + ACTIONS(7537), 1, + anon_sym_LPAREN, + STATE(2064), 1, + sym_special_argument_list, + [130251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_LBRACE, - STATE(1359), 1, - sym_type_initializer_body, - [130899] = 3, + ACTIONS(7539), 1, + anon_sym_LPAREN, + STATE(2011), 1, + sym_special_argument_list, + [130261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 1, - anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [130909] = 3, + ACTIONS(5051), 1, + anon_sym_LPAREN, + STATE(2864), 1, + sym_argument_list, + [130271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(1584), 1, - sym__interface_body, - [130919] = 3, + STATE(2550), 1, + sym_block, + [130281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(5023), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(1364), 1, sym_block, - [130929] = 3, + [130291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1581), 1, - sym__struct_body, - [130939] = 3, + ACTIONS(6764), 2, + anon_sym_RBRACE, + sym_identifier, + [130299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(1864), 1, + STATE(2880), 1, sym_block, - [130949] = 3, + [130309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7389), 1, + ACTIONS(7356), 1, anon_sym_LBRACE, - STATE(1953), 1, - sym__struct_body, - [130959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4584), 2, - anon_sym_COMMA, - anon_sym_in, - [130967] = 3, + STATE(2549), 1, + sym__content_block, + [130319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(2140), 1, + STATE(2299), 1, sym_block, - [130977] = 3, + [130329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(2524), 1, + STATE(2538), 1, sym_block, - [130987] = 3, + [130339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(5035), 1, anon_sym_LBRACE, - STATE(2139), 1, + STATE(2172), 1, sym_block, - [130997] = 3, + [130349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, + ACTIONS(6816), 1, sym_identifier, - STATE(3842), 1, + STATE(2081), 1, + sym_reference_expression, + [130359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6680), 1, + sym_identifier, + STATE(3860), 1, sym_generic_parameter, - [131007] = 3, + [130369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(7167), 1, anon_sym_LBRACE, - STATE(2363), 1, + STATE(2732), 1, + sym__content_block, + [130379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 1, + anon_sym_LBRACE, + STATE(1747), 1, sym_block, - [131017] = 3, + [130389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - sym_identifier, - STATE(1952), 1, - sym_reference_expression, - [131027] = 3, + ACTIONS(5021), 1, + anon_sym_LBRACE, + STATE(2733), 1, + sym_block, + [130399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 1, + ACTIONS(7541), 1, anon_sym_LPAREN, - STATE(2532), 1, - sym_special_argument_list, - [131037] = 3, + STATE(2534), 1, + sym_argument_list, + [130409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym_LPAREN, - STATE(1957), 1, - sym_special_argument_list, - [131047] = 3, + ACTIONS(6822), 1, + sym_identifier, + STATE(2051), 1, + sym_reference_expression, + [130419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - STATE(1338), 1, + STATE(958), 1, sym_block, - [131057] = 3, + [130429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2258), 1, - sym_block, - [131067] = 3, + ACTIONS(7543), 1, + anon_sym_RBRACE, + ACTIONS(7545), 1, + aux_sym_format_specifier_token1, + [130439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_LPAREN, - STATE(1871), 1, - sym_argument_list, - [131077] = 3, + ACTIONS(3243), 1, + anon_sym_LBRACE, + STATE(873), 1, + sym_type_initializer_body, + [130449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7397), 1, + ACTIONS(7547), 1, sym_identifier, - STATE(1500), 1, - sym_label_reference, - [131087] = 3, + STATE(1121), 1, + sym_type_reference_expression, + [130459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 1, - anon_sym_COLON, - ACTIONS(7399), 1, - anon_sym_mut, - [131097] = 3, + ACTIONS(5021), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_block, + [130469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6586), 1, + ACTIONS(6770), 1, sym_identifier, - STATE(2571), 1, + STATE(1889), 1, sym_reference_expression, - [131107] = 3, + [130479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7401), 1, + ACTIONS(6600), 1, anon_sym_LBRACE, - STATE(1639), 1, - sym__struct_body, - [131117] = 3, + STATE(1550), 1, + sym__interface_body, + [130489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 1, - anon_sym_LBRACE, - STATE(1359), 1, - sym_type_initializer_body, - [131127] = 3, + ACTIONS(7191), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [130497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7405), 1, - sym_identifier, - STATE(1203), 1, - sym_type_reference_expression, - [131137] = 3, + ACTIONS(7163), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [130505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 1, + ACTIONS(7549), 1, + anon_sym_LPAREN, + STATE(1890), 1, + sym_special_argument_list, + [130515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 1, anon_sym_LBRACE, - STATE(1244), 1, + STATE(1721), 1, sym_type_initializer_body, - [131147] = 3, + [130525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(7551), 1, anon_sym_LBRACE, - STATE(957), 1, - sym_block, - [131157] = 3, + STATE(1853), 1, + sym__struct_body, + [130535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 1, - anon_sym_LBRACE, - STATE(1981), 1, - sym_type_initializer_body, - [131167] = 3, + ACTIONS(7553), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [130543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7409), 1, - sym_identifier, - STATE(2585), 1, - sym_type_reference_expression, - [131177] = 3, + ACTIONS(7555), 1, + anon_sym_LBRACE, + STATE(2382), 1, + sym__struct_body, + [130553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_LPAREN, - STATE(2132), 1, - sym_argument_list, - [131187] = 3, + ACTIONS(5011), 1, + anon_sym_LBRACE, + STATE(1892), 1, + sym_block, + [130563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(1700), 1, + STATE(2527), 1, sym_block, - [131197] = 2, + [130573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 2, - anon_sym_RPAREN, + ACTIONS(6802), 1, sym_identifier, - [131205] = 3, + STATE(2426), 1, + sym_reference_expression, + [130583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(7507), 1, anon_sym_LBRACE, - STATE(956), 1, - sym_block, - [131215] = 3, + STATE(873), 1, + sym_type_initializer_body, + [130593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(1875), 1, + STATE(1067), 1, sym_block, - [131225] = 3, + [130603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_LBRACE, - STATE(1512), 1, - sym_block, - [131235] = 3, + ACTIONS(7557), 1, + anon_sym_LPAREN, + STATE(2416), 1, + sym_special_argument_list, + [130613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 1, - anon_sym_COMMA, - ACTIONS(7413), 1, - anon_sym_RPAREN, - [131245] = 3, + ACTIONS(7559), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [130621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - STATE(1287), 1, + STATE(1284), 1, sym_block, - [131255] = 3, + [130631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(3212), 1, anon_sym_LBRACE, - STATE(1244), 1, + STATE(873), 1, sym_type_initializer_body, - [131265] = 3, + [130641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(7433), 1, anon_sym_LBRACE, - STATE(2127), 1, - sym_block, - [131275] = 3, + STATE(2071), 1, + sym_type_initializer_body, + [130651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, - anon_sym_LBRACE, - STATE(1379), 1, - sym_block, - [131285] = 3, + ACTIONS(4847), 1, + sym_identifier, + ACTIONS(7561), 1, + anon_sym_volatile, + [130661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(1850), 1, - sym__content_block, - [131295] = 3, + STATE(2522), 1, + sym_block, + [130671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, - sym_identifier, - STATE(4400), 1, - sym_reference_expression, - [131305] = 2, + ACTIONS(7563), 1, + anon_sym_LBRACE, + STATE(1919), 1, + sym_type_initializer_body, + [130681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6945), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [131313] = 3, + ACTIONS(5013), 1, + anon_sym_LBRACE, + STATE(402), 1, + sym_block, + [130691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - STATE(2175), 1, + STATE(2414), 1, sym_block, - [131323] = 3, + [130701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - STATE(2185), 1, + STATE(875), 1, sym_block, - [131333] = 3, + [130711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, + ACTIONS(7362), 1, anon_sym_LBRACE, - STATE(1381), 1, + STATE(876), 1, sym__content_block, - [131343] = 2, + [130721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 2, + ACTIONS(7565), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [131351] = 3, + ACTIONS(7567), 1, + anon_sym_RPAREN, + [130731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(7569), 1, anon_sym_LBRACE, - STATE(1157), 1, - sym_block, - [131361] = 3, + STATE(1352), 1, + sym_type_initializer_body, + [130741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7417), 1, + ACTIONS(5021), 1, anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [131371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7419), 1, - sym_identifier, - STATE(2042), 1, - sym_type_reference_expression, - [131381] = 2, + STATE(2799), 1, + sym_block, + [130751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6561), 2, - anon_sym_RBRACE, - sym_identifier, - [131389] = 3, + ACTIONS(4771), 2, + anon_sym_COMMA, + anon_sym_in, + [130759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, - anon_sym_LPAREN, - STATE(2283), 1, - sym_argument_list, - [131399] = 3, + ACTIONS(5011), 1, + anon_sym_LBRACE, + STATE(1932), 1, + sym_block, + [130769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(2353), 1, + STATE(921), 1, sym__struct_body, - [131409] = 3, + [130779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(3243), 1, anon_sym_LBRACE, - STATE(878), 1, - sym_block, - [131419] = 3, + STATE(1919), 1, + sym_type_initializer_body, + [130789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(1399), 1, + STATE(2356), 1, sym_block, - [131429] = 3, + [130799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(4646), 1, anon_sym_LBRACE, - STATE(2264), 1, + STATE(1618), 1, sym_block, - [131439] = 3, + [130809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_type_initializer_body, - [131449] = 2, + ACTIONS(7573), 1, + anon_sym_RBRACE, + ACTIONS(7575), 1, + aux_sym_format_specifier_token1, + [130819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6902), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [131457] = 3, + ACTIONS(7577), 1, + anon_sym_LBRACE, + STATE(2382), 1, + sym__struct_body, + [130829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4646), 1, anon_sym_LBRACE, - STATE(1217), 1, + STATE(1530), 1, sym_block, - [131467] = 3, + [130839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 1, + ACTIONS(7579), 1, + anon_sym_COMMA, + ACTIONS(7581), 1, + anon_sym_RPAREN, + [130849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7583), 1, anon_sym_LBRACE, - STATE(1169), 1, + STATE(1531), 1, sym__content_block, - [131477] = 3, + [130859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7425), 1, - anon_sym_COMMA, - ACTIONS(7427), 1, - anon_sym_RPAREN, - [131487] = 3, + ACTIONS(7585), 1, + sym_identifier, + STATE(3990), 1, + sym_reference_expression, + [130869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6830), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(2230), 1, - sym__content_block, - [131497] = 3, + STATE(1137), 1, + sym_block, + [130879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(2173), 1, + STATE(1136), 1, sym_block, - [131507] = 3, + [130889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, - anon_sym_COMMA, - ACTIONS(7429), 1, - anon_sym_RPAREN, - [131517] = 2, + ACTIONS(7587), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym__struct_body, + [130899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7431), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131525] = 2, + ACTIONS(7589), 1, + anon_sym_LPAREN, + STATE(2725), 1, + sym_special_argument_list, + [130909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 2, + ACTIONS(7147), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [131533] = 3, + anon_sym_in, + [130917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(7591), 1, + sym_identifier, + STATE(1794), 1, + sym_type_reference_expression, + [130927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7593), 1, + anon_sym_LPAREN, + STATE(1127), 1, + sym_argument_list, + [130937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(2153), 1, + STATE(1123), 1, sym_block, - [131543] = 2, + [130947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131551] = 3, + ACTIONS(3840), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [130955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, - sym_identifier, - STATE(2349), 1, - sym_reference_expression, - [131561] = 2, + ACTIONS(1856), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [130963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6545), 2, - anon_sym_RPAREN, - sym_identifier, - [131569] = 2, + ACTIONS(5017), 1, + anon_sym_LBRACE, + STATE(2350), 1, + sym_block, + [130973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6880), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131577] = 3, + ACTIONS(5017), 1, + anon_sym_LBRACE, + STATE(2378), 1, + sym_block, + [130983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6913), 1, + ACTIONS(1818), 1, + anon_sym_RBRACE, + STATE(3822), 1, + sym___rcbr, + [130993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7083), 1, anon_sym_LBRACE, - STATE(905), 1, + STATE(2379), 1, sym__content_block, - [131587] = 2, + [131003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7435), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131595] = 3, + ACTIONS(6882), 1, + sym_identifier, + STATE(2767), 1, + sym_reference_expression, + [131013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6949), 1, + ACTIONS(7563), 1, anon_sym_LBRACE, - STATE(2933), 1, - sym__content_block, - [131605] = 2, + STATE(1919), 1, + sym_type_initializer_body, + [131023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131613] = 3, + ACTIONS(3212), 1, + anon_sym_LBRACE, + STATE(1919), 1, + sym_type_initializer_body, + [131033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(7069), 1, anon_sym_LBRACE, - STATE(2074), 1, - sym_block, - [131623] = 3, + STATE(1051), 1, + sym__content_block, + [131043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - STATE(895), 1, + STATE(2395), 1, sym_block, - [131633] = 3, + [131053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(5031), 1, anon_sym_LBRACE, - STATE(2182), 1, - sym_type_initializer_body, - [131643] = 3, + STATE(2567), 1, + sym_block, + [131063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_LPAREN, - STATE(2356), 1, - sym_special_argument_list, - [131653] = 3, + ACTIONS(7595), 2, + anon_sym_COMMA, + anon_sym_in, + [131071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(2888), 1, + STATE(1044), 1, sym_block, - [131663] = 3, + [131081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, + ACTIONS(4879), 1, anon_sym_LPAREN, - STATE(866), 1, - sym_special_argument_list, - [131673] = 3, + STATE(2403), 1, + sym_argument_list, + [131091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [131683] = 2, + STATE(1004), 1, + sym_block, + [131101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131691] = 2, + ACTIONS(7597), 1, + sym_identifier, + STATE(3434), 1, + sym_type_reference_expression, + [131111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [131699] = 3, + ACTIONS(5011), 1, + anon_sym_LBRACE, + STATE(1745), 1, + sym_block, + [131121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(5011), 1, anon_sym_LBRACE, - STATE(1522), 1, - sym__interface_body, - [131709] = 3, + STATE(1936), 1, + sym_block, + [131131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6538), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - STATE(1521), 1, - sym__enum_body, - [131719] = 3, + STATE(904), 1, + sym_block, + [131141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(7479), 1, anon_sym_LBRACE, - STATE(1516), 1, - sym__struct_body, - [131729] = 3, + STATE(2198), 1, + sym_block, + [131151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7449), 1, + ACTIONS(3212), 1, anon_sym_LBRACE, - STATE(2182), 1, + STATE(1045), 1, sym_type_initializer_body, - [131739] = 3, + [131161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - STATE(2364), 1, + STATE(4685), 1, sym_block, - [131749] = 3, + [131171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(7599), 1, anon_sym_LBRACE, - STATE(2793), 1, - sym_block, - [131759] = 3, + STATE(1045), 1, + sym_type_initializer_body, + [131181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, + ACTIONS(7601), 1, anon_sym_LBRACE, - STATE(2081), 1, + STATE(3460), 1, sym__struct_body, - [131769] = 3, + [131191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(7105), 1, anon_sym_LBRACE, - STATE(1534), 1, - sym__interface_body, - [131779] = 3, + STATE(1937), 1, + sym__content_block, + [131201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6538), 1, - anon_sym_LBRACE, - STATE(1547), 1, - sym__enum_body, - [131789] = 3, + ACTIONS(7603), 1, + anon_sym_COMMA, + ACTIONS(7605), 1, + anon_sym_RPAREN, + [131211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(3243), 1, anon_sym_LBRACE, - STATE(1548), 1, - sym__struct_body, - [131799] = 3, + STATE(1045), 1, + sym_type_initializer_body, + [131221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - STATE(2182), 1, - sym_type_initializer_body, - [131809] = 3, + STATE(1038), 1, + sym_block, + [131231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - anon_sym_LBRACE, - STATE(2005), 1, - sym_type_initializer_body, - [131819] = 3, + ACTIONS(7607), 1, + anon_sym_LPAREN, + STATE(2263), 1, + sym_argument_list, + [131241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(7609), 1, + anon_sym_LPAREN, + STATE(908), 1, + sym_argument_list, + [131251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7611), 1, anon_sym_COMMA, - ACTIONS(7453), 1, + ACTIONS(7613), 1, anon_sym_RPAREN, - [131829] = 3, + [131261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - STATE(2178), 1, + STATE(2420), 1, sym_block, - [131839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6664), 1, - sym_identifier, - STATE(2045), 1, - sym_reference_expression, - [131849] = 3, + [131271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, - anon_sym_COMMA, - ACTIONS(7457), 1, - anon_sym_RPAREN, - [131859] = 3, + ACTIONS(7599), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_type_initializer_body, + [131281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - STATE(2005), 1, - sym_type_initializer_body, - [131869] = 2, + STATE(2422), 1, + sym_block, + [131291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7014), 2, + ACTIONS(7615), 1, anon_sym_COMMA, + ACTIONS(7617), 1, anon_sym_RPAREN, - [131877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1961), 1, - sym_block, - [131887] = 3, + [131301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7449), 1, - anon_sym_LBRACE, - STATE(2182), 1, - sym_type_initializer_body, - [131897] = 3, + ACTIONS(7619), 1, + sym_identifier, + STATE(2486), 1, + sym_type_reference_expression, + [131311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4941), 1, + ACTIONS(1936), 1, anon_sym_RBRACE, - STATE(3738), 1, + STATE(3828), 1, sym___rcbr, - [131907] = 3, + [131321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5011), 1, anon_sym_LBRACE, - STATE(1208), 1, + STATE(1946), 1, sym_block, - [131917] = 3, + [131331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, + ACTIONS(5033), 1, anon_sym_LBRACE, - STATE(2552), 1, - sym__struct_body, - [131927] = 3, + STATE(1979), 1, + sym_block, + [131341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - STATE(2010), 1, + STATE(1239), 1, sym_block, - [131937] = 3, + [131351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7461), 1, + ACTIONS(7621), 1, anon_sym_LPAREN, - STATE(1016), 1, + STATE(1122), 1, sym_special_argument_list, - [131947] = 3, + [131361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6866), 1, sym_identifier, - STATE(1015), 1, + STATE(1134), 1, sym_reference_expression, - [131957] = 3, + [131371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7463), 1, + ACTIONS(5015), 1, + anon_sym_LBRACE, + STATE(1238), 1, + sym_block, + [131381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7623), 1, anon_sym_LPAREN, - STATE(1205), 1, + STATE(1929), 1, sym_argument_list, - [131967] = 3, + [131391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_LBRACE, - STATE(2005), 1, - sym_type_initializer_body, - [131977] = 2, + ACTIONS(7625), 1, + sym_identifier, + STATE(1231), 1, + sym_type_reference_expression, + [131401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6826), 2, - anon_sym_COMMA, - anon_sym_in, - [131985] = 3, + ACTIONS(5011), 1, + anon_sym_LBRACE, + STATE(1842), 1, + sym_block, + [131411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5017), 1, anon_sym_LBRACE, - STATE(2171), 1, + STATE(2451), 1, sym_block, - [131995] = 3, + [131421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - STATE(2009), 1, + STATE(1207), 1, sym_block, - [132005] = 3, + [131431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, - anon_sym_LPAREN, - STATE(1264), 1, - sym_special_argument_list, - [132015] = 3, + ACTIONS(6901), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + [131439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_LPAREN, - STATE(2226), 1, - sym_special_argument_list, - [132025] = 3, + ACTIONS(7627), 1, + anon_sym_COMMA, + ACTIONS(7629), 1, + anon_sym_RPAREN, + [131449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 1, - anon_sym_LBRACE, - STATE(1359), 1, - sym_type_initializer_body, - [132035] = 3, + ACTIONS(7631), 1, + anon_sym_COMMA, + ACTIONS(7633), 1, + anon_sym_RPAREN, + [131459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym__struct_body, - [132045] = 3, + ACTIONS(7635), 1, + sym_identifier, + STATE(2139), 1, + sym_type_reference_expression, + [131469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(5011), 1, anon_sym_LBRACE, - STATE(2096), 1, + STATE(1856), 1, sym_block, - [132055] = 3, + [131479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 1, - sym_identifier, - STATE(2232), 1, - sym_reference_expression, - [132065] = 3, + ACTIONS(6600), 1, + anon_sym_LBRACE, + STATE(1524), 1, + sym__interface_body, + [131489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(2159), 1, + STATE(2277), 1, sym_block, - [132075] = 3, + [131499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(2158), 1, + STATE(2276), 1, sym_block, - [132085] = 3, + [131509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(6723), 1, anon_sym_LBRACE, - STATE(2411), 1, - sym_block, - [132095] = 3, + STATE(1613), 1, + sym__enum_body, + [131519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_LPAREN, - STATE(1391), 1, - sym_argument_list, - [132105] = 2, + ACTIONS(6665), 1, + sym_identifier, + STATE(1201), 1, + sym_reference_expression, + [131529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7471), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [132113] = 3, + ACTIONS(7637), 1, + sym_identifier, + STATE(2171), 1, + sym_type_reference_expression, + [131539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(2412), 1, - sym__content_block, - [132123] = 3, + STATE(1609), 1, + sym__struct_body, + [131549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 1, + ACTIONS(5015), 1, + anon_sym_LBRACE, + STATE(1221), 1, + sym_block, + [131559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6854), 1, sym_identifier, - STATE(898), 1, - sym_type_reference_expression, - [132133] = 2, + STATE(3683), 1, + sym_reference_expression, + [131569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6787), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [132141] = 2, + ACTIONS(6659), 1, + sym_identifier, + STATE(3532), 1, + sym_import_name, + [131579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [132149] = 3, + ACTIONS(7639), 1, + anon_sym_LPAREN, + STATE(1229), 1, + sym_argument_list, + [131589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, - anon_sym_LBRACE, - STATE(2353), 1, - sym__struct_body, - [132159] = 3, + ACTIONS(7641), 1, + anon_sym_LPAREN, + STATE(1208), 1, + sym_special_argument_list, + [131599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(395), 1, + STATE(2245), 1, sym_block, - [132169] = 3, + [131609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7479), 1, + ACTIONS(6659), 1, sym_identifier, - STATE(1331), 1, - sym_type_reference_expression, - [132179] = 3, + STATE(3691), 1, + sym_import_name, + [131619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, - anon_sym_LPAREN, - STATE(2003), 1, - sym_argument_list, - [132189] = 3, + ACTIONS(5023), 1, + anon_sym_LBRACE, + STATE(1431), 1, + sym_block, + [131629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - STATE(2000), 1, + STATE(1226), 1, sym_block, - [132199] = 3, + [131639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(6937), 1, anon_sym_LBRACE, - STATE(1909), 1, - sym_block, - [132209] = 3, + STATE(2280), 1, + sym__content_block, + [131649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(1200), 1, + STATE(2241), 1, sym_block, - [132219] = 3, + [131659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(1199), 1, + STATE(2187), 1, sym_block, - [132229] = 3, + [131669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 1, - sym_identifier, - STATE(906), 1, - sym_reference_expression, - [132239] = 3, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(7643), 1, + anon_sym_mut, + [131679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 1, + ACTIONS(7645), 1, + anon_sym_COMMA, + ACTIONS(7647), 1, + anon_sym_RPAREN, + [131689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7649), 1, anon_sym_LBRACE, - STATE(1993), 1, - sym__content_block, - [132249] = 3, + STATE(1275), 1, + sym_type_initializer_body, + [131699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5023), 1, anon_sym_LBRACE, - STATE(1992), 1, + STATE(1405), 1, sym_block, - [132259] = 3, + [131709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 1, - sym_identifier, - STATE(3507), 1, - sym_import_name, - [132269] = 3, + ACTIONS(3212), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_type_initializer_body, + [131719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5013), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_block, + [131729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5013), 1, + anon_sym_LBRACE, + STATE(934), 1, + sym_block, + [131739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5023), 1, anon_sym_LBRACE, - STATE(1837), 1, + STATE(1404), 1, sym_block, - [132279] = 3, + [131749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, + ACTIONS(7651), 1, anon_sym_LBRACE, - STATE(1981), 1, + STATE(2218), 1, sym_type_initializer_body, - [132289] = 3, + [131759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, + ACTIONS(7653), 1, anon_sym_LBRACE, - STATE(2909), 1, - sym_type_initializer_body, - [132299] = 3, + STATE(2088), 1, + sym__struct_body, + [131769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 1, - anon_sym_COMMA, - ACTIONS(7485), 1, - anon_sym_RPAREN, - [132309] = 3, + ACTIONS(3243), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_type_initializer_body, + [131779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(892), 1, + STATE(2238), 1, sym_block, - [132319] = 3, + [131789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, - anon_sym_LBRACE, - STATE(2345), 1, - sym_block, - [132329] = 3, + ACTIONS(6802), 1, + sym_identifier, + STATE(4192), 1, + sym_reference_expression, + [131799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 1, - anon_sym_LBRACE, - STATE(1981), 1, - sym_type_initializer_body, - [132339] = 2, + ACTIONS(7655), 1, + sym_identifier, + STATE(976), 1, + sym_type_reference_expression, + [131809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3742), 1, + anon_sym_LPAREN, + STATE(1397), 1, + sym_argument_list, + [131819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7487), 2, + ACTIONS(7657), 2, anon_sym_COMMA, anon_sym_RBRACK, - [132347] = 3, + [131827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_LPAREN, - STATE(2403), 1, - sym_argument_list, - [132357] = 3, + ACTIONS(5023), 1, + anon_sym_LBRACE, + STATE(1335), 1, + sym_block, + [131837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - STATE(1376), 1, + STATE(1557), 1, sym__struct_body, - [132367] = 3, + [131847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(7651), 1, anon_sym_LBRACE, - STATE(1981), 1, + STATE(2218), 1, sym_type_initializer_body, - [132377] = 3, + [131857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7491), 1, + ACTIONS(7417), 2, anon_sym_COMMA, - ACTIONS(7493), 1, anon_sym_RPAREN, - [132387] = 3, + [131865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - STATE(1988), 1, + STATE(1247), 1, sym_block, - [132397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7495), 1, - sym_identifier, - STATE(3386), 1, - sym_type_reference_expression, - [132407] = 3, + [131875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(3243), 1, anon_sym_LBRACE, - STATE(2297), 1, - sym_block, - [132417] = 3, + STATE(1275), 1, + sym_type_initializer_body, + [131885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - sym_identifier, - STATE(3637), 1, - sym_reference_expression, - [132427] = 3, + ACTIONS(7659), 1, + anon_sym_LBRACE, + STATE(2041), 1, + sym__struct_body, + [131895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 1, - sym_identifier, - STATE(3675), 1, - sym_import_name, - [132437] = 2, + ACTIONS(7174), 1, + anon_sym_LBRACE, + STATE(1379), 1, + sym__content_block, + [131905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [132445] = 3, + ACTIONS(5023), 1, + anon_sym_LBRACE, + STATE(1377), 1, + sym_block, + [131915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(5019), 1, anon_sym_LBRACE, - STATE(1876), 1, + STATE(2234), 1, sym_block, - [132455] = 2, + [131925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, - anon_sym_RBRACE, - [132462] = 2, + ACTIONS(6723), 1, + anon_sym_LBRACE, + STATE(1556), 1, + sym__enum_body, + [131935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, + ACTIONS(6600), 1, anon_sym_LBRACE, - [132469] = 2, + STATE(1555), 1, + sym__interface_body, + [131945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7503), 1, - anon_sym_COLON, - [132476] = 2, + ACTIONS(7661), 1, + anon_sym_LPAREN, + STATE(2239), 1, + sym_special_argument_list, + [131955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7505), 1, + ACTIONS(5023), 1, anon_sym_LBRACE, - [132483] = 2, + STATE(1301), 1, + sym_block, + [131965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7507), 1, - anon_sym_DOT, - [132490] = 2, + ACTIONS(3212), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_type_initializer_body, + [131975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7509), 1, - anon_sym_RBRACE, - [132497] = 2, + ACTIONS(7569), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_type_initializer_body, + [131985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, + ACTIONS(7649), 1, anon_sym_LBRACE, - [132504] = 2, + STATE(1275), 1, + sym_type_initializer_body, + [131995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, + ACTIONS(7663), 1, anon_sym_LBRACE, - [132511] = 2, + STATE(1698), 1, + sym__struct_body, + [132005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5139), 1, + ACTIONS(6604), 1, anon_sym_LBRACE, - [132518] = 2, + STATE(1548), 1, + sym__struct_body, + [132015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 1, + ACTIONS(6723), 1, anon_sym_LBRACE, - [132525] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7517), 1, - aux_sym__content_block_token1, - [132532] = 2, + STATE(1547), 1, + sym__enum_body, + [132025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7519), 1, - anon_sym_RBRACE, - [132539] = 2, - ACTIONS(493), 1, + ACTIONS(3243), 1, + anon_sym_LBRACE, + STATE(1352), 1, + sym_type_initializer_body, + [132035] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7521), 1, - aux_sym__content_block_token1, - [132546] = 2, + ACTIONS(6776), 1, + sym_identifier, + STATE(2243), 1, + sym_reference_expression, + [132045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, - anon_sym_DOT, - [132553] = 2, + ACTIONS(5023), 1, + anon_sym_LBRACE, + STATE(1360), 1, + sym_block, + [132055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, + ACTIONS(6600), 1, anon_sym_LBRACE, - [132560] = 2, + STATE(1546), 1, + sym__interface_body, + [132065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_DOT, - [132567] = 2, + ACTIONS(6610), 1, + anon_sym_LBRACE, + STATE(2369), 1, + sym_type_initializer_body, + [132075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7527), 1, + ACTIONS(3212), 1, anon_sym_LBRACE, - [132574] = 2, + STATE(1275), 1, + sym_type_initializer_body, + [132085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, + ACTIONS(5015), 1, anon_sym_LBRACE, - [132581] = 2, + STATE(1180), 1, + sym_block, + [132095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 1, + ACTIONS(5029), 1, anon_sym_LBRACE, - [132588] = 2, + STATE(1110), 1, + sym_block, + [132105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7529), 1, + ACTIONS(5011), 1, anon_sym_LBRACE, - [132595] = 2, - ACTIONS(493), 1, + STATE(1883), 1, + sym_block, + [132115] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, - aux_sym__content_block_token1, - [132602] = 2, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(1370), 1, + sym_special_argument_list, + [132125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7533), 1, - anon_sym_LBRACE, - [132609] = 2, - ACTIONS(493), 1, + ACTIONS(7667), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [132133] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7535), 1, - aux_sym__content_block_token1, - [132616] = 2, + ACTIONS(7011), 1, + anon_sym_LBRACE, + STATE(1205), 1, + sym__content_block, + [132143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(873), 1, - anon_sym_RBRACE, - [132623] = 2, + ACTIONS(7669), 1, + anon_sym_LBRACE, + [132150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7537), 1, + ACTIONS(7573), 1, anon_sym_RBRACE, - [132630] = 2, + [132157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7539), 1, + ACTIONS(4490), 1, sym_identifier, - [132637] = 2, + [132164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7541), 1, - anon_sym_DOT, - [132644] = 2, + ACTIONS(7671), 1, + anon_sym_RBRACE, + [132171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, - anon_sym_EQ, - [132651] = 2, - ACTIONS(3), 1, + ACTIONS(6963), 1, + anon_sym_RBRACK, + [132178] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7545), 1, - sym_identifier, - [132658] = 2, + ACTIONS(7673), 1, + aux_sym__content_block_token1, + [132185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7547), 1, + ACTIONS(7675), 1, anon_sym_DOT, - [132665] = 2, + [132192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, - anon_sym_RBRACE, - [132672] = 2, + ACTIONS(7677), 1, + sym_int_literal, + [132199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, - anon_sym_PIPE, - [132679] = 2, + ACTIONS(7679), 1, + anon_sym_RBRACE, + [132206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, - anon_sym_RBRACE, - [132686] = 2, + ACTIONS(5329), 1, + anon_sym_LBRACE, + [132213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7553), 1, - anon_sym_COLON, - [132693] = 2, + ACTIONS(7681), 1, + anon_sym_LBRACE, + [132220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, - sym_identifier, - [132700] = 2, + ACTIONS(7683), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [132227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, - anon_sym_LBRACE, - [132707] = 2, + ACTIONS(7685), 1, + anon_sym_RBRACK, + [132234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, + ACTIONS(7687), 1, anon_sym_DOT, - [132714] = 2, - ACTIONS(3), 1, + [132241] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_RBRACE, - [132721] = 2, + ACTIONS(7689), 1, + aux_sym__content_block_token1, + [132248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 1, - anon_sym_RBRACE, - [132728] = 2, + ACTIONS(4791), 1, + anon_sym_COLON, + [132255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 1, + ACTIONS(5345), 1, anon_sym_LBRACE, - [132735] = 2, + [132262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 1, + ACTIONS(7691), 1, anon_sym_LBRACE, - [132742] = 2, - ACTIONS(493), 1, + [132269] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7567), 1, + ACTIONS(7693), 1, aux_sym__content_block_token1, - [132749] = 2, + [132276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 1, - anon_sym_LBRACE, - [132756] = 2, - ACTIONS(493), 1, - sym_comment, - ACTIONS(7571), 1, - aux_sym__content_block_token1, - [132763] = 2, + ACTIONS(7695), 1, + anon_sym_RBRACE, + [132283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(7697), 1, anon_sym_RBRACE, - [132770] = 2, + [132290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, - anon_sym_LBRACE, - [132777] = 2, + ACTIONS(7699), 1, + anon_sym_RBRACE, + [132297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_LBRACE, - [132784] = 2, + ACTIONS(7701), 1, + anon_sym_DOT, + [132304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5197), 1, - anon_sym_LBRACE, - [132791] = 2, + ACTIONS(7703), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [132311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7577), 1, - sym_int_literal, - [132798] = 2, + ACTIONS(7705), 1, + anon_sym_COLON, + [132318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6574), 1, - anon_sym_RBRACE, - [132805] = 2, + ACTIONS(7707), 1, + anon_sym_LBRACE, + [132325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_DOT, - [132812] = 2, + ACTIONS(7709), 1, + anon_sym_EQ, + [132332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_EQ, - [132819] = 2, + ACTIONS(7711), 1, + anon_sym_RBRACK, + [132339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(7713), 1, sym_identifier, - [132826] = 2, + [132346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 1, - sym_identifier, - [132833] = 2, + ACTIONS(7715), 1, + anon_sym_RBRACE, + [132353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7453), 1, - anon_sym_RPAREN, - [132840] = 2, + ACTIONS(7717), 1, + anon_sym_LBRACE, + [132360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 1, + ACTIONS(7719), 1, anon_sym_RBRACE, - [132847] = 2, + [132367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, - sym_identifier, - [132854] = 2, + ACTIONS(7721), 1, + anon_sym_RBRACE, + [132374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(7723), 1, + anon_sym_RBRACE, + [132381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7725), 1, anon_sym_DOT, - [132861] = 2, + [132388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, - sym_identifier, - [132868] = 2, + ACTIONS(7727), 1, + anon_sym_RBRACK, + [132395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, + ACTIONS(7729), 1, anon_sym_RBRACE, - [132875] = 2, + [132402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 1, + ACTIONS(5353), 1, anon_sym_LBRACE, - [132882] = 2, + [132409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(7731), 1, anon_sym_LBRACE, - [132889] = 2, - ACTIONS(493), 1, + [132416] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7733), 1, aux_sym__content_block_token1, - [132896] = 2, + [132423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7601), 1, - anon_sym_LBRACE, - [132903] = 2, + ACTIONS(6840), 1, + anon_sym_RBRACE, + [132430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 1, - sym_int_literal, - [132910] = 2, + ACTIONS(7735), 1, + anon_sym_LBRACE, + [132437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6724), 1, - anon_sym_RBRACE, - [132917] = 2, + ACTIONS(7737), 1, + anon_sym_DOT, + [132444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, + ACTIONS(879), 1, anon_sym_RBRACE, - [132924] = 2, + [132451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 1, - anon_sym_RPAREN, - [132931] = 2, + ACTIONS(7739), 1, + anon_sym_RBRACE, + [132458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_DOT, - [132938] = 2, + ACTIONS(7741), 1, + anon_sym_EQ, + [132465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, - anon_sym_LBRACE, - [132945] = 2, + ACTIONS(7743), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [132472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, - anon_sym_RBRACE, - [132952] = 2, + ACTIONS(7501), 1, + anon_sym_RPAREN, + [132479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7613), 1, + ACTIONS(895), 1, anon_sym_RBRACE, - [132959] = 2, + [132486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 1, + ACTIONS(7745), 1, anon_sym_RBRACE, - [132966] = 2, + [132493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, - sym_int_literal, - [132973] = 2, + ACTIONS(5339), 1, + anon_sym_LBRACE, + [132500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(7747), 1, anon_sym_RBRACE, - [132980] = 2, + [132507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, - anon_sym_RBRACK, - [132987] = 2, - ACTIONS(3), 1, + ACTIONS(7749), 1, + anon_sym_LBRACE, + [132514] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7621), 1, - anon_sym_RBRACE, - [132994] = 2, + ACTIONS(7751), 1, + aux_sym__content_block_token1, + [132521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, - anon_sym_RBRACE, - [133001] = 2, + ACTIONS(5323), 1, + anon_sym_LBRACE, + [132528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, + ACTIONS(7753), 1, anon_sym_DOT, - [133008] = 2, + [132535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, - anon_sym_RBRACK, - [133015] = 2, + ACTIONS(7755), 1, + anon_sym_RBRACE, + [132542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(7757), 1, anon_sym_RBRACE, - [133022] = 2, + [132549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5357), 1, anon_sym_LBRACE, - [133029] = 2, + [132556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - [133036] = 2, - ACTIONS(493), 1, + [132563] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7633), 1, + ACTIONS(7761), 1, aux_sym__content_block_token1, - [133043] = 2, + [132570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, - anon_sym_DOT, - [133050] = 2, + ACTIONS(7763), 1, + anon_sym_LBRACE, + [132577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 1, - anon_sym_RBRACE, - [133057] = 2, + ACTIONS(7765), 1, + anon_sym_RBRACK, + [132584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_RBRACK, - [133064] = 2, + ACTIONS(7767), 1, + anon_sym_LBRACE, + [132591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 1, - sym_identifier, - [133071] = 2, + ACTIONS(7769), 1, + anon_sym_RBRACK, + [132598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, + ACTIONS(891), 1, anon_sym_RBRACE, - [133078] = 2, + [132605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 1, - sym_identifier, - [133085] = 2, + ACTIONS(7771), 1, + anon_sym_RBRACE, + [132612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 1, - anon_sym_RBRACK, - [133092] = 2, + ACTIONS(7773), 1, + sym_identifier, + [132619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, + ACTIONS(7775), 1, anon_sym_RBRACE, - [133099] = 2, + [132626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(943), 1, + ACTIONS(7777), 1, anon_sym_RBRACE, - [133106] = 2, + [132633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(877), 1, anon_sym_RBRACE, - [133113] = 2, + [132640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 1, - anon_sym_LPAREN, - [133120] = 2, + ACTIONS(7779), 1, + anon_sym_RBRACE, + [132647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7781), 1, anon_sym_RBRACE, - [133127] = 2, + [132654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 1, + ACTIONS(7783), 1, anon_sym_RBRACE, - [133134] = 2, + [132661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 1, + ACTIONS(7785), 1, anon_sym_RBRACE, - [133141] = 2, + [132668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7787), 1, anon_sym_RBRACE, - [133148] = 2, + [132675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 1, + ACTIONS(7789), 1, anon_sym_DOT, - [133155] = 2, + [132682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(891), 1, + ACTIONS(913), 1, anon_sym_RBRACE, - [133162] = 2, + [132689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 1, + ACTIONS(7791), 1, anon_sym_RBRACE, - [133169] = 2, + [132696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 1, + ACTIONS(5361), 1, anon_sym_LBRACE, - [133176] = 2, + [132703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7663), 1, + ACTIONS(7793), 1, anon_sym_LBRACE, - [133183] = 2, - ACTIONS(493), 1, + [132710] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7665), 1, + ACTIONS(7795), 1, aux_sym__content_block_token1, - [133190] = 2, + [132717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, + ACTIONS(7797), 1, anon_sym_RBRACE, - [133197] = 2, + [132724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 1, - anon_sym_RBRACK, - [133204] = 2, + ACTIONS(7799), 1, + sym_identifier, + [132731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 1, + ACTIONS(7801), 1, anon_sym_RBRACE, - [133211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7673), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133218] = 2, + [132738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(7803), 1, anon_sym_RBRACE, - [133225] = 2, - ACTIONS(493), 1, + [132745] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - aux_sym_hash_statement_token1, - [133232] = 2, + ACTIONS(7805), 1, + sym_identifier, + [132752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7679), 1, - anon_sym_RBRACE, - [133239] = 2, + ACTIONS(7807), 1, + sym_identifier, + [132759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, - anon_sym_COLON_EQ, - [133246] = 2, + ACTIONS(7809), 1, + anon_sym_RBRACE, + [132766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 1, + ACTIONS(873), 1, anon_sym_RBRACE, - [133253] = 2, + [132773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 1, + ACTIONS(7811), 1, anon_sym_RBRACE, - [133260] = 2, + [132780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, - anon_sym_LBRACE, - [133267] = 2, + ACTIONS(7813), 1, + sym_identifier, + [132787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7683), 1, + ACTIONS(901), 1, anon_sym_RBRACE, - [133274] = 2, + [132794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(927), 1, anon_sym_RBRACE, - [133281] = 2, + [132801] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7815), 1, + aux_sym__content_block_token1, + [132808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7687), 1, + ACTIONS(7817), 1, anon_sym_RBRACE, - [133288] = 2, + [132815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7689), 1, - anon_sym_RBRACK, - [133295] = 2, + ACTIONS(7819), 1, + sym_identifier, + [132822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7821), 1, anon_sym_DOT, - [133302] = 2, + [132829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7693), 1, + ACTIONS(7823), 1, anon_sym_RBRACE, - [133309] = 2, + [132836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - sym_identifier, - [133316] = 2, + ACTIONS(7825), 1, + anon_sym_LBRACE, + [132843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5363), 1, anon_sym_LBRACE, - [133323] = 2, + [132850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, + ACTIONS(7827), 1, anon_sym_LBRACE, - [133330] = 2, - ACTIONS(493), 1, + [132857] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(7829), 1, aux_sym__content_block_token1, - [133337] = 2, + [132864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_RBRACE, - [133344] = 2, + ACTIONS(7831), 1, + sym_identifier, + [132871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_RBRACE, - [133351] = 2, + ACTIONS(7833), 1, + sym_identifier, + [132878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_RBRACE, - [133358] = 2, + ACTIONS(7835), 1, + anon_sym_RBRACK, + [132885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, + ACTIONS(5315), 1, + anon_sym_LBRACE, + [132892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7837), 1, anon_sym_RBRACE, - [133365] = 2, + [132899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_RBRACK, - [133372] = 2, + ACTIONS(7839), 1, + sym_identifier, + [132906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7709), 1, - anon_sym_RBRACK, - [133379] = 2, + ACTIONS(7841), 1, + anon_sym_DOT, + [132913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7711), 1, + ACTIONS(7843), 1, anon_sym_RBRACE, - [133386] = 2, + [132920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7713), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133393] = 2, + ACTIONS(917), 1, + anon_sym_RBRACE, + [132927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7715), 1, - anon_sym_RBRACE, - [133400] = 2, + ACTIONS(7845), 1, + anon_sym_RBRACK, + [132934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, + ACTIONS(7847), 1, anon_sym_RBRACE, - [133407] = 2, + [132941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 1, - anon_sym_COLON, - [133414] = 2, + ACTIONS(7849), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [132948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(7851), 1, anon_sym_RBRACE, - [133421] = 2, + [132955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(7853), 1, anon_sym_RBRACE, - [133428] = 2, + [132962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(7855), 1, anon_sym_RBRACE, - [133435] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7725), 1, - anon_sym_RBRACK, - [133442] = 2, + [132969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(7857), 1, anon_sym_DOT, - [133449] = 2, + [132976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7729), 1, + ACTIONS(7859), 1, anon_sym_RBRACE, - [133456] = 2, + [132983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, + ACTIONS(7861), 1, anon_sym_RBRACE, - [133463] = 2, + [132990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5251), 1, + ACTIONS(5375), 1, anon_sym_LBRACE, - [133470] = 2, + [132997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7863), 1, anon_sym_LBRACE, - [133477] = 2, - ACTIONS(493), 1, + [133004] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(7865), 1, aux_sym__content_block_token1, - [133484] = 2, + [133011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(7867), 1, anon_sym_RBRACE, - [133491] = 2, + [133018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7869), 1, anon_sym_RBRACE, - [133498] = 2, + [133025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(911), 1, anon_sym_RBRACE, - [133505] = 2, + [133032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 1, - anon_sym_RBRACE, - [133512] = 2, + ACTIONS(7871), 1, + anon_sym_RBRACK, + [133039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(7873), 1, anon_sym_RBRACE, - [133519] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4619), 1, - anon_sym_COLON, - [133526] = 2, + [133046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(7875), 1, anon_sym_RBRACE, - [133533] = 2, + [133053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 1, - anon_sym_RBRACK, - [133540] = 2, + ACTIONS(5876), 1, + anon_sym_LBRACE, + [133060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, + ACTIONS(7877), 1, anon_sym_RBRACE, - [133547] = 2, + [133067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(941), 1, anon_sym_RBRACE, - [133554] = 2, + [133074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(889), 1, anon_sym_RBRACE, - [133561] = 2, + [133081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7753), 1, + ACTIONS(7879), 1, + anon_sym_RBRACK, + [133088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7881), 1, anon_sym_DOT, - [133568] = 2, + [133095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_RBRACE, - [133575] = 2, + ACTIONS(7883), 1, + anon_sym_COLON_EQ, + [133102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5395), 1, anon_sym_LBRACE, - [133582] = 2, + [133109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, + ACTIONS(7885), 1, anon_sym_LBRACE, - [133589] = 2, - ACTIONS(493), 1, + [133116] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(7887), 1, aux_sym__content_block_token1, - [133596] = 2, + [133123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 1, + ACTIONS(7889), 1, anon_sym_RBRACE, - [133603] = 2, + [133130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7891), 1, anon_sym_RBRACE, - [133610] = 2, + [133137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4312), 1, - sym_identifier, - [133617] = 2, + ACTIONS(7893), 1, + anon_sym_RBRACE, + [133144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7765), 1, + ACTIONS(7895), 1, anon_sym_DOT, - [133624] = 2, - ACTIONS(493), 1, + [133151] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7767), 1, + ACTIONS(7897), 1, aux_sym__content_block_token1, - [133631] = 2, + [133158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(7899), 1, anon_sym_RBRACE, - [133638] = 2, + [133165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6923), 1, + ACTIONS(7901), 1, anon_sym_RBRACK, - [133645] = 2, + [133172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 1, + ACTIONS(7903), 1, anon_sym_RBRACE, - [133652] = 2, + [133179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 1, + ACTIONS(7905), 1, anon_sym_RBRACK, - [133659] = 2, + [133186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7773), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133666] = 2, + ACTIONS(7907), 1, + anon_sym_RBRACK, + [133193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, - anon_sym_RBRACE, - [133673] = 2, + ACTIONS(7909), 1, + anon_sym_LBRACE, + [133200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133680] = 2, + ACTIONS(7911), 1, + anon_sym_LPAREN, + [133207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, - anon_sym_EQ, - [133687] = 2, + ACTIONS(7913), 1, + anon_sym_LBRACE, + [133214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(7915), 1, anon_sym_RBRACE, - [133694] = 2, + [133221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, + ACTIONS(7917), 1, anon_sym_RBRACE, - [133701] = 2, + [133228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7785), 1, + ACTIONS(7919), 1, anon_sym_RBRACE, - [133708] = 2, + [133235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7787), 1, - anon_sym_RBRACK, - [133715] = 2, + ACTIONS(7921), 1, + anon_sym_RBRACE, + [133242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 1, - anon_sym_RBRACE, - [133722] = 2, + ACTIONS(7923), 1, + anon_sym_SEMI, + [133249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(7925), 1, + anon_sym_RBRACK, + [133256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7927), 1, anon_sym_RBRACE, - [133729] = 2, + [133263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7791), 1, + ACTIONS(903), 1, anon_sym_RBRACE, - [133736] = 2, + [133270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7793), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - [133743] = 2, + [133277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7795), 1, + ACTIONS(7931), 1, + anon_sym_in, + [133284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7933), 1, anon_sym_RBRACE, - [133750] = 2, + [133291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7797), 1, + ACTIONS(7935), 1, anon_sym_RBRACE, - [133757] = 2, + [133298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(7937), 1, anon_sym_RBRACK, - [133764] = 2, + [133305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7801), 1, - anon_sym_RBRACE, - [133771] = 2, + ACTIONS(7939), 1, + sym_identifier, + [133312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(887), 1, + ACTIONS(7941), 1, anon_sym_RBRACE, - [133778] = 2, + [133319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, + ACTIONS(931), 1, anon_sym_RBRACE, - [133785] = 2, + [133326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7805), 1, + ACTIONS(7943), 1, anon_sym_RBRACE, - [133792] = 2, + [133333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7807), 1, - anon_sym_RBRACE, - [133799] = 2, + ACTIONS(7945), 1, + anon_sym_RBRACK, + [133340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, + ACTIONS(7947), 1, anon_sym_RBRACE, - [133806] = 2, + [133347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7811), 1, - sym_identifier, - [133813] = 2, - ACTIONS(3), 1, + ACTIONS(7949), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [133354] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7813), 1, - sym_identifier, - [133820] = 2, + ACTIONS(7951), 1, + aux_sym__content_block_token1, + [133361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7815), 1, - sym_identifier, - [133827] = 2, + ACTIONS(7953), 1, + anon_sym_COLON, + [133368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_RBRACK, - [133834] = 2, + ACTIONS(7955), 1, + anon_sym_LBRACE, + [133375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - anon_sym_RBRACE, - [133841] = 2, + ACTIONS(7957), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [133382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7819), 1, - sym_identifier, - [133848] = 2, + ACTIONS(5421), 1, + anon_sym_LBRACE, + [133389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - sym_identifier, - [133855] = 2, + ACTIONS(7959), 1, + anon_sym_PIPE, + [133396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7823), 1, - sym_identifier, - [133862] = 2, + ACTIONS(7961), 1, + anon_sym_RBRACE, + [133403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7825), 1, + ACTIONS(7963), 1, anon_sym_RBRACE, - [133869] = 2, + [133410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7827), 1, - sym_identifier, - [133876] = 2, + ACTIONS(5989), 1, + anon_sym_COLON_EQ, + [133417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7829), 1, - anon_sym_RBRACK, - [133883] = 2, + ACTIONS(7965), 1, + anon_sym_RBRACE, + [133424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7831), 1, + ACTIONS(7967), 1, anon_sym_RBRACE, - [133890] = 2, + [133431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7833), 1, + ACTIONS(7969), 1, + anon_sym_DOT, + [133438] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7971), 1, + aux_sym__content_block_token1, + [133445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7973), 1, anon_sym_RBRACE, - [133897] = 2, + [133452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(7975), 1, anon_sym_RBRACE, - [133904] = 2, + [133459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7837), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133911] = 2, + ACTIONS(4849), 1, + sym_identifier, + [133466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7839), 1, + ACTIONS(899), 1, anon_sym_RBRACE, - [133918] = 2, + [133473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_RBRACE, - [133925] = 2, + ACTIONS(5365), 1, + anon_sym_LBRACE, + [133480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 1, + ACTIONS(7977), 1, anon_sym_RBRACE, - [133932] = 2, + [133487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7843), 1, + ACTIONS(7979), 1, + anon_sym_DOT, + [133494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7981), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [133501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7983), 1, anon_sym_RBRACE, - [133939] = 2, + [133508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7845), 1, + ACTIONS(7985), 1, anon_sym_RBRACE, - [133946] = 2, + [133515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7847), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133953] = 2, + ACTIONS(7987), 1, + anon_sym_DOT, + [133522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_RBRACE, - [133960] = 2, + ACTIONS(4895), 1, + sym_identifier, + [133529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, + ACTIONS(7989), 1, anon_sym_RBRACE, - [133967] = 2, + [133536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7851), 1, + ACTIONS(7543), 1, anon_sym_RBRACE, - [133974] = 2, + [133543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7853), 1, + ACTIONS(7991), 1, anon_sym_RBRACE, - [133981] = 2, + [133550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7855), 1, + ACTIONS(7993), 1, anon_sym_RBRACE, - [133988] = 2, + [133557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_RBRACK, - [133995] = 2, + ACTIONS(7995), 1, + anon_sym_EQ, + [133564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7859), 1, + ACTIONS(907), 1, anon_sym_RBRACE, - [134002] = 2, + [133571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7861), 1, - anon_sym_SEMI, - [134009] = 2, + ACTIONS(7997), 1, + sym_identifier, + [133578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, + ACTIONS(937), 1, anon_sym_RBRACE, - [134016] = 2, + [133585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7863), 1, + ACTIONS(7999), 1, anon_sym_RBRACE, - [134023] = 2, + [133592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7865), 1, - anon_sym_in, - [134030] = 2, + ACTIONS(8001), 1, + sym_int_literal, + [133599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_RBRACE, - [134037] = 2, + ACTIONS(8003), 1, + sym_identifier, + [133606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7869), 1, + ACTIONS(8005), 1, sym_identifier, - [134044] = 2, + [133613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7871), 1, - anon_sym_RBRACK, - [134051] = 2, + ACTIONS(8007), 1, + anon_sym_LBRACE, + [133620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7873), 1, + ACTIONS(8009), 1, + anon_sym_DOT, + [133627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8011), 1, anon_sym_RBRACE, - [134058] = 2, - ACTIONS(493), 1, + [133634] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7875), 1, - aux_sym__content_block_token1, - [134065] = 2, + ACTIONS(8013), 1, + anon_sym_RBRACE, + [133641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7877), 1, - anon_sym_RBRACK, - [134072] = 2, + ACTIONS(8015), 1, + anon_sym_RBRACE, + [133648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7879), 1, - anon_sym_LBRACE, - [134079] = 2, + ACTIONS(8017), 1, + anon_sym_RBRACE, + [133655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, - anon_sym_LBRACE, - [134086] = 2, + ACTIONS(8019), 1, + anon_sym_RBRACE, + [133662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7881), 1, - anon_sym_RBRACK, - [134093] = 2, + ACTIONS(8021), 1, + anon_sym_RBRACE, + [133669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5815), 1, - anon_sym_COLON_EQ, - [134100] = 2, + ACTIONS(8023), 1, + anon_sym_DOT, + [133676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7883), 1, + ACTIONS(881), 1, anon_sym_RBRACE, - [134107] = 2, + [133683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7885), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134114] = 2, + ACTIONS(8025), 1, + anon_sym_RBRACE, + [133690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7887), 1, + ACTIONS(8027), 1, + anon_sym_DOT, + [133697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8029), 1, anon_sym_RBRACE, - [134121] = 2, + [133704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7889), 1, + ACTIONS(8031), 1, + anon_sym_RBRACK, + [133711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8033), 1, anon_sym_RBRACE, - [134128] = 2, + [133718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(889), 1, + ACTIONS(8035), 1, anon_sym_RBRACE, - [134135] = 2, + [133725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7891), 1, + ACTIONS(8037), 1, anon_sym_RBRACE, - [134142] = 2, + [133732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7893), 1, + ACTIONS(8039), 1, + anon_sym_RBRACE, + [133739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8041), 1, anon_sym_RBRACK, - [134149] = 2, + [133746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7895), 1, + ACTIONS(8043), 1, anon_sym_RBRACE, - [134156] = 2, + [133753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7897), 1, - anon_sym_DOT, - [134163] = 2, + ACTIONS(8045), 1, + anon_sym_RBRACE, + [133760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7899), 1, + ACTIONS(7493), 1, + anon_sym_RPAREN, + [133767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(871), 1, anon_sym_RBRACE, - [134170] = 2, + [133774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7901), 1, + ACTIONS(8047), 1, + anon_sym_RBRACK, + [133781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8049), 1, anon_sym_RBRACE, - [134177] = 2, + [133788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(883), 1, + ACTIONS(8051), 1, anon_sym_RBRACE, - [134184] = 2, + [133795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(8053), 1, anon_sym_RBRACE, - [134191] = 2, + [133802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7905), 1, + ACTIONS(8055), 1, + anon_sym_EQ, + [133809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8057), 1, sym_identifier, - [134198] = 2, + [133816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7907), 1, + ACTIONS(8059), 1, anon_sym_RBRACE, - [134205] = 2, + [133823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_DOT, - [134212] = 2, + ACTIONS(8061), 1, + sym_identifier, + [133830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7911), 1, + ACTIONS(8063), 1, anon_sym_RBRACE, - [134219] = 2, + [133837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(8065), 1, + sym_identifier, + [133844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8067), 1, anon_sym_RBRACE, - [134226] = 2, + [133851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7915), 1, - anon_sym_RBRACK, - [134233] = 2, + ACTIONS(8069), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [133858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7917), 1, + ACTIONS(7259), 1, anon_sym_RBRACE, - [134240] = 2, + [133865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7919), 1, - anon_sym_DOT, - [134247] = 2, + ACTIONS(8071), 1, + anon_sym_RBRACE, + [133872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, + ACTIONS(8073), 1, anon_sym_RBRACE, - [134254] = 2, + [133879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7923), 1, + ACTIONS(8075), 1, + sym_int_literal, + [133886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(885), 1, anon_sym_RBRACE, - [134261] = 2, + [133893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8077), 1, + anon_sym_DOT, + [133900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 1, + ACTIONS(8079), 1, anon_sym_RBRACE, - [134268] = 2, + [133907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, + ACTIONS(479), 1, anon_sym_RBRACE, - [134275] = 2, + [133914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(8081), 1, anon_sym_RBRACE, - [134282] = 2, + [133921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7927), 1, + ACTIONS(8083), 1, anon_sym_RBRACE, - [134289] = 2, + [133928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7929), 1, + ACTIONS(8085), 1, + anon_sym_RBRACK, + [133935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8087), 1, anon_sym_RBRACE, - [134296] = 2, + [133942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7931), 1, - anon_sym_EQ, - [134303] = 2, + ACTIONS(8089), 1, + anon_sym_LBRACE, + [133949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8091), 1, anon_sym_RBRACK, - [134310] = 2, + [133956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7935), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134317] = 2, + ACTIONS(919), 1, + anon_sym_RBRACE, + [133963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7937), 1, + ACTIONS(8093), 1, anon_sym_RBRACE, - [134324] = 2, + [133970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7939), 1, + ACTIONS(8095), 1, anon_sym_RBRACE, - [134331] = 2, + [133977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7941), 1, + ACTIONS(8097), 1, + anon_sym_RBRACK, + [133984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8099), 1, + ts_builtin_sym_end, + [133991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8101), 1, anon_sym_RBRACE, - [134338] = 2, + [133998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7943), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134345] = 2, + ACTIONS(8103), 1, + anon_sym_RBRACE, + [134005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7945), 1, + ACTIONS(8105), 1, anon_sym_RBRACK, - [134352] = 2, + [134012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7947), 1, + ACTIONS(8107), 1, + anon_sym_RBRACK, + [134019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8109), 1, anon_sym_RBRACE, - [134359] = 2, + [134026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(869), 1, + ACTIONS(8111), 1, anon_sym_RBRACE, - [134366] = 2, + [134033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7949), 1, + ACTIONS(8113), 1, anon_sym_RBRACE, - [134373] = 2, + [134040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7951), 1, + ACTIONS(8115), 1, anon_sym_RBRACE, - [134380] = 2, + [134047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7953), 1, + ACTIONS(8117), 1, anon_sym_RBRACE, - [134387] = 2, + [134054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7955), 1, + ACTIONS(8119), 1, + anon_sym_RBRACE, + [134061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8121), 1, anon_sym_LPAREN, - [134394] = 2, + [134068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7957), 1, + ACTIONS(8123), 1, anon_sym_RBRACE, - [134401] = 2, + [134075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 1, - anon_sym_RBRACK, - [134408] = 2, + ACTIONS(923), 1, + anon_sym_RBRACE, + [134082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7961), 1, + ACTIONS(8125), 1, anon_sym_RBRACE, - [134415] = 2, + [134089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(917), 1, - anon_sym_RBRACE, - [134422] = 2, + ACTIONS(8127), 1, + sym_identifier, + [134096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7963), 1, + ACTIONS(8129), 1, anon_sym_LPAREN, - [134429] = 2, - ACTIONS(3), 1, + [134103] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7965), 1, - anon_sym_RBRACE, - [134436] = 2, + ACTIONS(8131), 1, + aux_sym_hash_statement_token1, + [134110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7967), 1, + ACTIONS(8133), 1, anon_sym_RBRACE, - [134443] = 2, + [134117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - ts_builtin_sym_end, - [134450] = 2, + ACTIONS(8135), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [134124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(8137), 1, anon_sym_LPAREN, - [134457] = 2, + [134131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7973), 1, + ACTIONS(8139), 1, anon_sym_RBRACE, - [134464] = 2, + [134138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7975), 1, - anon_sym_RBRACE, - [134471] = 2, + ACTIONS(8141), 1, + anon_sym_RBRACK, + [134145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7977), 1, + ACTIONS(8143), 1, anon_sym_RBRACE, - [134478] = 2, + [134152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7979), 1, + ACTIONS(8145), 1, anon_sym_LPAREN, - [134485] = 2, - ACTIONS(3), 1, + [134159] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7981), 1, - anon_sym_RBRACK, - [134492] = 2, + ACTIONS(8147), 1, + aux_sym_hash_statement_token1, + [134166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, + ACTIONS(8149), 1, anon_sym_RBRACE, - [134499] = 2, + [134173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7985), 1, + ACTIONS(8151), 1, anon_sym_RBRACE, - [134506] = 2, + [134180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7987), 1, + ACTIONS(8153), 1, anon_sym_LPAREN, - [134513] = 2, + [134187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7989), 1, - anon_sym_RBRACK, - [134520] = 2, + ACTIONS(947), 1, + anon_sym_RBRACE, + [134194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7991), 1, - anon_sym_RBRACE, - [134527] = 2, + ACTIONS(8155), 1, + anon_sym_COLON, + [134201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7993), 1, - anon_sym_RBRACE, - [134534] = 2, + ACTIONS(8157), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [134208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7995), 1, + ACTIONS(8159), 1, anon_sym_LPAREN, - [134541] = 2, + [134215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7997), 1, - sym_identifier, - [134548] = 2, + ACTIONS(8161), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [134222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, + ACTIONS(8163), 1, anon_sym_RBRACE, - [134555] = 2, - ACTIONS(493), 1, + [134229] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7999), 1, - aux_sym_hash_statement_token1, - [134562] = 2, + ACTIONS(8165), 1, + anon_sym_RBRACK, + [134236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 1, + ACTIONS(8167), 1, anon_sym_LPAREN, - [134569] = 2, + [134243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 1, - anon_sym_RBRACE, - [134576] = 2, + ACTIONS(8169), 1, + anon_sym_RBRACK, + [134250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8005), 1, + ACTIONS(8171), 1, anon_sym_RBRACE, - [134583] = 2, + [134257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134590] = 2, + ACTIONS(8173), 1, + anon_sym_RBRACE, + [134264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8009), 1, + ACTIONS(8175), 1, anon_sym_LPAREN, - [134597] = 2, + [134271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8011), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134604] = 2, + ACTIONS(8177), 1, + anon_sym_RBRACK, + [134278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8013), 1, + ACTIONS(8179), 1, anon_sym_RBRACE, - [134611] = 2, + [134285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8015), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134618] = 2, + ACTIONS(8181), 1, + sym_identifier, + [134292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8017), 1, + ACTIONS(8183), 1, anon_sym_LPAREN, - [134625] = 2, + [134299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(899), 1, - anon_sym_RBRACE, - [134632] = 2, + ACTIONS(8185), 1, + sym_identifier, + [134306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(895), 1, + ACTIONS(8187), 1, anon_sym_RBRACE, - [134639] = 2, + [134313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8019), 1, + ACTIONS(935), 1, anon_sym_RBRACE, - [134646] = 2, + [134320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8021), 1, + ACTIONS(8189), 1, anon_sym_LPAREN, - [134653] = 2, + [134327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8023), 1, - anon_sym_RBRACE, - [134660] = 2, + ACTIONS(7385), 1, + sym_identifier, + [134334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8025), 1, + ACTIONS(8191), 1, anon_sym_RBRACE, - [134667] = 2, + [134341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8027), 1, - sym_identifier, - [134674] = 2, + ACTIONS(8193), 1, + anon_sym_RBRACE, + [134348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8029), 1, + ACTIONS(8195), 1, anon_sym_RBRACE, - [134681] = 2, + [134355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8031), 1, - sym_identifier, - [134688] = 2, + ACTIONS(8197), 1, + anon_sym_RBRACE, + [134362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8033), 1, + ACTIONS(8199), 1, anon_sym_RBRACK, - [134695] = 2, + [134369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6850), 1, + ACTIONS(8201), 1, sym_identifier, - [134702] = 2, + [134376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8035), 1, + ACTIONS(8203), 1, anon_sym_RBRACE, - [134709] = 2, + [134383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8037), 1, - sym_identifier, - [134716] = 2, + ACTIONS(8205), 1, + anon_sym_RBRACE, + [134390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(8207), 1, + anon_sym_LBRACE, + [134397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(925), 1, anon_sym_RBRACE, - [134723] = 2, + [134404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 1, + ACTIONS(8209), 1, anon_sym_RBRACE, - [134730] = 2, + [134411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8041), 1, + ACTIONS(945), 1, anon_sym_RBRACE, - [134737] = 2, + [134418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8043), 1, - anon_sym_RBRACK, + ACTIONS(8211), 1, + aux_sym_pseudo_compile_time_identifier_token1, + [134425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8213), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1602)] = 0, - [SMALL_STATE(1603)] = 71, - [SMALL_STATE(1604)] = 142, - [SMALL_STATE(1605)] = 213, - [SMALL_STATE(1606)] = 284, - [SMALL_STATE(1607)] = 355, - [SMALL_STATE(1608)] = 424, - [SMALL_STATE(1609)] = 493, - [SMALL_STATE(1610)] = 562, - [SMALL_STATE(1611)] = 685, - [SMALL_STATE(1612)] = 754, - [SMALL_STATE(1613)] = 823, - [SMALL_STATE(1614)] = 892, - [SMALL_STATE(1615)] = 961, - [SMALL_STATE(1616)] = 1030, - [SMALL_STATE(1617)] = 1099, - [SMALL_STATE(1618)] = 1168, - [SMALL_STATE(1619)] = 1256, - [SMALL_STATE(1620)] = 1376, - [SMALL_STATE(1621)] = 1464, - [SMALL_STATE(1622)] = 1548, - [SMALL_STATE(1623)] = 1658, - [SMALL_STATE(1624)] = 1742, - [SMALL_STATE(1625)] = 1852, - [SMALL_STATE(1626)] = 1938, - [SMALL_STATE(1627)] = 2032, - [SMALL_STATE(1628)] = 2118, - [SMALL_STATE(1629)] = 2206, - [SMALL_STATE(1630)] = 2302, - [SMALL_STATE(1631)] = 2386, - [SMALL_STATE(1632)] = 2457, - [SMALL_STATE(1633)] = 2524, - [SMALL_STATE(1634)] = 2637, - [SMALL_STATE(1635)] = 2708, - [SMALL_STATE(1636)] = 2775, - [SMALL_STATE(1637)] = 2841, - [SMALL_STATE(1638)] = 2927, - [SMALL_STATE(1639)] = 3019, - [SMALL_STATE(1640)] = 3085, - [SMALL_STATE(1641)] = 3153, - [SMALL_STATE(1642)] = 3223, - [SMALL_STATE(1643)] = 3347, - [SMALL_STATE(1644)] = 3471, - [SMALL_STATE(1645)] = 3579, - [SMALL_STATE(1646)] = 3663, - [SMALL_STATE(1647)] = 3729, - [SMALL_STATE(1648)] = 3823, - [SMALL_STATE(1649)] = 3909, - [SMALL_STATE(1650)] = 3995, - [SMALL_STATE(1651)] = 4061, - [SMALL_STATE(1652)] = 4127, - [SMALL_STATE(1653)] = 4193, - [SMALL_STATE(1654)] = 4259, - [SMALL_STATE(1655)] = 4327, - [SMALL_STATE(1656)] = 4393, - [SMALL_STATE(1657)] = 4459, - [SMALL_STATE(1658)] = 4527, - [SMALL_STATE(1659)] = 4609, - [SMALL_STATE(1660)] = 4675, - [SMALL_STATE(1661)] = 4741, - [SMALL_STATE(1662)] = 4807, - [SMALL_STATE(1663)] = 4873, - [SMALL_STATE(1664)] = 4981, - [SMALL_STATE(1665)] = 5089, - [SMALL_STATE(1666)] = 5155, - [SMALL_STATE(1667)] = 5223, - [SMALL_STATE(1668)] = 5305, - [SMALL_STATE(1669)] = 5371, - [SMALL_STATE(1670)] = 5439, - [SMALL_STATE(1671)] = 5505, - [SMALL_STATE(1672)] = 5587, - [SMALL_STATE(1673)] = 5653, - [SMALL_STATE(1674)] = 5719, - [SMALL_STATE(1675)] = 5785, - [SMALL_STATE(1676)] = 5853, - [SMALL_STATE(1677)] = 5919, - [SMALL_STATE(1678)] = 5987, - [SMALL_STATE(1679)] = 6053, - [SMALL_STATE(1680)] = 6119, - [SMALL_STATE(1681)] = 6184, - [SMALL_STATE(1682)] = 6249, - [SMALL_STATE(1683)] = 6314, - [SMALL_STATE(1684)] = 6379, - [SMALL_STATE(1685)] = 6444, - [SMALL_STATE(1686)] = 6509, - [SMALL_STATE(1687)] = 6574, - [SMALL_STATE(1688)] = 6639, - [SMALL_STATE(1689)] = 6706, - [SMALL_STATE(1690)] = 6773, - [SMALL_STATE(1691)] = 6838, - [SMALL_STATE(1692)] = 6903, - [SMALL_STATE(1693)] = 6968, - [SMALL_STATE(1694)] = 7033, - [SMALL_STATE(1695)] = 7098, - [SMALL_STATE(1696)] = 7163, - [SMALL_STATE(1697)] = 7228, - [SMALL_STATE(1698)] = 7293, - [SMALL_STATE(1699)] = 7358, - [SMALL_STATE(1700)] = 7425, - [SMALL_STATE(1701)] = 7490, - [SMALL_STATE(1702)] = 7555, - [SMALL_STATE(1703)] = 7620, - [SMALL_STATE(1704)] = 7685, - [SMALL_STATE(1705)] = 7750, - [SMALL_STATE(1706)] = 7815, - [SMALL_STATE(1707)] = 7880, - [SMALL_STATE(1708)] = 7945, - [SMALL_STATE(1709)] = 8010, - [SMALL_STATE(1710)] = 8075, - [SMALL_STATE(1711)] = 8140, - [SMALL_STATE(1712)] = 8205, - [SMALL_STATE(1713)] = 8270, - [SMALL_STATE(1714)] = 8335, - [SMALL_STATE(1715)] = 8400, - [SMALL_STATE(1716)] = 8467, - [SMALL_STATE(1717)] = 8532, - [SMALL_STATE(1718)] = 8597, - [SMALL_STATE(1719)] = 8662, - [SMALL_STATE(1720)] = 8727, - [SMALL_STATE(1721)] = 8792, - [SMALL_STATE(1722)] = 8857, - [SMALL_STATE(1723)] = 8922, - [SMALL_STATE(1724)] = 8987, - [SMALL_STATE(1725)] = 9054, - [SMALL_STATE(1726)] = 9119, - [SMALL_STATE(1727)] = 9184, - [SMALL_STATE(1728)] = 9249, - [SMALL_STATE(1729)] = 9314, - [SMALL_STATE(1730)] = 9379, - [SMALL_STATE(1731)] = 9444, - [SMALL_STATE(1732)] = 9509, - [SMALL_STATE(1733)] = 9574, - [SMALL_STATE(1734)] = 9639, - [SMALL_STATE(1735)] = 9708, - [SMALL_STATE(1736)] = 9773, - [SMALL_STATE(1737)] = 9838, - [SMALL_STATE(1738)] = 9903, - [SMALL_STATE(1739)] = 9968, - [SMALL_STATE(1740)] = 10033, - [SMALL_STATE(1741)] = 10098, - [SMALL_STATE(1742)] = 10165, - [SMALL_STATE(1743)] = 10230, - [SMALL_STATE(1744)] = 10295, - [SMALL_STATE(1745)] = 10364, - [SMALL_STATE(1746)] = 10429, - [SMALL_STATE(1747)] = 10494, - [SMALL_STATE(1748)] = 10559, - [SMALL_STATE(1749)] = 10624, - [SMALL_STATE(1750)] = 10689, - [SMALL_STATE(1751)] = 10754, - [SMALL_STATE(1752)] = 10819, - [SMALL_STATE(1753)] = 10884, - [SMALL_STATE(1754)] = 10949, - [SMALL_STATE(1755)] = 11016, - [SMALL_STATE(1756)] = 11081, - [SMALL_STATE(1757)] = 11148, - [SMALL_STATE(1758)] = 11213, - [SMALL_STATE(1759)] = 11278, - [SMALL_STATE(1760)] = 11343, - [SMALL_STATE(1761)] = 11408, - [SMALL_STATE(1762)] = 11473, - [SMALL_STATE(1763)] = 11538, - [SMALL_STATE(1764)] = 11605, - [SMALL_STATE(1765)] = 11670, - [SMALL_STATE(1766)] = 11754, - [SMALL_STATE(1767)] = 11842, - [SMALL_STATE(1768)] = 11958, - [SMALL_STATE(1769)] = 12022, - [SMALL_STATE(1770)] = 12140, - [SMALL_STATE(1771)] = 12204, - [SMALL_STATE(1772)] = 12270, - [SMALL_STATE(1773)] = 12386, - [SMALL_STATE(1774)] = 12452, - [SMALL_STATE(1775)] = 12536, - [SMALL_STATE(1776)] = 12600, - [SMALL_STATE(1777)] = 12664, - [SMALL_STATE(1778)] = 12752, - [SMALL_STATE(1779)] = 12818, - [SMALL_STATE(1780)] = 12906, - [SMALL_STATE(1781)] = 12990, - [SMALL_STATE(1782)] = 13088, - [SMALL_STATE(1783)] = 13184, - [SMALL_STATE(1784)] = 13296, - [SMALL_STATE(1785)] = 13408, - [SMALL_STATE(1786)] = 13496, - [SMALL_STATE(1787)] = 13582, - [SMALL_STATE(1788)] = 13648, - [SMALL_STATE(1789)] = 13714, - [SMALL_STATE(1790)] = 13778, - [SMALL_STATE(1791)] = 13876, - [SMALL_STATE(1792)] = 13972, - [SMALL_STATE(1793)] = 14056, - [SMALL_STATE(1794)] = 14144, - [SMALL_STATE(1795)] = 14256, - [SMALL_STATE(1796)] = 14368, - [SMALL_STATE(1797)] = 14452, - [SMALL_STATE(1798)] = 14518, - [SMALL_STATE(1799)] = 14602, - [SMALL_STATE(1800)] = 14688, - [SMALL_STATE(1801)] = 14776, - [SMALL_STATE(1802)] = 14839, - [SMALL_STATE(1803)] = 14902, - [SMALL_STATE(1804)] = 14965, - [SMALL_STATE(1805)] = 15028, - [SMALL_STATE(1806)] = 15091, - [SMALL_STATE(1807)] = 15154, - [SMALL_STATE(1808)] = 15219, - [SMALL_STATE(1809)] = 15282, - [SMALL_STATE(1810)] = 15345, - [SMALL_STATE(1811)] = 15408, - [SMALL_STATE(1812)] = 15471, - [SMALL_STATE(1813)] = 15534, - [SMALL_STATE(1814)] = 15599, - [SMALL_STATE(1815)] = 15662, - [SMALL_STATE(1816)] = 15725, - [SMALL_STATE(1817)] = 15790, - [SMALL_STATE(1818)] = 15853, - [SMALL_STATE(1819)] = 15916, - [SMALL_STATE(1820)] = 15979, - [SMALL_STATE(1821)] = 16042, - [SMALL_STATE(1822)] = 16105, - [SMALL_STATE(1823)] = 16168, - [SMALL_STATE(1824)] = 16279, - [SMALL_STATE(1825)] = 16342, - [SMALL_STATE(1826)] = 16405, - [SMALL_STATE(1827)] = 16468, - [SMALL_STATE(1828)] = 16531, - [SMALL_STATE(1829)] = 16594, - [SMALL_STATE(1830)] = 16657, - [SMALL_STATE(1831)] = 16720, - [SMALL_STATE(1832)] = 16783, - [SMALL_STATE(1833)] = 16846, - [SMALL_STATE(1834)] = 16909, - [SMALL_STATE(1835)] = 16972, - [SMALL_STATE(1836)] = 17035, - [SMALL_STATE(1837)] = 17146, - [SMALL_STATE(1838)] = 17213, - [SMALL_STATE(1839)] = 17280, - [SMALL_STATE(1840)] = 17343, - [SMALL_STATE(1841)] = 17406, - [SMALL_STATE(1842)] = 17469, - [SMALL_STATE(1843)] = 17532, - [SMALL_STATE(1844)] = 17595, - [SMALL_STATE(1845)] = 17658, - [SMALL_STATE(1846)] = 17721, - [SMALL_STATE(1847)] = 17786, - [SMALL_STATE(1848)] = 17857, - [SMALL_STATE(1849)] = 17942, - [SMALL_STATE(1850)] = 18005, - [SMALL_STATE(1851)] = 18068, - [SMALL_STATE(1852)] = 18131, - [SMALL_STATE(1853)] = 18194, - [SMALL_STATE(1854)] = 18257, - [SMALL_STATE(1855)] = 18320, - [SMALL_STATE(1856)] = 18383, - [SMALL_STATE(1857)] = 18446, - [SMALL_STATE(1858)] = 18509, - [SMALL_STATE(1859)] = 18572, - [SMALL_STATE(1860)] = 18637, - [SMALL_STATE(1861)] = 18700, - [SMALL_STATE(1862)] = 18763, - [SMALL_STATE(1863)] = 18826, - [SMALL_STATE(1864)] = 18889, - [SMALL_STATE(1865)] = 18952, - [SMALL_STATE(1866)] = 19015, - [SMALL_STATE(1867)] = 19102, - [SMALL_STATE(1868)] = 19165, - [SMALL_STATE(1869)] = 19228, - [SMALL_STATE(1870)] = 19291, - [SMALL_STATE(1871)] = 19354, - [SMALL_STATE(1872)] = 19417, - [SMALL_STATE(1873)] = 19480, - [SMALL_STATE(1874)] = 19543, - [SMALL_STATE(1875)] = 19606, - [SMALL_STATE(1876)] = 19669, - [SMALL_STATE(1877)] = 19732, - [SMALL_STATE(1878)] = 19795, - [SMALL_STATE(1879)] = 19858, - [SMALL_STATE(1880)] = 19921, - [SMALL_STATE(1881)] = 19984, - [SMALL_STATE(1882)] = 20047, - [SMALL_STATE(1883)] = 20110, - [SMALL_STATE(1884)] = 20205, - [SMALL_STATE(1885)] = 20302, - [SMALL_STATE(1886)] = 20365, - [SMALL_STATE(1887)] = 20428, - [SMALL_STATE(1888)] = 20495, - [SMALL_STATE(1889)] = 20558, - [SMALL_STATE(1890)] = 20621, - [SMALL_STATE(1891)] = 20708, - [SMALL_STATE(1892)] = 20771, - [SMALL_STATE(1893)] = 20834, - [SMALL_STATE(1894)] = 20945, - [SMALL_STATE(1895)] = 21008, - [SMALL_STATE(1896)] = 21071, - [SMALL_STATE(1897)] = 21134, - [SMALL_STATE(1898)] = 21197, - [SMALL_STATE(1899)] = 21260, - [SMALL_STATE(1900)] = 21371, - [SMALL_STATE(1901)] = 21458, - [SMALL_STATE(1902)] = 21521, - [SMALL_STATE(1903)] = 21584, - [SMALL_STATE(1904)] = 21647, - [SMALL_STATE(1905)] = 21710, - [SMALL_STATE(1906)] = 21773, - [SMALL_STATE(1907)] = 21836, - [SMALL_STATE(1908)] = 21903, - [SMALL_STATE(1909)] = 21966, - [SMALL_STATE(1910)] = 22029, - [SMALL_STATE(1911)] = 22092, - [SMALL_STATE(1912)] = 22155, - [SMALL_STATE(1913)] = 22218, - [SMALL_STATE(1914)] = 22281, - [SMALL_STATE(1915)] = 22344, - [SMALL_STATE(1916)] = 22407, - [SMALL_STATE(1917)] = 22470, - [SMALL_STATE(1918)] = 22533, - [SMALL_STATE(1919)] = 22596, - [SMALL_STATE(1920)] = 22659, - [SMALL_STATE(1921)] = 22769, - [SMALL_STATE(1922)] = 22879, - [SMALL_STATE(1923)] = 22989, - [SMALL_STATE(1924)] = 23053, - [SMALL_STATE(1925)] = 23117, - [SMALL_STATE(1926)] = 23181, - [SMALL_STATE(1927)] = 23291, - [SMALL_STATE(1928)] = 23361, - [SMALL_STATE(1929)] = 23425, - [SMALL_STATE(1930)] = 23489, - [SMALL_STATE(1931)] = 23553, - [SMALL_STATE(1932)] = 23614, - [SMALL_STATE(1933)] = 23675, - [SMALL_STATE(1934)] = 23740, - [SMALL_STATE(1935)] = 23801, - [SMALL_STATE(1936)] = 23862, - [SMALL_STATE(1937)] = 23925, - [SMALL_STATE(1938)] = 23986, - [SMALL_STATE(1939)] = 24047, - [SMALL_STATE(1940)] = 24110, - [SMALL_STATE(1941)] = 24171, - [SMALL_STATE(1942)] = 24232, - [SMALL_STATE(1943)] = 24293, - [SMALL_STATE(1944)] = 24354, - [SMALL_STATE(1945)] = 24415, - [SMALL_STATE(1946)] = 24476, - [SMALL_STATE(1947)] = 24537, - [SMALL_STATE(1948)] = 24598, - [SMALL_STATE(1949)] = 24659, - [SMALL_STATE(1950)] = 24720, - [SMALL_STATE(1951)] = 24783, - [SMALL_STATE(1952)] = 24846, - [SMALL_STATE(1953)] = 24907, - [SMALL_STATE(1954)] = 24968, - [SMALL_STATE(1955)] = 25029, - [SMALL_STATE(1956)] = 25090, - [SMALL_STATE(1957)] = 25151, - [SMALL_STATE(1958)] = 25212, - [SMALL_STATE(1959)] = 25273, - [SMALL_STATE(1960)] = 25334, - [SMALL_STATE(1961)] = 25395, - [SMALL_STATE(1962)] = 25456, - [SMALL_STATE(1963)] = 25517, - [SMALL_STATE(1964)] = 25578, - [SMALL_STATE(1965)] = 25639, - [SMALL_STATE(1966)] = 25700, - [SMALL_STATE(1967)] = 25761, - [SMALL_STATE(1968)] = 25822, - [SMALL_STATE(1969)] = 25883, - [SMALL_STATE(1970)] = 25944, - [SMALL_STATE(1971)] = 26005, - [SMALL_STATE(1972)] = 26068, - [SMALL_STATE(1973)] = 26129, - [SMALL_STATE(1974)] = 26192, - [SMALL_STATE(1975)] = 26253, - [SMALL_STATE(1976)] = 26316, - [SMALL_STATE(1977)] = 26377, - [SMALL_STATE(1978)] = 26438, - [SMALL_STATE(1979)] = 26499, - [SMALL_STATE(1980)] = 26560, - [SMALL_STATE(1981)] = 26621, - [SMALL_STATE(1982)] = 26682, - [SMALL_STATE(1983)] = 26743, - [SMALL_STATE(1984)] = 26804, - [SMALL_STATE(1985)] = 26865, - [SMALL_STATE(1986)] = 26926, - [SMALL_STATE(1987)] = 26987, - [SMALL_STATE(1988)] = 27048, - [SMALL_STATE(1989)] = 27109, - [SMALL_STATE(1990)] = 27170, - [SMALL_STATE(1991)] = 27233, - [SMALL_STATE(1992)] = 27294, - [SMALL_STATE(1993)] = 27355, - [SMALL_STATE(1994)] = 27416, - [SMALL_STATE(1995)] = 27477, - [SMALL_STATE(1996)] = 27538, - [SMALL_STATE(1997)] = 27599, - [SMALL_STATE(1998)] = 27660, - [SMALL_STATE(1999)] = 27721, - [SMALL_STATE(2000)] = 27782, - [SMALL_STATE(2001)] = 27843, - [SMALL_STATE(2002)] = 27904, - [SMALL_STATE(2003)] = 27965, - [SMALL_STATE(2004)] = 28026, - [SMALL_STATE(2005)] = 28087, - [SMALL_STATE(2006)] = 28148, - [SMALL_STATE(2007)] = 28209, - [SMALL_STATE(2008)] = 28274, - [SMALL_STATE(2009)] = 28339, - [SMALL_STATE(2010)] = 28400, - [SMALL_STATE(2011)] = 28461, - [SMALL_STATE(2012)] = 28522, - [SMALL_STATE(2013)] = 28585, - [SMALL_STATE(2014)] = 28648, - [SMALL_STATE(2015)] = 28709, - [SMALL_STATE(2016)] = 28770, - [SMALL_STATE(2017)] = 28831, - [SMALL_STATE(2018)] = 28892, - [SMALL_STATE(2019)] = 28953, - [SMALL_STATE(2020)] = 29014, - [SMALL_STATE(2021)] = 29075, - [SMALL_STATE(2022)] = 29136, - [SMALL_STATE(2023)] = 29197, - [SMALL_STATE(2024)] = 29258, - [SMALL_STATE(2025)] = 29319, - [SMALL_STATE(2026)] = 29380, - [SMALL_STATE(2027)] = 29441, - [SMALL_STATE(2028)] = 29502, - [SMALL_STATE(2029)] = 29563, - [SMALL_STATE(2030)] = 29624, - [SMALL_STATE(2031)] = 29685, - [SMALL_STATE(2032)] = 29746, - [SMALL_STATE(2033)] = 29807, - [SMALL_STATE(2034)] = 29868, - [SMALL_STATE(2035)] = 29929, - [SMALL_STATE(2036)] = 29990, - [SMALL_STATE(2037)] = 30051, - [SMALL_STATE(2038)] = 30112, - [SMALL_STATE(2039)] = 30173, - [SMALL_STATE(2040)] = 30234, - [SMALL_STATE(2041)] = 30295, - [SMALL_STATE(2042)] = 30356, - [SMALL_STATE(2043)] = 30417, - [SMALL_STATE(2044)] = 30478, - [SMALL_STATE(2045)] = 30539, - [SMALL_STATE(2046)] = 30600, - [SMALL_STATE(2047)] = 30661, - [SMALL_STATE(2048)] = 30722, - [SMALL_STATE(2049)] = 30783, - [SMALL_STATE(2050)] = 30844, - [SMALL_STATE(2051)] = 30905, - [SMALL_STATE(2052)] = 30966, - [SMALL_STATE(2053)] = 31027, - [SMALL_STATE(2054)] = 31088, - [SMALL_STATE(2055)] = 31149, - [SMALL_STATE(2056)] = 31210, - [SMALL_STATE(2057)] = 31271, - [SMALL_STATE(2058)] = 31332, - [SMALL_STATE(2059)] = 31393, - [SMALL_STATE(2060)] = 31454, - [SMALL_STATE(2061)] = 31515, - [SMALL_STATE(2062)] = 31576, - [SMALL_STATE(2063)] = 31637, - [SMALL_STATE(2064)] = 31698, - [SMALL_STATE(2065)] = 31759, - [SMALL_STATE(2066)] = 31820, - [SMALL_STATE(2067)] = 31881, - [SMALL_STATE(2068)] = 31942, - [SMALL_STATE(2069)] = 32003, - [SMALL_STATE(2070)] = 32064, - [SMALL_STATE(2071)] = 32125, - [SMALL_STATE(2072)] = 32186, - [SMALL_STATE(2073)] = 32247, - [SMALL_STATE(2074)] = 32308, - [SMALL_STATE(2075)] = 32369, - [SMALL_STATE(2076)] = 32430, - [SMALL_STATE(2077)] = 32491, - [SMALL_STATE(2078)] = 32552, - [SMALL_STATE(2079)] = 32613, - [SMALL_STATE(2080)] = 32674, - [SMALL_STATE(2081)] = 32735, - [SMALL_STATE(2082)] = 32796, - [SMALL_STATE(2083)] = 32857, - [SMALL_STATE(2084)] = 32918, - [SMALL_STATE(2085)] = 32979, - [SMALL_STATE(2086)] = 33040, - [SMALL_STATE(2087)] = 33101, - [SMALL_STATE(2088)] = 33162, - [SMALL_STATE(2089)] = 33223, - [SMALL_STATE(2090)] = 33288, - [SMALL_STATE(2091)] = 33353, - [SMALL_STATE(2092)] = 33414, - [SMALL_STATE(2093)] = 33475, - [SMALL_STATE(2094)] = 33536, - [SMALL_STATE(2095)] = 33597, - [SMALL_STATE(2096)] = 33658, - [SMALL_STATE(2097)] = 33719, - [SMALL_STATE(2098)] = 33780, - [SMALL_STATE(2099)] = 33841, - [SMALL_STATE(2100)] = 33902, - [SMALL_STATE(2101)] = 33963, - [SMALL_STATE(2102)] = 34024, - [SMALL_STATE(2103)] = 34085, - [SMALL_STATE(2104)] = 34150, - [SMALL_STATE(2105)] = 34211, - [SMALL_STATE(2106)] = 34272, - [SMALL_STATE(2107)] = 34333, - [SMALL_STATE(2108)] = 34396, - [SMALL_STATE(2109)] = 34457, - [SMALL_STATE(2110)] = 34518, - [SMALL_STATE(2111)] = 34579, - [SMALL_STATE(2112)] = 34642, - [SMALL_STATE(2113)] = 34703, - [SMALL_STATE(2114)] = 34764, - [SMALL_STATE(2115)] = 34825, - [SMALL_STATE(2116)] = 34886, - [SMALL_STATE(2117)] = 34947, - [SMALL_STATE(2118)] = 35008, - [SMALL_STATE(2119)] = 35069, - [SMALL_STATE(2120)] = 35130, - [SMALL_STATE(2121)] = 35191, - [SMALL_STATE(2122)] = 35252, - [SMALL_STATE(2123)] = 35313, - [SMALL_STATE(2124)] = 35374, - [SMALL_STATE(2125)] = 35435, - [SMALL_STATE(2126)] = 35496, - [SMALL_STATE(2127)] = 35557, - [SMALL_STATE(2128)] = 35618, - [SMALL_STATE(2129)] = 35679, - [SMALL_STATE(2130)] = 35740, - [SMALL_STATE(2131)] = 35801, - [SMALL_STATE(2132)] = 35862, - [SMALL_STATE(2133)] = 35923, - [SMALL_STATE(2134)] = 35984, - [SMALL_STATE(2135)] = 36045, - [SMALL_STATE(2136)] = 36106, - [SMALL_STATE(2137)] = 36167, - [SMALL_STATE(2138)] = 36228, - [SMALL_STATE(2139)] = 36289, - [SMALL_STATE(2140)] = 36350, - [SMALL_STATE(2141)] = 36411, - [SMALL_STATE(2142)] = 36472, - [SMALL_STATE(2143)] = 36533, - [SMALL_STATE(2144)] = 36594, - [SMALL_STATE(2145)] = 36655, - [SMALL_STATE(2146)] = 36716, - [SMALL_STATE(2147)] = 36777, - [SMALL_STATE(2148)] = 36838, - [SMALL_STATE(2149)] = 36913, - [SMALL_STATE(2150)] = 36988, - [SMALL_STATE(2151)] = 37051, - [SMALL_STATE(2152)] = 37126, - [SMALL_STATE(2153)] = 37188, - [SMALL_STATE(2154)] = 37250, - [SMALL_STATE(2155)] = 37314, - [SMALL_STATE(2156)] = 37371, - [SMALL_STATE(2157)] = 37428, - [SMALL_STATE(2158)] = 37487, - [SMALL_STATE(2159)] = 37544, - [SMALL_STATE(2160)] = 37601, - [SMALL_STATE(2161)] = 37658, - [SMALL_STATE(2162)] = 37717, - [SMALL_STATE(2163)] = 37774, - [SMALL_STATE(2164)] = 37837, - [SMALL_STATE(2165)] = 37896, - [SMALL_STATE(2166)] = 37953, - [SMALL_STATE(2167)] = 38012, - [SMALL_STATE(2168)] = 38069, - [SMALL_STATE(2169)] = 38174, - [SMALL_STATE(2170)] = 38231, - [SMALL_STATE(2171)] = 38292, - [SMALL_STATE(2172)] = 38348, - [SMALL_STATE(2173)] = 38404, - [SMALL_STATE(2174)] = 38460, - [SMALL_STATE(2175)] = 38518, - [SMALL_STATE(2176)] = 38574, - [SMALL_STATE(2177)] = 38630, - [SMALL_STATE(2178)] = 38686, - [SMALL_STATE(2179)] = 38742, - [SMALL_STATE(2180)] = 38798, - [SMALL_STATE(2181)] = 38854, - [SMALL_STATE(2182)] = 38910, - [SMALL_STATE(2183)] = 38966, - [SMALL_STATE(2184)] = 39022, - [SMALL_STATE(2185)] = 39078, - [SMALL_STATE(2186)] = 39134, - [SMALL_STATE(2187)] = 39212, - [SMALL_STATE(2188)] = 39268, - [SMALL_STATE(2189)] = 39324, - [SMALL_STATE(2190)] = 39400, - [SMALL_STATE(2191)] = 39482, - [SMALL_STATE(2192)] = 39538, - [SMALL_STATE(2193)] = 39594, - [SMALL_STATE(2194)] = 39678, - [SMALL_STATE(2195)] = 39734, - [SMALL_STATE(2196)] = 39790, - [SMALL_STATE(2197)] = 39846, - [SMALL_STATE(2198)] = 39902, - [SMALL_STATE(2199)] = 39958, - [SMALL_STATE(2200)] = 40034, - [SMALL_STATE(2201)] = 40110, - [SMALL_STATE(2202)] = 40166, - [SMALL_STATE(2203)] = 40222, - [SMALL_STATE(2204)] = 40278, - [SMALL_STATE(2205)] = 40334, - [SMALL_STATE(2206)] = 40390, - [SMALL_STATE(2207)] = 40446, - [SMALL_STATE(2208)] = 40502, - [SMALL_STATE(2209)] = 40558, - [SMALL_STATE(2210)] = 40614, - [SMALL_STATE(2211)] = 40670, - [SMALL_STATE(2212)] = 40726, - [SMALL_STATE(2213)] = 40782, - [SMALL_STATE(2214)] = 40838, - [SMALL_STATE(2215)] = 40894, - [SMALL_STATE(2216)] = 40950, - [SMALL_STATE(2217)] = 41006, - [SMALL_STATE(2218)] = 41062, - [SMALL_STATE(2219)] = 41136, - [SMALL_STATE(2220)] = 41214, - [SMALL_STATE(2221)] = 41270, - [SMALL_STATE(2222)] = 41326, - [SMALL_STATE(2223)] = 41382, - [SMALL_STATE(2224)] = 41438, - [SMALL_STATE(2225)] = 41494, - [SMALL_STATE(2226)] = 41572, - [SMALL_STATE(2227)] = 41628, - [SMALL_STATE(2228)] = 41684, - [SMALL_STATE(2229)] = 41740, - [SMALL_STATE(2230)] = 41796, - [SMALL_STATE(2231)] = 41852, - [SMALL_STATE(2232)] = 41908, - [SMALL_STATE(2233)] = 41964, - [SMALL_STATE(2234)] = 42022, - [SMALL_STATE(2235)] = 42078, - [SMALL_STATE(2236)] = 42136, - [SMALL_STATE(2237)] = 42192, - [SMALL_STATE(2238)] = 42250, - [SMALL_STATE(2239)] = 42308, - [SMALL_STATE(2240)] = 42364, - [SMALL_STATE(2241)] = 42420, - [SMALL_STATE(2242)] = 42476, - [SMALL_STATE(2243)] = 42532, - [SMALL_STATE(2244)] = 42588, - [SMALL_STATE(2245)] = 42644, - [SMALL_STATE(2246)] = 42700, - [SMALL_STATE(2247)] = 42756, - [SMALL_STATE(2248)] = 42812, - [SMALL_STATE(2249)] = 42868, - [SMALL_STATE(2250)] = 42924, - [SMALL_STATE(2251)] = 42980, - [SMALL_STATE(2252)] = 43036, - [SMALL_STATE(2253)] = 43092, - [SMALL_STATE(2254)] = 43148, - [SMALL_STATE(2255)] = 43204, - [SMALL_STATE(2256)] = 43260, - [SMALL_STATE(2257)] = 43316, - [SMALL_STATE(2258)] = 43372, - [SMALL_STATE(2259)] = 43428, - [SMALL_STATE(2260)] = 43484, - [SMALL_STATE(2261)] = 43540, - [SMALL_STATE(2262)] = 43598, - [SMALL_STATE(2263)] = 43654, - [SMALL_STATE(2264)] = 43710, - [SMALL_STATE(2265)] = 43766, - [SMALL_STATE(2266)] = 43822, - [SMALL_STATE(2267)] = 43878, - [SMALL_STATE(2268)] = 43934, - [SMALL_STATE(2269)] = 44032, - [SMALL_STATE(2270)] = 44088, - [SMALL_STATE(2271)] = 44144, - [SMALL_STATE(2272)] = 44200, - [SMALL_STATE(2273)] = 44256, - [SMALL_STATE(2274)] = 44312, - [SMALL_STATE(2275)] = 44368, - [SMALL_STATE(2276)] = 44424, - [SMALL_STATE(2277)] = 44480, - [SMALL_STATE(2278)] = 44536, - [SMALL_STATE(2279)] = 44592, - [SMALL_STATE(2280)] = 44648, - [SMALL_STATE(2281)] = 44704, - [SMALL_STATE(2282)] = 44760, - [SMALL_STATE(2283)] = 44816, - [SMALL_STATE(2284)] = 44872, - [SMALL_STATE(2285)] = 44928, - [SMALL_STATE(2286)] = 44984, - [SMALL_STATE(2287)] = 45040, - [SMALL_STATE(2288)] = 45096, - [SMALL_STATE(2289)] = 45200, - [SMALL_STATE(2290)] = 45298, - [SMALL_STATE(2291)] = 45395, - [SMALL_STATE(2292)] = 45450, - [SMALL_STATE(2293)] = 45505, - [SMALL_STATE(2294)] = 45602, - [SMALL_STATE(2295)] = 45699, - [SMALL_STATE(2296)] = 45756, - [SMALL_STATE(2297)] = 45811, - [SMALL_STATE(2298)] = 45870, - [SMALL_STATE(2299)] = 45929, - [SMALL_STATE(2300)] = 46004, - [SMALL_STATE(2301)] = 46061, - [SMALL_STATE(2302)] = 46136, - [SMALL_STATE(2303)] = 46191, - [SMALL_STATE(2304)] = 46274, - [SMALL_STATE(2305)] = 46355, - [SMALL_STATE(2306)] = 46430, - [SMALL_STATE(2307)] = 46503, - [SMALL_STATE(2308)] = 46600, - [SMALL_STATE(2309)] = 46656, - [SMALL_STATE(2310)] = 46752, - [SMALL_STATE(2311)] = 46824, - [SMALL_STATE(2312)] = 46898, - [SMALL_STATE(2313)] = 46978, - [SMALL_STATE(2314)] = 47052, - [SMALL_STATE(2315)] = 47122, - [SMALL_STATE(2316)] = 47178, - [SMALL_STATE(2317)] = 47260, - [SMALL_STATE(2318)] = 47330, - [SMALL_STATE(2319)] = 47432, - [SMALL_STATE(2320)] = 47506, - [SMALL_STATE(2321)] = 47562, - [SMALL_STATE(2322)] = 47632, - [SMALL_STATE(2323)] = 47728, - [SMALL_STATE(2324)] = 47824, - [SMALL_STATE(2325)] = 47923, - [SMALL_STATE(2326)] = 47976, - [SMALL_STATE(2327)] = 48071, - [SMALL_STATE(2328)] = 48166, - [SMALL_STATE(2329)] = 48219, - [SMALL_STATE(2330)] = 48272, - [SMALL_STATE(2331)] = 48325, - [SMALL_STATE(2332)] = 48378, - [SMALL_STATE(2333)] = 48431, - [SMALL_STATE(2334)] = 48484, - [SMALL_STATE(2335)] = 48539, - [SMALL_STATE(2336)] = 48592, - [SMALL_STATE(2337)] = 48645, - [SMALL_STATE(2338)] = 48698, - [SMALL_STATE(2339)] = 48751, - [SMALL_STATE(2340)] = 48804, - [SMALL_STATE(2341)] = 48859, - [SMALL_STATE(2342)] = 48912, - [SMALL_STATE(2343)] = 48965, - [SMALL_STATE(2344)] = 49018, - [SMALL_STATE(2345)] = 49071, - [SMALL_STATE(2346)] = 49124, - [SMALL_STATE(2347)] = 49177, - [SMALL_STATE(2348)] = 49230, - [SMALL_STATE(2349)] = 49283, - [SMALL_STATE(2350)] = 49336, - [SMALL_STATE(2351)] = 49389, - [SMALL_STATE(2352)] = 49442, - [SMALL_STATE(2353)] = 49497, - [SMALL_STATE(2354)] = 49550, - [SMALL_STATE(2355)] = 49605, - [SMALL_STATE(2356)] = 49658, - [SMALL_STATE(2357)] = 49711, - [SMALL_STATE(2358)] = 49764, - [SMALL_STATE(2359)] = 49817, - [SMALL_STATE(2360)] = 49870, - [SMALL_STATE(2361)] = 49923, - [SMALL_STATE(2362)] = 49976, - [SMALL_STATE(2363)] = 50029, - [SMALL_STATE(2364)] = 50082, - [SMALL_STATE(2365)] = 50135, - [SMALL_STATE(2366)] = 50188, - [SMALL_STATE(2367)] = 50245, - [SMALL_STATE(2368)] = 50302, - [SMALL_STATE(2369)] = 50355, - [SMALL_STATE(2370)] = 50408, - [SMALL_STATE(2371)] = 50461, - [SMALL_STATE(2372)] = 50514, - [SMALL_STATE(2373)] = 50567, - [SMALL_STATE(2374)] = 50620, - [SMALL_STATE(2375)] = 50673, - [SMALL_STATE(2376)] = 50726, - [SMALL_STATE(2377)] = 50779, - [SMALL_STATE(2378)] = 50832, - [SMALL_STATE(2379)] = 50885, - [SMALL_STATE(2380)] = 50938, - [SMALL_STATE(2381)] = 50991, - [SMALL_STATE(2382)] = 51044, - [SMALL_STATE(2383)] = 51097, - [SMALL_STATE(2384)] = 51150, - [SMALL_STATE(2385)] = 51205, - [SMALL_STATE(2386)] = 51258, - [SMALL_STATE(2387)] = 51311, - [SMALL_STATE(2388)] = 51364, - [SMALL_STATE(2389)] = 51417, - [SMALL_STATE(2390)] = 51470, - [SMALL_STATE(2391)] = 51523, - [SMALL_STATE(2392)] = 51576, - [SMALL_STATE(2393)] = 51629, - [SMALL_STATE(2394)] = 51682, - [SMALL_STATE(2395)] = 51735, - [SMALL_STATE(2396)] = 51788, - [SMALL_STATE(2397)] = 51841, - [SMALL_STATE(2398)] = 51894, - [SMALL_STATE(2399)] = 51947, - [SMALL_STATE(2400)] = 52000, - [SMALL_STATE(2401)] = 52053, - [SMALL_STATE(2402)] = 52148, - [SMALL_STATE(2403)] = 52201, - [SMALL_STATE(2404)] = 52254, - [SMALL_STATE(2405)] = 52309, - [SMALL_STATE(2406)] = 52362, - [SMALL_STATE(2407)] = 52415, - [SMALL_STATE(2408)] = 52468, - [SMALL_STATE(2409)] = 52521, - [SMALL_STATE(2410)] = 52574, - [SMALL_STATE(2411)] = 52627, - [SMALL_STATE(2412)] = 52680, - [SMALL_STATE(2413)] = 52733, - [SMALL_STATE(2414)] = 52786, - [SMALL_STATE(2415)] = 52839, - [SMALL_STATE(2416)] = 52892, - [SMALL_STATE(2417)] = 52945, - [SMALL_STATE(2418)] = 52998, - [SMALL_STATE(2419)] = 53051, - [SMALL_STATE(2420)] = 53104, - [SMALL_STATE(2421)] = 53161, - [SMALL_STATE(2422)] = 53214, - [SMALL_STATE(2423)] = 53267, - [SMALL_STATE(2424)] = 53320, - [SMALL_STATE(2425)] = 53377, - [SMALL_STATE(2426)] = 53430, - [SMALL_STATE(2427)] = 53483, - [SMALL_STATE(2428)] = 53536, - [SMALL_STATE(2429)] = 53589, - [SMALL_STATE(2430)] = 53642, - [SMALL_STATE(2431)] = 53695, - [SMALL_STATE(2432)] = 53748, - [SMALL_STATE(2433)] = 53801, - [SMALL_STATE(2434)] = 53879, - [SMALL_STATE(2435)] = 53959, - [SMALL_STATE(2436)] = 54069, - [SMALL_STATE(2437)] = 54123, - [SMALL_STATE(2438)] = 54177, - [SMALL_STATE(2439)] = 54231, - [SMALL_STATE(2440)] = 54341, - [SMALL_STATE(2441)] = 54397, - [SMALL_STATE(2442)] = 54479, - [SMALL_STATE(2443)] = 54561, - [SMALL_STATE(2444)] = 54651, - [SMALL_STATE(2445)] = 54761, - [SMALL_STATE(2446)] = 54849, - [SMALL_STATE(2447)] = 54931, - [SMALL_STATE(2448)] = 55025, - [SMALL_STATE(2449)] = 55119, - [SMALL_STATE(2450)] = 55197, - [SMALL_STATE(2451)] = 55251, - [SMALL_STATE(2452)] = 55345, - [SMALL_STATE(2453)] = 55455, - [SMALL_STATE(2454)] = 55509, - [SMALL_STATE(2455)] = 55605, - [SMALL_STATE(2456)] = 55715, - [SMALL_STATE(2457)] = 55825, - [SMALL_STATE(2458)] = 55935, - [SMALL_STATE(2459)] = 56045, - [SMALL_STATE(2460)] = 56155, - [SMALL_STATE(2461)] = 56265, - [SMALL_STATE(2462)] = 56375, - [SMALL_STATE(2463)] = 56485, - [SMALL_STATE(2464)] = 56557, - [SMALL_STATE(2465)] = 56629, - [SMALL_STATE(2466)] = 56733, - [SMALL_STATE(2467)] = 56787, - [SMALL_STATE(2468)] = 56891, - [SMALL_STATE(2469)] = 56963, - [SMALL_STATE(2470)] = 57017, - [SMALL_STATE(2471)] = 57087, - [SMALL_STATE(2472)] = 57197, - [SMALL_STATE(2473)] = 57248, - [SMALL_STATE(2474)] = 57301, - [SMALL_STATE(2475)] = 57352, - [SMALL_STATE(2476)] = 57441, - [SMALL_STATE(2477)] = 57522, - [SMALL_STATE(2478)] = 57573, - [SMALL_STATE(2479)] = 57650, - [SMALL_STATE(2480)] = 57701, - [SMALL_STATE(2481)] = 57752, - [SMALL_STATE(2482)] = 57803, - [SMALL_STATE(2483)] = 57854, - [SMALL_STATE(2484)] = 57905, - [SMALL_STATE(2485)] = 57956, - [SMALL_STATE(2486)] = 58043, - [SMALL_STATE(2487)] = 58130, - [SMALL_STATE(2488)] = 58217, - [SMALL_STATE(2489)] = 58268, - [SMALL_STATE(2490)] = 58319, - [SMALL_STATE(2491)] = 58400, - [SMALL_STATE(2492)] = 58451, - [SMALL_STATE(2493)] = 58532, - [SMALL_STATE(2494)] = 58583, - [SMALL_STATE(2495)] = 58634, - [SMALL_STATE(2496)] = 58725, - [SMALL_STATE(2497)] = 58776, - [SMALL_STATE(2498)] = 58829, - [SMALL_STATE(2499)] = 58880, - [SMALL_STATE(2500)] = 58953, - [SMALL_STATE(2501)] = 59004, - [SMALL_STATE(2502)] = 59055, - [SMALL_STATE(2503)] = 59106, - [SMALL_STATE(2504)] = 59211, - [SMALL_STATE(2505)] = 59316, - [SMALL_STATE(2506)] = 59367, - [SMALL_STATE(2507)] = 59418, - [SMALL_STATE(2508)] = 59469, - [SMALL_STATE(2509)] = 59542, - [SMALL_STATE(2510)] = 59593, - [SMALL_STATE(2511)] = 59644, - [SMALL_STATE(2512)] = 59695, - [SMALL_STATE(2513)] = 59746, - [SMALL_STATE(2514)] = 59797, - [SMALL_STATE(2515)] = 59848, - [SMALL_STATE(2516)] = 59899, - [SMALL_STATE(2517)] = 59950, - [SMALL_STATE(2518)] = 60001, - [SMALL_STATE(2519)] = 60052, - [SMALL_STATE(2520)] = 60103, - [SMALL_STATE(2521)] = 60210, - [SMALL_STATE(2522)] = 60261, - [SMALL_STATE(2523)] = 60312, - [SMALL_STATE(2524)] = 60363, - [SMALL_STATE(2525)] = 60414, - [SMALL_STATE(2526)] = 60469, - [SMALL_STATE(2527)] = 60520, - [SMALL_STATE(2528)] = 60571, - [SMALL_STATE(2529)] = 60622, - [SMALL_STATE(2530)] = 60729, - [SMALL_STATE(2531)] = 60780, - [SMALL_STATE(2532)] = 60831, - [SMALL_STATE(2533)] = 60882, - [SMALL_STATE(2534)] = 60933, - [SMALL_STATE(2535)] = 60984, - [SMALL_STATE(2536)] = 61035, - [SMALL_STATE(2537)] = 61086, - [SMALL_STATE(2538)] = 61137, - [SMALL_STATE(2539)] = 61188, - [SMALL_STATE(2540)] = 61239, - [SMALL_STATE(2541)] = 61292, - [SMALL_STATE(2542)] = 61343, - [SMALL_STATE(2543)] = 61394, - [SMALL_STATE(2544)] = 61445, - [SMALL_STATE(2545)] = 61498, - [SMALL_STATE(2546)] = 61549, - [SMALL_STATE(2547)] = 61600, - [SMALL_STATE(2548)] = 61651, - [SMALL_STATE(2549)] = 61702, - [SMALL_STATE(2550)] = 61793, - [SMALL_STATE(2551)] = 61844, - [SMALL_STATE(2552)] = 61895, - [SMALL_STATE(2553)] = 61946, - [SMALL_STATE(2554)] = 61997, - [SMALL_STATE(2555)] = 62048, - [SMALL_STATE(2556)] = 62101, - [SMALL_STATE(2557)] = 62194, - [SMALL_STATE(2558)] = 62287, - [SMALL_STATE(2559)] = 62380, - [SMALL_STATE(2560)] = 62431, - [SMALL_STATE(2561)] = 62524, - [SMALL_STATE(2562)] = 62575, - [SMALL_STATE(2563)] = 62626, - [SMALL_STATE(2564)] = 62699, - [SMALL_STATE(2565)] = 62750, - [SMALL_STATE(2566)] = 62801, - [SMALL_STATE(2567)] = 62852, - [SMALL_STATE(2568)] = 62905, - [SMALL_STATE(2569)] = 62956, - [SMALL_STATE(2570)] = 63007, - [SMALL_STATE(2571)] = 63058, - [SMALL_STATE(2572)] = 63109, - [SMALL_STATE(2573)] = 63160, - [SMALL_STATE(2574)] = 63211, - [SMALL_STATE(2575)] = 63262, - [SMALL_STATE(2576)] = 63315, - [SMALL_STATE(2577)] = 63366, - [SMALL_STATE(2578)] = 63417, - [SMALL_STATE(2579)] = 63468, - [SMALL_STATE(2580)] = 63519, - [SMALL_STATE(2581)] = 63570, - [SMALL_STATE(2582)] = 63621, - [SMALL_STATE(2583)] = 63672, - [SMALL_STATE(2584)] = 63723, - [SMALL_STATE(2585)] = 63774, - [SMALL_STATE(2586)] = 63825, - [SMALL_STATE(2587)] = 63876, - [SMALL_STATE(2588)] = 63927, - [SMALL_STATE(2589)] = 63978, - [SMALL_STATE(2590)] = 64029, - [SMALL_STATE(2591)] = 64080, - [SMALL_STATE(2592)] = 64131, - [SMALL_STATE(2593)] = 64182, - [SMALL_STATE(2594)] = 64235, - [SMALL_STATE(2595)] = 64286, - [SMALL_STATE(2596)] = 64337, - [SMALL_STATE(2597)] = 64388, - [SMALL_STATE(2598)] = 64442, - [SMALL_STATE(2599)] = 64528, - [SMALL_STATE(2600)] = 64582, - [SMALL_STATE(2601)] = 64660, - [SMALL_STATE(2602)] = 64738, - [SMALL_STATE(2603)] = 64842, - [SMALL_STATE(2604)] = 64928, - [SMALL_STATE(2605)] = 65034, - [SMALL_STATE(2606)] = 65084, - [SMALL_STATE(2607)] = 65134, - [SMALL_STATE(2608)] = 65218, - [SMALL_STATE(2609)] = 65296, - [SMALL_STATE(2610)] = 65376, - [SMALL_STATE(2611)] = 65452, - [SMALL_STATE(2612)] = 65526, - [SMALL_STATE(2613)] = 65630, - [SMALL_STATE(2614)] = 65718, - [SMALL_STATE(2615)] = 65796, - [SMALL_STATE(2616)] = 65874, - [SMALL_STATE(2617)] = 65964, - [SMALL_STATE(2618)] = 66018, - [SMALL_STATE(2619)] = 66098, - [SMALL_STATE(2620)] = 66152, - [SMALL_STATE(2621)] = 66236, - [SMALL_STATE(2622)] = 66336, - [SMALL_STATE(2623)] = 66436, - [SMALL_STATE(2624)] = 66516, - [SMALL_STATE(2625)] = 66594, - [SMALL_STATE(2626)] = 66668, - [SMALL_STATE(2627)] = 66768, - [SMALL_STATE(2628)] = 66868, - [SMALL_STATE(2629)] = 66968, - [SMALL_STATE(2630)] = 67072, - [SMALL_STATE(2631)] = 67176, - [SMALL_STATE(2632)] = 67277, - [SMALL_STATE(2633)] = 67380, - [SMALL_STATE(2634)] = 67435, - [SMALL_STATE(2635)] = 67538, - [SMALL_STATE(2636)] = 67639, - [SMALL_STATE(2637)] = 67742, - [SMALL_STATE(2638)] = 67841, - [SMALL_STATE(2639)] = 67944, - [SMALL_STATE(2640)] = 68047, - [SMALL_STATE(2641)] = 68150, - [SMALL_STATE(2642)] = 68251, - [SMALL_STATE(2643)] = 68352, - [SMALL_STATE(2644)] = 68451, - [SMALL_STATE(2645)] = 68504, - [SMALL_STATE(2646)] = 68605, - [SMALL_STATE(2647)] = 68706, - [SMALL_STATE(2648)] = 68807, - [SMALL_STATE(2649)] = 68908, - [SMALL_STATE(2650)] = 68959, - [SMALL_STATE(2651)] = 69060, - [SMALL_STATE(2652)] = 69163, - [SMALL_STATE(2653)] = 69262, - [SMALL_STATE(2654)] = 69363, - [SMALL_STATE(2655)] = 69466, - [SMALL_STATE(2656)] = 69521, - [SMALL_STATE(2657)] = 69572, - [SMALL_STATE(2658)] = 69675, - [SMALL_STATE(2659)] = 69776, - [SMALL_STATE(2660)] = 69875, - [SMALL_STATE(2661)] = 69978, - [SMALL_STATE(2662)] = 70079, - [SMALL_STATE(2663)] = 70128, - [SMALL_STATE(2664)] = 70229, - [SMALL_STATE(2665)] = 70332, - [SMALL_STATE(2666)] = 70435, - [SMALL_STATE(2667)] = 70536, - [SMALL_STATE(2668)] = 70587, - [SMALL_STATE(2669)] = 70690, - [SMALL_STATE(2670)] = 70789, - [SMALL_STATE(2671)] = 70838, - [SMALL_STATE(2672)] = 70886, - [SMALL_STATE(2673)] = 70936, - [SMALL_STATE(2674)] = 71012, - [SMALL_STATE(2675)] = 71110, - [SMALL_STATE(2676)] = 71158, - [SMALL_STATE(2677)] = 71256, - [SMALL_STATE(2678)] = 71304, - [SMALL_STATE(2679)] = 71352, - [SMALL_STATE(2680)] = 71450, - [SMALL_STATE(2681)] = 71532, - [SMALL_STATE(2682)] = 71630, - [SMALL_STATE(2683)] = 71728, - [SMALL_STATE(2684)] = 71826, - [SMALL_STATE(2685)] = 71910, - [SMALL_STATE(2686)] = 71960, - [SMALL_STATE(2687)] = 72008, - [SMALL_STATE(2688)] = 72056, - [SMALL_STATE(2689)] = 72154, - [SMALL_STATE(2690)] = 72204, - [SMALL_STATE(2691)] = 72252, - [SMALL_STATE(2692)] = 72346, - [SMALL_STATE(2693)] = 72418, - [SMALL_STATE(2694)] = 72466, - [SMALL_STATE(2695)] = 72514, - [SMALL_STATE(2696)] = 72612, - [SMALL_STATE(2697)] = 72710, - [SMALL_STATE(2698)] = 72758, - [SMALL_STATE(2699)] = 72806, - [SMALL_STATE(2700)] = 72900, - [SMALL_STATE(2701)] = 72948, - [SMALL_STATE(2702)] = 72996, - [SMALL_STATE(2703)] = 73044, - [SMALL_STATE(2704)] = 73120, - [SMALL_STATE(2705)] = 73214, - [SMALL_STATE(2706)] = 73262, - [SMALL_STATE(2707)] = 73356, - [SMALL_STATE(2708)] = 73404, - [SMALL_STATE(2709)] = 73452, - [SMALL_STATE(2710)] = 73500, - [SMALL_STATE(2711)] = 73548, - [SMALL_STATE(2712)] = 73596, - [SMALL_STATE(2713)] = 73644, - [SMALL_STATE(2714)] = 73692, - [SMALL_STATE(2715)] = 73740, - [SMALL_STATE(2716)] = 73788, - [SMALL_STATE(2717)] = 73836, - [SMALL_STATE(2718)] = 73884, - [SMALL_STATE(2719)] = 73932, - [SMALL_STATE(2720)] = 74030, - [SMALL_STATE(2721)] = 74078, - [SMALL_STATE(2722)] = 74126, - [SMALL_STATE(2723)] = 74220, - [SMALL_STATE(2724)] = 74270, - [SMALL_STATE(2725)] = 74318, - [SMALL_STATE(2726)] = 74412, - [SMALL_STATE(2727)] = 74510, - [SMALL_STATE(2728)] = 74558, - [SMALL_STATE(2729)] = 74606, - [SMALL_STATE(2730)] = 74654, - [SMALL_STATE(2731)] = 74752, - [SMALL_STATE(2732)] = 74800, - [SMALL_STATE(2733)] = 74894, - [SMALL_STATE(2734)] = 74942, - [SMALL_STATE(2735)] = 75040, - [SMALL_STATE(2736)] = 75138, - [SMALL_STATE(2737)] = 75236, - [SMALL_STATE(2738)] = 75312, - [SMALL_STATE(2739)] = 75360, - [SMALL_STATE(2740)] = 75458, - [SMALL_STATE(2741)] = 75506, - [SMALL_STATE(2742)] = 75554, - [SMALL_STATE(2743)] = 75648, - [SMALL_STATE(2744)] = 75696, - [SMALL_STATE(2745)] = 75744, - [SMALL_STATE(2746)] = 75792, - [SMALL_STATE(2747)] = 75890, - [SMALL_STATE(2748)] = 75938, - [SMALL_STATE(2749)] = 75986, - [SMALL_STATE(2750)] = 76084, - [SMALL_STATE(2751)] = 76132, - [SMALL_STATE(2752)] = 76180, - [SMALL_STATE(2753)] = 76228, - [SMALL_STATE(2754)] = 76276, - [SMALL_STATE(2755)] = 76324, - [SMALL_STATE(2756)] = 76422, - [SMALL_STATE(2757)] = 76470, - [SMALL_STATE(2758)] = 76518, - [SMALL_STATE(2759)] = 76566, - [SMALL_STATE(2760)] = 76664, - [SMALL_STATE(2761)] = 76712, - [SMALL_STATE(2762)] = 76806, - [SMALL_STATE(2763)] = 76854, - [SMALL_STATE(2764)] = 76902, - [SMALL_STATE(2765)] = 76950, - [SMALL_STATE(2766)] = 76998, - [SMALL_STATE(2767)] = 77046, - [SMALL_STATE(2768)] = 77144, - [SMALL_STATE(2769)] = 77192, - [SMALL_STATE(2770)] = 77240, - [SMALL_STATE(2771)] = 77288, - [SMALL_STATE(2772)] = 77336, - [SMALL_STATE(2773)] = 77384, - [SMALL_STATE(2774)] = 77432, - [SMALL_STATE(2775)] = 77480, - [SMALL_STATE(2776)] = 77528, - [SMALL_STATE(2777)] = 77576, - [SMALL_STATE(2778)] = 77674, - [SMALL_STATE(2779)] = 77722, - [SMALL_STATE(2780)] = 77820, - [SMALL_STATE(2781)] = 77868, - [SMALL_STATE(2782)] = 77916, - [SMALL_STATE(2783)] = 78014, - [SMALL_STATE(2784)] = 78090, - [SMALL_STATE(2785)] = 78184, - [SMALL_STATE(2786)] = 78236, - [SMALL_STATE(2787)] = 78334, - [SMALL_STATE(2788)] = 78432, - [SMALL_STATE(2789)] = 78480, - [SMALL_STATE(2790)] = 78578, - [SMALL_STATE(2791)] = 78628, - [SMALL_STATE(2792)] = 78726, - [SMALL_STATE(2793)] = 78824, - [SMALL_STATE(2794)] = 78876, - [SMALL_STATE(2795)] = 78970, - [SMALL_STATE(2796)] = 79068, - [SMALL_STATE(2797)] = 79166, - [SMALL_STATE(2798)] = 79264, - [SMALL_STATE(2799)] = 79312, - [SMALL_STATE(2800)] = 79410, - [SMALL_STATE(2801)] = 79458, - [SMALL_STATE(2802)] = 79506, - [SMALL_STATE(2803)] = 79554, - [SMALL_STATE(2804)] = 79652, - [SMALL_STATE(2805)] = 79702, - [SMALL_STATE(2806)] = 79800, - [SMALL_STATE(2807)] = 79848, - [SMALL_STATE(2808)] = 79896, - [SMALL_STATE(2809)] = 79990, - [SMALL_STATE(2810)] = 80066, - [SMALL_STATE(2811)] = 80114, - [SMALL_STATE(2812)] = 80212, - [SMALL_STATE(2813)] = 80260, - [SMALL_STATE(2814)] = 80310, - [SMALL_STATE(2815)] = 80408, - [SMALL_STATE(2816)] = 80506, - [SMALL_STATE(2817)] = 80554, - [SMALL_STATE(2818)] = 80602, - [SMALL_STATE(2819)] = 80700, - [SMALL_STATE(2820)] = 80772, - [SMALL_STATE(2821)] = 80870, - [SMALL_STATE(2822)] = 80920, - [SMALL_STATE(2823)] = 81018, - [SMALL_STATE(2824)] = 81094, - [SMALL_STATE(2825)] = 81192, - [SMALL_STATE(2826)] = 81242, - [SMALL_STATE(2827)] = 81292, - [SMALL_STATE(2828)] = 81340, - [SMALL_STATE(2829)] = 81438, - [SMALL_STATE(2830)] = 81486, - [SMALL_STATE(2831)] = 81570, - [SMALL_STATE(2832)] = 81620, - [SMALL_STATE(2833)] = 81670, - [SMALL_STATE(2834)] = 81718, - [SMALL_STATE(2835)] = 81766, - [SMALL_STATE(2836)] = 81814, - [SMALL_STATE(2837)] = 81908, - [SMALL_STATE(2838)] = 81990, - [SMALL_STATE(2839)] = 82038, - [SMALL_STATE(2840)] = 82090, - [SMALL_STATE(2841)] = 82140, - [SMALL_STATE(2842)] = 82188, - [SMALL_STATE(2843)] = 82236, - [SMALL_STATE(2844)] = 82334, - [SMALL_STATE(2845)] = 82428, - [SMALL_STATE(2846)] = 82522, - [SMALL_STATE(2847)] = 82620, - [SMALL_STATE(2848)] = 82668, - [SMALL_STATE(2849)] = 82716, - [SMALL_STATE(2850)] = 82764, - [SMALL_STATE(2851)] = 82812, - [SMALL_STATE(2852)] = 82860, - [SMALL_STATE(2853)] = 82958, - [SMALL_STATE(2854)] = 83010, - [SMALL_STATE(2855)] = 83108, - [SMALL_STATE(2856)] = 83156, - [SMALL_STATE(2857)] = 83254, - [SMALL_STATE(2858)] = 83302, - [SMALL_STATE(2859)] = 83400, - [SMALL_STATE(2860)] = 83494, - [SMALL_STATE(2861)] = 83592, - [SMALL_STATE(2862)] = 83687, - [SMALL_STATE(2863)] = 83776, - [SMALL_STATE(2864)] = 83871, - [SMALL_STATE(2865)] = 83966, - [SMALL_STATE(2866)] = 84061, - [SMALL_STATE(2867)] = 84108, - [SMALL_STATE(2868)] = 84155, - [SMALL_STATE(2869)] = 84250, - [SMALL_STATE(2870)] = 84345, - [SMALL_STATE(2871)] = 84394, - [SMALL_STATE(2872)] = 84489, - [SMALL_STATE(2873)] = 84542, - [SMALL_STATE(2874)] = 84637, - [SMALL_STATE(2875)] = 84732, - [SMALL_STATE(2876)] = 84819, - [SMALL_STATE(2877)] = 84914, - [SMALL_STATE(2878)] = 85009, - [SMALL_STATE(2879)] = 85098, - [SMALL_STATE(2880)] = 85193, - [SMALL_STATE(2881)] = 85288, - [SMALL_STATE(2882)] = 85383, - [SMALL_STATE(2883)] = 85478, - [SMALL_STATE(2884)] = 85527, - [SMALL_STATE(2885)] = 85576, - [SMALL_STATE(2886)] = 85629, - [SMALL_STATE(2887)] = 85716, - [SMALL_STATE(2888)] = 85811, - [SMALL_STATE(2889)] = 85857, - [SMALL_STATE(2890)] = 85903, - [SMALL_STATE(2891)] = 85949, - [SMALL_STATE(2892)] = 85995, - [SMALL_STATE(2893)] = 86043, - [SMALL_STATE(2894)] = 86089, - [SMALL_STATE(2895)] = 86137, - [SMALL_STATE(2896)] = 86185, - [SMALL_STATE(2897)] = 86233, - [SMALL_STATE(2898)] = 86315, - [SMALL_STATE(2899)] = 86363, - [SMALL_STATE(2900)] = 86411, - [SMALL_STATE(2901)] = 86493, - [SMALL_STATE(2902)] = 86541, - [SMALL_STATE(2903)] = 86589, - [SMALL_STATE(2904)] = 86635, - [SMALL_STATE(2905)] = 86683, - [SMALL_STATE(2906)] = 86729, - [SMALL_STATE(2907)] = 86775, - [SMALL_STATE(2908)] = 86857, - [SMALL_STATE(2909)] = 86939, - [SMALL_STATE(2910)] = 86985, - [SMALL_STATE(2911)] = 87033, - [SMALL_STATE(2912)] = 87079, - [SMALL_STATE(2913)] = 87161, - [SMALL_STATE(2914)] = 87207, - [SMALL_STATE(2915)] = 87253, - [SMALL_STATE(2916)] = 87299, - [SMALL_STATE(2917)] = 87347, - [SMALL_STATE(2918)] = 87393, - [SMALL_STATE(2919)] = 87439, - [SMALL_STATE(2920)] = 87527, - [SMALL_STATE(2921)] = 87573, - [SMALL_STATE(2922)] = 87655, - [SMALL_STATE(2923)] = 87701, - [SMALL_STATE(2924)] = 87747, - [SMALL_STATE(2925)] = 87793, - [SMALL_STATE(2926)] = 87841, - [SMALL_STATE(2927)] = 87889, - [SMALL_STATE(2928)] = 87935, - [SMALL_STATE(2929)] = 87981, - [SMALL_STATE(2930)] = 88027, - [SMALL_STATE(2931)] = 88073, - [SMALL_STATE(2932)] = 88121, - [SMALL_STATE(2933)] = 88167, - [SMALL_STATE(2934)] = 88213, - [SMALL_STATE(2935)] = 88259, - [SMALL_STATE(2936)] = 88305, - [SMALL_STATE(2937)] = 88351, - [SMALL_STATE(2938)] = 88397, - [SMALL_STATE(2939)] = 88444, - [SMALL_STATE(2940)] = 88493, - [SMALL_STATE(2941)] = 88540, - [SMALL_STATE(2942)] = 88587, - [SMALL_STATE(2943)] = 88636, - [SMALL_STATE(2944)] = 88685, - [SMALL_STATE(2945)] = 88732, - [SMALL_STATE(2946)] = 88779, - [SMALL_STATE(2947)] = 88826, - [SMALL_STATE(2948)] = 88875, - [SMALL_STATE(2949)] = 88922, - [SMALL_STATE(2950)] = 88969, - [SMALL_STATE(2951)] = 89016, - [SMALL_STATE(2952)] = 89065, - [SMALL_STATE(2953)] = 89112, - [SMALL_STATE(2954)] = 89159, - [SMALL_STATE(2955)] = 89206, - [SMALL_STATE(2956)] = 89253, - [SMALL_STATE(2957)] = 89300, - [SMALL_STATE(2958)] = 89349, - [SMALL_STATE(2959)] = 89396, - [SMALL_STATE(2960)] = 89445, - [SMALL_STATE(2961)] = 89494, - [SMALL_STATE(2962)] = 89541, - [SMALL_STATE(2963)] = 89590, - [SMALL_STATE(2964)] = 89639, - [SMALL_STATE(2965)] = 89686, - [SMALL_STATE(2966)] = 89733, - [SMALL_STATE(2967)] = 89780, - [SMALL_STATE(2968)] = 89827, - [SMALL_STATE(2969)] = 89874, - [SMALL_STATE(2970)] = 89921, - [SMALL_STATE(2971)] = 89968, - [SMALL_STATE(2972)] = 90015, - [SMALL_STATE(2973)] = 90062, - [SMALL_STATE(2974)] = 90109, - [SMALL_STATE(2975)] = 90156, - [SMALL_STATE(2976)] = 90205, - [SMALL_STATE(2977)] = 90252, - [SMALL_STATE(2978)] = 90299, - [SMALL_STATE(2979)] = 90346, - [SMALL_STATE(2980)] = 90395, - [SMALL_STATE(2981)] = 90444, - [SMALL_STATE(2982)] = 90491, - [SMALL_STATE(2983)] = 90538, - [SMALL_STATE(2984)] = 90585, - [SMALL_STATE(2985)] = 90632, - [SMALL_STATE(2986)] = 90681, - [SMALL_STATE(2987)] = 90730, - [SMALL_STATE(2988)] = 90777, - [SMALL_STATE(2989)] = 90826, - [SMALL_STATE(2990)] = 90875, - [SMALL_STATE(2991)] = 90924, - [SMALL_STATE(2992)] = 90971, - [SMALL_STATE(2993)] = 91018, - [SMALL_STATE(2994)] = 91065, - [SMALL_STATE(2995)] = 91112, - [SMALL_STATE(2996)] = 91161, - [SMALL_STATE(2997)] = 91208, - [SMALL_STATE(2998)] = 91257, - [SMALL_STATE(2999)] = 91304, - [SMALL_STATE(3000)] = 91353, - [SMALL_STATE(3001)] = 91400, - [SMALL_STATE(3002)] = 91447, - [SMALL_STATE(3003)] = 91496, - [SMALL_STATE(3004)] = 91545, - [SMALL_STATE(3005)] = 91594, - [SMALL_STATE(3006)] = 91643, - [SMALL_STATE(3007)] = 91692, - [SMALL_STATE(3008)] = 91739, - [SMALL_STATE(3009)] = 91788, - [SMALL_STATE(3010)] = 91837, - [SMALL_STATE(3011)] = 91919, - [SMALL_STATE(3012)] = 92001, - [SMALL_STATE(3013)] = 92080, - [SMALL_STATE(3014)] = 92159, - [SMALL_STATE(3015)] = 92238, - [SMALL_STATE(3016)] = 92317, - [SMALL_STATE(3017)] = 92396, - [SMALL_STATE(3018)] = 92475, - [SMALL_STATE(3019)] = 92554, - [SMALL_STATE(3020)] = 92633, - [SMALL_STATE(3021)] = 92712, - [SMALL_STATE(3022)] = 92791, - [SMALL_STATE(3023)] = 92870, - [SMALL_STATE(3024)] = 92949, - [SMALL_STATE(3025)] = 93028, - [SMALL_STATE(3026)] = 93107, - [SMALL_STATE(3027)] = 93186, - [SMALL_STATE(3028)] = 93265, - [SMALL_STATE(3029)] = 93344, - [SMALL_STATE(3030)] = 93423, - [SMALL_STATE(3031)] = 93502, - [SMALL_STATE(3032)] = 93581, - [SMALL_STATE(3033)] = 93660, - [SMALL_STATE(3034)] = 93739, - [SMALL_STATE(3035)] = 93818, - [SMALL_STATE(3036)] = 93897, - [SMALL_STATE(3037)] = 93950, - [SMALL_STATE(3038)] = 94029, - [SMALL_STATE(3039)] = 94108, - [SMALL_STATE(3040)] = 94187, - [SMALL_STATE(3041)] = 94266, - [SMALL_STATE(3042)] = 94345, - [SMALL_STATE(3043)] = 94424, - [SMALL_STATE(3044)] = 94503, - [SMALL_STATE(3045)] = 94582, - [SMALL_STATE(3046)] = 94661, - [SMALL_STATE(3047)] = 94740, - [SMALL_STATE(3048)] = 94819, - [SMALL_STATE(3049)] = 94898, - [SMALL_STATE(3050)] = 94977, - [SMALL_STATE(3051)] = 95053, - [SMALL_STATE(3052)] = 95129, - [SMALL_STATE(3053)] = 95205, - [SMALL_STATE(3054)] = 95281, - [SMALL_STATE(3055)] = 95357, - [SMALL_STATE(3056)] = 95433, - [SMALL_STATE(3057)] = 95509, - [SMALL_STATE(3058)] = 95585, - [SMALL_STATE(3059)] = 95661, - [SMALL_STATE(3060)] = 95737, - [SMALL_STATE(3061)] = 95813, - [SMALL_STATE(3062)] = 95889, - [SMALL_STATE(3063)] = 95965, - [SMALL_STATE(3064)] = 96041, - [SMALL_STATE(3065)] = 96117, - [SMALL_STATE(3066)] = 96193, - [SMALL_STATE(3067)] = 96269, - [SMALL_STATE(3068)] = 96345, - [SMALL_STATE(3069)] = 96421, - [SMALL_STATE(3070)] = 96497, - [SMALL_STATE(3071)] = 96573, - [SMALL_STATE(3072)] = 96649, - [SMALL_STATE(3073)] = 96725, - [SMALL_STATE(3074)] = 96801, - [SMALL_STATE(3075)] = 96877, - [SMALL_STATE(3076)] = 96953, - [SMALL_STATE(3077)] = 97029, - [SMALL_STATE(3078)] = 97105, - [SMALL_STATE(3079)] = 97181, - [SMALL_STATE(3080)] = 97257, - [SMALL_STATE(3081)] = 97333, - [SMALL_STATE(3082)] = 97409, - [SMALL_STATE(3083)] = 97485, - [SMALL_STATE(3084)] = 97561, - [SMALL_STATE(3085)] = 97637, - [SMALL_STATE(3086)] = 97713, - [SMALL_STATE(3087)] = 97789, - [SMALL_STATE(3088)] = 97865, - [SMALL_STATE(3089)] = 97941, - [SMALL_STATE(3090)] = 98017, - [SMALL_STATE(3091)] = 98093, - [SMALL_STATE(3092)] = 98169, - [SMALL_STATE(3093)] = 98245, - [SMALL_STATE(3094)] = 98321, - [SMALL_STATE(3095)] = 98397, - [SMALL_STATE(3096)] = 98473, - [SMALL_STATE(3097)] = 98549, - [SMALL_STATE(3098)] = 98625, - [SMALL_STATE(3099)] = 98701, - [SMALL_STATE(3100)] = 98777, - [SMALL_STATE(3101)] = 98853, - [SMALL_STATE(3102)] = 98929, - [SMALL_STATE(3103)] = 99005, - [SMALL_STATE(3104)] = 99081, - [SMALL_STATE(3105)] = 99157, - [SMALL_STATE(3106)] = 99233, - [SMALL_STATE(3107)] = 99309, - [SMALL_STATE(3108)] = 99385, - [SMALL_STATE(3109)] = 99461, - [SMALL_STATE(3110)] = 99537, - [SMALL_STATE(3111)] = 99613, - [SMALL_STATE(3112)] = 99689, - [SMALL_STATE(3113)] = 99765, - [SMALL_STATE(3114)] = 99841, - [SMALL_STATE(3115)] = 99917, - [SMALL_STATE(3116)] = 99993, - [SMALL_STATE(3117)] = 100069, - [SMALL_STATE(3118)] = 100145, - [SMALL_STATE(3119)] = 100221, - [SMALL_STATE(3120)] = 100297, - [SMALL_STATE(3121)] = 100373, - [SMALL_STATE(3122)] = 100449, - [SMALL_STATE(3123)] = 100525, - [SMALL_STATE(3124)] = 100601, - [SMALL_STATE(3125)] = 100677, - [SMALL_STATE(3126)] = 100753, - [SMALL_STATE(3127)] = 100829, - [SMALL_STATE(3128)] = 100905, - [SMALL_STATE(3129)] = 100981, - [SMALL_STATE(3130)] = 101057, - [SMALL_STATE(3131)] = 101133, - [SMALL_STATE(3132)] = 101209, - [SMALL_STATE(3133)] = 101285, - [SMALL_STATE(3134)] = 101361, - [SMALL_STATE(3135)] = 101437, - [SMALL_STATE(3136)] = 101513, - [SMALL_STATE(3137)] = 101589, - [SMALL_STATE(3138)] = 101665, - [SMALL_STATE(3139)] = 101741, - [SMALL_STATE(3140)] = 101817, - [SMALL_STATE(3141)] = 101893, - [SMALL_STATE(3142)] = 101969, - [SMALL_STATE(3143)] = 102045, - [SMALL_STATE(3144)] = 102121, - [SMALL_STATE(3145)] = 102197, - [SMALL_STATE(3146)] = 102273, - [SMALL_STATE(3147)] = 102349, - [SMALL_STATE(3148)] = 102425, - [SMALL_STATE(3149)] = 102501, - [SMALL_STATE(3150)] = 102577, - [SMALL_STATE(3151)] = 102653, - [SMALL_STATE(3152)] = 102729, - [SMALL_STATE(3153)] = 102805, - [SMALL_STATE(3154)] = 102881, - [SMALL_STATE(3155)] = 102957, - [SMALL_STATE(3156)] = 103033, - [SMALL_STATE(3157)] = 103109, - [SMALL_STATE(3158)] = 103185, - [SMALL_STATE(3159)] = 103261, - [SMALL_STATE(3160)] = 103337, - [SMALL_STATE(3161)] = 103413, - [SMALL_STATE(3162)] = 103489, - [SMALL_STATE(3163)] = 103565, - [SMALL_STATE(3164)] = 103641, - [SMALL_STATE(3165)] = 103717, - [SMALL_STATE(3166)] = 103793, - [SMALL_STATE(3167)] = 103869, - [SMALL_STATE(3168)] = 103945, - [SMALL_STATE(3169)] = 104021, - [SMALL_STATE(3170)] = 104097, - [SMALL_STATE(3171)] = 104173, - [SMALL_STATE(3172)] = 104249, - [SMALL_STATE(3173)] = 104325, - [SMALL_STATE(3174)] = 104401, - [SMALL_STATE(3175)] = 104477, - [SMALL_STATE(3176)] = 104553, - [SMALL_STATE(3177)] = 104629, - [SMALL_STATE(3178)] = 104705, - [SMALL_STATE(3179)] = 104781, - [SMALL_STATE(3180)] = 104857, - [SMALL_STATE(3181)] = 104933, - [SMALL_STATE(3182)] = 105009, - [SMALL_STATE(3183)] = 105085, - [SMALL_STATE(3184)] = 105161, - [SMALL_STATE(3185)] = 105237, - [SMALL_STATE(3186)] = 105313, - [SMALL_STATE(3187)] = 105389, - [SMALL_STATE(3188)] = 105465, - [SMALL_STATE(3189)] = 105541, - [SMALL_STATE(3190)] = 105617, - [SMALL_STATE(3191)] = 105693, - [SMALL_STATE(3192)] = 105769, - [SMALL_STATE(3193)] = 105845, - [SMALL_STATE(3194)] = 105921, - [SMALL_STATE(3195)] = 105997, - [SMALL_STATE(3196)] = 106073, - [SMALL_STATE(3197)] = 106149, - [SMALL_STATE(3198)] = 106225, - [SMALL_STATE(3199)] = 106301, - [SMALL_STATE(3200)] = 106377, - [SMALL_STATE(3201)] = 106453, - [SMALL_STATE(3202)] = 106529, - [SMALL_STATE(3203)] = 106605, - [SMALL_STATE(3204)] = 106681, - [SMALL_STATE(3205)] = 106757, - [SMALL_STATE(3206)] = 106833, - [SMALL_STATE(3207)] = 106909, - [SMALL_STATE(3208)] = 106985, - [SMALL_STATE(3209)] = 107061, - [SMALL_STATE(3210)] = 107137, - [SMALL_STATE(3211)] = 107213, - [SMALL_STATE(3212)] = 107289, - [SMALL_STATE(3213)] = 107365, - [SMALL_STATE(3214)] = 107441, - [SMALL_STATE(3215)] = 107517, - [SMALL_STATE(3216)] = 107593, - [SMALL_STATE(3217)] = 107669, - [SMALL_STATE(3218)] = 107745, - [SMALL_STATE(3219)] = 107821, - [SMALL_STATE(3220)] = 107897, - [SMALL_STATE(3221)] = 107973, - [SMALL_STATE(3222)] = 108049, - [SMALL_STATE(3223)] = 108125, - [SMALL_STATE(3224)] = 108201, - [SMALL_STATE(3225)] = 108277, - [SMALL_STATE(3226)] = 108353, - [SMALL_STATE(3227)] = 108429, - [SMALL_STATE(3228)] = 108505, - [SMALL_STATE(3229)] = 108581, - [SMALL_STATE(3230)] = 108657, - [SMALL_STATE(3231)] = 108733, - [SMALL_STATE(3232)] = 108809, - [SMALL_STATE(3233)] = 108885, - [SMALL_STATE(3234)] = 108961, - [SMALL_STATE(3235)] = 109037, - [SMALL_STATE(3236)] = 109113, - [SMALL_STATE(3237)] = 109189, - [SMALL_STATE(3238)] = 109265, - [SMALL_STATE(3239)] = 109341, - [SMALL_STATE(3240)] = 109417, - [SMALL_STATE(3241)] = 109493, - [SMALL_STATE(3242)] = 109569, - [SMALL_STATE(3243)] = 109645, - [SMALL_STATE(3244)] = 109721, - [SMALL_STATE(3245)] = 109797, - [SMALL_STATE(3246)] = 109873, - [SMALL_STATE(3247)] = 109949, - [SMALL_STATE(3248)] = 110025, - [SMALL_STATE(3249)] = 110101, - [SMALL_STATE(3250)] = 110177, - [SMALL_STATE(3251)] = 110253, - [SMALL_STATE(3252)] = 110329, - [SMALL_STATE(3253)] = 110405, - [SMALL_STATE(3254)] = 110481, - [SMALL_STATE(3255)] = 110557, - [SMALL_STATE(3256)] = 110633, - [SMALL_STATE(3257)] = 110709, - [SMALL_STATE(3258)] = 110785, - [SMALL_STATE(3259)] = 110861, - [SMALL_STATE(3260)] = 110937, - [SMALL_STATE(3261)] = 111013, - [SMALL_STATE(3262)] = 111089, - [SMALL_STATE(3263)] = 111165, - [SMALL_STATE(3264)] = 111241, - [SMALL_STATE(3265)] = 111317, - [SMALL_STATE(3266)] = 111393, - [SMALL_STATE(3267)] = 111469, - [SMALL_STATE(3268)] = 111545, - [SMALL_STATE(3269)] = 111621, - [SMALL_STATE(3270)] = 111697, - [SMALL_STATE(3271)] = 111773, - [SMALL_STATE(3272)] = 111849, - [SMALL_STATE(3273)] = 111925, - [SMALL_STATE(3274)] = 112001, - [SMALL_STATE(3275)] = 112077, - [SMALL_STATE(3276)] = 112153, - [SMALL_STATE(3277)] = 112229, - [SMALL_STATE(3278)] = 112305, - [SMALL_STATE(3279)] = 112381, - [SMALL_STATE(3280)] = 112457, - [SMALL_STATE(3281)] = 112533, - [SMALL_STATE(3282)] = 112609, - [SMALL_STATE(3283)] = 112685, - [SMALL_STATE(3284)] = 112761, - [SMALL_STATE(3285)] = 112837, - [SMALL_STATE(3286)] = 112913, - [SMALL_STATE(3287)] = 112989, - [SMALL_STATE(3288)] = 113065, - [SMALL_STATE(3289)] = 113141, - [SMALL_STATE(3290)] = 113217, - [SMALL_STATE(3291)] = 113293, - [SMALL_STATE(3292)] = 113369, - [SMALL_STATE(3293)] = 113445, - [SMALL_STATE(3294)] = 113521, - [SMALL_STATE(3295)] = 113597, - [SMALL_STATE(3296)] = 113673, - [SMALL_STATE(3297)] = 113749, - [SMALL_STATE(3298)] = 113825, - [SMALL_STATE(3299)] = 113901, - [SMALL_STATE(3300)] = 113977, - [SMALL_STATE(3301)] = 114053, - [SMALL_STATE(3302)] = 114129, - [SMALL_STATE(3303)] = 114205, - [SMALL_STATE(3304)] = 114281, - [SMALL_STATE(3305)] = 114357, - [SMALL_STATE(3306)] = 114433, - [SMALL_STATE(3307)] = 114509, - [SMALL_STATE(3308)] = 114585, - [SMALL_STATE(3309)] = 114661, - [SMALL_STATE(3310)] = 114737, - [SMALL_STATE(3311)] = 114813, - [SMALL_STATE(3312)] = 114889, - [SMALL_STATE(3313)] = 114965, - [SMALL_STATE(3314)] = 115041, - [SMALL_STATE(3315)] = 115117, - [SMALL_STATE(3316)] = 115178, - [SMALL_STATE(3317)] = 115243, - [SMALL_STATE(3318)] = 115304, - [SMALL_STATE(3319)] = 115365, - [SMALL_STATE(3320)] = 115430, - [SMALL_STATE(3321)] = 115491, - [SMALL_STATE(3322)] = 115552, - [SMALL_STATE(3323)] = 115613, - [SMALL_STATE(3324)] = 115674, - [SMALL_STATE(3325)] = 115735, - [SMALL_STATE(3326)] = 115796, - [SMALL_STATE(3327)] = 115857, - [SMALL_STATE(3328)] = 115918, - [SMALL_STATE(3329)] = 115979, - [SMALL_STATE(3330)] = 116040, - [SMALL_STATE(3331)] = 116101, - [SMALL_STATE(3332)] = 116161, - [SMALL_STATE(3333)] = 116191, - [SMALL_STATE(3334)] = 116221, - [SMALL_STATE(3335)] = 116251, - [SMALL_STATE(3336)] = 116281, - [SMALL_STATE(3337)] = 116311, - [SMALL_STATE(3338)] = 116341, - [SMALL_STATE(3339)] = 116379, - [SMALL_STATE(3340)] = 116405, - [SMALL_STATE(3341)] = 116431, - [SMALL_STATE(3342)] = 116457, - [SMALL_STATE(3343)] = 116483, - [SMALL_STATE(3344)] = 116521, - [SMALL_STATE(3345)] = 116547, - [SMALL_STATE(3346)] = 116591, - [SMALL_STATE(3347)] = 116629, - [SMALL_STATE(3348)] = 116656, - [SMALL_STATE(3349)] = 116685, - [SMALL_STATE(3350)] = 116712, - [SMALL_STATE(3351)] = 116735, - [SMALL_STATE(3352)] = 116758, - [SMALL_STATE(3353)] = 116781, - [SMALL_STATE(3354)] = 116807, - [SMALL_STATE(3355)] = 116833, - [SMALL_STATE(3356)] = 116859, - [SMALL_STATE(3357)] = 116885, - [SMALL_STATE(3358)] = 116911, - [SMALL_STATE(3359)] = 116937, - [SMALL_STATE(3360)] = 116963, - [SMALL_STATE(3361)] = 116989, - [SMALL_STATE(3362)] = 117015, - [SMALL_STATE(3363)] = 117056, - [SMALL_STATE(3364)] = 117079, - [SMALL_STATE(3365)] = 117104, - [SMALL_STATE(3366)] = 117145, - [SMALL_STATE(3367)] = 117186, - [SMALL_STATE(3368)] = 117209, - [SMALL_STATE(3369)] = 117249, - [SMALL_STATE(3370)] = 117289, - [SMALL_STATE(3371)] = 117315, - [SMALL_STATE(3372)] = 117341, - [SMALL_STATE(3373)] = 117381, - [SMALL_STATE(3374)] = 117421, - [SMALL_STATE(3375)] = 117447, - [SMALL_STATE(3376)] = 117473, - [SMALL_STATE(3377)] = 117513, - [SMALL_STATE(3378)] = 117535, - [SMALL_STATE(3379)] = 117575, - [SMALL_STATE(3380)] = 117615, - [SMALL_STATE(3381)] = 117637, - [SMALL_STATE(3382)] = 117659, - [SMALL_STATE(3383)] = 117685, - [SMALL_STATE(3384)] = 117725, - [SMALL_STATE(3385)] = 117765, - [SMALL_STATE(3386)] = 117805, - [SMALL_STATE(3387)] = 117827, - [SMALL_STATE(3388)] = 117867, - [SMALL_STATE(3389)] = 117891, - [SMALL_STATE(3390)] = 117931, - [SMALL_STATE(3391)] = 117971, - [SMALL_STATE(3392)] = 118011, - [SMALL_STATE(3393)] = 118051, - [SMALL_STATE(3394)] = 118091, - [SMALL_STATE(3395)] = 118131, - [SMALL_STATE(3396)] = 118171, - [SMALL_STATE(3397)] = 118211, - [SMALL_STATE(3398)] = 118235, - [SMALL_STATE(3399)] = 118275, - [SMALL_STATE(3400)] = 118315, - [SMALL_STATE(3401)] = 118337, - [SMALL_STATE(3402)] = 118363, - [SMALL_STATE(3403)] = 118403, - [SMALL_STATE(3404)] = 118443, - [SMALL_STATE(3405)] = 118483, - [SMALL_STATE(3406)] = 118509, - [SMALL_STATE(3407)] = 118535, - [SMALL_STATE(3408)] = 118575, - [SMALL_STATE(3409)] = 118615, - [SMALL_STATE(3410)] = 118655, - [SMALL_STATE(3411)] = 118677, - [SMALL_STATE(3412)] = 118717, - [SMALL_STATE(3413)] = 118757, - [SMALL_STATE(3414)] = 118779, - [SMALL_STATE(3415)] = 118798, - [SMALL_STATE(3416)] = 118823, - [SMALL_STATE(3417)] = 118848, - [SMALL_STATE(3418)] = 118867, - [SMALL_STATE(3419)] = 118886, - [SMALL_STATE(3420)] = 118906, - [SMALL_STATE(3421)] = 118926, - [SMALL_STATE(3422)] = 118950, - [SMALL_STATE(3423)] = 118967, - [SMALL_STATE(3424)] = 118988, - [SMALL_STATE(3425)] = 119011, - [SMALL_STATE(3426)] = 119028, - [SMALL_STATE(3427)] = 119045, - [SMALL_STATE(3428)] = 119062, - [SMALL_STATE(3429)] = 119079, - [SMALL_STATE(3430)] = 119096, - [SMALL_STATE(3431)] = 119113, - [SMALL_STATE(3432)] = 119130, - [SMALL_STATE(3433)] = 119147, - [SMALL_STATE(3434)] = 119164, - [SMALL_STATE(3435)] = 119185, - [SMALL_STATE(3436)] = 119202, - [SMALL_STATE(3437)] = 119219, - [SMALL_STATE(3438)] = 119236, - [SMALL_STATE(3439)] = 119253, - [SMALL_STATE(3440)] = 119270, - [SMALL_STATE(3441)] = 119287, - [SMALL_STATE(3442)] = 119304, - [SMALL_STATE(3443)] = 119321, - [SMALL_STATE(3444)] = 119338, - [SMALL_STATE(3445)] = 119355, - [SMALL_STATE(3446)] = 119372, - [SMALL_STATE(3447)] = 119389, - [SMALL_STATE(3448)] = 119411, - [SMALL_STATE(3449)] = 119443, - [SMALL_STATE(3450)] = 119463, - [SMALL_STATE(3451)] = 119492, - [SMALL_STATE(3452)] = 119519, - [SMALL_STATE(3453)] = 119536, - [SMALL_STATE(3454)] = 119557, - [SMALL_STATE(3455)] = 119584, - [SMALL_STATE(3456)] = 119611, - [SMALL_STATE(3457)] = 119630, - [SMALL_STATE(3458)] = 119657, - [SMALL_STATE(3459)] = 119684, - [SMALL_STATE(3460)] = 119711, - [SMALL_STATE(3461)] = 119732, - [SMALL_STATE(3462)] = 119759, - [SMALL_STATE(3463)] = 119786, - [SMALL_STATE(3464)] = 119801, - [SMALL_STATE(3465)] = 119828, - [SMALL_STATE(3466)] = 119855, - [SMALL_STATE(3467)] = 119882, - [SMALL_STATE(3468)] = 119909, - [SMALL_STATE(3469)] = 119927, - [SMALL_STATE(3470)] = 119949, - [SMALL_STATE(3471)] = 119963, - [SMALL_STATE(3472)] = 119981, - [SMALL_STATE(3473)] = 119995, - [SMALL_STATE(3474)] = 120013, - [SMALL_STATE(3475)] = 120039, - [SMALL_STATE(3476)] = 120055, - [SMALL_STATE(3477)] = 120069, - [SMALL_STATE(3478)] = 120095, - [SMALL_STATE(3479)] = 120111, - [SMALL_STATE(3480)] = 120125, - [SMALL_STATE(3481)] = 120139, - [SMALL_STATE(3482)] = 120155, - [SMALL_STATE(3483)] = 120169, - [SMALL_STATE(3484)] = 120183, - [SMALL_STATE(3485)] = 120197, - [SMALL_STATE(3486)] = 120225, - [SMALL_STATE(3487)] = 120239, - [SMALL_STATE(3488)] = 120260, - [SMALL_STATE(3489)] = 120281, - [SMALL_STATE(3490)] = 120302, - [SMALL_STATE(3491)] = 120319, - [SMALL_STATE(3492)] = 120336, - [SMALL_STATE(3493)] = 120357, - [SMALL_STATE(3494)] = 120378, - [SMALL_STATE(3495)] = 120399, - [SMALL_STATE(3496)] = 120416, - [SMALL_STATE(3497)] = 120433, - [SMALL_STATE(3498)] = 120450, - [SMALL_STATE(3499)] = 120471, - [SMALL_STATE(3500)] = 120492, - [SMALL_STATE(3501)] = 120509, - [SMALL_STATE(3502)] = 120530, - [SMALL_STATE(3503)] = 120551, - [SMALL_STATE(3504)] = 120568, - [SMALL_STATE(3505)] = 120585, - [SMALL_STATE(3506)] = 120606, - [SMALL_STATE(3507)] = 120623, - [SMALL_STATE(3508)] = 120636, - [SMALL_STATE(3509)] = 120657, - [SMALL_STATE(3510)] = 120674, - [SMALL_STATE(3511)] = 120687, - [SMALL_STATE(3512)] = 120708, - [SMALL_STATE(3513)] = 120725, - [SMALL_STATE(3514)] = 120742, - [SMALL_STATE(3515)] = 120763, - [SMALL_STATE(3516)] = 120780, - [SMALL_STATE(3517)] = 120797, - [SMALL_STATE(3518)] = 120822, - [SMALL_STATE(3519)] = 120839, - [SMALL_STATE(3520)] = 120860, - [SMALL_STATE(3521)] = 120877, - [SMALL_STATE(3522)] = 120898, - [SMALL_STATE(3523)] = 120919, - [SMALL_STATE(3524)] = 120936, - [SMALL_STATE(3525)] = 120949, - [SMALL_STATE(3526)] = 120966, - [SMALL_STATE(3527)] = 120983, - [SMALL_STATE(3528)] = 121000, - [SMALL_STATE(3529)] = 121021, - [SMALL_STATE(3530)] = 121042, - [SMALL_STATE(3531)] = 121059, - [SMALL_STATE(3532)] = 121080, - [SMALL_STATE(3533)] = 121101, - [SMALL_STATE(3534)] = 121122, - [SMALL_STATE(3535)] = 121139, - [SMALL_STATE(3536)] = 121156, - [SMALL_STATE(3537)] = 121173, - [SMALL_STATE(3538)] = 121190, - [SMALL_STATE(3539)] = 121211, - [SMALL_STATE(3540)] = 121228, - [SMALL_STATE(3541)] = 121251, - [SMALL_STATE(3542)] = 121272, - [SMALL_STATE(3543)] = 121297, - [SMALL_STATE(3544)] = 121317, - [SMALL_STATE(3545)] = 121337, - [SMALL_STATE(3546)] = 121357, - [SMALL_STATE(3547)] = 121369, - [SMALL_STATE(3548)] = 121385, - [SMALL_STATE(3549)] = 121405, - [SMALL_STATE(3550)] = 121425, - [SMALL_STATE(3551)] = 121445, - [SMALL_STATE(3552)] = 121465, - [SMALL_STATE(3553)] = 121485, - [SMALL_STATE(3554)] = 121501, - [SMALL_STATE(3555)] = 121517, - [SMALL_STATE(3556)] = 121537, - [SMALL_STATE(3557)] = 121557, - [SMALL_STATE(3558)] = 121577, - [SMALL_STATE(3559)] = 121597, - [SMALL_STATE(3560)] = 121617, - [SMALL_STATE(3561)] = 121631, - [SMALL_STATE(3562)] = 121647, - [SMALL_STATE(3563)] = 121667, - [SMALL_STATE(3564)] = 121687, - [SMALL_STATE(3565)] = 121707, - [SMALL_STATE(3566)] = 121723, - [SMALL_STATE(3567)] = 121739, - [SMALL_STATE(3568)] = 121759, - [SMALL_STATE(3569)] = 121779, - [SMALL_STATE(3570)] = 121799, - [SMALL_STATE(3571)] = 121819, - [SMALL_STATE(3572)] = 121839, - [SMALL_STATE(3573)] = 121859, - [SMALL_STATE(3574)] = 121879, - [SMALL_STATE(3575)] = 121899, - [SMALL_STATE(3576)] = 121919, - [SMALL_STATE(3577)] = 121939, - [SMALL_STATE(3578)] = 121959, - [SMALL_STATE(3579)] = 121979, - [SMALL_STATE(3580)] = 121999, - [SMALL_STATE(3581)] = 122019, - [SMALL_STATE(3582)] = 122039, - [SMALL_STATE(3583)] = 122059, - [SMALL_STATE(3584)] = 122079, - [SMALL_STATE(3585)] = 122099, - [SMALL_STATE(3586)] = 122119, - [SMALL_STATE(3587)] = 122139, - [SMALL_STATE(3588)] = 122159, - [SMALL_STATE(3589)] = 122179, - [SMALL_STATE(3590)] = 122199, - [SMALL_STATE(3591)] = 122219, - [SMALL_STATE(3592)] = 122239, - [SMALL_STATE(3593)] = 122259, - [SMALL_STATE(3594)] = 122279, - [SMALL_STATE(3595)] = 122299, - [SMALL_STATE(3596)] = 122319, - [SMALL_STATE(3597)] = 122339, - [SMALL_STATE(3598)] = 122361, - [SMALL_STATE(3599)] = 122381, - [SMALL_STATE(3600)] = 122401, - [SMALL_STATE(3601)] = 122421, - [SMALL_STATE(3602)] = 122441, - [SMALL_STATE(3603)] = 122461, - [SMALL_STATE(3604)] = 122477, - [SMALL_STATE(3605)] = 122497, - [SMALL_STATE(3606)] = 122509, - [SMALL_STATE(3607)] = 122529, - [SMALL_STATE(3608)] = 122549, - [SMALL_STATE(3609)] = 122569, - [SMALL_STATE(3610)] = 122589, - [SMALL_STATE(3611)] = 122609, - [SMALL_STATE(3612)] = 122629, - [SMALL_STATE(3613)] = 122649, - [SMALL_STATE(3614)] = 122669, - [SMALL_STATE(3615)] = 122689, - [SMALL_STATE(3616)] = 122709, - [SMALL_STATE(3617)] = 122725, - [SMALL_STATE(3618)] = 122745, - [SMALL_STATE(3619)] = 122765, - [SMALL_STATE(3620)] = 122785, - [SMALL_STATE(3621)] = 122805, - [SMALL_STATE(3622)] = 122825, - [SMALL_STATE(3623)] = 122845, - [SMALL_STATE(3624)] = 122865, - [SMALL_STATE(3625)] = 122885, - [SMALL_STATE(3626)] = 122905, - [SMALL_STATE(3627)] = 122925, - [SMALL_STATE(3628)] = 122945, - [SMALL_STATE(3629)] = 122965, - [SMALL_STATE(3630)] = 122985, - [SMALL_STATE(3631)] = 123005, - [SMALL_STATE(3632)] = 123025, - [SMALL_STATE(3633)] = 123045, - [SMALL_STATE(3634)] = 123065, - [SMALL_STATE(3635)] = 123085, - [SMALL_STATE(3636)] = 123105, - [SMALL_STATE(3637)] = 123125, - [SMALL_STATE(3638)] = 123141, - [SMALL_STATE(3639)] = 123161, - [SMALL_STATE(3640)] = 123181, - [SMALL_STATE(3641)] = 123201, - [SMALL_STATE(3642)] = 123221, - [SMALL_STATE(3643)] = 123237, - [SMALL_STATE(3644)] = 123257, - [SMALL_STATE(3645)] = 123277, - [SMALL_STATE(3646)] = 123297, - [SMALL_STATE(3647)] = 123317, - [SMALL_STATE(3648)] = 123337, - [SMALL_STATE(3649)] = 123353, - [SMALL_STATE(3650)] = 123373, - [SMALL_STATE(3651)] = 123393, - [SMALL_STATE(3652)] = 123413, - [SMALL_STATE(3653)] = 123433, - [SMALL_STATE(3654)] = 123453, - [SMALL_STATE(3655)] = 123473, - [SMALL_STATE(3656)] = 123493, - [SMALL_STATE(3657)] = 123515, - [SMALL_STATE(3658)] = 123535, - [SMALL_STATE(3659)] = 123550, - [SMALL_STATE(3660)] = 123569, - [SMALL_STATE(3661)] = 123586, - [SMALL_STATE(3662)] = 123603, - [SMALL_STATE(3663)] = 123622, - [SMALL_STATE(3664)] = 123635, - [SMALL_STATE(3665)] = 123646, - [SMALL_STATE(3666)] = 123663, - [SMALL_STATE(3667)] = 123676, - [SMALL_STATE(3668)] = 123691, - [SMALL_STATE(3669)] = 123706, - [SMALL_STATE(3670)] = 123719, - [SMALL_STATE(3671)] = 123734, - [SMALL_STATE(3672)] = 123747, - [SMALL_STATE(3673)] = 123766, - [SMALL_STATE(3674)] = 123783, - [SMALL_STATE(3675)] = 123802, - [SMALL_STATE(3676)] = 123813, - [SMALL_STATE(3677)] = 123828, - [SMALL_STATE(3678)] = 123839, - [SMALL_STATE(3679)] = 123854, - [SMALL_STATE(3680)] = 123873, - [SMALL_STATE(3681)] = 123890, - [SMALL_STATE(3682)] = 123907, - [SMALL_STATE(3683)] = 123922, - [SMALL_STATE(3684)] = 123933, - [SMALL_STATE(3685)] = 123950, - [SMALL_STATE(3686)] = 123967, - [SMALL_STATE(3687)] = 123980, - [SMALL_STATE(3688)] = 123991, - [SMALL_STATE(3689)] = 124010, - [SMALL_STATE(3690)] = 124024, - [SMALL_STATE(3691)] = 124038, - [SMALL_STATE(3692)] = 124052, - [SMALL_STATE(3693)] = 124066, - [SMALL_STATE(3694)] = 124080, - [SMALL_STATE(3695)] = 124094, - [SMALL_STATE(3696)] = 124108, - [SMALL_STATE(3697)] = 124122, - [SMALL_STATE(3698)] = 124138, - [SMALL_STATE(3699)] = 124152, - [SMALL_STATE(3700)] = 124166, - [SMALL_STATE(3701)] = 124182, - [SMALL_STATE(3702)] = 124196, - [SMALL_STATE(3703)] = 124212, - [SMALL_STATE(3704)] = 124226, - [SMALL_STATE(3705)] = 124240, - [SMALL_STATE(3706)] = 124254, - [SMALL_STATE(3707)] = 124266, - [SMALL_STATE(3708)] = 124282, - [SMALL_STATE(3709)] = 124296, - [SMALL_STATE(3710)] = 124308, - [SMALL_STATE(3711)] = 124322, - [SMALL_STATE(3712)] = 124338, - [SMALL_STATE(3713)] = 124352, - [SMALL_STATE(3714)] = 124368, - [SMALL_STATE(3715)] = 124384, - [SMALL_STATE(3716)] = 124398, - [SMALL_STATE(3717)] = 124414, - [SMALL_STATE(3718)] = 124430, - [SMALL_STATE(3719)] = 124440, - [SMALL_STATE(3720)] = 124456, - [SMALL_STATE(3721)] = 124472, - [SMALL_STATE(3722)] = 124486, - [SMALL_STATE(3723)] = 124500, - [SMALL_STATE(3724)] = 124514, - [SMALL_STATE(3725)] = 124528, - [SMALL_STATE(3726)] = 124544, - [SMALL_STATE(3727)] = 124558, - [SMALL_STATE(3728)] = 124572, - [SMALL_STATE(3729)] = 124586, - [SMALL_STATE(3730)] = 124600, - [SMALL_STATE(3731)] = 124614, - [SMALL_STATE(3732)] = 124628, - [SMALL_STATE(3733)] = 124642, - [SMALL_STATE(3734)] = 124652, - [SMALL_STATE(3735)] = 124662, - [SMALL_STATE(3736)] = 124678, - [SMALL_STATE(3737)] = 124692, - [SMALL_STATE(3738)] = 124706, - [SMALL_STATE(3739)] = 124718, - [SMALL_STATE(3740)] = 124732, - [SMALL_STATE(3741)] = 124746, - [SMALL_STATE(3742)] = 124760, - [SMALL_STATE(3743)] = 124776, - [SMALL_STATE(3744)] = 124790, - [SMALL_STATE(3745)] = 124800, - [SMALL_STATE(3746)] = 124814, - [SMALL_STATE(3747)] = 124828, - [SMALL_STATE(3748)] = 124844, - [SMALL_STATE(3749)] = 124858, - [SMALL_STATE(3750)] = 124872, - [SMALL_STATE(3751)] = 124886, - [SMALL_STATE(3752)] = 124900, - [SMALL_STATE(3753)] = 124914, - [SMALL_STATE(3754)] = 124930, - [SMALL_STATE(3755)] = 124946, - [SMALL_STATE(3756)] = 124960, - [SMALL_STATE(3757)] = 124976, - [SMALL_STATE(3758)] = 124990, - [SMALL_STATE(3759)] = 125004, - [SMALL_STATE(3760)] = 125014, - [SMALL_STATE(3761)] = 125024, - [SMALL_STATE(3762)] = 125034, - [SMALL_STATE(3763)] = 125044, - [SMALL_STATE(3764)] = 125054, - [SMALL_STATE(3765)] = 125064, - [SMALL_STATE(3766)] = 125074, - [SMALL_STATE(3767)] = 125090, - [SMALL_STATE(3768)] = 125104, - [SMALL_STATE(3769)] = 125114, - [SMALL_STATE(3770)] = 125124, - [SMALL_STATE(3771)] = 125134, - [SMALL_STATE(3772)] = 125150, - [SMALL_STATE(3773)] = 125164, - [SMALL_STATE(3774)] = 125174, - [SMALL_STATE(3775)] = 125184, - [SMALL_STATE(3776)] = 125198, - [SMALL_STATE(3777)] = 125212, - [SMALL_STATE(3778)] = 125226, - [SMALL_STATE(3779)] = 125236, - [SMALL_STATE(3780)] = 125250, - [SMALL_STATE(3781)] = 125260, - [SMALL_STATE(3782)] = 125274, - [SMALL_STATE(3783)] = 125284, - [SMALL_STATE(3784)] = 125298, - [SMALL_STATE(3785)] = 125308, - [SMALL_STATE(3786)] = 125322, - [SMALL_STATE(3787)] = 125332, - [SMALL_STATE(3788)] = 125348, - [SMALL_STATE(3789)] = 125360, - [SMALL_STATE(3790)] = 125372, - [SMALL_STATE(3791)] = 125386, - [SMALL_STATE(3792)] = 125400, - [SMALL_STATE(3793)] = 125414, - [SMALL_STATE(3794)] = 125426, - [SMALL_STATE(3795)] = 125442, - [SMALL_STATE(3796)] = 125456, - [SMALL_STATE(3797)] = 125472, - [SMALL_STATE(3798)] = 125482, - [SMALL_STATE(3799)] = 125496, - [SMALL_STATE(3800)] = 125510, - [SMALL_STATE(3801)] = 125524, - [SMALL_STATE(3802)] = 125540, - [SMALL_STATE(3803)] = 125554, - [SMALL_STATE(3804)] = 125570, - [SMALL_STATE(3805)] = 125584, - [SMALL_STATE(3806)] = 125598, - [SMALL_STATE(3807)] = 125614, - [SMALL_STATE(3808)] = 125628, - [SMALL_STATE(3809)] = 125642, - [SMALL_STATE(3810)] = 125658, - [SMALL_STATE(3811)] = 125672, - [SMALL_STATE(3812)] = 125686, - [SMALL_STATE(3813)] = 125696, - [SMALL_STATE(3814)] = 125710, - [SMALL_STATE(3815)] = 125724, - [SMALL_STATE(3816)] = 125738, - [SMALL_STATE(3817)] = 125752, - [SMALL_STATE(3818)] = 125768, - [SMALL_STATE(3819)] = 125782, - [SMALL_STATE(3820)] = 125796, - [SMALL_STATE(3821)] = 125810, - [SMALL_STATE(3822)] = 125824, - [SMALL_STATE(3823)] = 125838, - [SMALL_STATE(3824)] = 125852, - [SMALL_STATE(3825)] = 125868, - [SMALL_STATE(3826)] = 125882, - [SMALL_STATE(3827)] = 125896, - [SMALL_STATE(3828)] = 125910, - [SMALL_STATE(3829)] = 125926, - [SMALL_STATE(3830)] = 125940, - [SMALL_STATE(3831)] = 125954, - [SMALL_STATE(3832)] = 125968, - [SMALL_STATE(3833)] = 125980, - [SMALL_STATE(3834)] = 125994, - [SMALL_STATE(3835)] = 126010, - [SMALL_STATE(3836)] = 126024, - [SMALL_STATE(3837)] = 126038, - [SMALL_STATE(3838)] = 126054, - [SMALL_STATE(3839)] = 126068, - [SMALL_STATE(3840)] = 126082, - [SMALL_STATE(3841)] = 126096, - [SMALL_STATE(3842)] = 126110, - [SMALL_STATE(3843)] = 126124, - [SMALL_STATE(3844)] = 126138, - [SMALL_STATE(3845)] = 126152, - [SMALL_STATE(3846)] = 126162, - [SMALL_STATE(3847)] = 126178, - [SMALL_STATE(3848)] = 126194, - [SMALL_STATE(3849)] = 126210, - [SMALL_STATE(3850)] = 126224, - [SMALL_STATE(3851)] = 126240, - [SMALL_STATE(3852)] = 126254, - [SMALL_STATE(3853)] = 126264, - [SMALL_STATE(3854)] = 126278, - [SMALL_STATE(3855)] = 126294, - [SMALL_STATE(3856)] = 126308, - [SMALL_STATE(3857)] = 126318, - [SMALL_STATE(3858)] = 126332, - [SMALL_STATE(3859)] = 126345, - [SMALL_STATE(3860)] = 126358, - [SMALL_STATE(3861)] = 126371, - [SMALL_STATE(3862)] = 126384, - [SMALL_STATE(3863)] = 126397, - [SMALL_STATE(3864)] = 126410, - [SMALL_STATE(3865)] = 126423, - [SMALL_STATE(3866)] = 126432, - [SMALL_STATE(3867)] = 126445, - [SMALL_STATE(3868)] = 126454, - [SMALL_STATE(3869)] = 126467, - [SMALL_STATE(3870)] = 126480, - [SMALL_STATE(3871)] = 126493, - [SMALL_STATE(3872)] = 126506, - [SMALL_STATE(3873)] = 126515, - [SMALL_STATE(3874)] = 126528, - [SMALL_STATE(3875)] = 126541, - [SMALL_STATE(3876)] = 126554, - [SMALL_STATE(3877)] = 126567, - [SMALL_STATE(3878)] = 126580, - [SMALL_STATE(3879)] = 126589, - [SMALL_STATE(3880)] = 126602, - [SMALL_STATE(3881)] = 126615, - [SMALL_STATE(3882)] = 126628, - [SMALL_STATE(3883)] = 126641, - [SMALL_STATE(3884)] = 126654, - [SMALL_STATE(3885)] = 126667, - [SMALL_STATE(3886)] = 126680, - [SMALL_STATE(3887)] = 126693, - [SMALL_STATE(3888)] = 126706, - [SMALL_STATE(3889)] = 126719, - [SMALL_STATE(3890)] = 126732, - [SMALL_STATE(3891)] = 126745, - [SMALL_STATE(3892)] = 126758, - [SMALL_STATE(3893)] = 126771, - [SMALL_STATE(3894)] = 126784, - [SMALL_STATE(3895)] = 126797, - [SMALL_STATE(3896)] = 126810, - [SMALL_STATE(3897)] = 126821, - [SMALL_STATE(3898)] = 126834, - [SMALL_STATE(3899)] = 126847, - [SMALL_STATE(3900)] = 126860, - [SMALL_STATE(3901)] = 126873, - [SMALL_STATE(3902)] = 126886, - [SMALL_STATE(3903)] = 126899, - [SMALL_STATE(3904)] = 126912, - [SMALL_STATE(3905)] = 126925, - [SMALL_STATE(3906)] = 126938, - [SMALL_STATE(3907)] = 126951, - [SMALL_STATE(3908)] = 126964, - [SMALL_STATE(3909)] = 126977, - [SMALL_STATE(3910)] = 126990, - [SMALL_STATE(3911)] = 127003, - [SMALL_STATE(3912)] = 127016, - [SMALL_STATE(3913)] = 127029, - [SMALL_STATE(3914)] = 127042, - [SMALL_STATE(3915)] = 127055, - [SMALL_STATE(3916)] = 127064, - [SMALL_STATE(3917)] = 127077, - [SMALL_STATE(3918)] = 127090, - [SMALL_STATE(3919)] = 127103, - [SMALL_STATE(3920)] = 127116, - [SMALL_STATE(3921)] = 127129, - [SMALL_STATE(3922)] = 127142, - [SMALL_STATE(3923)] = 127155, - [SMALL_STATE(3924)] = 127168, - [SMALL_STATE(3925)] = 127181, - [SMALL_STATE(3926)] = 127190, - [SMALL_STATE(3927)] = 127203, - [SMALL_STATE(3928)] = 127216, - [SMALL_STATE(3929)] = 127225, - [SMALL_STATE(3930)] = 127236, - [SMALL_STATE(3931)] = 127249, - [SMALL_STATE(3932)] = 127258, - [SMALL_STATE(3933)] = 127271, - [SMALL_STATE(3934)] = 127284, - [SMALL_STATE(3935)] = 127297, - [SMALL_STATE(3936)] = 127306, - [SMALL_STATE(3937)] = 127319, - [SMALL_STATE(3938)] = 127332, - [SMALL_STATE(3939)] = 127345, - [SMALL_STATE(3940)] = 127358, - [SMALL_STATE(3941)] = 127371, - [SMALL_STATE(3942)] = 127384, - [SMALL_STATE(3943)] = 127397, - [SMALL_STATE(3944)] = 127410, - [SMALL_STATE(3945)] = 127423, - [SMALL_STATE(3946)] = 127436, - [SMALL_STATE(3947)] = 127449, - [SMALL_STATE(3948)] = 127462, - [SMALL_STATE(3949)] = 127475, - [SMALL_STATE(3950)] = 127488, - [SMALL_STATE(3951)] = 127501, - [SMALL_STATE(3952)] = 127514, - [SMALL_STATE(3953)] = 127527, - [SMALL_STATE(3954)] = 127540, - [SMALL_STATE(3955)] = 127553, - [SMALL_STATE(3956)] = 127562, - [SMALL_STATE(3957)] = 127575, - [SMALL_STATE(3958)] = 127588, - [SMALL_STATE(3959)] = 127601, - [SMALL_STATE(3960)] = 127614, - [SMALL_STATE(3961)] = 127627, - [SMALL_STATE(3962)] = 127640, - [SMALL_STATE(3963)] = 127653, - [SMALL_STATE(3964)] = 127666, - [SMALL_STATE(3965)] = 127679, - [SMALL_STATE(3966)] = 127692, - [SMALL_STATE(3967)] = 127705, - [SMALL_STATE(3968)] = 127718, - [SMALL_STATE(3969)] = 127731, - [SMALL_STATE(3970)] = 127744, - [SMALL_STATE(3971)] = 127757, - [SMALL_STATE(3972)] = 127770, - [SMALL_STATE(3973)] = 127783, - [SMALL_STATE(3974)] = 127796, - [SMALL_STATE(3975)] = 127809, - [SMALL_STATE(3976)] = 127822, - [SMALL_STATE(3977)] = 127835, - [SMALL_STATE(3978)] = 127848, - [SMALL_STATE(3979)] = 127857, - [SMALL_STATE(3980)] = 127866, - [SMALL_STATE(3981)] = 127879, - [SMALL_STATE(3982)] = 127890, - [SMALL_STATE(3983)] = 127903, - [SMALL_STATE(3984)] = 127916, - [SMALL_STATE(3985)] = 127929, - [SMALL_STATE(3986)] = 127942, - [SMALL_STATE(3987)] = 127955, - [SMALL_STATE(3988)] = 127968, - [SMALL_STATE(3989)] = 127981, - [SMALL_STATE(3990)] = 127994, - [SMALL_STATE(3991)] = 128007, - [SMALL_STATE(3992)] = 128020, - [SMALL_STATE(3993)] = 128033, - [SMALL_STATE(3994)] = 128046, - [SMALL_STATE(3995)] = 128059, - [SMALL_STATE(3996)] = 128072, - [SMALL_STATE(3997)] = 128081, - [SMALL_STATE(3998)] = 128094, - [SMALL_STATE(3999)] = 128103, - [SMALL_STATE(4000)] = 128116, - [SMALL_STATE(4001)] = 128129, - [SMALL_STATE(4002)] = 128142, - [SMALL_STATE(4003)] = 128155, - [SMALL_STATE(4004)] = 128168, - [SMALL_STATE(4005)] = 128181, - [SMALL_STATE(4006)] = 128194, - [SMALL_STATE(4007)] = 128207, - [SMALL_STATE(4008)] = 128220, - [SMALL_STATE(4009)] = 128233, - [SMALL_STATE(4010)] = 128246, - [SMALL_STATE(4011)] = 128259, - [SMALL_STATE(4012)] = 128272, - [SMALL_STATE(4013)] = 128285, - [SMALL_STATE(4014)] = 128298, - [SMALL_STATE(4015)] = 128309, - [SMALL_STATE(4016)] = 128322, - [SMALL_STATE(4017)] = 128335, - [SMALL_STATE(4018)] = 128348, - [SMALL_STATE(4019)] = 128361, - [SMALL_STATE(4020)] = 128374, - [SMALL_STATE(4021)] = 128387, - [SMALL_STATE(4022)] = 128398, - [SMALL_STATE(4023)] = 128411, - [SMALL_STATE(4024)] = 128424, - [SMALL_STATE(4025)] = 128437, - [SMALL_STATE(4026)] = 128450, - [SMALL_STATE(4027)] = 128463, - [SMALL_STATE(4028)] = 128476, - [SMALL_STATE(4029)] = 128489, - [SMALL_STATE(4030)] = 128502, - [SMALL_STATE(4031)] = 128515, - [SMALL_STATE(4032)] = 128528, - [SMALL_STATE(4033)] = 128541, - [SMALL_STATE(4034)] = 128554, - [SMALL_STATE(4035)] = 128567, - [SMALL_STATE(4036)] = 128580, - [SMALL_STATE(4037)] = 128593, - [SMALL_STATE(4038)] = 128606, - [SMALL_STATE(4039)] = 128619, - [SMALL_STATE(4040)] = 128632, - [SMALL_STATE(4041)] = 128645, - [SMALL_STATE(4042)] = 128658, - [SMALL_STATE(4043)] = 128671, - [SMALL_STATE(4044)] = 128684, - [SMALL_STATE(4045)] = 128697, - [SMALL_STATE(4046)] = 128710, - [SMALL_STATE(4047)] = 128723, - [SMALL_STATE(4048)] = 128736, - [SMALL_STATE(4049)] = 128749, - [SMALL_STATE(4050)] = 128762, - [SMALL_STATE(4051)] = 128775, - [SMALL_STATE(4052)] = 128788, - [SMALL_STATE(4053)] = 128801, - [SMALL_STATE(4054)] = 128814, - [SMALL_STATE(4055)] = 128827, - [SMALL_STATE(4056)] = 128840, - [SMALL_STATE(4057)] = 128853, - [SMALL_STATE(4058)] = 128866, - [SMALL_STATE(4059)] = 128879, - [SMALL_STATE(4060)] = 128892, - [SMALL_STATE(4061)] = 128905, - [SMALL_STATE(4062)] = 128918, - [SMALL_STATE(4063)] = 128931, - [SMALL_STATE(4064)] = 128944, - [SMALL_STATE(4065)] = 128957, - [SMALL_STATE(4066)] = 128970, - [SMALL_STATE(4067)] = 128983, - [SMALL_STATE(4068)] = 128996, - [SMALL_STATE(4069)] = 129009, - [SMALL_STATE(4070)] = 129022, - [SMALL_STATE(4071)] = 129035, - [SMALL_STATE(4072)] = 129048, - [SMALL_STATE(4073)] = 129061, - [SMALL_STATE(4074)] = 129074, - [SMALL_STATE(4075)] = 129087, - [SMALL_STATE(4076)] = 129100, - [SMALL_STATE(4077)] = 129113, - [SMALL_STATE(4078)] = 129126, - [SMALL_STATE(4079)] = 129139, - [SMALL_STATE(4080)] = 129152, - [SMALL_STATE(4081)] = 129165, - [SMALL_STATE(4082)] = 129178, - [SMALL_STATE(4083)] = 129191, - [SMALL_STATE(4084)] = 129204, - [SMALL_STATE(4085)] = 129217, - [SMALL_STATE(4086)] = 129230, - [SMALL_STATE(4087)] = 129243, - [SMALL_STATE(4088)] = 129256, - [SMALL_STATE(4089)] = 129269, - [SMALL_STATE(4090)] = 129280, - [SMALL_STATE(4091)] = 129293, - [SMALL_STATE(4092)] = 129302, - [SMALL_STATE(4093)] = 129315, - [SMALL_STATE(4094)] = 129328, - [SMALL_STATE(4095)] = 129341, - [SMALL_STATE(4096)] = 129354, - [SMALL_STATE(4097)] = 129367, - [SMALL_STATE(4098)] = 129377, - [SMALL_STATE(4099)] = 129387, - [SMALL_STATE(4100)] = 129397, - [SMALL_STATE(4101)] = 129407, - [SMALL_STATE(4102)] = 129417, - [SMALL_STATE(4103)] = 129427, - [SMALL_STATE(4104)] = 129437, - [SMALL_STATE(4105)] = 129447, - [SMALL_STATE(4106)] = 129457, - [SMALL_STATE(4107)] = 129467, - [SMALL_STATE(4108)] = 129477, - [SMALL_STATE(4109)] = 129487, - [SMALL_STATE(4110)] = 129497, - [SMALL_STATE(4111)] = 129507, - [SMALL_STATE(4112)] = 129517, - [SMALL_STATE(4113)] = 129527, - [SMALL_STATE(4114)] = 129537, - [SMALL_STATE(4115)] = 129547, - [SMALL_STATE(4116)] = 129557, - [SMALL_STATE(4117)] = 129567, - [SMALL_STATE(4118)] = 129577, - [SMALL_STATE(4119)] = 129587, - [SMALL_STATE(4120)] = 129597, - [SMALL_STATE(4121)] = 129607, - [SMALL_STATE(4122)] = 129617, - [SMALL_STATE(4123)] = 129625, - [SMALL_STATE(4124)] = 129635, - [SMALL_STATE(4125)] = 129645, - [SMALL_STATE(4126)] = 129655, - [SMALL_STATE(4127)] = 129665, - [SMALL_STATE(4128)] = 129675, - [SMALL_STATE(4129)] = 129685, - [SMALL_STATE(4130)] = 129695, - [SMALL_STATE(4131)] = 129705, - [SMALL_STATE(4132)] = 129715, - [SMALL_STATE(4133)] = 129725, - [SMALL_STATE(4134)] = 129735, - [SMALL_STATE(4135)] = 129745, - [SMALL_STATE(4136)] = 129755, - [SMALL_STATE(4137)] = 129765, - [SMALL_STATE(4138)] = 129775, - [SMALL_STATE(4139)] = 129785, - [SMALL_STATE(4140)] = 129795, - [SMALL_STATE(4141)] = 129805, - [SMALL_STATE(4142)] = 129815, - [SMALL_STATE(4143)] = 129825, - [SMALL_STATE(4144)] = 129835, - [SMALL_STATE(4145)] = 129845, - [SMALL_STATE(4146)] = 129855, - [SMALL_STATE(4147)] = 129865, - [SMALL_STATE(4148)] = 129875, - [SMALL_STATE(4149)] = 129885, - [SMALL_STATE(4150)] = 129895, - [SMALL_STATE(4151)] = 129905, - [SMALL_STATE(4152)] = 129915, - [SMALL_STATE(4153)] = 129925, - [SMALL_STATE(4154)] = 129935, - [SMALL_STATE(4155)] = 129943, - [SMALL_STATE(4156)] = 129951, - [SMALL_STATE(4157)] = 129961, - [SMALL_STATE(4158)] = 129971, - [SMALL_STATE(4159)] = 129981, - [SMALL_STATE(4160)] = 129991, - [SMALL_STATE(4161)] = 130001, - [SMALL_STATE(4162)] = 130011, - [SMALL_STATE(4163)] = 130021, - [SMALL_STATE(4164)] = 130031, - [SMALL_STATE(4165)] = 130041, - [SMALL_STATE(4166)] = 130051, - [SMALL_STATE(4167)] = 130061, - [SMALL_STATE(4168)] = 130071, - [SMALL_STATE(4169)] = 130081, - [SMALL_STATE(4170)] = 130091, - [SMALL_STATE(4171)] = 130099, - [SMALL_STATE(4172)] = 130109, - [SMALL_STATE(4173)] = 130119, - [SMALL_STATE(4174)] = 130129, - [SMALL_STATE(4175)] = 130139, - [SMALL_STATE(4176)] = 130149, - [SMALL_STATE(4177)] = 130159, - [SMALL_STATE(4178)] = 130169, - [SMALL_STATE(4179)] = 130179, - [SMALL_STATE(4180)] = 130189, - [SMALL_STATE(4181)] = 130199, - [SMALL_STATE(4182)] = 130209, - [SMALL_STATE(4183)] = 130219, - [SMALL_STATE(4184)] = 130229, - [SMALL_STATE(4185)] = 130239, - [SMALL_STATE(4186)] = 130249, - [SMALL_STATE(4187)] = 130259, - [SMALL_STATE(4188)] = 130269, - [SMALL_STATE(4189)] = 130279, - [SMALL_STATE(4190)] = 130289, - [SMALL_STATE(4191)] = 130299, - [SMALL_STATE(4192)] = 130309, - [SMALL_STATE(4193)] = 130319, - [SMALL_STATE(4194)] = 130329, - [SMALL_STATE(4195)] = 130339, - [SMALL_STATE(4196)] = 130349, - [SMALL_STATE(4197)] = 130359, - [SMALL_STATE(4198)] = 130369, - [SMALL_STATE(4199)] = 130379, - [SMALL_STATE(4200)] = 130389, - [SMALL_STATE(4201)] = 130399, - [SMALL_STATE(4202)] = 130407, - [SMALL_STATE(4203)] = 130417, - [SMALL_STATE(4204)] = 130427, - [SMALL_STATE(4205)] = 130437, - [SMALL_STATE(4206)] = 130447, - [SMALL_STATE(4207)] = 130457, - [SMALL_STATE(4208)] = 130467, - [SMALL_STATE(4209)] = 130477, - [SMALL_STATE(4210)] = 130487, - [SMALL_STATE(4211)] = 130497, - [SMALL_STATE(4212)] = 130507, - [SMALL_STATE(4213)] = 130517, - [SMALL_STATE(4214)] = 130527, - [SMALL_STATE(4215)] = 130537, - [SMALL_STATE(4216)] = 130547, - [SMALL_STATE(4217)] = 130557, - [SMALL_STATE(4218)] = 130567, - [SMALL_STATE(4219)] = 130577, - [SMALL_STATE(4220)] = 130587, - [SMALL_STATE(4221)] = 130597, - [SMALL_STATE(4222)] = 130607, - [SMALL_STATE(4223)] = 130617, - [SMALL_STATE(4224)] = 130627, - [SMALL_STATE(4225)] = 130637, - [SMALL_STATE(4226)] = 130647, - [SMALL_STATE(4227)] = 130657, - [SMALL_STATE(4228)] = 130667, - [SMALL_STATE(4229)] = 130677, - [SMALL_STATE(4230)] = 130687, - [SMALL_STATE(4231)] = 130697, - [SMALL_STATE(4232)] = 130707, - [SMALL_STATE(4233)] = 130717, - [SMALL_STATE(4234)] = 130727, - [SMALL_STATE(4235)] = 130737, - [SMALL_STATE(4236)] = 130745, - [SMALL_STATE(4237)] = 130755, - [SMALL_STATE(4238)] = 130763, - [SMALL_STATE(4239)] = 130773, - [SMALL_STATE(4240)] = 130781, - [SMALL_STATE(4241)] = 130791, - [SMALL_STATE(4242)] = 130801, - [SMALL_STATE(4243)] = 130811, - [SMALL_STATE(4244)] = 130821, - [SMALL_STATE(4245)] = 130831, - [SMALL_STATE(4246)] = 130841, - [SMALL_STATE(4247)] = 130851, - [SMALL_STATE(4248)] = 130861, - [SMALL_STATE(4249)] = 130871, - [SMALL_STATE(4250)] = 130879, - [SMALL_STATE(4251)] = 130889, - [SMALL_STATE(4252)] = 130899, - [SMALL_STATE(4253)] = 130909, - [SMALL_STATE(4254)] = 130919, - [SMALL_STATE(4255)] = 130929, - [SMALL_STATE(4256)] = 130939, - [SMALL_STATE(4257)] = 130949, - [SMALL_STATE(4258)] = 130959, - [SMALL_STATE(4259)] = 130967, - [SMALL_STATE(4260)] = 130977, - [SMALL_STATE(4261)] = 130987, - [SMALL_STATE(4262)] = 130997, - [SMALL_STATE(4263)] = 131007, - [SMALL_STATE(4264)] = 131017, - [SMALL_STATE(4265)] = 131027, - [SMALL_STATE(4266)] = 131037, - [SMALL_STATE(4267)] = 131047, - [SMALL_STATE(4268)] = 131057, - [SMALL_STATE(4269)] = 131067, - [SMALL_STATE(4270)] = 131077, - [SMALL_STATE(4271)] = 131087, - [SMALL_STATE(4272)] = 131097, - [SMALL_STATE(4273)] = 131107, - [SMALL_STATE(4274)] = 131117, - [SMALL_STATE(4275)] = 131127, - [SMALL_STATE(4276)] = 131137, - [SMALL_STATE(4277)] = 131147, - [SMALL_STATE(4278)] = 131157, - [SMALL_STATE(4279)] = 131167, - [SMALL_STATE(4280)] = 131177, - [SMALL_STATE(4281)] = 131187, - [SMALL_STATE(4282)] = 131197, - [SMALL_STATE(4283)] = 131205, - [SMALL_STATE(4284)] = 131215, - [SMALL_STATE(4285)] = 131225, - [SMALL_STATE(4286)] = 131235, - [SMALL_STATE(4287)] = 131245, - [SMALL_STATE(4288)] = 131255, - [SMALL_STATE(4289)] = 131265, - [SMALL_STATE(4290)] = 131275, - [SMALL_STATE(4291)] = 131285, - [SMALL_STATE(4292)] = 131295, - [SMALL_STATE(4293)] = 131305, - [SMALL_STATE(4294)] = 131313, - [SMALL_STATE(4295)] = 131323, - [SMALL_STATE(4296)] = 131333, - [SMALL_STATE(4297)] = 131343, - [SMALL_STATE(4298)] = 131351, - [SMALL_STATE(4299)] = 131361, - [SMALL_STATE(4300)] = 131371, - [SMALL_STATE(4301)] = 131381, - [SMALL_STATE(4302)] = 131389, - [SMALL_STATE(4303)] = 131399, - [SMALL_STATE(4304)] = 131409, - [SMALL_STATE(4305)] = 131419, - [SMALL_STATE(4306)] = 131429, - [SMALL_STATE(4307)] = 131439, - [SMALL_STATE(4308)] = 131449, - [SMALL_STATE(4309)] = 131457, - [SMALL_STATE(4310)] = 131467, - [SMALL_STATE(4311)] = 131477, - [SMALL_STATE(4312)] = 131487, - [SMALL_STATE(4313)] = 131497, - [SMALL_STATE(4314)] = 131507, - [SMALL_STATE(4315)] = 131517, - [SMALL_STATE(4316)] = 131525, - [SMALL_STATE(4317)] = 131533, - [SMALL_STATE(4318)] = 131543, - [SMALL_STATE(4319)] = 131551, - [SMALL_STATE(4320)] = 131561, - [SMALL_STATE(4321)] = 131569, - [SMALL_STATE(4322)] = 131577, - [SMALL_STATE(4323)] = 131587, - [SMALL_STATE(4324)] = 131595, - [SMALL_STATE(4325)] = 131605, - [SMALL_STATE(4326)] = 131613, - [SMALL_STATE(4327)] = 131623, - [SMALL_STATE(4328)] = 131633, - [SMALL_STATE(4329)] = 131643, - [SMALL_STATE(4330)] = 131653, - [SMALL_STATE(4331)] = 131663, - [SMALL_STATE(4332)] = 131673, - [SMALL_STATE(4333)] = 131683, - [SMALL_STATE(4334)] = 131691, - [SMALL_STATE(4335)] = 131699, - [SMALL_STATE(4336)] = 131709, - [SMALL_STATE(4337)] = 131719, - [SMALL_STATE(4338)] = 131729, - [SMALL_STATE(4339)] = 131739, - [SMALL_STATE(4340)] = 131749, - [SMALL_STATE(4341)] = 131759, - [SMALL_STATE(4342)] = 131769, - [SMALL_STATE(4343)] = 131779, - [SMALL_STATE(4344)] = 131789, - [SMALL_STATE(4345)] = 131799, - [SMALL_STATE(4346)] = 131809, - [SMALL_STATE(4347)] = 131819, - [SMALL_STATE(4348)] = 131829, - [SMALL_STATE(4349)] = 131839, - [SMALL_STATE(4350)] = 131849, - [SMALL_STATE(4351)] = 131859, - [SMALL_STATE(4352)] = 131869, - [SMALL_STATE(4353)] = 131877, - [SMALL_STATE(4354)] = 131887, - [SMALL_STATE(4355)] = 131897, - [SMALL_STATE(4356)] = 131907, - [SMALL_STATE(4357)] = 131917, - [SMALL_STATE(4358)] = 131927, - [SMALL_STATE(4359)] = 131937, - [SMALL_STATE(4360)] = 131947, - [SMALL_STATE(4361)] = 131957, - [SMALL_STATE(4362)] = 131967, - [SMALL_STATE(4363)] = 131977, - [SMALL_STATE(4364)] = 131985, - [SMALL_STATE(4365)] = 131995, - [SMALL_STATE(4366)] = 132005, - [SMALL_STATE(4367)] = 132015, - [SMALL_STATE(4368)] = 132025, - [SMALL_STATE(4369)] = 132035, - [SMALL_STATE(4370)] = 132045, - [SMALL_STATE(4371)] = 132055, - [SMALL_STATE(4372)] = 132065, - [SMALL_STATE(4373)] = 132075, - [SMALL_STATE(4374)] = 132085, - [SMALL_STATE(4375)] = 132095, - [SMALL_STATE(4376)] = 132105, - [SMALL_STATE(4377)] = 132113, - [SMALL_STATE(4378)] = 132123, - [SMALL_STATE(4379)] = 132133, - [SMALL_STATE(4380)] = 132141, - [SMALL_STATE(4381)] = 132149, - [SMALL_STATE(4382)] = 132159, - [SMALL_STATE(4383)] = 132169, - [SMALL_STATE(4384)] = 132179, - [SMALL_STATE(4385)] = 132189, - [SMALL_STATE(4386)] = 132199, - [SMALL_STATE(4387)] = 132209, - [SMALL_STATE(4388)] = 132219, - [SMALL_STATE(4389)] = 132229, - [SMALL_STATE(4390)] = 132239, - [SMALL_STATE(4391)] = 132249, - [SMALL_STATE(4392)] = 132259, - [SMALL_STATE(4393)] = 132269, - [SMALL_STATE(4394)] = 132279, - [SMALL_STATE(4395)] = 132289, - [SMALL_STATE(4396)] = 132299, - [SMALL_STATE(4397)] = 132309, - [SMALL_STATE(4398)] = 132319, - [SMALL_STATE(4399)] = 132329, - [SMALL_STATE(4400)] = 132339, - [SMALL_STATE(4401)] = 132347, - [SMALL_STATE(4402)] = 132357, - [SMALL_STATE(4403)] = 132367, - [SMALL_STATE(4404)] = 132377, - [SMALL_STATE(4405)] = 132387, - [SMALL_STATE(4406)] = 132397, - [SMALL_STATE(4407)] = 132407, - [SMALL_STATE(4408)] = 132417, - [SMALL_STATE(4409)] = 132427, - [SMALL_STATE(4410)] = 132437, - [SMALL_STATE(4411)] = 132445, - [SMALL_STATE(4412)] = 132455, - [SMALL_STATE(4413)] = 132462, - [SMALL_STATE(4414)] = 132469, - [SMALL_STATE(4415)] = 132476, - [SMALL_STATE(4416)] = 132483, - [SMALL_STATE(4417)] = 132490, - [SMALL_STATE(4418)] = 132497, - [SMALL_STATE(4419)] = 132504, - [SMALL_STATE(4420)] = 132511, - [SMALL_STATE(4421)] = 132518, - [SMALL_STATE(4422)] = 132525, - [SMALL_STATE(4423)] = 132532, - [SMALL_STATE(4424)] = 132539, - [SMALL_STATE(4425)] = 132546, - [SMALL_STATE(4426)] = 132553, - [SMALL_STATE(4427)] = 132560, - [SMALL_STATE(4428)] = 132567, - [SMALL_STATE(4429)] = 132574, - [SMALL_STATE(4430)] = 132581, - [SMALL_STATE(4431)] = 132588, - [SMALL_STATE(4432)] = 132595, - [SMALL_STATE(4433)] = 132602, - [SMALL_STATE(4434)] = 132609, - [SMALL_STATE(4435)] = 132616, - [SMALL_STATE(4436)] = 132623, - [SMALL_STATE(4437)] = 132630, - [SMALL_STATE(4438)] = 132637, - [SMALL_STATE(4439)] = 132644, - [SMALL_STATE(4440)] = 132651, - [SMALL_STATE(4441)] = 132658, - [SMALL_STATE(4442)] = 132665, - [SMALL_STATE(4443)] = 132672, - [SMALL_STATE(4444)] = 132679, - [SMALL_STATE(4445)] = 132686, - [SMALL_STATE(4446)] = 132693, - [SMALL_STATE(4447)] = 132700, - [SMALL_STATE(4448)] = 132707, - [SMALL_STATE(4449)] = 132714, - [SMALL_STATE(4450)] = 132721, - [SMALL_STATE(4451)] = 132728, - [SMALL_STATE(4452)] = 132735, - [SMALL_STATE(4453)] = 132742, - [SMALL_STATE(4454)] = 132749, - [SMALL_STATE(4455)] = 132756, - [SMALL_STATE(4456)] = 132763, - [SMALL_STATE(4457)] = 132770, - [SMALL_STATE(4458)] = 132777, - [SMALL_STATE(4459)] = 132784, - [SMALL_STATE(4460)] = 132791, - [SMALL_STATE(4461)] = 132798, - [SMALL_STATE(4462)] = 132805, - [SMALL_STATE(4463)] = 132812, - [SMALL_STATE(4464)] = 132819, - [SMALL_STATE(4465)] = 132826, - [SMALL_STATE(4466)] = 132833, - [SMALL_STATE(4467)] = 132840, - [SMALL_STATE(4468)] = 132847, - [SMALL_STATE(4469)] = 132854, - [SMALL_STATE(4470)] = 132861, - [SMALL_STATE(4471)] = 132868, - [SMALL_STATE(4472)] = 132875, - [SMALL_STATE(4473)] = 132882, - [SMALL_STATE(4474)] = 132889, - [SMALL_STATE(4475)] = 132896, - [SMALL_STATE(4476)] = 132903, - [SMALL_STATE(4477)] = 132910, - [SMALL_STATE(4478)] = 132917, - [SMALL_STATE(4479)] = 132924, - [SMALL_STATE(4480)] = 132931, - [SMALL_STATE(4481)] = 132938, - [SMALL_STATE(4482)] = 132945, - [SMALL_STATE(4483)] = 132952, - [SMALL_STATE(4484)] = 132959, - [SMALL_STATE(4485)] = 132966, - [SMALL_STATE(4486)] = 132973, - [SMALL_STATE(4487)] = 132980, - [SMALL_STATE(4488)] = 132987, - [SMALL_STATE(4489)] = 132994, - [SMALL_STATE(4490)] = 133001, - [SMALL_STATE(4491)] = 133008, - [SMALL_STATE(4492)] = 133015, - [SMALL_STATE(4493)] = 133022, - [SMALL_STATE(4494)] = 133029, - [SMALL_STATE(4495)] = 133036, - [SMALL_STATE(4496)] = 133043, - [SMALL_STATE(4497)] = 133050, - [SMALL_STATE(4498)] = 133057, - [SMALL_STATE(4499)] = 133064, - [SMALL_STATE(4500)] = 133071, - [SMALL_STATE(4501)] = 133078, - [SMALL_STATE(4502)] = 133085, - [SMALL_STATE(4503)] = 133092, - [SMALL_STATE(4504)] = 133099, - [SMALL_STATE(4505)] = 133106, - [SMALL_STATE(4506)] = 133113, - [SMALL_STATE(4507)] = 133120, - [SMALL_STATE(4508)] = 133127, - [SMALL_STATE(4509)] = 133134, - [SMALL_STATE(4510)] = 133141, - [SMALL_STATE(4511)] = 133148, - [SMALL_STATE(4512)] = 133155, - [SMALL_STATE(4513)] = 133162, - [SMALL_STATE(4514)] = 133169, - [SMALL_STATE(4515)] = 133176, - [SMALL_STATE(4516)] = 133183, - [SMALL_STATE(4517)] = 133190, - [SMALL_STATE(4518)] = 133197, - [SMALL_STATE(4519)] = 133204, - [SMALL_STATE(4520)] = 133211, - [SMALL_STATE(4521)] = 133218, - [SMALL_STATE(4522)] = 133225, - [SMALL_STATE(4523)] = 133232, - [SMALL_STATE(4524)] = 133239, - [SMALL_STATE(4525)] = 133246, - [SMALL_STATE(4526)] = 133253, - [SMALL_STATE(4527)] = 133260, - [SMALL_STATE(4528)] = 133267, - [SMALL_STATE(4529)] = 133274, - [SMALL_STATE(4530)] = 133281, - [SMALL_STATE(4531)] = 133288, - [SMALL_STATE(4532)] = 133295, - [SMALL_STATE(4533)] = 133302, - [SMALL_STATE(4534)] = 133309, - [SMALL_STATE(4535)] = 133316, - [SMALL_STATE(4536)] = 133323, - [SMALL_STATE(4537)] = 133330, - [SMALL_STATE(4538)] = 133337, - [SMALL_STATE(4539)] = 133344, - [SMALL_STATE(4540)] = 133351, - [SMALL_STATE(4541)] = 133358, - [SMALL_STATE(4542)] = 133365, - [SMALL_STATE(4543)] = 133372, - [SMALL_STATE(4544)] = 133379, - [SMALL_STATE(4545)] = 133386, - [SMALL_STATE(4546)] = 133393, - [SMALL_STATE(4547)] = 133400, - [SMALL_STATE(4548)] = 133407, - [SMALL_STATE(4549)] = 133414, - [SMALL_STATE(4550)] = 133421, - [SMALL_STATE(4551)] = 133428, - [SMALL_STATE(4552)] = 133435, - [SMALL_STATE(4553)] = 133442, - [SMALL_STATE(4554)] = 133449, - [SMALL_STATE(4555)] = 133456, - [SMALL_STATE(4556)] = 133463, - [SMALL_STATE(4557)] = 133470, - [SMALL_STATE(4558)] = 133477, - [SMALL_STATE(4559)] = 133484, - [SMALL_STATE(4560)] = 133491, - [SMALL_STATE(4561)] = 133498, - [SMALL_STATE(4562)] = 133505, - [SMALL_STATE(4563)] = 133512, - [SMALL_STATE(4564)] = 133519, - [SMALL_STATE(4565)] = 133526, - [SMALL_STATE(4566)] = 133533, - [SMALL_STATE(4567)] = 133540, - [SMALL_STATE(4568)] = 133547, - [SMALL_STATE(4569)] = 133554, - [SMALL_STATE(4570)] = 133561, - [SMALL_STATE(4571)] = 133568, - [SMALL_STATE(4572)] = 133575, - [SMALL_STATE(4573)] = 133582, - [SMALL_STATE(4574)] = 133589, - [SMALL_STATE(4575)] = 133596, - [SMALL_STATE(4576)] = 133603, - [SMALL_STATE(4577)] = 133610, - [SMALL_STATE(4578)] = 133617, - [SMALL_STATE(4579)] = 133624, - [SMALL_STATE(4580)] = 133631, - [SMALL_STATE(4581)] = 133638, - [SMALL_STATE(4582)] = 133645, - [SMALL_STATE(4583)] = 133652, - [SMALL_STATE(4584)] = 133659, - [SMALL_STATE(4585)] = 133666, - [SMALL_STATE(4586)] = 133673, - [SMALL_STATE(4587)] = 133680, - [SMALL_STATE(4588)] = 133687, - [SMALL_STATE(4589)] = 133694, - [SMALL_STATE(4590)] = 133701, - [SMALL_STATE(4591)] = 133708, - [SMALL_STATE(4592)] = 133715, - [SMALL_STATE(4593)] = 133722, - [SMALL_STATE(4594)] = 133729, - [SMALL_STATE(4595)] = 133736, - [SMALL_STATE(4596)] = 133743, - [SMALL_STATE(4597)] = 133750, - [SMALL_STATE(4598)] = 133757, - [SMALL_STATE(4599)] = 133764, - [SMALL_STATE(4600)] = 133771, - [SMALL_STATE(4601)] = 133778, - [SMALL_STATE(4602)] = 133785, - [SMALL_STATE(4603)] = 133792, - [SMALL_STATE(4604)] = 133799, - [SMALL_STATE(4605)] = 133806, - [SMALL_STATE(4606)] = 133813, - [SMALL_STATE(4607)] = 133820, - [SMALL_STATE(4608)] = 133827, - [SMALL_STATE(4609)] = 133834, - [SMALL_STATE(4610)] = 133841, - [SMALL_STATE(4611)] = 133848, - [SMALL_STATE(4612)] = 133855, - [SMALL_STATE(4613)] = 133862, - [SMALL_STATE(4614)] = 133869, - [SMALL_STATE(4615)] = 133876, - [SMALL_STATE(4616)] = 133883, - [SMALL_STATE(4617)] = 133890, - [SMALL_STATE(4618)] = 133897, - [SMALL_STATE(4619)] = 133904, - [SMALL_STATE(4620)] = 133911, - [SMALL_STATE(4621)] = 133918, - [SMALL_STATE(4622)] = 133925, - [SMALL_STATE(4623)] = 133932, - [SMALL_STATE(4624)] = 133939, - [SMALL_STATE(4625)] = 133946, - [SMALL_STATE(4626)] = 133953, - [SMALL_STATE(4627)] = 133960, - [SMALL_STATE(4628)] = 133967, - [SMALL_STATE(4629)] = 133974, - [SMALL_STATE(4630)] = 133981, - [SMALL_STATE(4631)] = 133988, - [SMALL_STATE(4632)] = 133995, - [SMALL_STATE(4633)] = 134002, - [SMALL_STATE(4634)] = 134009, - [SMALL_STATE(4635)] = 134016, - [SMALL_STATE(4636)] = 134023, - [SMALL_STATE(4637)] = 134030, - [SMALL_STATE(4638)] = 134037, - [SMALL_STATE(4639)] = 134044, - [SMALL_STATE(4640)] = 134051, - [SMALL_STATE(4641)] = 134058, - [SMALL_STATE(4642)] = 134065, - [SMALL_STATE(4643)] = 134072, - [SMALL_STATE(4644)] = 134079, - [SMALL_STATE(4645)] = 134086, - [SMALL_STATE(4646)] = 134093, - [SMALL_STATE(4647)] = 134100, - [SMALL_STATE(4648)] = 134107, - [SMALL_STATE(4649)] = 134114, - [SMALL_STATE(4650)] = 134121, - [SMALL_STATE(4651)] = 134128, - [SMALL_STATE(4652)] = 134135, - [SMALL_STATE(4653)] = 134142, - [SMALL_STATE(4654)] = 134149, - [SMALL_STATE(4655)] = 134156, - [SMALL_STATE(4656)] = 134163, - [SMALL_STATE(4657)] = 134170, - [SMALL_STATE(4658)] = 134177, - [SMALL_STATE(4659)] = 134184, - [SMALL_STATE(4660)] = 134191, - [SMALL_STATE(4661)] = 134198, - [SMALL_STATE(4662)] = 134205, - [SMALL_STATE(4663)] = 134212, - [SMALL_STATE(4664)] = 134219, - [SMALL_STATE(4665)] = 134226, - [SMALL_STATE(4666)] = 134233, - [SMALL_STATE(4667)] = 134240, - [SMALL_STATE(4668)] = 134247, - [SMALL_STATE(4669)] = 134254, - [SMALL_STATE(4670)] = 134261, - [SMALL_STATE(4671)] = 134268, - [SMALL_STATE(4672)] = 134275, - [SMALL_STATE(4673)] = 134282, - [SMALL_STATE(4674)] = 134289, - [SMALL_STATE(4675)] = 134296, - [SMALL_STATE(4676)] = 134303, - [SMALL_STATE(4677)] = 134310, - [SMALL_STATE(4678)] = 134317, - [SMALL_STATE(4679)] = 134324, - [SMALL_STATE(4680)] = 134331, - [SMALL_STATE(4681)] = 134338, - [SMALL_STATE(4682)] = 134345, - [SMALL_STATE(4683)] = 134352, - [SMALL_STATE(4684)] = 134359, - [SMALL_STATE(4685)] = 134366, - [SMALL_STATE(4686)] = 134373, - [SMALL_STATE(4687)] = 134380, - [SMALL_STATE(4688)] = 134387, - [SMALL_STATE(4689)] = 134394, - [SMALL_STATE(4690)] = 134401, - [SMALL_STATE(4691)] = 134408, - [SMALL_STATE(4692)] = 134415, - [SMALL_STATE(4693)] = 134422, - [SMALL_STATE(4694)] = 134429, - [SMALL_STATE(4695)] = 134436, - [SMALL_STATE(4696)] = 134443, - [SMALL_STATE(4697)] = 134450, - [SMALL_STATE(4698)] = 134457, - [SMALL_STATE(4699)] = 134464, - [SMALL_STATE(4700)] = 134471, - [SMALL_STATE(4701)] = 134478, - [SMALL_STATE(4702)] = 134485, - [SMALL_STATE(4703)] = 134492, - [SMALL_STATE(4704)] = 134499, - [SMALL_STATE(4705)] = 134506, - [SMALL_STATE(4706)] = 134513, - [SMALL_STATE(4707)] = 134520, - [SMALL_STATE(4708)] = 134527, - [SMALL_STATE(4709)] = 134534, - [SMALL_STATE(4710)] = 134541, - [SMALL_STATE(4711)] = 134548, - [SMALL_STATE(4712)] = 134555, - [SMALL_STATE(4713)] = 134562, - [SMALL_STATE(4714)] = 134569, - [SMALL_STATE(4715)] = 134576, - [SMALL_STATE(4716)] = 134583, - [SMALL_STATE(4717)] = 134590, - [SMALL_STATE(4718)] = 134597, - [SMALL_STATE(4719)] = 134604, - [SMALL_STATE(4720)] = 134611, - [SMALL_STATE(4721)] = 134618, - [SMALL_STATE(4722)] = 134625, - [SMALL_STATE(4723)] = 134632, - [SMALL_STATE(4724)] = 134639, - [SMALL_STATE(4725)] = 134646, - [SMALL_STATE(4726)] = 134653, - [SMALL_STATE(4727)] = 134660, - [SMALL_STATE(4728)] = 134667, - [SMALL_STATE(4729)] = 134674, - [SMALL_STATE(4730)] = 134681, - [SMALL_STATE(4731)] = 134688, - [SMALL_STATE(4732)] = 134695, - [SMALL_STATE(4733)] = 134702, - [SMALL_STATE(4734)] = 134709, - [SMALL_STATE(4735)] = 134716, - [SMALL_STATE(4736)] = 134723, - [SMALL_STATE(4737)] = 134730, - [SMALL_STATE(4738)] = 134737, + [SMALL_STATE(1636)] = 0, + [SMALL_STATE(1637)] = 71, + [SMALL_STATE(1638)] = 142, + [SMALL_STATE(1639)] = 213, + [SMALL_STATE(1640)] = 284, + [SMALL_STATE(1641)] = 355, + [SMALL_STATE(1642)] = 478, + [SMALL_STATE(1643)] = 547, + [SMALL_STATE(1644)] = 616, + [SMALL_STATE(1645)] = 685, + [SMALL_STATE(1646)] = 754, + [SMALL_STATE(1647)] = 823, + [SMALL_STATE(1648)] = 892, + [SMALL_STATE(1649)] = 961, + [SMALL_STATE(1650)] = 1030, + [SMALL_STATE(1651)] = 1099, + [SMALL_STATE(1652)] = 1168, + [SMALL_STATE(1653)] = 1288, + [SMALL_STATE(1654)] = 1376, + [SMALL_STATE(1655)] = 1460, + [SMALL_STATE(1656)] = 1570, + [SMALL_STATE(1657)] = 1680, + [SMALL_STATE(1658)] = 1764, + [SMALL_STATE(1659)] = 1850, + [SMALL_STATE(1660)] = 1934, + [SMALL_STATE(1661)] = 2022, + [SMALL_STATE(1662)] = 2108, + [SMALL_STATE(1663)] = 2202, + [SMALL_STATE(1664)] = 2298, + [SMALL_STATE(1665)] = 2386, + [SMALL_STATE(1666)] = 2453, + [SMALL_STATE(1667)] = 2520, + [SMALL_STATE(1668)] = 2591, + [SMALL_STATE(1669)] = 2662, + [SMALL_STATE(1670)] = 2775, + [SMALL_STATE(1671)] = 2841, + [SMALL_STATE(1672)] = 2907, + [SMALL_STATE(1673)] = 3015, + [SMALL_STATE(1674)] = 3083, + [SMALL_STATE(1675)] = 3149, + [SMALL_STATE(1676)] = 3215, + [SMALL_STATE(1677)] = 3281, + [SMALL_STATE(1678)] = 3405, + [SMALL_STATE(1679)] = 3471, + [SMALL_STATE(1680)] = 3537, + [SMALL_STATE(1681)] = 3603, + [SMALL_STATE(1682)] = 3673, + [SMALL_STATE(1683)] = 3739, + [SMALL_STATE(1684)] = 3805, + [SMALL_STATE(1685)] = 3871, + [SMALL_STATE(1686)] = 3937, + [SMALL_STATE(1687)] = 4003, + [SMALL_STATE(1688)] = 4069, + [SMALL_STATE(1689)] = 4135, + [SMALL_STATE(1690)] = 4201, + [SMALL_STATE(1691)] = 4267, + [SMALL_STATE(1692)] = 4335, + [SMALL_STATE(1693)] = 4403, + [SMALL_STATE(1694)] = 4471, + [SMALL_STATE(1695)] = 4537, + [SMALL_STATE(1696)] = 4603, + [SMALL_STATE(1697)] = 4689, + [SMALL_STATE(1698)] = 4775, + [SMALL_STATE(1699)] = 4841, + [SMALL_STATE(1700)] = 4935, + [SMALL_STATE(1701)] = 5027, + [SMALL_STATE(1702)] = 5113, + [SMALL_STATE(1703)] = 5197, + [SMALL_STATE(1704)] = 5265, + [SMALL_STATE(1705)] = 5331, + [SMALL_STATE(1706)] = 5397, + [SMALL_STATE(1707)] = 5465, + [SMALL_STATE(1708)] = 5573, + [SMALL_STATE(1709)] = 5681, + [SMALL_STATE(1710)] = 5763, + [SMALL_STATE(1711)] = 5845, + [SMALL_STATE(1712)] = 5969, + [SMALL_STATE(1713)] = 6051, + [SMALL_STATE(1714)] = 6119, + [SMALL_STATE(1715)] = 6184, + [SMALL_STATE(1716)] = 6249, + [SMALL_STATE(1717)] = 6314, + [SMALL_STATE(1718)] = 6379, + [SMALL_STATE(1719)] = 6444, + [SMALL_STATE(1720)] = 6509, + [SMALL_STATE(1721)] = 6574, + [SMALL_STATE(1722)] = 6639, + [SMALL_STATE(1723)] = 6704, + [SMALL_STATE(1724)] = 6769, + [SMALL_STATE(1725)] = 6834, + [SMALL_STATE(1726)] = 6899, + [SMALL_STATE(1727)] = 6964, + [SMALL_STATE(1728)] = 7029, + [SMALL_STATE(1729)] = 7094, + [SMALL_STATE(1730)] = 7159, + [SMALL_STATE(1731)] = 7224, + [SMALL_STATE(1732)] = 7289, + [SMALL_STATE(1733)] = 7356, + [SMALL_STATE(1734)] = 7421, + [SMALL_STATE(1735)] = 7486, + [SMALL_STATE(1736)] = 7551, + [SMALL_STATE(1737)] = 7616, + [SMALL_STATE(1738)] = 7681, + [SMALL_STATE(1739)] = 7746, + [SMALL_STATE(1740)] = 7811, + [SMALL_STATE(1741)] = 7876, + [SMALL_STATE(1742)] = 7941, + [SMALL_STATE(1743)] = 8006, + [SMALL_STATE(1744)] = 8071, + [SMALL_STATE(1745)] = 8136, + [SMALL_STATE(1746)] = 8205, + [SMALL_STATE(1747)] = 8274, + [SMALL_STATE(1748)] = 8339, + [SMALL_STATE(1749)] = 8406, + [SMALL_STATE(1750)] = 8471, + [SMALL_STATE(1751)] = 8536, + [SMALL_STATE(1752)] = 8601, + [SMALL_STATE(1753)] = 8668, + [SMALL_STATE(1754)] = 8735, + [SMALL_STATE(1755)] = 8800, + [SMALL_STATE(1756)] = 8865, + [SMALL_STATE(1757)] = 8930, + [SMALL_STATE(1758)] = 8995, + [SMALL_STATE(1759)] = 9060, + [SMALL_STATE(1760)] = 9125, + [SMALL_STATE(1761)] = 9190, + [SMALL_STATE(1762)] = 9255, + [SMALL_STATE(1763)] = 9320, + [SMALL_STATE(1764)] = 9385, + [SMALL_STATE(1765)] = 9450, + [SMALL_STATE(1766)] = 9515, + [SMALL_STATE(1767)] = 9580, + [SMALL_STATE(1768)] = 9645, + [SMALL_STATE(1769)] = 9710, + [SMALL_STATE(1770)] = 9775, + [SMALL_STATE(1771)] = 9840, + [SMALL_STATE(1772)] = 9905, + [SMALL_STATE(1773)] = 9970, + [SMALL_STATE(1774)] = 10035, + [SMALL_STATE(1775)] = 10100, + [SMALL_STATE(1776)] = 10167, + [SMALL_STATE(1777)] = 10232, + [SMALL_STATE(1778)] = 10297, + [SMALL_STATE(1779)] = 10362, + [SMALL_STATE(1780)] = 10427, + [SMALL_STATE(1781)] = 10494, + [SMALL_STATE(1782)] = 10559, + [SMALL_STATE(1783)] = 10626, + [SMALL_STATE(1784)] = 10691, + [SMALL_STATE(1785)] = 10756, + [SMALL_STATE(1786)] = 10821, + [SMALL_STATE(1787)] = 10886, + [SMALL_STATE(1788)] = 10951, + [SMALL_STATE(1789)] = 11018, + [SMALL_STATE(1790)] = 11083, + [SMALL_STATE(1791)] = 11150, + [SMALL_STATE(1792)] = 11215, + [SMALL_STATE(1793)] = 11280, + [SMALL_STATE(1794)] = 11345, + [SMALL_STATE(1795)] = 11410, + [SMALL_STATE(1796)] = 11475, + [SMALL_STATE(1797)] = 11540, + [SMALL_STATE(1798)] = 11605, + [SMALL_STATE(1799)] = 11670, + [SMALL_STATE(1800)] = 11766, + [SMALL_STATE(1801)] = 11854, + [SMALL_STATE(1802)] = 11952, + [SMALL_STATE(1803)] = 12036, + [SMALL_STATE(1804)] = 12122, + [SMALL_STATE(1805)] = 12186, + [SMALL_STATE(1806)] = 12250, + [SMALL_STATE(1807)] = 12316, + [SMALL_STATE(1808)] = 12382, + [SMALL_STATE(1809)] = 12466, + [SMALL_STATE(1810)] = 12532, + [SMALL_STATE(1811)] = 12596, + [SMALL_STATE(1812)] = 12714, + [SMALL_STATE(1813)] = 12780, + [SMALL_STATE(1814)] = 12846, + [SMALL_STATE(1815)] = 12932, + [SMALL_STATE(1816)] = 13020, + [SMALL_STATE(1817)] = 13104, + [SMALL_STATE(1818)] = 13188, + [SMALL_STATE(1819)] = 13284, + [SMALL_STATE(1820)] = 13382, + [SMALL_STATE(1821)] = 13494, + [SMALL_STATE(1822)] = 13606, + [SMALL_STATE(1823)] = 13694, + [SMALL_STATE(1824)] = 13782, + [SMALL_STATE(1825)] = 13870, + [SMALL_STATE(1826)] = 13936, + [SMALL_STATE(1827)] = 14024, + [SMALL_STATE(1828)] = 14108, + [SMALL_STATE(1829)] = 14224, + [SMALL_STATE(1830)] = 14340, + [SMALL_STATE(1831)] = 14452, + [SMALL_STATE(1832)] = 14516, + [SMALL_STATE(1833)] = 14580, + [SMALL_STATE(1834)] = 14664, + [SMALL_STATE(1835)] = 14776, + [SMALL_STATE(1836)] = 14839, + [SMALL_STATE(1837)] = 14902, + [SMALL_STATE(1838)] = 14965, + [SMALL_STATE(1839)] = 15028, + [SMALL_STATE(1840)] = 15091, + [SMALL_STATE(1841)] = 15202, + [SMALL_STATE(1842)] = 15265, + [SMALL_STATE(1843)] = 15328, + [SMALL_STATE(1844)] = 15391, + [SMALL_STATE(1845)] = 15454, + [SMALL_STATE(1846)] = 15517, + [SMALL_STATE(1847)] = 15580, + [SMALL_STATE(1848)] = 15643, + [SMALL_STATE(1849)] = 15706, + [SMALL_STATE(1850)] = 15769, + [SMALL_STATE(1851)] = 15832, + [SMALL_STATE(1852)] = 15895, + [SMALL_STATE(1853)] = 15962, + [SMALL_STATE(1854)] = 16025, + [SMALL_STATE(1855)] = 16092, + [SMALL_STATE(1856)] = 16155, + [SMALL_STATE(1857)] = 16218, + [SMALL_STATE(1858)] = 16281, + [SMALL_STATE(1859)] = 16344, + [SMALL_STATE(1860)] = 16431, + [SMALL_STATE(1861)] = 16496, + [SMALL_STATE(1862)] = 16559, + [SMALL_STATE(1863)] = 16622, + [SMALL_STATE(1864)] = 16685, + [SMALL_STATE(1865)] = 16748, + [SMALL_STATE(1866)] = 16811, + [SMALL_STATE(1867)] = 16874, + [SMALL_STATE(1868)] = 16937, + [SMALL_STATE(1869)] = 17000, + [SMALL_STATE(1870)] = 17063, + [SMALL_STATE(1871)] = 17126, + [SMALL_STATE(1872)] = 17189, + [SMALL_STATE(1873)] = 17252, + [SMALL_STATE(1874)] = 17315, + [SMALL_STATE(1875)] = 17378, + [SMALL_STATE(1876)] = 17441, + [SMALL_STATE(1877)] = 17504, + [SMALL_STATE(1878)] = 17567, + [SMALL_STATE(1879)] = 17630, + [SMALL_STATE(1880)] = 17693, + [SMALL_STATE(1881)] = 17756, + [SMALL_STATE(1882)] = 17819, + [SMALL_STATE(1883)] = 17882, + [SMALL_STATE(1884)] = 17945, + [SMALL_STATE(1885)] = 18008, + [SMALL_STATE(1886)] = 18071, + [SMALL_STATE(1887)] = 18134, + [SMALL_STATE(1888)] = 18197, + [SMALL_STATE(1889)] = 18260, + [SMALL_STATE(1890)] = 18323, + [SMALL_STATE(1891)] = 18386, + [SMALL_STATE(1892)] = 18449, + [SMALL_STATE(1893)] = 18512, + [SMALL_STATE(1894)] = 18575, + [SMALL_STATE(1895)] = 18638, + [SMALL_STATE(1896)] = 18701, + [SMALL_STATE(1897)] = 18764, + [SMALL_STATE(1898)] = 18827, + [SMALL_STATE(1899)] = 18890, + [SMALL_STATE(1900)] = 18953, + [SMALL_STATE(1901)] = 19016, + [SMALL_STATE(1902)] = 19079, + [SMALL_STATE(1903)] = 19146, + [SMALL_STATE(1904)] = 19209, + [SMALL_STATE(1905)] = 19272, + [SMALL_STATE(1906)] = 19339, + [SMALL_STATE(1907)] = 19402, + [SMALL_STATE(1908)] = 19465, + [SMALL_STATE(1909)] = 19528, + [SMALL_STATE(1910)] = 19591, + [SMALL_STATE(1911)] = 19654, + [SMALL_STATE(1912)] = 19717, + [SMALL_STATE(1913)] = 19780, + [SMALL_STATE(1914)] = 19843, + [SMALL_STATE(1915)] = 19906, + [SMALL_STATE(1916)] = 19969, + [SMALL_STATE(1917)] = 20032, + [SMALL_STATE(1918)] = 20095, + [SMALL_STATE(1919)] = 20158, + [SMALL_STATE(1920)] = 20221, + [SMALL_STATE(1921)] = 20284, + [SMALL_STATE(1922)] = 20395, + [SMALL_STATE(1923)] = 20458, + [SMALL_STATE(1924)] = 20521, + [SMALL_STATE(1925)] = 20632, + [SMALL_STATE(1926)] = 20695, + [SMALL_STATE(1927)] = 20806, + [SMALL_STATE(1928)] = 20893, + [SMALL_STATE(1929)] = 20964, + [SMALL_STATE(1930)] = 21027, + [SMALL_STATE(1931)] = 21090, + [SMALL_STATE(1932)] = 21153, + [SMALL_STATE(1933)] = 21216, + [SMALL_STATE(1934)] = 21313, + [SMALL_STATE(1935)] = 21376, + [SMALL_STATE(1936)] = 21441, + [SMALL_STATE(1937)] = 21504, + [SMALL_STATE(1938)] = 21567, + [SMALL_STATE(1939)] = 21630, + [SMALL_STATE(1940)] = 21693, + [SMALL_STATE(1941)] = 21756, + [SMALL_STATE(1942)] = 21819, + [SMALL_STATE(1943)] = 21884, + [SMALL_STATE(1944)] = 21949, + [SMALL_STATE(1945)] = 22012, + [SMALL_STATE(1946)] = 22075, + [SMALL_STATE(1947)] = 22138, + [SMALL_STATE(1948)] = 22201, + [SMALL_STATE(1949)] = 22264, + [SMALL_STATE(1950)] = 22327, + [SMALL_STATE(1951)] = 22412, + [SMALL_STATE(1952)] = 22499, + [SMALL_STATE(1953)] = 22564, + [SMALL_STATE(1954)] = 22659, + [SMALL_STATE(1955)] = 22769, + [SMALL_STATE(1956)] = 22879, + [SMALL_STATE(1957)] = 22989, + [SMALL_STATE(1958)] = 23059, + [SMALL_STATE(1959)] = 23169, + [SMALL_STATE(1960)] = 23233, + [SMALL_STATE(1961)] = 23297, + [SMALL_STATE(1962)] = 23361, + [SMALL_STATE(1963)] = 23425, + [SMALL_STATE(1964)] = 23489, + [SMALL_STATE(1965)] = 23553, + [SMALL_STATE(1966)] = 23614, + [SMALL_STATE(1967)] = 23675, + [SMALL_STATE(1968)] = 23738, + [SMALL_STATE(1969)] = 23799, + [SMALL_STATE(1970)] = 23860, + [SMALL_STATE(1971)] = 23921, + [SMALL_STATE(1972)] = 23982, + [SMALL_STATE(1973)] = 24043, + [SMALL_STATE(1974)] = 24104, + [SMALL_STATE(1975)] = 24165, + [SMALL_STATE(1976)] = 24226, + [SMALL_STATE(1977)] = 24287, + [SMALL_STATE(1978)] = 24348, + [SMALL_STATE(1979)] = 24409, + [SMALL_STATE(1980)] = 24470, + [SMALL_STATE(1981)] = 24531, + [SMALL_STATE(1982)] = 24592, + [SMALL_STATE(1983)] = 24653, + [SMALL_STATE(1984)] = 24714, + [SMALL_STATE(1985)] = 24775, + [SMALL_STATE(1986)] = 24836, + [SMALL_STATE(1987)] = 24899, + [SMALL_STATE(1988)] = 24960, + [SMALL_STATE(1989)] = 25023, + [SMALL_STATE(1990)] = 25084, + [SMALL_STATE(1991)] = 25145, + [SMALL_STATE(1992)] = 25206, + [SMALL_STATE(1993)] = 25267, + [SMALL_STATE(1994)] = 25328, + [SMALL_STATE(1995)] = 25389, + [SMALL_STATE(1996)] = 25450, + [SMALL_STATE(1997)] = 25511, + [SMALL_STATE(1998)] = 25572, + [SMALL_STATE(1999)] = 25633, + [SMALL_STATE(2000)] = 25694, + [SMALL_STATE(2001)] = 25755, + [SMALL_STATE(2002)] = 25816, + [SMALL_STATE(2003)] = 25877, + [SMALL_STATE(2004)] = 25938, + [SMALL_STATE(2005)] = 25999, + [SMALL_STATE(2006)] = 26060, + [SMALL_STATE(2007)] = 26121, + [SMALL_STATE(2008)] = 26182, + [SMALL_STATE(2009)] = 26243, + [SMALL_STATE(2010)] = 26304, + [SMALL_STATE(2011)] = 26365, + [SMALL_STATE(2012)] = 26426, + [SMALL_STATE(2013)] = 26487, + [SMALL_STATE(2014)] = 26550, + [SMALL_STATE(2015)] = 26611, + [SMALL_STATE(2016)] = 26672, + [SMALL_STATE(2017)] = 26733, + [SMALL_STATE(2018)] = 26794, + [SMALL_STATE(2019)] = 26857, + [SMALL_STATE(2020)] = 26920, + [SMALL_STATE(2021)] = 26981, + [SMALL_STATE(2022)] = 27042, + [SMALL_STATE(2023)] = 27103, + [SMALL_STATE(2024)] = 27164, + [SMALL_STATE(2025)] = 27225, + [SMALL_STATE(2026)] = 27286, + [SMALL_STATE(2027)] = 27347, + [SMALL_STATE(2028)] = 27408, + [SMALL_STATE(2029)] = 27469, + [SMALL_STATE(2030)] = 27530, + [SMALL_STATE(2031)] = 27591, + [SMALL_STATE(2032)] = 27652, + [SMALL_STATE(2033)] = 27713, + [SMALL_STATE(2034)] = 27774, + [SMALL_STATE(2035)] = 27837, + [SMALL_STATE(2036)] = 27898, + [SMALL_STATE(2037)] = 27959, + [SMALL_STATE(2038)] = 28022, + [SMALL_STATE(2039)] = 28085, + [SMALL_STATE(2040)] = 28146, + [SMALL_STATE(2041)] = 28207, + [SMALL_STATE(2042)] = 28268, + [SMALL_STATE(2043)] = 28329, + [SMALL_STATE(2044)] = 28390, + [SMALL_STATE(2045)] = 28451, + [SMALL_STATE(2046)] = 28512, + [SMALL_STATE(2047)] = 28573, + [SMALL_STATE(2048)] = 28634, + [SMALL_STATE(2049)] = 28695, + [SMALL_STATE(2050)] = 28756, + [SMALL_STATE(2051)] = 28817, + [SMALL_STATE(2052)] = 28878, + [SMALL_STATE(2053)] = 28939, + [SMALL_STATE(2054)] = 29000, + [SMALL_STATE(2055)] = 29061, + [SMALL_STATE(2056)] = 29122, + [SMALL_STATE(2057)] = 29183, + [SMALL_STATE(2058)] = 29244, + [SMALL_STATE(2059)] = 29309, + [SMALL_STATE(2060)] = 29374, + [SMALL_STATE(2061)] = 29435, + [SMALL_STATE(2062)] = 29496, + [SMALL_STATE(2063)] = 29557, + [SMALL_STATE(2064)] = 29618, + [SMALL_STATE(2065)] = 29679, + [SMALL_STATE(2066)] = 29742, + [SMALL_STATE(2067)] = 29803, + [SMALL_STATE(2068)] = 29864, + [SMALL_STATE(2069)] = 29925, + [SMALL_STATE(2070)] = 29986, + [SMALL_STATE(2071)] = 30047, + [SMALL_STATE(2072)] = 30108, + [SMALL_STATE(2073)] = 30169, + [SMALL_STATE(2074)] = 30230, + [SMALL_STATE(2075)] = 30291, + [SMALL_STATE(2076)] = 30352, + [SMALL_STATE(2077)] = 30413, + [SMALL_STATE(2078)] = 30474, + [SMALL_STATE(2079)] = 30535, + [SMALL_STATE(2080)] = 30596, + [SMALL_STATE(2081)] = 30657, + [SMALL_STATE(2082)] = 30718, + [SMALL_STATE(2083)] = 30779, + [SMALL_STATE(2084)] = 30840, + [SMALL_STATE(2085)] = 30901, + [SMALL_STATE(2086)] = 30962, + [SMALL_STATE(2087)] = 31023, + [SMALL_STATE(2088)] = 31084, + [SMALL_STATE(2089)] = 31145, + [SMALL_STATE(2090)] = 31206, + [SMALL_STATE(2091)] = 31267, + [SMALL_STATE(2092)] = 31328, + [SMALL_STATE(2093)] = 31389, + [SMALL_STATE(2094)] = 31450, + [SMALL_STATE(2095)] = 31511, + [SMALL_STATE(2096)] = 31572, + [SMALL_STATE(2097)] = 31633, + [SMALL_STATE(2098)] = 31694, + [SMALL_STATE(2099)] = 31755, + [SMALL_STATE(2100)] = 31816, + [SMALL_STATE(2101)] = 31877, + [SMALL_STATE(2102)] = 31938, + [SMALL_STATE(2103)] = 31999, + [SMALL_STATE(2104)] = 32060, + [SMALL_STATE(2105)] = 32121, + [SMALL_STATE(2106)] = 32182, + [SMALL_STATE(2107)] = 32243, + [SMALL_STATE(2108)] = 32304, + [SMALL_STATE(2109)] = 32365, + [SMALL_STATE(2110)] = 32426, + [SMALL_STATE(2111)] = 32487, + [SMALL_STATE(2112)] = 32548, + [SMALL_STATE(2113)] = 32609, + [SMALL_STATE(2114)] = 32672, + [SMALL_STATE(2115)] = 32733, + [SMALL_STATE(2116)] = 32794, + [SMALL_STATE(2117)] = 32855, + [SMALL_STATE(2118)] = 32918, + [SMALL_STATE(2119)] = 32983, + [SMALL_STATE(2120)] = 33044, + [SMALL_STATE(2121)] = 33105, + [SMALL_STATE(2122)] = 33166, + [SMALL_STATE(2123)] = 33227, + [SMALL_STATE(2124)] = 33288, + [SMALL_STATE(2125)] = 33349, + [SMALL_STATE(2126)] = 33410, + [SMALL_STATE(2127)] = 33471, + [SMALL_STATE(2128)] = 33532, + [SMALL_STATE(2129)] = 33593, + [SMALL_STATE(2130)] = 33654, + [SMALL_STATE(2131)] = 33715, + [SMALL_STATE(2132)] = 33780, + [SMALL_STATE(2133)] = 33841, + [SMALL_STATE(2134)] = 33902, + [SMALL_STATE(2135)] = 33963, + [SMALL_STATE(2136)] = 34024, + [SMALL_STATE(2137)] = 34085, + [SMALL_STATE(2138)] = 34146, + [SMALL_STATE(2139)] = 34207, + [SMALL_STATE(2140)] = 34268, + [SMALL_STATE(2141)] = 34329, + [SMALL_STATE(2142)] = 34390, + [SMALL_STATE(2143)] = 34451, + [SMALL_STATE(2144)] = 34512, + [SMALL_STATE(2145)] = 34573, + [SMALL_STATE(2146)] = 34634, + [SMALL_STATE(2147)] = 34695, + [SMALL_STATE(2148)] = 34756, + [SMALL_STATE(2149)] = 34817, + [SMALL_STATE(2150)] = 34878, + [SMALL_STATE(2151)] = 34939, + [SMALL_STATE(2152)] = 35000, + [SMALL_STATE(2153)] = 35061, + [SMALL_STATE(2154)] = 35122, + [SMALL_STATE(2155)] = 35183, + [SMALL_STATE(2156)] = 35244, + [SMALL_STATE(2157)] = 35305, + [SMALL_STATE(2158)] = 35366, + [SMALL_STATE(2159)] = 35427, + [SMALL_STATE(2160)] = 35488, + [SMALL_STATE(2161)] = 35549, + [SMALL_STATE(2162)] = 35610, + [SMALL_STATE(2163)] = 35671, + [SMALL_STATE(2164)] = 35732, + [SMALL_STATE(2165)] = 35793, + [SMALL_STATE(2166)] = 35858, + [SMALL_STATE(2167)] = 35923, + [SMALL_STATE(2168)] = 35984, + [SMALL_STATE(2169)] = 36045, + [SMALL_STATE(2170)] = 36106, + [SMALL_STATE(2171)] = 36167, + [SMALL_STATE(2172)] = 36228, + [SMALL_STATE(2173)] = 36289, + [SMALL_STATE(2174)] = 36350, + [SMALL_STATE(2175)] = 36411, + [SMALL_STATE(2176)] = 36472, + [SMALL_STATE(2177)] = 36533, + [SMALL_STATE(2178)] = 36593, + [SMALL_STATE(2179)] = 36653, + [SMALL_STATE(2180)] = 36713, + [SMALL_STATE(2181)] = 36773, + [SMALL_STATE(2182)] = 36833, + [SMALL_STATE(2183)] = 36908, + [SMALL_STATE(2184)] = 36971, + [SMALL_STATE(2185)] = 37046, + [SMALL_STATE(2186)] = 37121, + [SMALL_STATE(2187)] = 37183, + [SMALL_STATE(2188)] = 37245, + [SMALL_STATE(2189)] = 37309, + [SMALL_STATE(2190)] = 37366, + [SMALL_STATE(2191)] = 37423, + [SMALL_STATE(2192)] = 37482, + [SMALL_STATE(2193)] = 37539, + [SMALL_STATE(2194)] = 37600, + [SMALL_STATE(2195)] = 37657, + [SMALL_STATE(2196)] = 37714, + [SMALL_STATE(2197)] = 37777, + [SMALL_STATE(2198)] = 37836, + [SMALL_STATE(2199)] = 37893, + [SMALL_STATE(2200)] = 37952, + [SMALL_STATE(2201)] = 38057, + [SMALL_STATE(2202)] = 38116, + [SMALL_STATE(2203)] = 38173, + [SMALL_STATE(2204)] = 38230, + [SMALL_STATE(2205)] = 38287, + [SMALL_STATE(2206)] = 38343, + [SMALL_STATE(2207)] = 38399, + [SMALL_STATE(2208)] = 38455, + [SMALL_STATE(2209)] = 38511, + [SMALL_STATE(2210)] = 38567, + [SMALL_STATE(2211)] = 38649, + [SMALL_STATE(2212)] = 38705, + [SMALL_STATE(2213)] = 38781, + [SMALL_STATE(2214)] = 38837, + [SMALL_STATE(2215)] = 38911, + [SMALL_STATE(2216)] = 38967, + [SMALL_STATE(2217)] = 39023, + [SMALL_STATE(2218)] = 39081, + [SMALL_STATE(2219)] = 39137, + [SMALL_STATE(2220)] = 39193, + [SMALL_STATE(2221)] = 39249, + [SMALL_STATE(2222)] = 39305, + [SMALL_STATE(2223)] = 39363, + [SMALL_STATE(2224)] = 39419, + [SMALL_STATE(2225)] = 39475, + [SMALL_STATE(2226)] = 39551, + [SMALL_STATE(2227)] = 39607, + [SMALL_STATE(2228)] = 39663, + [SMALL_STATE(2229)] = 39719, + [SMALL_STATE(2230)] = 39775, + [SMALL_STATE(2231)] = 39831, + [SMALL_STATE(2232)] = 39887, + [SMALL_STATE(2233)] = 39943, + [SMALL_STATE(2234)] = 39999, + [SMALL_STATE(2235)] = 40055, + [SMALL_STATE(2236)] = 40111, + [SMALL_STATE(2237)] = 40167, + [SMALL_STATE(2238)] = 40223, + [SMALL_STATE(2239)] = 40279, + [SMALL_STATE(2240)] = 40335, + [SMALL_STATE(2241)] = 40391, + [SMALL_STATE(2242)] = 40447, + [SMALL_STATE(2243)] = 40503, + [SMALL_STATE(2244)] = 40559, + [SMALL_STATE(2245)] = 40615, + [SMALL_STATE(2246)] = 40671, + [SMALL_STATE(2247)] = 40727, + [SMALL_STATE(2248)] = 40783, + [SMALL_STATE(2249)] = 40839, + [SMALL_STATE(2250)] = 40895, + [SMALL_STATE(2251)] = 40951, + [SMALL_STATE(2252)] = 41007, + [SMALL_STATE(2253)] = 41063, + [SMALL_STATE(2254)] = 41119, + [SMALL_STATE(2255)] = 41175, + [SMALL_STATE(2256)] = 41231, + [SMALL_STATE(2257)] = 41287, + [SMALL_STATE(2258)] = 41343, + [SMALL_STATE(2259)] = 41447, + [SMALL_STATE(2260)] = 41503, + [SMALL_STATE(2261)] = 41561, + [SMALL_STATE(2262)] = 41617, + [SMALL_STATE(2263)] = 41673, + [SMALL_STATE(2264)] = 41729, + [SMALL_STATE(2265)] = 41785, + [SMALL_STATE(2266)] = 41841, + [SMALL_STATE(2267)] = 41897, + [SMALL_STATE(2268)] = 41953, + [SMALL_STATE(2269)] = 42009, + [SMALL_STATE(2270)] = 42065, + [SMALL_STATE(2271)] = 42121, + [SMALL_STATE(2272)] = 42177, + [SMALL_STATE(2273)] = 42233, + [SMALL_STATE(2274)] = 42289, + [SMALL_STATE(2275)] = 42345, + [SMALL_STATE(2276)] = 42401, + [SMALL_STATE(2277)] = 42457, + [SMALL_STATE(2278)] = 42513, + [SMALL_STATE(2279)] = 42569, + [SMALL_STATE(2280)] = 42625, + [SMALL_STATE(2281)] = 42681, + [SMALL_STATE(2282)] = 42737, + [SMALL_STATE(2283)] = 42793, + [SMALL_STATE(2284)] = 42849, + [SMALL_STATE(2285)] = 42905, + [SMALL_STATE(2286)] = 42961, + [SMALL_STATE(2287)] = 43045, + [SMALL_STATE(2288)] = 43101, + [SMALL_STATE(2289)] = 43157, + [SMALL_STATE(2290)] = 43213, + [SMALL_STATE(2291)] = 43269, + [SMALL_STATE(2292)] = 43325, + [SMALL_STATE(2293)] = 43381, + [SMALL_STATE(2294)] = 43437, + [SMALL_STATE(2295)] = 43493, + [SMALL_STATE(2296)] = 43549, + [SMALL_STATE(2297)] = 43605, + [SMALL_STATE(2298)] = 43661, + [SMALL_STATE(2299)] = 43717, + [SMALL_STATE(2300)] = 43773, + [SMALL_STATE(2301)] = 43871, + [SMALL_STATE(2302)] = 43927, + [SMALL_STATE(2303)] = 43983, + [SMALL_STATE(2304)] = 44039, + [SMALL_STATE(2305)] = 44137, + [SMALL_STATE(2306)] = 44193, + [SMALL_STATE(2307)] = 44249, + [SMALL_STATE(2308)] = 44305, + [SMALL_STATE(2309)] = 44361, + [SMALL_STATE(2310)] = 44419, + [SMALL_STATE(2311)] = 44475, + [SMALL_STATE(2312)] = 44531, + [SMALL_STATE(2313)] = 44587, + [SMALL_STATE(2314)] = 44643, + [SMALL_STATE(2315)] = 44699, + [SMALL_STATE(2316)] = 44757, + [SMALL_STATE(2317)] = 44813, + [SMALL_STATE(2318)] = 44871, + [SMALL_STATE(2319)] = 44927, + [SMALL_STATE(2320)] = 44983, + [SMALL_STATE(2321)] = 45059, + [SMALL_STATE(2322)] = 45134, + [SMALL_STATE(2323)] = 45207, + [SMALL_STATE(2324)] = 45282, + [SMALL_STATE(2325)] = 45357, + [SMALL_STATE(2326)] = 45414, + [SMALL_STATE(2327)] = 45497, + [SMALL_STATE(2328)] = 45552, + [SMALL_STATE(2329)] = 45607, + [SMALL_STATE(2330)] = 45688, + [SMALL_STATE(2331)] = 45765, + [SMALL_STATE(2332)] = 45820, + [SMALL_STATE(2333)] = 45917, + [SMALL_STATE(2334)] = 45994, + [SMALL_STATE(2335)] = 46091, + [SMALL_STATE(2336)] = 46146, + [SMALL_STATE(2337)] = 46223, + [SMALL_STATE(2338)] = 46320, + [SMALL_STATE(2339)] = 46417, + [SMALL_STATE(2340)] = 46474, + [SMALL_STATE(2341)] = 46570, + [SMALL_STATE(2342)] = 46644, + [SMALL_STATE(2343)] = 46714, + [SMALL_STATE(2344)] = 46796, + [SMALL_STATE(2345)] = 46898, + [SMALL_STATE(2346)] = 46968, + [SMALL_STATE(2347)] = 47026, + [SMALL_STATE(2348)] = 47122, + [SMALL_STATE(2349)] = 47196, + [SMALL_STATE(2350)] = 47292, + [SMALL_STATE(2351)] = 47350, + [SMALL_STATE(2352)] = 47424, + [SMALL_STATE(2353)] = 47496, + [SMALL_STATE(2354)] = 47576, + [SMALL_STATE(2355)] = 47646, + [SMALL_STATE(2356)] = 47703, + [SMALL_STATE(2357)] = 47760, + [SMALL_STATE(2358)] = 47815, + [SMALL_STATE(2359)] = 47910, + [SMALL_STATE(2360)] = 47965, + [SMALL_STATE(2361)] = 48060, + [SMALL_STATE(2362)] = 48113, + [SMALL_STATE(2363)] = 48168, + [SMALL_STATE(2364)] = 48223, + [SMALL_STATE(2365)] = 48322, + [SMALL_STATE(2366)] = 48417, + [SMALL_STATE(2367)] = 48470, + [SMALL_STATE(2368)] = 48525, + [SMALL_STATE(2369)] = 48580, + [SMALL_STATE(2370)] = 48632, + [SMALL_STATE(2371)] = 48686, + [SMALL_STATE(2372)] = 48740, + [SMALL_STATE(2373)] = 48810, + [SMALL_STATE(2374)] = 48882, + [SMALL_STATE(2375)] = 48992, + [SMALL_STATE(2376)] = 49070, + [SMALL_STATE(2377)] = 49150, + [SMALL_STATE(2378)] = 49222, + [SMALL_STATE(2379)] = 49274, + [SMALL_STATE(2380)] = 49326, + [SMALL_STATE(2381)] = 49398, + [SMALL_STATE(2382)] = 49452, + [SMALL_STATE(2383)] = 49504, + [SMALL_STATE(2384)] = 49556, + [SMALL_STATE(2385)] = 49608, + [SMALL_STATE(2386)] = 49660, + [SMALL_STATE(2387)] = 49712, + [SMALL_STATE(2388)] = 49764, + [SMALL_STATE(2389)] = 49816, + [SMALL_STATE(2390)] = 49926, + [SMALL_STATE(2391)] = 49978, + [SMALL_STATE(2392)] = 50030, + [SMALL_STATE(2393)] = 50082, + [SMALL_STATE(2394)] = 50136, + [SMALL_STATE(2395)] = 50188, + [SMALL_STATE(2396)] = 50240, + [SMALL_STATE(2397)] = 50292, + [SMALL_STATE(2398)] = 50344, + [SMALL_STATE(2399)] = 50396, + [SMALL_STATE(2400)] = 50448, + [SMALL_STATE(2401)] = 50500, + [SMALL_STATE(2402)] = 50552, + [SMALL_STATE(2403)] = 50604, + [SMALL_STATE(2404)] = 50656, + [SMALL_STATE(2405)] = 50708, + [SMALL_STATE(2406)] = 50760, + [SMALL_STATE(2407)] = 50812, + [SMALL_STATE(2408)] = 50864, + [SMALL_STATE(2409)] = 50916, + [SMALL_STATE(2410)] = 50968, + [SMALL_STATE(2411)] = 51020, + [SMALL_STATE(2412)] = 51130, + [SMALL_STATE(2413)] = 51182, + [SMALL_STATE(2414)] = 51234, + [SMALL_STATE(2415)] = 51286, + [SMALL_STATE(2416)] = 51338, + [SMALL_STATE(2417)] = 51390, + [SMALL_STATE(2418)] = 51500, + [SMALL_STATE(2419)] = 51552, + [SMALL_STATE(2420)] = 51662, + [SMALL_STATE(2421)] = 51714, + [SMALL_STATE(2422)] = 51766, + [SMALL_STATE(2423)] = 51818, + [SMALL_STATE(2424)] = 51870, + [SMALL_STATE(2425)] = 51922, + [SMALL_STATE(2426)] = 51974, + [SMALL_STATE(2427)] = 52026, + [SMALL_STATE(2428)] = 52080, + [SMALL_STATE(2429)] = 52132, + [SMALL_STATE(2430)] = 52184, + [SMALL_STATE(2431)] = 52236, + [SMALL_STATE(2432)] = 52288, + [SMALL_STATE(2433)] = 52398, + [SMALL_STATE(2434)] = 52450, + [SMALL_STATE(2435)] = 52560, + [SMALL_STATE(2436)] = 52612, + [SMALL_STATE(2437)] = 52664, + [SMALL_STATE(2438)] = 52716, + [SMALL_STATE(2439)] = 52768, + [SMALL_STATE(2440)] = 52820, + [SMALL_STATE(2441)] = 52872, + [SMALL_STATE(2442)] = 52924, + [SMALL_STATE(2443)] = 52976, + [SMALL_STATE(2444)] = 53028, + [SMALL_STATE(2445)] = 53080, + [SMALL_STATE(2446)] = 53132, + [SMALL_STATE(2447)] = 53184, + [SMALL_STATE(2448)] = 53240, + [SMALL_STATE(2449)] = 53296, + [SMALL_STATE(2450)] = 53348, + [SMALL_STATE(2451)] = 53400, + [SMALL_STATE(2452)] = 53452, + [SMALL_STATE(2453)] = 53504, + [SMALL_STATE(2454)] = 53556, + [SMALL_STATE(2455)] = 53608, + [SMALL_STATE(2456)] = 53660, + [SMALL_STATE(2457)] = 53712, + [SMALL_STATE(2458)] = 53764, + [SMALL_STATE(2459)] = 53816, + [SMALL_STATE(2460)] = 53868, + [SMALL_STATE(2461)] = 53920, + [SMALL_STATE(2462)] = 53972, + [SMALL_STATE(2463)] = 54024, + [SMALL_STATE(2464)] = 54076, + [SMALL_STATE(2465)] = 54128, + [SMALL_STATE(2466)] = 54180, + [SMALL_STATE(2467)] = 54290, + [SMALL_STATE(2468)] = 54344, + [SMALL_STATE(2469)] = 54396, + [SMALL_STATE(2470)] = 54448, + [SMALL_STATE(2471)] = 54500, + [SMALL_STATE(2472)] = 54610, + [SMALL_STATE(2473)] = 54662, + [SMALL_STATE(2474)] = 54714, + [SMALL_STATE(2475)] = 54766, + [SMALL_STATE(2476)] = 54818, + [SMALL_STATE(2477)] = 54912, + [SMALL_STATE(2478)] = 54964, + [SMALL_STATE(2479)] = 55060, + [SMALL_STATE(2480)] = 55112, + [SMALL_STATE(2481)] = 55164, + [SMALL_STATE(2482)] = 55216, + [SMALL_STATE(2483)] = 55310, + [SMALL_STATE(2484)] = 55420, + [SMALL_STATE(2485)] = 55530, + [SMALL_STATE(2486)] = 55582, + [SMALL_STATE(2487)] = 55634, + [SMALL_STATE(2488)] = 55728, + [SMALL_STATE(2489)] = 55780, + [SMALL_STATE(2490)] = 55890, + [SMALL_STATE(2491)] = 55944, + [SMALL_STATE(2492)] = 55996, + [SMALL_STATE(2493)] = 56106, + [SMALL_STATE(2494)] = 56158, + [SMALL_STATE(2495)] = 56212, + [SMALL_STATE(2496)] = 56263, + [SMALL_STATE(2497)] = 56314, + [SMALL_STATE(2498)] = 56365, + [SMALL_STATE(2499)] = 56446, + [SMALL_STATE(2500)] = 56497, + [SMALL_STATE(2501)] = 56548, + [SMALL_STATE(2502)] = 56599, + [SMALL_STATE(2503)] = 56650, + [SMALL_STATE(2504)] = 56755, + [SMALL_STATE(2505)] = 56860, + [SMALL_STATE(2506)] = 56911, + [SMALL_STATE(2507)] = 56992, + [SMALL_STATE(2508)] = 57073, + [SMALL_STATE(2509)] = 57146, + [SMALL_STATE(2510)] = 57237, + [SMALL_STATE(2511)] = 57288, + [SMALL_STATE(2512)] = 57339, + [SMALL_STATE(2513)] = 57428, + [SMALL_STATE(2514)] = 57479, + [SMALL_STATE(2515)] = 57530, + [SMALL_STATE(2516)] = 57581, + [SMALL_STATE(2517)] = 57632, + [SMALL_STATE(2518)] = 57735, + [SMALL_STATE(2519)] = 57816, + [SMALL_STATE(2520)] = 57893, + [SMALL_STATE(2521)] = 57944, + [SMALL_STATE(2522)] = 58047, + [SMALL_STATE(2523)] = 58098, + [SMALL_STATE(2524)] = 58149, + [SMALL_STATE(2525)] = 58200, + [SMALL_STATE(2526)] = 58273, + [SMALL_STATE(2527)] = 58326, + [SMALL_STATE(2528)] = 58377, + [SMALL_STATE(2529)] = 58428, + [SMALL_STATE(2530)] = 58479, + [SMALL_STATE(2531)] = 58530, + [SMALL_STATE(2532)] = 58585, + [SMALL_STATE(2533)] = 58636, + [SMALL_STATE(2534)] = 58687, + [SMALL_STATE(2535)] = 58738, + [SMALL_STATE(2536)] = 58791, + [SMALL_STATE(2537)] = 58842, + [SMALL_STATE(2538)] = 58893, + [SMALL_STATE(2539)] = 58944, + [SMALL_STATE(2540)] = 58995, + [SMALL_STATE(2541)] = 59046, + [SMALL_STATE(2542)] = 59097, + [SMALL_STATE(2543)] = 59148, + [SMALL_STATE(2544)] = 59199, + [SMALL_STATE(2545)] = 59250, + [SMALL_STATE(2546)] = 59301, + [SMALL_STATE(2547)] = 59352, + [SMALL_STATE(2548)] = 59407, + [SMALL_STATE(2549)] = 59498, + [SMALL_STATE(2550)] = 59549, + [SMALL_STATE(2551)] = 59600, + [SMALL_STATE(2552)] = 59651, + [SMALL_STATE(2553)] = 59702, + [SMALL_STATE(2554)] = 59753, + [SMALL_STATE(2555)] = 59806, + [SMALL_STATE(2556)] = 59857, + [SMALL_STATE(2557)] = 59908, + [SMALL_STATE(2558)] = 59959, + [SMALL_STATE(2559)] = 60010, + [SMALL_STATE(2560)] = 60097, + [SMALL_STATE(2561)] = 60150, + [SMALL_STATE(2562)] = 60237, + [SMALL_STATE(2563)] = 60324, + [SMALL_STATE(2564)] = 60375, + [SMALL_STATE(2565)] = 60426, + [SMALL_STATE(2566)] = 60477, + [SMALL_STATE(2567)] = 60570, + [SMALL_STATE(2568)] = 60621, + [SMALL_STATE(2569)] = 60672, + [SMALL_STATE(2570)] = 60745, + [SMALL_STATE(2571)] = 60796, + [SMALL_STATE(2572)] = 60847, + [SMALL_STATE(2573)] = 60940, + [SMALL_STATE(2574)] = 61033, + [SMALL_STATE(2575)] = 61084, + [SMALL_STATE(2576)] = 61135, + [SMALL_STATE(2577)] = 61186, + [SMALL_STATE(2578)] = 61237, + [SMALL_STATE(2579)] = 61290, + [SMALL_STATE(2580)] = 61341, + [SMALL_STATE(2581)] = 61392, + [SMALL_STATE(2582)] = 61443, + [SMALL_STATE(2583)] = 61494, + [SMALL_STATE(2584)] = 61545, + [SMALL_STATE(2585)] = 61638, + [SMALL_STATE(2586)] = 61691, + [SMALL_STATE(2587)] = 61742, + [SMALL_STATE(2588)] = 61793, + [SMALL_STATE(2589)] = 61844, + [SMALL_STATE(2590)] = 61895, + [SMALL_STATE(2591)] = 61946, + [SMALL_STATE(2592)] = 61997, + [SMALL_STATE(2593)] = 62050, + [SMALL_STATE(2594)] = 62101, + [SMALL_STATE(2595)] = 62152, + [SMALL_STATE(2596)] = 62233, + [SMALL_STATE(2597)] = 62284, + [SMALL_STATE(2598)] = 62335, + [SMALL_STATE(2599)] = 62386, + [SMALL_STATE(2600)] = 62437, + [SMALL_STATE(2601)] = 62488, + [SMALL_STATE(2602)] = 62577, + [SMALL_STATE(2603)] = 62664, + [SMALL_STATE(2604)] = 62715, + [SMALL_STATE(2605)] = 62796, + [SMALL_STATE(2606)] = 62847, + [SMALL_STATE(2607)] = 62898, + [SMALL_STATE(2608)] = 62949, + [SMALL_STATE(2609)] = 63000, + [SMALL_STATE(2610)] = 63051, + [SMALL_STATE(2611)] = 63102, + [SMALL_STATE(2612)] = 63153, + [SMALL_STATE(2613)] = 63230, + [SMALL_STATE(2614)] = 63281, + [SMALL_STATE(2615)] = 63332, + [SMALL_STATE(2616)] = 63383, + [SMALL_STATE(2617)] = 63434, + [SMALL_STATE(2618)] = 63485, + [SMALL_STATE(2619)] = 63536, + [SMALL_STATE(2620)] = 63587, + [SMALL_STATE(2621)] = 63638, + [SMALL_STATE(2622)] = 63689, + [SMALL_STATE(2623)] = 63740, + [SMALL_STATE(2624)] = 63791, + [SMALL_STATE(2625)] = 63844, + [SMALL_STATE(2626)] = 63897, + [SMALL_STATE(2627)] = 63948, + [SMALL_STATE(2628)] = 63999, + [SMALL_STATE(2629)] = 64052, + [SMALL_STATE(2630)] = 64158, + [SMALL_STATE(2631)] = 64234, + [SMALL_STATE(2632)] = 64314, + [SMALL_STATE(2633)] = 64364, + [SMALL_STATE(2634)] = 64414, + [SMALL_STATE(2635)] = 64468, + [SMALL_STATE(2636)] = 64522, + [SMALL_STATE(2637)] = 64626, + [SMALL_STATE(2638)] = 64714, + [SMALL_STATE(2639)] = 64804, + [SMALL_STATE(2640)] = 64884, + [SMALL_STATE(2641)] = 64964, + [SMALL_STATE(2642)] = 65018, + [SMALL_STATE(2643)] = 65072, + [SMALL_STATE(2644)] = 65172, + [SMALL_STATE(2645)] = 65272, + [SMALL_STATE(2646)] = 65350, + [SMALL_STATE(2647)] = 65454, + [SMALL_STATE(2648)] = 65558, + [SMALL_STATE(2649)] = 65662, + [SMALL_STATE(2650)] = 65740, + [SMALL_STATE(2651)] = 65814, + [SMALL_STATE(2652)] = 65900, + [SMALL_STATE(2653)] = 65978, + [SMALL_STATE(2654)] = 66062, + [SMALL_STATE(2655)] = 66146, + [SMALL_STATE(2656)] = 66224, + [SMALL_STATE(2657)] = 66324, + [SMALL_STATE(2658)] = 66424, + [SMALL_STATE(2659)] = 66498, + [SMALL_STATE(2660)] = 66584, + [SMALL_STATE(2661)] = 66662, + [SMALL_STATE(2662)] = 66740, + [SMALL_STATE(2663)] = 66840, + [SMALL_STATE(2664)] = 66943, + [SMALL_STATE(2665)] = 66996, + [SMALL_STATE(2666)] = 67099, + [SMALL_STATE(2667)] = 67200, + [SMALL_STATE(2668)] = 67301, + [SMALL_STATE(2669)] = 67404, + [SMALL_STATE(2670)] = 67503, + [SMALL_STATE(2671)] = 67604, + [SMALL_STATE(2672)] = 67655, + [SMALL_STATE(2673)] = 67710, + [SMALL_STATE(2674)] = 67811, + [SMALL_STATE(2675)] = 67914, + [SMALL_STATE(2676)] = 68013, + [SMALL_STATE(2677)] = 68112, + [SMALL_STATE(2678)] = 68213, + [SMALL_STATE(2679)] = 68316, + [SMALL_STATE(2680)] = 68419, + [SMALL_STATE(2681)] = 68520, + [SMALL_STATE(2682)] = 68571, + [SMALL_STATE(2683)] = 68674, + [SMALL_STATE(2684)] = 68773, + [SMALL_STATE(2685)] = 68874, + [SMALL_STATE(2686)] = 68975, + [SMALL_STATE(2687)] = 69076, + [SMALL_STATE(2688)] = 69179, + [SMALL_STATE(2689)] = 69282, + [SMALL_STATE(2690)] = 69385, + [SMALL_STATE(2691)] = 69488, + [SMALL_STATE(2692)] = 69589, + [SMALL_STATE(2693)] = 69688, + [SMALL_STATE(2694)] = 69737, + [SMALL_STATE(2695)] = 69838, + [SMALL_STATE(2696)] = 69941, + [SMALL_STATE(2697)] = 70044, + [SMALL_STATE(2698)] = 70145, + [SMALL_STATE(2699)] = 70200, + [SMALL_STATE(2700)] = 70249, + [SMALL_STATE(2701)] = 70300, + [SMALL_STATE(2702)] = 70401, + [SMALL_STATE(2703)] = 70502, + [SMALL_STATE(2704)] = 70550, + [SMALL_STATE(2705)] = 70598, + [SMALL_STATE(2706)] = 70646, + [SMALL_STATE(2707)] = 70694, + [SMALL_STATE(2708)] = 70742, + [SMALL_STATE(2709)] = 70790, + [SMALL_STATE(2710)] = 70838, + [SMALL_STATE(2711)] = 70886, + [SMALL_STATE(2712)] = 70934, + [SMALL_STATE(2713)] = 71032, + [SMALL_STATE(2714)] = 71130, + [SMALL_STATE(2715)] = 71178, + [SMALL_STATE(2716)] = 71226, + [SMALL_STATE(2717)] = 71320, + [SMALL_STATE(2718)] = 71418, + [SMALL_STATE(2719)] = 71516, + [SMALL_STATE(2720)] = 71564, + [SMALL_STATE(2721)] = 71612, + [SMALL_STATE(2722)] = 71660, + [SMALL_STATE(2723)] = 71708, + [SMALL_STATE(2724)] = 71756, + [SMALL_STATE(2725)] = 71804, + [SMALL_STATE(2726)] = 71852, + [SMALL_STATE(2727)] = 71900, + [SMALL_STATE(2728)] = 71948, + [SMALL_STATE(2729)] = 71996, + [SMALL_STATE(2730)] = 72090, + [SMALL_STATE(2731)] = 72188, + [SMALL_STATE(2732)] = 72286, + [SMALL_STATE(2733)] = 72334, + [SMALL_STATE(2734)] = 72382, + [SMALL_STATE(2735)] = 72430, + [SMALL_STATE(2736)] = 72478, + [SMALL_STATE(2737)] = 72576, + [SMALL_STATE(2738)] = 72674, + [SMALL_STATE(2739)] = 72724, + [SMALL_STATE(2740)] = 72772, + [SMALL_STATE(2741)] = 72870, + [SMALL_STATE(2742)] = 72968, + [SMALL_STATE(2743)] = 73066, + [SMALL_STATE(2744)] = 73164, + [SMALL_STATE(2745)] = 73212, + [SMALL_STATE(2746)] = 73306, + [SMALL_STATE(2747)] = 73400, + [SMALL_STATE(2748)] = 73448, + [SMALL_STATE(2749)] = 73496, + [SMALL_STATE(2750)] = 73544, + [SMALL_STATE(2751)] = 73592, + [SMALL_STATE(2752)] = 73640, + [SMALL_STATE(2753)] = 73688, + [SMALL_STATE(2754)] = 73786, + [SMALL_STATE(2755)] = 73834, + [SMALL_STATE(2756)] = 73928, + [SMALL_STATE(2757)] = 73976, + [SMALL_STATE(2758)] = 74024, + [SMALL_STATE(2759)] = 74072, + [SMALL_STATE(2760)] = 74120, + [SMALL_STATE(2761)] = 74168, + [SMALL_STATE(2762)] = 74266, + [SMALL_STATE(2763)] = 74314, + [SMALL_STATE(2764)] = 74412, + [SMALL_STATE(2765)] = 74460, + [SMALL_STATE(2766)] = 74558, + [SMALL_STATE(2767)] = 74606, + [SMALL_STATE(2768)] = 74654, + [SMALL_STATE(2769)] = 74702, + [SMALL_STATE(2770)] = 74750, + [SMALL_STATE(2771)] = 74798, + [SMALL_STATE(2772)] = 74846, + [SMALL_STATE(2773)] = 74944, + [SMALL_STATE(2774)] = 75042, + [SMALL_STATE(2775)] = 75090, + [SMALL_STATE(2776)] = 75138, + [SMALL_STATE(2777)] = 75186, + [SMALL_STATE(2778)] = 75234, + [SMALL_STATE(2779)] = 75282, + [SMALL_STATE(2780)] = 75330, + [SMALL_STATE(2781)] = 75378, + [SMALL_STATE(2782)] = 75426, + [SMALL_STATE(2783)] = 75474, + [SMALL_STATE(2784)] = 75524, + [SMALL_STATE(2785)] = 75572, + [SMALL_STATE(2786)] = 75622, + [SMALL_STATE(2787)] = 75672, + [SMALL_STATE(2788)] = 75720, + [SMALL_STATE(2789)] = 75772, + [SMALL_STATE(2790)] = 75870, + [SMALL_STATE(2791)] = 75968, + [SMALL_STATE(2792)] = 76066, + [SMALL_STATE(2793)] = 76160, + [SMALL_STATE(2794)] = 76208, + [SMALL_STATE(2795)] = 76306, + [SMALL_STATE(2796)] = 76354, + [SMALL_STATE(2797)] = 76404, + [SMALL_STATE(2798)] = 76502, + [SMALL_STATE(2799)] = 76550, + [SMALL_STATE(2800)] = 76598, + [SMALL_STATE(2801)] = 76696, + [SMALL_STATE(2802)] = 76744, + [SMALL_STATE(2803)] = 76842, + [SMALL_STATE(2804)] = 76890, + [SMALL_STATE(2805)] = 76988, + [SMALL_STATE(2806)] = 77036, + [SMALL_STATE(2807)] = 77134, + [SMALL_STATE(2808)] = 77182, + [SMALL_STATE(2809)] = 77280, + [SMALL_STATE(2810)] = 77374, + [SMALL_STATE(2811)] = 77468, + [SMALL_STATE(2812)] = 77566, + [SMALL_STATE(2813)] = 77638, + [SMALL_STATE(2814)] = 77686, + [SMALL_STATE(2815)] = 77780, + [SMALL_STATE(2816)] = 77878, + [SMALL_STATE(2817)] = 77976, + [SMALL_STATE(2818)] = 78074, + [SMALL_STATE(2819)] = 78168, + [SMALL_STATE(2820)] = 78216, + [SMALL_STATE(2821)] = 78264, + [SMALL_STATE(2822)] = 78340, + [SMALL_STATE(2823)] = 78388, + [SMALL_STATE(2824)] = 78438, + [SMALL_STATE(2825)] = 78486, + [SMALL_STATE(2826)] = 78534, + [SMALL_STATE(2827)] = 78582, + [SMALL_STATE(2828)] = 78680, + [SMALL_STATE(2829)] = 78774, + [SMALL_STATE(2830)] = 78846, + [SMALL_STATE(2831)] = 78922, + [SMALL_STATE(2832)] = 79020, + [SMALL_STATE(2833)] = 79070, + [SMALL_STATE(2834)] = 79120, + [SMALL_STATE(2835)] = 79168, + [SMALL_STATE(2836)] = 79250, + [SMALL_STATE(2837)] = 79298, + [SMALL_STATE(2838)] = 79346, + [SMALL_STATE(2839)] = 79394, + [SMALL_STATE(2840)] = 79442, + [SMALL_STATE(2841)] = 79492, + [SMALL_STATE(2842)] = 79586, + [SMALL_STATE(2843)] = 79684, + [SMALL_STATE(2844)] = 79782, + [SMALL_STATE(2845)] = 79876, + [SMALL_STATE(2846)] = 79924, + [SMALL_STATE(2847)] = 79972, + [SMALL_STATE(2848)] = 80024, + [SMALL_STATE(2849)] = 80074, + [SMALL_STATE(2850)] = 80172, + [SMALL_STATE(2851)] = 80256, + [SMALL_STATE(2852)] = 80304, + [SMALL_STATE(2853)] = 80352, + [SMALL_STATE(2854)] = 80450, + [SMALL_STATE(2855)] = 80532, + [SMALL_STATE(2856)] = 80630, + [SMALL_STATE(2857)] = 80724, + [SMALL_STATE(2858)] = 80772, + [SMALL_STATE(2859)] = 80866, + [SMALL_STATE(2860)] = 80964, + [SMALL_STATE(2861)] = 81048, + [SMALL_STATE(2862)] = 81124, + [SMALL_STATE(2863)] = 81200, + [SMALL_STATE(2864)] = 81248, + [SMALL_STATE(2865)] = 81296, + [SMALL_STATE(2866)] = 81394, + [SMALL_STATE(2867)] = 81444, + [SMALL_STATE(2868)] = 81542, + [SMALL_STATE(2869)] = 81592, + [SMALL_STATE(2870)] = 81640, + [SMALL_STATE(2871)] = 81690, + [SMALL_STATE(2872)] = 81788, + [SMALL_STATE(2873)] = 81886, + [SMALL_STATE(2874)] = 81938, + [SMALL_STATE(2875)] = 81990, + [SMALL_STATE(2876)] = 82066, + [SMALL_STATE(2877)] = 82114, + [SMALL_STATE(2878)] = 82162, + [SMALL_STATE(2879)] = 82260, + [SMALL_STATE(2880)] = 82354, + [SMALL_STATE(2881)] = 82402, + [SMALL_STATE(2882)] = 82500, + [SMALL_STATE(2883)] = 82548, + [SMALL_STATE(2884)] = 82646, + [SMALL_STATE(2885)] = 82744, + [SMALL_STATE(2886)] = 82792, + [SMALL_STATE(2887)] = 82840, + [SMALL_STATE(2888)] = 82938, + [SMALL_STATE(2889)] = 83014, + [SMALL_STATE(2890)] = 83062, + [SMALL_STATE(2891)] = 83110, + [SMALL_STATE(2892)] = 83208, + [SMALL_STATE(2893)] = 83256, + [SMALL_STATE(2894)] = 83351, + [SMALL_STATE(2895)] = 83446, + [SMALL_STATE(2896)] = 83541, + [SMALL_STATE(2897)] = 83590, + [SMALL_STATE(2898)] = 83685, + [SMALL_STATE(2899)] = 83780, + [SMALL_STATE(2900)] = 83875, + [SMALL_STATE(2901)] = 83970, + [SMALL_STATE(2902)] = 84065, + [SMALL_STATE(2903)] = 84154, + [SMALL_STATE(2904)] = 84203, + [SMALL_STATE(2905)] = 84298, + [SMALL_STATE(2906)] = 84351, + [SMALL_STATE(2907)] = 84438, + [SMALL_STATE(2908)] = 84533, + [SMALL_STATE(2909)] = 84628, + [SMALL_STATE(2910)] = 84723, + [SMALL_STATE(2911)] = 84818, + [SMALL_STATE(2912)] = 84905, + [SMALL_STATE(2913)] = 84994, + [SMALL_STATE(2914)] = 85043, + [SMALL_STATE(2915)] = 85138, + [SMALL_STATE(2916)] = 85233, + [SMALL_STATE(2917)] = 85286, + [SMALL_STATE(2918)] = 85381, + [SMALL_STATE(2919)] = 85428, + [SMALL_STATE(2920)] = 85475, + [SMALL_STATE(2921)] = 85521, + [SMALL_STATE(2922)] = 85569, + [SMALL_STATE(2923)] = 85615, + [SMALL_STATE(2924)] = 85661, + [SMALL_STATE(2925)] = 85709, + [SMALL_STATE(2926)] = 85791, + [SMALL_STATE(2927)] = 85839, + [SMALL_STATE(2928)] = 85885, + [SMALL_STATE(2929)] = 85931, + [SMALL_STATE(2930)] = 85979, + [SMALL_STATE(2931)] = 86027, + [SMALL_STATE(2932)] = 86073, + [SMALL_STATE(2933)] = 86121, + [SMALL_STATE(2934)] = 86167, + [SMALL_STATE(2935)] = 86213, + [SMALL_STATE(2936)] = 86259, + [SMALL_STATE(2937)] = 86305, + [SMALL_STATE(2938)] = 86353, + [SMALL_STATE(2939)] = 86441, + [SMALL_STATE(2940)] = 86487, + [SMALL_STATE(2941)] = 86535, + [SMALL_STATE(2942)] = 86583, + [SMALL_STATE(2943)] = 86665, + [SMALL_STATE(2944)] = 86711, + [SMALL_STATE(2945)] = 86757, + [SMALL_STATE(2946)] = 86803, + [SMALL_STATE(2947)] = 86849, + [SMALL_STATE(2948)] = 86895, + [SMALL_STATE(2949)] = 86941, + [SMALL_STATE(2950)] = 86987, + [SMALL_STATE(2951)] = 87035, + [SMALL_STATE(2952)] = 87081, + [SMALL_STATE(2953)] = 87127, + [SMALL_STATE(2954)] = 87173, + [SMALL_STATE(2955)] = 87255, + [SMALL_STATE(2956)] = 87301, + [SMALL_STATE(2957)] = 87383, + [SMALL_STATE(2958)] = 87465, + [SMALL_STATE(2959)] = 87511, + [SMALL_STATE(2960)] = 87559, + [SMALL_STATE(2961)] = 87605, + [SMALL_STATE(2962)] = 87651, + [SMALL_STATE(2963)] = 87697, + [SMALL_STATE(2964)] = 87743, + [SMALL_STATE(2965)] = 87825, + [SMALL_STATE(2966)] = 87873, + [SMALL_STATE(2967)] = 87921, + [SMALL_STATE(2968)] = 87967, + [SMALL_STATE(2969)] = 88015, + [SMALL_STATE(2970)] = 88061, + [SMALL_STATE(2971)] = 88108, + [SMALL_STATE(2972)] = 88157, + [SMALL_STATE(2973)] = 88204, + [SMALL_STATE(2974)] = 88253, + [SMALL_STATE(2975)] = 88302, + [SMALL_STATE(2976)] = 88349, + [SMALL_STATE(2977)] = 88396, + [SMALL_STATE(2978)] = 88443, + [SMALL_STATE(2979)] = 88492, + [SMALL_STATE(2980)] = 88541, + [SMALL_STATE(2981)] = 88588, + [SMALL_STATE(2982)] = 88635, + [SMALL_STATE(2983)] = 88684, + [SMALL_STATE(2984)] = 88733, + [SMALL_STATE(2985)] = 88780, + [SMALL_STATE(2986)] = 88827, + [SMALL_STATE(2987)] = 88874, + [SMALL_STATE(2988)] = 88923, + [SMALL_STATE(2989)] = 88970, + [SMALL_STATE(2990)] = 89017, + [SMALL_STATE(2991)] = 89064, + [SMALL_STATE(2992)] = 89113, + [SMALL_STATE(2993)] = 89162, + [SMALL_STATE(2994)] = 89211, + [SMALL_STATE(2995)] = 89258, + [SMALL_STATE(2996)] = 89307, + [SMALL_STATE(2997)] = 89356, + [SMALL_STATE(2998)] = 89403, + [SMALL_STATE(2999)] = 89450, + [SMALL_STATE(3000)] = 89497, + [SMALL_STATE(3001)] = 89546, + [SMALL_STATE(3002)] = 89595, + [SMALL_STATE(3003)] = 89642, + [SMALL_STATE(3004)] = 89689, + [SMALL_STATE(3005)] = 89736, + [SMALL_STATE(3006)] = 89785, + [SMALL_STATE(3007)] = 89834, + [SMALL_STATE(3008)] = 89881, + [SMALL_STATE(3009)] = 89930, + [SMALL_STATE(3010)] = 89979, + [SMALL_STATE(3011)] = 90028, + [SMALL_STATE(3012)] = 90075, + [SMALL_STATE(3013)] = 90122, + [SMALL_STATE(3014)] = 90169, + [SMALL_STATE(3015)] = 90216, + [SMALL_STATE(3016)] = 90263, + [SMALL_STATE(3017)] = 90310, + [SMALL_STATE(3018)] = 90357, + [SMALL_STATE(3019)] = 90404, + [SMALL_STATE(3020)] = 90453, + [SMALL_STATE(3021)] = 90502, + [SMALL_STATE(3022)] = 90549, + [SMALL_STATE(3023)] = 90596, + [SMALL_STATE(3024)] = 90643, + [SMALL_STATE(3025)] = 90692, + [SMALL_STATE(3026)] = 90741, + [SMALL_STATE(3027)] = 90788, + [SMALL_STATE(3028)] = 90837, + [SMALL_STATE(3029)] = 90884, + [SMALL_STATE(3030)] = 90931, + [SMALL_STATE(3031)] = 90980, + [SMALL_STATE(3032)] = 91027, + [SMALL_STATE(3033)] = 91074, + [SMALL_STATE(3034)] = 91121, + [SMALL_STATE(3035)] = 91168, + [SMALL_STATE(3036)] = 91215, + [SMALL_STATE(3037)] = 91262, + [SMALL_STATE(3038)] = 91309, + [SMALL_STATE(3039)] = 91358, + [SMALL_STATE(3040)] = 91407, + [SMALL_STATE(3041)] = 91454, + [SMALL_STATE(3042)] = 91501, + [SMALL_STATE(3043)] = 91583, + [SMALL_STATE(3044)] = 91665, + [SMALL_STATE(3045)] = 91744, + [SMALL_STATE(3046)] = 91823, + [SMALL_STATE(3047)] = 91902, + [SMALL_STATE(3048)] = 91981, + [SMALL_STATE(3049)] = 92060, + [SMALL_STATE(3050)] = 92139, + [SMALL_STATE(3051)] = 92218, + [SMALL_STATE(3052)] = 92297, + [SMALL_STATE(3053)] = 92376, + [SMALL_STATE(3054)] = 92455, + [SMALL_STATE(3055)] = 92508, + [SMALL_STATE(3056)] = 92587, + [SMALL_STATE(3057)] = 92666, + [SMALL_STATE(3058)] = 92745, + [SMALL_STATE(3059)] = 92824, + [SMALL_STATE(3060)] = 92903, + [SMALL_STATE(3061)] = 92982, + [SMALL_STATE(3062)] = 93061, + [SMALL_STATE(3063)] = 93140, + [SMALL_STATE(3064)] = 93219, + [SMALL_STATE(3065)] = 93298, + [SMALL_STATE(3066)] = 93377, + [SMALL_STATE(3067)] = 93456, + [SMALL_STATE(3068)] = 93535, + [SMALL_STATE(3069)] = 93614, + [SMALL_STATE(3070)] = 93693, + [SMALL_STATE(3071)] = 93772, + [SMALL_STATE(3072)] = 93851, + [SMALL_STATE(3073)] = 93930, + [SMALL_STATE(3074)] = 94009, + [SMALL_STATE(3075)] = 94088, + [SMALL_STATE(3076)] = 94167, + [SMALL_STATE(3077)] = 94246, + [SMALL_STATE(3078)] = 94325, + [SMALL_STATE(3079)] = 94404, + [SMALL_STATE(3080)] = 94483, + [SMALL_STATE(3081)] = 94562, + [SMALL_STATE(3082)] = 94641, + [SMALL_STATE(3083)] = 94717, + [SMALL_STATE(3084)] = 94793, + [SMALL_STATE(3085)] = 94869, + [SMALL_STATE(3086)] = 94945, + [SMALL_STATE(3087)] = 95021, + [SMALL_STATE(3088)] = 95097, + [SMALL_STATE(3089)] = 95173, + [SMALL_STATE(3090)] = 95249, + [SMALL_STATE(3091)] = 95325, + [SMALL_STATE(3092)] = 95401, + [SMALL_STATE(3093)] = 95477, + [SMALL_STATE(3094)] = 95553, + [SMALL_STATE(3095)] = 95629, + [SMALL_STATE(3096)] = 95705, + [SMALL_STATE(3097)] = 95781, + [SMALL_STATE(3098)] = 95857, + [SMALL_STATE(3099)] = 95933, + [SMALL_STATE(3100)] = 96009, + [SMALL_STATE(3101)] = 96085, + [SMALL_STATE(3102)] = 96161, + [SMALL_STATE(3103)] = 96237, + [SMALL_STATE(3104)] = 96313, + [SMALL_STATE(3105)] = 96389, + [SMALL_STATE(3106)] = 96465, + [SMALL_STATE(3107)] = 96541, + [SMALL_STATE(3108)] = 96617, + [SMALL_STATE(3109)] = 96693, + [SMALL_STATE(3110)] = 96769, + [SMALL_STATE(3111)] = 96845, + [SMALL_STATE(3112)] = 96921, + [SMALL_STATE(3113)] = 96997, + [SMALL_STATE(3114)] = 97073, + [SMALL_STATE(3115)] = 97149, + [SMALL_STATE(3116)] = 97225, + [SMALL_STATE(3117)] = 97301, + [SMALL_STATE(3118)] = 97377, + [SMALL_STATE(3119)] = 97453, + [SMALL_STATE(3120)] = 97529, + [SMALL_STATE(3121)] = 97605, + [SMALL_STATE(3122)] = 97681, + [SMALL_STATE(3123)] = 97757, + [SMALL_STATE(3124)] = 97833, + [SMALL_STATE(3125)] = 97909, + [SMALL_STATE(3126)] = 97985, + [SMALL_STATE(3127)] = 98061, + [SMALL_STATE(3128)] = 98137, + [SMALL_STATE(3129)] = 98213, + [SMALL_STATE(3130)] = 98289, + [SMALL_STATE(3131)] = 98365, + [SMALL_STATE(3132)] = 98441, + [SMALL_STATE(3133)] = 98517, + [SMALL_STATE(3134)] = 98593, + [SMALL_STATE(3135)] = 98669, + [SMALL_STATE(3136)] = 98745, + [SMALL_STATE(3137)] = 98821, + [SMALL_STATE(3138)] = 98897, + [SMALL_STATE(3139)] = 98973, + [SMALL_STATE(3140)] = 99049, + [SMALL_STATE(3141)] = 99125, + [SMALL_STATE(3142)] = 99201, + [SMALL_STATE(3143)] = 99277, + [SMALL_STATE(3144)] = 99353, + [SMALL_STATE(3145)] = 99429, + [SMALL_STATE(3146)] = 99505, + [SMALL_STATE(3147)] = 99581, + [SMALL_STATE(3148)] = 99657, + [SMALL_STATE(3149)] = 99733, + [SMALL_STATE(3150)] = 99809, + [SMALL_STATE(3151)] = 99885, + [SMALL_STATE(3152)] = 99961, + [SMALL_STATE(3153)] = 100037, + [SMALL_STATE(3154)] = 100113, + [SMALL_STATE(3155)] = 100189, + [SMALL_STATE(3156)] = 100265, + [SMALL_STATE(3157)] = 100341, + [SMALL_STATE(3158)] = 100417, + [SMALL_STATE(3159)] = 100493, + [SMALL_STATE(3160)] = 100569, + [SMALL_STATE(3161)] = 100645, + [SMALL_STATE(3162)] = 100721, + [SMALL_STATE(3163)] = 100797, + [SMALL_STATE(3164)] = 100873, + [SMALL_STATE(3165)] = 100949, + [SMALL_STATE(3166)] = 101025, + [SMALL_STATE(3167)] = 101101, + [SMALL_STATE(3168)] = 101177, + [SMALL_STATE(3169)] = 101253, + [SMALL_STATE(3170)] = 101329, + [SMALL_STATE(3171)] = 101405, + [SMALL_STATE(3172)] = 101481, + [SMALL_STATE(3173)] = 101557, + [SMALL_STATE(3174)] = 101633, + [SMALL_STATE(3175)] = 101709, + [SMALL_STATE(3176)] = 101785, + [SMALL_STATE(3177)] = 101861, + [SMALL_STATE(3178)] = 101937, + [SMALL_STATE(3179)] = 102013, + [SMALL_STATE(3180)] = 102089, + [SMALL_STATE(3181)] = 102165, + [SMALL_STATE(3182)] = 102241, + [SMALL_STATE(3183)] = 102317, + [SMALL_STATE(3184)] = 102393, + [SMALL_STATE(3185)] = 102469, + [SMALL_STATE(3186)] = 102545, + [SMALL_STATE(3187)] = 102621, + [SMALL_STATE(3188)] = 102697, + [SMALL_STATE(3189)] = 102773, + [SMALL_STATE(3190)] = 102849, + [SMALL_STATE(3191)] = 102925, + [SMALL_STATE(3192)] = 103001, + [SMALL_STATE(3193)] = 103077, + [SMALL_STATE(3194)] = 103153, + [SMALL_STATE(3195)] = 103229, + [SMALL_STATE(3196)] = 103305, + [SMALL_STATE(3197)] = 103381, + [SMALL_STATE(3198)] = 103457, + [SMALL_STATE(3199)] = 103533, + [SMALL_STATE(3200)] = 103609, + [SMALL_STATE(3201)] = 103685, + [SMALL_STATE(3202)] = 103761, + [SMALL_STATE(3203)] = 103837, + [SMALL_STATE(3204)] = 103913, + [SMALL_STATE(3205)] = 103989, + [SMALL_STATE(3206)] = 104065, + [SMALL_STATE(3207)] = 104141, + [SMALL_STATE(3208)] = 104217, + [SMALL_STATE(3209)] = 104293, + [SMALL_STATE(3210)] = 104369, + [SMALL_STATE(3211)] = 104445, + [SMALL_STATE(3212)] = 104521, + [SMALL_STATE(3213)] = 104597, + [SMALL_STATE(3214)] = 104673, + [SMALL_STATE(3215)] = 104749, + [SMALL_STATE(3216)] = 104825, + [SMALL_STATE(3217)] = 104901, + [SMALL_STATE(3218)] = 104977, + [SMALL_STATE(3219)] = 105053, + [SMALL_STATE(3220)] = 105129, + [SMALL_STATE(3221)] = 105205, + [SMALL_STATE(3222)] = 105281, + [SMALL_STATE(3223)] = 105357, + [SMALL_STATE(3224)] = 105433, + [SMALL_STATE(3225)] = 105509, + [SMALL_STATE(3226)] = 105585, + [SMALL_STATE(3227)] = 105661, + [SMALL_STATE(3228)] = 105737, + [SMALL_STATE(3229)] = 105813, + [SMALL_STATE(3230)] = 105889, + [SMALL_STATE(3231)] = 105965, + [SMALL_STATE(3232)] = 106041, + [SMALL_STATE(3233)] = 106117, + [SMALL_STATE(3234)] = 106193, + [SMALL_STATE(3235)] = 106269, + [SMALL_STATE(3236)] = 106345, + [SMALL_STATE(3237)] = 106421, + [SMALL_STATE(3238)] = 106497, + [SMALL_STATE(3239)] = 106573, + [SMALL_STATE(3240)] = 106649, + [SMALL_STATE(3241)] = 106725, + [SMALL_STATE(3242)] = 106801, + [SMALL_STATE(3243)] = 106877, + [SMALL_STATE(3244)] = 106953, + [SMALL_STATE(3245)] = 107029, + [SMALL_STATE(3246)] = 107105, + [SMALL_STATE(3247)] = 107181, + [SMALL_STATE(3248)] = 107257, + [SMALL_STATE(3249)] = 107333, + [SMALL_STATE(3250)] = 107409, + [SMALL_STATE(3251)] = 107485, + [SMALL_STATE(3252)] = 107561, + [SMALL_STATE(3253)] = 107637, + [SMALL_STATE(3254)] = 107713, + [SMALL_STATE(3255)] = 107789, + [SMALL_STATE(3256)] = 107865, + [SMALL_STATE(3257)] = 107941, + [SMALL_STATE(3258)] = 108017, + [SMALL_STATE(3259)] = 108093, + [SMALL_STATE(3260)] = 108169, + [SMALL_STATE(3261)] = 108245, + [SMALL_STATE(3262)] = 108321, + [SMALL_STATE(3263)] = 108397, + [SMALL_STATE(3264)] = 108473, + [SMALL_STATE(3265)] = 108549, + [SMALL_STATE(3266)] = 108625, + [SMALL_STATE(3267)] = 108701, + [SMALL_STATE(3268)] = 108777, + [SMALL_STATE(3269)] = 108853, + [SMALL_STATE(3270)] = 108929, + [SMALL_STATE(3271)] = 109005, + [SMALL_STATE(3272)] = 109081, + [SMALL_STATE(3273)] = 109157, + [SMALL_STATE(3274)] = 109233, + [SMALL_STATE(3275)] = 109309, + [SMALL_STATE(3276)] = 109385, + [SMALL_STATE(3277)] = 109461, + [SMALL_STATE(3278)] = 109537, + [SMALL_STATE(3279)] = 109613, + [SMALL_STATE(3280)] = 109689, + [SMALL_STATE(3281)] = 109765, + [SMALL_STATE(3282)] = 109841, + [SMALL_STATE(3283)] = 109917, + [SMALL_STATE(3284)] = 109993, + [SMALL_STATE(3285)] = 110069, + [SMALL_STATE(3286)] = 110145, + [SMALL_STATE(3287)] = 110221, + [SMALL_STATE(3288)] = 110297, + [SMALL_STATE(3289)] = 110373, + [SMALL_STATE(3290)] = 110449, + [SMALL_STATE(3291)] = 110525, + [SMALL_STATE(3292)] = 110601, + [SMALL_STATE(3293)] = 110677, + [SMALL_STATE(3294)] = 110753, + [SMALL_STATE(3295)] = 110829, + [SMALL_STATE(3296)] = 110905, + [SMALL_STATE(3297)] = 110981, + [SMALL_STATE(3298)] = 111057, + [SMALL_STATE(3299)] = 111133, + [SMALL_STATE(3300)] = 111209, + [SMALL_STATE(3301)] = 111285, + [SMALL_STATE(3302)] = 111361, + [SMALL_STATE(3303)] = 111437, + [SMALL_STATE(3304)] = 111513, + [SMALL_STATE(3305)] = 111589, + [SMALL_STATE(3306)] = 111665, + [SMALL_STATE(3307)] = 111741, + [SMALL_STATE(3308)] = 111817, + [SMALL_STATE(3309)] = 111893, + [SMALL_STATE(3310)] = 111969, + [SMALL_STATE(3311)] = 112045, + [SMALL_STATE(3312)] = 112121, + [SMALL_STATE(3313)] = 112197, + [SMALL_STATE(3314)] = 112273, + [SMALL_STATE(3315)] = 112349, + [SMALL_STATE(3316)] = 112425, + [SMALL_STATE(3317)] = 112501, + [SMALL_STATE(3318)] = 112577, + [SMALL_STATE(3319)] = 112653, + [SMALL_STATE(3320)] = 112729, + [SMALL_STATE(3321)] = 112805, + [SMALL_STATE(3322)] = 112881, + [SMALL_STATE(3323)] = 112957, + [SMALL_STATE(3324)] = 113033, + [SMALL_STATE(3325)] = 113109, + [SMALL_STATE(3326)] = 113185, + [SMALL_STATE(3327)] = 113261, + [SMALL_STATE(3328)] = 113337, + [SMALL_STATE(3329)] = 113413, + [SMALL_STATE(3330)] = 113489, + [SMALL_STATE(3331)] = 113565, + [SMALL_STATE(3332)] = 113641, + [SMALL_STATE(3333)] = 113717, + [SMALL_STATE(3334)] = 113793, + [SMALL_STATE(3335)] = 113869, + [SMALL_STATE(3336)] = 113945, + [SMALL_STATE(3337)] = 114021, + [SMALL_STATE(3338)] = 114097, + [SMALL_STATE(3339)] = 114173, + [SMALL_STATE(3340)] = 114249, + [SMALL_STATE(3341)] = 114325, + [SMALL_STATE(3342)] = 114401, + [SMALL_STATE(3343)] = 114477, + [SMALL_STATE(3344)] = 114553, + [SMALL_STATE(3345)] = 114629, + [SMALL_STATE(3346)] = 114705, + [SMALL_STATE(3347)] = 114781, + [SMALL_STATE(3348)] = 114842, + [SMALL_STATE(3349)] = 114903, + [SMALL_STATE(3350)] = 114964, + [SMALL_STATE(3351)] = 115025, + [SMALL_STATE(3352)] = 115086, + [SMALL_STATE(3353)] = 115147, + [SMALL_STATE(3354)] = 115208, + [SMALL_STATE(3355)] = 115269, + [SMALL_STATE(3356)] = 115330, + [SMALL_STATE(3357)] = 115391, + [SMALL_STATE(3358)] = 115452, + [SMALL_STATE(3359)] = 115517, + [SMALL_STATE(3360)] = 115578, + [SMALL_STATE(3361)] = 115639, + [SMALL_STATE(3362)] = 115700, + [SMALL_STATE(3363)] = 115765, + [SMALL_STATE(3364)] = 115825, + [SMALL_STATE(3365)] = 115855, + [SMALL_STATE(3366)] = 115885, + [SMALL_STATE(3367)] = 115915, + [SMALL_STATE(3368)] = 115945, + [SMALL_STATE(3369)] = 115975, + [SMALL_STATE(3370)] = 116005, + [SMALL_STATE(3371)] = 116043, + [SMALL_STATE(3372)] = 116069, + [SMALL_STATE(3373)] = 116113, + [SMALL_STATE(3374)] = 116151, + [SMALL_STATE(3375)] = 116177, + [SMALL_STATE(3376)] = 116203, + [SMALL_STATE(3377)] = 116229, + [SMALL_STATE(3378)] = 116267, + [SMALL_STATE(3379)] = 116293, + [SMALL_STATE(3380)] = 116320, + [SMALL_STATE(3381)] = 116347, + [SMALL_STATE(3382)] = 116370, + [SMALL_STATE(3383)] = 116393, + [SMALL_STATE(3384)] = 116422, + [SMALL_STATE(3385)] = 116445, + [SMALL_STATE(3386)] = 116471, + [SMALL_STATE(3387)] = 116497, + [SMALL_STATE(3388)] = 116523, + [SMALL_STATE(3389)] = 116549, + [SMALL_STATE(3390)] = 116575, + [SMALL_STATE(3391)] = 116601, + [SMALL_STATE(3392)] = 116627, + [SMALL_STATE(3393)] = 116653, + [SMALL_STATE(3394)] = 116679, + [SMALL_STATE(3395)] = 116720, + [SMALL_STATE(3396)] = 116743, + [SMALL_STATE(3397)] = 116766, + [SMALL_STATE(3398)] = 116791, + [SMALL_STATE(3399)] = 116832, + [SMALL_STATE(3400)] = 116873, + [SMALL_STATE(3401)] = 116913, + [SMALL_STATE(3402)] = 116953, + [SMALL_STATE(3403)] = 116993, + [SMALL_STATE(3404)] = 117033, + [SMALL_STATE(3405)] = 117073, + [SMALL_STATE(3406)] = 117113, + [SMALL_STATE(3407)] = 117153, + [SMALL_STATE(3408)] = 117177, + [SMALL_STATE(3409)] = 117203, + [SMALL_STATE(3410)] = 117229, + [SMALL_STATE(3411)] = 117269, + [SMALL_STATE(3412)] = 117309, + [SMALL_STATE(3413)] = 117335, + [SMALL_STATE(3414)] = 117359, + [SMALL_STATE(3415)] = 117385, + [SMALL_STATE(3416)] = 117425, + [SMALL_STATE(3417)] = 117465, + [SMALL_STATE(3418)] = 117491, + [SMALL_STATE(3419)] = 117517, + [SMALL_STATE(3420)] = 117543, + [SMALL_STATE(3421)] = 117583, + [SMALL_STATE(3422)] = 117623, + [SMALL_STATE(3423)] = 117663, + [SMALL_STATE(3424)] = 117703, + [SMALL_STATE(3425)] = 117725, + [SMALL_STATE(3426)] = 117765, + [SMALL_STATE(3427)] = 117791, + [SMALL_STATE(3428)] = 117831, + [SMALL_STATE(3429)] = 117871, + [SMALL_STATE(3430)] = 117893, + [SMALL_STATE(3431)] = 117933, + [SMALL_STATE(3432)] = 117973, + [SMALL_STATE(3433)] = 118013, + [SMALL_STATE(3434)] = 118053, + [SMALL_STATE(3435)] = 118075, + [SMALL_STATE(3436)] = 118115, + [SMALL_STATE(3437)] = 118155, + [SMALL_STATE(3438)] = 118195, + [SMALL_STATE(3439)] = 118217, + [SMALL_STATE(3440)] = 118257, + [SMALL_STATE(3441)] = 118279, + [SMALL_STATE(3442)] = 118319, + [SMALL_STATE(3443)] = 118359, + [SMALL_STATE(3444)] = 118381, + [SMALL_STATE(3445)] = 118421, + [SMALL_STATE(3446)] = 118443, + [SMALL_STATE(3447)] = 118468, + [SMALL_STATE(3448)] = 118487, + [SMALL_STATE(3449)] = 118512, + [SMALL_STATE(3450)] = 118531, + [SMALL_STATE(3451)] = 118550, + [SMALL_STATE(3452)] = 118574, + [SMALL_STATE(3453)] = 118594, + [SMALL_STATE(3454)] = 118614, + [SMALL_STATE(3455)] = 118631, + [SMALL_STATE(3456)] = 118648, + [SMALL_STATE(3457)] = 118665, + [SMALL_STATE(3458)] = 118682, + [SMALL_STATE(3459)] = 118699, + [SMALL_STATE(3460)] = 118716, + [SMALL_STATE(3461)] = 118733, + [SMALL_STATE(3462)] = 118750, + [SMALL_STATE(3463)] = 118767, + [SMALL_STATE(3464)] = 118784, + [SMALL_STATE(3465)] = 118801, + [SMALL_STATE(3466)] = 118818, + [SMALL_STATE(3467)] = 118839, + [SMALL_STATE(3468)] = 118856, + [SMALL_STATE(3469)] = 118873, + [SMALL_STATE(3470)] = 118890, + [SMALL_STATE(3471)] = 118911, + [SMALL_STATE(3472)] = 118934, + [SMALL_STATE(3473)] = 118951, + [SMALL_STATE(3474)] = 118968, + [SMALL_STATE(3475)] = 118985, + [SMALL_STATE(3476)] = 119002, + [SMALL_STATE(3477)] = 119019, + [SMALL_STATE(3478)] = 119036, + [SMALL_STATE(3479)] = 119053, + [SMALL_STATE(3480)] = 119085, + [SMALL_STATE(3481)] = 119107, + [SMALL_STATE(3482)] = 119127, + [SMALL_STATE(3483)] = 119154, + [SMALL_STATE(3484)] = 119181, + [SMALL_STATE(3485)] = 119208, + [SMALL_STATE(3486)] = 119227, + [SMALL_STATE(3487)] = 119254, + [SMALL_STATE(3488)] = 119281, + [SMALL_STATE(3489)] = 119308, + [SMALL_STATE(3490)] = 119329, + [SMALL_STATE(3491)] = 119358, + [SMALL_STATE(3492)] = 119385, + [SMALL_STATE(3493)] = 119412, + [SMALL_STATE(3494)] = 119439, + [SMALL_STATE(3495)] = 119456, + [SMALL_STATE(3496)] = 119477, + [SMALL_STATE(3497)] = 119504, + [SMALL_STATE(3498)] = 119531, + [SMALL_STATE(3499)] = 119546, + [SMALL_STATE(3500)] = 119573, + [SMALL_STATE(3501)] = 119587, + [SMALL_STATE(3502)] = 119605, + [SMALL_STATE(3503)] = 119619, + [SMALL_STATE(3504)] = 119635, + [SMALL_STATE(3505)] = 119653, + [SMALL_STATE(3506)] = 119679, + [SMALL_STATE(3507)] = 119693, + [SMALL_STATE(3508)] = 119707, + [SMALL_STATE(3509)] = 119723, + [SMALL_STATE(3510)] = 119737, + [SMALL_STATE(3511)] = 119751, + [SMALL_STATE(3512)] = 119765, + [SMALL_STATE(3513)] = 119781, + [SMALL_STATE(3514)] = 119803, + [SMALL_STATE(3515)] = 119821, + [SMALL_STATE(3516)] = 119835, + [SMALL_STATE(3517)] = 119849, + [SMALL_STATE(3518)] = 119875, + [SMALL_STATE(3519)] = 119903, + [SMALL_STATE(3520)] = 119920, + [SMALL_STATE(3521)] = 119937, + [SMALL_STATE(3522)] = 119954, + [SMALL_STATE(3523)] = 119967, + [SMALL_STATE(3524)] = 119988, + [SMALL_STATE(3525)] = 120009, + [SMALL_STATE(3526)] = 120026, + [SMALL_STATE(3527)] = 120047, + [SMALL_STATE(3528)] = 120064, + [SMALL_STATE(3529)] = 120081, + [SMALL_STATE(3530)] = 120102, + [SMALL_STATE(3531)] = 120119, + [SMALL_STATE(3532)] = 120140, + [SMALL_STATE(3533)] = 120153, + [SMALL_STATE(3534)] = 120174, + [SMALL_STATE(3535)] = 120195, + [SMALL_STATE(3536)] = 120212, + [SMALL_STATE(3537)] = 120233, + [SMALL_STATE(3538)] = 120254, + [SMALL_STATE(3539)] = 120279, + [SMALL_STATE(3540)] = 120296, + [SMALL_STATE(3541)] = 120313, + [SMALL_STATE(3542)] = 120334, + [SMALL_STATE(3543)] = 120355, + [SMALL_STATE(3544)] = 120376, + [SMALL_STATE(3545)] = 120397, + [SMALL_STATE(3546)] = 120414, + [SMALL_STATE(3547)] = 120435, + [SMALL_STATE(3548)] = 120452, + [SMALL_STATE(3549)] = 120469, + [SMALL_STATE(3550)] = 120486, + [SMALL_STATE(3551)] = 120507, + [SMALL_STATE(3552)] = 120524, + [SMALL_STATE(3553)] = 120545, + [SMALL_STATE(3554)] = 120566, + [SMALL_STATE(3555)] = 120583, + [SMALL_STATE(3556)] = 120600, + [SMALL_STATE(3557)] = 120617, + [SMALL_STATE(3558)] = 120634, + [SMALL_STATE(3559)] = 120655, + [SMALL_STATE(3560)] = 120672, + [SMALL_STATE(3561)] = 120693, + [SMALL_STATE(3562)] = 120714, + [SMALL_STATE(3563)] = 120731, + [SMALL_STATE(3564)] = 120752, + [SMALL_STATE(3565)] = 120769, + [SMALL_STATE(3566)] = 120790, + [SMALL_STATE(3567)] = 120815, + [SMALL_STATE(3568)] = 120838, + [SMALL_STATE(3569)] = 120851, + [SMALL_STATE(3570)] = 120872, + [SMALL_STATE(3571)] = 120889, + [SMALL_STATE(3572)] = 120906, + [SMALL_STATE(3573)] = 120927, + [SMALL_STATE(3574)] = 120944, + [SMALL_STATE(3575)] = 120961, + [SMALL_STATE(3576)] = 120981, + [SMALL_STATE(3577)] = 121001, + [SMALL_STATE(3578)] = 121021, + [SMALL_STATE(3579)] = 121041, + [SMALL_STATE(3580)] = 121061, + [SMALL_STATE(3581)] = 121077, + [SMALL_STATE(3582)] = 121097, + [SMALL_STATE(3583)] = 121117, + [SMALL_STATE(3584)] = 121137, + [SMALL_STATE(3585)] = 121157, + [SMALL_STATE(3586)] = 121177, + [SMALL_STATE(3587)] = 121189, + [SMALL_STATE(3588)] = 121209, + [SMALL_STATE(3589)] = 121231, + [SMALL_STATE(3590)] = 121251, + [SMALL_STATE(3591)] = 121271, + [SMALL_STATE(3592)] = 121291, + [SMALL_STATE(3593)] = 121311, + [SMALL_STATE(3594)] = 121331, + [SMALL_STATE(3595)] = 121351, + [SMALL_STATE(3596)] = 121371, + [SMALL_STATE(3597)] = 121391, + [SMALL_STATE(3598)] = 121411, + [SMALL_STATE(3599)] = 121431, + [SMALL_STATE(3600)] = 121451, + [SMALL_STATE(3601)] = 121471, + [SMALL_STATE(3602)] = 121491, + [SMALL_STATE(3603)] = 121511, + [SMALL_STATE(3604)] = 121531, + [SMALL_STATE(3605)] = 121551, + [SMALL_STATE(3606)] = 121571, + [SMALL_STATE(3607)] = 121591, + [SMALL_STATE(3608)] = 121611, + [SMALL_STATE(3609)] = 121631, + [SMALL_STATE(3610)] = 121651, + [SMALL_STATE(3611)] = 121671, + [SMALL_STATE(3612)] = 121691, + [SMALL_STATE(3613)] = 121711, + [SMALL_STATE(3614)] = 121731, + [SMALL_STATE(3615)] = 121751, + [SMALL_STATE(3616)] = 121771, + [SMALL_STATE(3617)] = 121785, + [SMALL_STATE(3618)] = 121805, + [SMALL_STATE(3619)] = 121825, + [SMALL_STATE(3620)] = 121845, + [SMALL_STATE(3621)] = 121865, + [SMALL_STATE(3622)] = 121885, + [SMALL_STATE(3623)] = 121905, + [SMALL_STATE(3624)] = 121925, + [SMALL_STATE(3625)] = 121945, + [SMALL_STATE(3626)] = 121965, + [SMALL_STATE(3627)] = 121981, + [SMALL_STATE(3628)] = 122001, + [SMALL_STATE(3629)] = 122021, + [SMALL_STATE(3630)] = 122041, + [SMALL_STATE(3631)] = 122061, + [SMALL_STATE(3632)] = 122081, + [SMALL_STATE(3633)] = 122101, + [SMALL_STATE(3634)] = 122121, + [SMALL_STATE(3635)] = 122141, + [SMALL_STATE(3636)] = 122161, + [SMALL_STATE(3637)] = 122181, + [SMALL_STATE(3638)] = 122201, + [SMALL_STATE(3639)] = 122221, + [SMALL_STATE(3640)] = 122241, + [SMALL_STATE(3641)] = 122261, + [SMALL_STATE(3642)] = 122277, + [SMALL_STATE(3643)] = 122293, + [SMALL_STATE(3644)] = 122313, + [SMALL_STATE(3645)] = 122329, + [SMALL_STATE(3646)] = 122349, + [SMALL_STATE(3647)] = 122371, + [SMALL_STATE(3648)] = 122391, + [SMALL_STATE(3649)] = 122411, + [SMALL_STATE(3650)] = 122431, + [SMALL_STATE(3651)] = 122451, + [SMALL_STATE(3652)] = 122471, + [SMALL_STATE(3653)] = 122491, + [SMALL_STATE(3654)] = 122511, + [SMALL_STATE(3655)] = 122531, + [SMALL_STATE(3656)] = 122551, + [SMALL_STATE(3657)] = 122571, + [SMALL_STATE(3658)] = 122591, + [SMALL_STATE(3659)] = 122611, + [SMALL_STATE(3660)] = 122627, + [SMALL_STATE(3661)] = 122643, + [SMALL_STATE(3662)] = 122663, + [SMALL_STATE(3663)] = 122683, + [SMALL_STATE(3664)] = 122703, + [SMALL_STATE(3665)] = 122723, + [SMALL_STATE(3666)] = 122743, + [SMALL_STATE(3667)] = 122763, + [SMALL_STATE(3668)] = 122783, + [SMALL_STATE(3669)] = 122803, + [SMALL_STATE(3670)] = 122823, + [SMALL_STATE(3671)] = 122843, + [SMALL_STATE(3672)] = 122859, + [SMALL_STATE(3673)] = 122879, + [SMALL_STATE(3674)] = 122899, + [SMALL_STATE(3675)] = 122919, + [SMALL_STATE(3676)] = 122935, + [SMALL_STATE(3677)] = 122951, + [SMALL_STATE(3678)] = 122971, + [SMALL_STATE(3679)] = 122991, + [SMALL_STATE(3680)] = 123011, + [SMALL_STATE(3681)] = 123031, + [SMALL_STATE(3682)] = 123051, + [SMALL_STATE(3683)] = 123071, + [SMALL_STATE(3684)] = 123087, + [SMALL_STATE(3685)] = 123099, + [SMALL_STATE(3686)] = 123119, + [SMALL_STATE(3687)] = 123139, + [SMALL_STATE(3688)] = 123159, + [SMALL_STATE(3689)] = 123179, + [SMALL_STATE(3690)] = 123199, + [SMALL_STATE(3691)] = 123216, + [SMALL_STATE(3692)] = 123227, + [SMALL_STATE(3693)] = 123244, + [SMALL_STATE(3694)] = 123257, + [SMALL_STATE(3695)] = 123268, + [SMALL_STATE(3696)] = 123283, + [SMALL_STATE(3697)] = 123302, + [SMALL_STATE(3698)] = 123315, + [SMALL_STATE(3699)] = 123332, + [SMALL_STATE(3700)] = 123347, + [SMALL_STATE(3701)] = 123366, + [SMALL_STATE(3702)] = 123377, + [SMALL_STATE(3703)] = 123390, + [SMALL_STATE(3704)] = 123407, + [SMALL_STATE(3705)] = 123426, + [SMALL_STATE(3706)] = 123441, + [SMALL_STATE(3707)] = 123458, + [SMALL_STATE(3708)] = 123473, + [SMALL_STATE(3709)] = 123486, + [SMALL_STATE(3710)] = 123503, + [SMALL_STATE(3711)] = 123514, + [SMALL_STATE(3712)] = 123533, + [SMALL_STATE(3713)] = 123550, + [SMALL_STATE(3714)] = 123561, + [SMALL_STATE(3715)] = 123578, + [SMALL_STATE(3716)] = 123597, + [SMALL_STATE(3717)] = 123612, + [SMALL_STATE(3718)] = 123631, + [SMALL_STATE(3719)] = 123644, + [SMALL_STATE(3720)] = 123659, + [SMALL_STATE(3721)] = 123674, + [SMALL_STATE(3722)] = 123688, + [SMALL_STATE(3723)] = 123698, + [SMALL_STATE(3724)] = 123712, + [SMALL_STATE(3725)] = 123726, + [SMALL_STATE(3726)] = 123742, + [SMALL_STATE(3727)] = 123758, + [SMALL_STATE(3728)] = 123774, + [SMALL_STATE(3729)] = 123788, + [SMALL_STATE(3730)] = 123802, + [SMALL_STATE(3731)] = 123818, + [SMALL_STATE(3732)] = 123832, + [SMALL_STATE(3733)] = 123846, + [SMALL_STATE(3734)] = 123860, + [SMALL_STATE(3735)] = 123874, + [SMALL_STATE(3736)] = 123888, + [SMALL_STATE(3737)] = 123902, + [SMALL_STATE(3738)] = 123912, + [SMALL_STATE(3739)] = 123928, + [SMALL_STATE(3740)] = 123942, + [SMALL_STATE(3741)] = 123956, + [SMALL_STATE(3742)] = 123970, + [SMALL_STATE(3743)] = 123986, + [SMALL_STATE(3744)] = 124000, + [SMALL_STATE(3745)] = 124014, + [SMALL_STATE(3746)] = 124028, + [SMALL_STATE(3747)] = 124042, + [SMALL_STATE(3748)] = 124056, + [SMALL_STATE(3749)] = 124070, + [SMALL_STATE(3750)] = 124086, + [SMALL_STATE(3751)] = 124100, + [SMALL_STATE(3752)] = 124114, + [SMALL_STATE(3753)] = 124130, + [SMALL_STATE(3754)] = 124140, + [SMALL_STATE(3755)] = 124154, + [SMALL_STATE(3756)] = 124170, + [SMALL_STATE(3757)] = 124180, + [SMALL_STATE(3758)] = 124190, + [SMALL_STATE(3759)] = 124206, + [SMALL_STATE(3760)] = 124222, + [SMALL_STATE(3761)] = 124236, + [SMALL_STATE(3762)] = 124250, + [SMALL_STATE(3763)] = 124264, + [SMALL_STATE(3764)] = 124278, + [SMALL_STATE(3765)] = 124294, + [SMALL_STATE(3766)] = 124308, + [SMALL_STATE(3767)] = 124322, + [SMALL_STATE(3768)] = 124336, + [SMALL_STATE(3769)] = 124352, + [SMALL_STATE(3770)] = 124368, + [SMALL_STATE(3771)] = 124382, + [SMALL_STATE(3772)] = 124396, + [SMALL_STATE(3773)] = 124412, + [SMALL_STATE(3774)] = 124426, + [SMALL_STATE(3775)] = 124440, + [SMALL_STATE(3776)] = 124456, + [SMALL_STATE(3777)] = 124470, + [SMALL_STATE(3778)] = 124484, + [SMALL_STATE(3779)] = 124496, + [SMALL_STATE(3780)] = 124512, + [SMALL_STATE(3781)] = 124528, + [SMALL_STATE(3782)] = 124544, + [SMALL_STATE(3783)] = 124558, + [SMALL_STATE(3784)] = 124574, + [SMALL_STATE(3785)] = 124588, + [SMALL_STATE(3786)] = 124602, + [SMALL_STATE(3787)] = 124616, + [SMALL_STATE(3788)] = 124630, + [SMALL_STATE(3789)] = 124644, + [SMALL_STATE(3790)] = 124658, + [SMALL_STATE(3791)] = 124672, + [SMALL_STATE(3792)] = 124688, + [SMALL_STATE(3793)] = 124702, + [SMALL_STATE(3794)] = 124718, + [SMALL_STATE(3795)] = 124732, + [SMALL_STATE(3796)] = 124744, + [SMALL_STATE(3797)] = 124758, + [SMALL_STATE(3798)] = 124770, + [SMALL_STATE(3799)] = 124782, + [SMALL_STATE(3800)] = 124796, + [SMALL_STATE(3801)] = 124810, + [SMALL_STATE(3802)] = 124824, + [SMALL_STATE(3803)] = 124838, + [SMALL_STATE(3804)] = 124854, + [SMALL_STATE(3805)] = 124868, + [SMALL_STATE(3806)] = 124884, + [SMALL_STATE(3807)] = 124898, + [SMALL_STATE(3808)] = 124914, + [SMALL_STATE(3809)] = 124924, + [SMALL_STATE(3810)] = 124934, + [SMALL_STATE(3811)] = 124948, + [SMALL_STATE(3812)] = 124962, + [SMALL_STATE(3813)] = 124976, + [SMALL_STATE(3814)] = 124990, + [SMALL_STATE(3815)] = 125000, + [SMALL_STATE(3816)] = 125014, + [SMALL_STATE(3817)] = 125028, + [SMALL_STATE(3818)] = 125042, + [SMALL_STATE(3819)] = 125056, + [SMALL_STATE(3820)] = 125070, + [SMALL_STATE(3821)] = 125084, + [SMALL_STATE(3822)] = 125094, + [SMALL_STATE(3823)] = 125106, + [SMALL_STATE(3824)] = 125122, + [SMALL_STATE(3825)] = 125138, + [SMALL_STATE(3826)] = 125148, + [SMALL_STATE(3827)] = 125164, + [SMALL_STATE(3828)] = 125178, + [SMALL_STATE(3829)] = 125190, + [SMALL_STATE(3830)] = 125200, + [SMALL_STATE(3831)] = 125210, + [SMALL_STATE(3832)] = 125224, + [SMALL_STATE(3833)] = 125238, + [SMALL_STATE(3834)] = 125252, + [SMALL_STATE(3835)] = 125268, + [SMALL_STATE(3836)] = 125282, + [SMALL_STATE(3837)] = 125292, + [SMALL_STATE(3838)] = 125306, + [SMALL_STATE(3839)] = 125320, + [SMALL_STATE(3840)] = 125330, + [SMALL_STATE(3841)] = 125342, + [SMALL_STATE(3842)] = 125356, + [SMALL_STATE(3843)] = 125370, + [SMALL_STATE(3844)] = 125380, + [SMALL_STATE(3845)] = 125394, + [SMALL_STATE(3846)] = 125408, + [SMALL_STATE(3847)] = 125422, + [SMALL_STATE(3848)] = 125438, + [SMALL_STATE(3849)] = 125452, + [SMALL_STATE(3850)] = 125466, + [SMALL_STATE(3851)] = 125476, + [SMALL_STATE(3852)] = 125490, + [SMALL_STATE(3853)] = 125504, + [SMALL_STATE(3854)] = 125518, + [SMALL_STATE(3855)] = 125534, + [SMALL_STATE(3856)] = 125548, + [SMALL_STATE(3857)] = 125562, + [SMALL_STATE(3858)] = 125576, + [SMALL_STATE(3859)] = 125590, + [SMALL_STATE(3860)] = 125604, + [SMALL_STATE(3861)] = 125618, + [SMALL_STATE(3862)] = 125632, + [SMALL_STATE(3863)] = 125642, + [SMALL_STATE(3864)] = 125652, + [SMALL_STATE(3865)] = 125662, + [SMALL_STATE(3866)] = 125676, + [SMALL_STATE(3867)] = 125690, + [SMALL_STATE(3868)] = 125704, + [SMALL_STATE(3869)] = 125716, + [SMALL_STATE(3870)] = 125732, + [SMALL_STATE(3871)] = 125744, + [SMALL_STATE(3872)] = 125754, + [SMALL_STATE(3873)] = 125764, + [SMALL_STATE(3874)] = 125774, + [SMALL_STATE(3875)] = 125788, + [SMALL_STATE(3876)] = 125798, + [SMALL_STATE(3877)] = 125814, + [SMALL_STATE(3878)] = 125828, + [SMALL_STATE(3879)] = 125838, + [SMALL_STATE(3880)] = 125854, + [SMALL_STATE(3881)] = 125870, + [SMALL_STATE(3882)] = 125884, + [SMALL_STATE(3883)] = 125898, + [SMALL_STATE(3884)] = 125908, + [SMALL_STATE(3885)] = 125922, + [SMALL_STATE(3886)] = 125936, + [SMALL_STATE(3887)] = 125950, + [SMALL_STATE(3888)] = 125966, + [SMALL_STATE(3889)] = 125976, + [SMALL_STATE(3890)] = 125990, + [SMALL_STATE(3891)] = 126004, + [SMALL_STATE(3892)] = 126020, + [SMALL_STATE(3893)] = 126033, + [SMALL_STATE(3894)] = 126046, + [SMALL_STATE(3895)] = 126059, + [SMALL_STATE(3896)] = 126072, + [SMALL_STATE(3897)] = 126085, + [SMALL_STATE(3898)] = 126098, + [SMALL_STATE(3899)] = 126111, + [SMALL_STATE(3900)] = 126124, + [SMALL_STATE(3901)] = 126137, + [SMALL_STATE(3902)] = 126150, + [SMALL_STATE(3903)] = 126163, + [SMALL_STATE(3904)] = 126176, + [SMALL_STATE(3905)] = 126189, + [SMALL_STATE(3906)] = 126202, + [SMALL_STATE(3907)] = 126215, + [SMALL_STATE(3908)] = 126228, + [SMALL_STATE(3909)] = 126241, + [SMALL_STATE(3910)] = 126254, + [SMALL_STATE(3911)] = 126267, + [SMALL_STATE(3912)] = 126276, + [SMALL_STATE(3913)] = 126289, + [SMALL_STATE(3914)] = 126302, + [SMALL_STATE(3915)] = 126315, + [SMALL_STATE(3916)] = 126324, + [SMALL_STATE(3917)] = 126337, + [SMALL_STATE(3918)] = 126350, + [SMALL_STATE(3919)] = 126363, + [SMALL_STATE(3920)] = 126376, + [SMALL_STATE(3921)] = 126389, + [SMALL_STATE(3922)] = 126402, + [SMALL_STATE(3923)] = 126415, + [SMALL_STATE(3924)] = 126428, + [SMALL_STATE(3925)] = 126441, + [SMALL_STATE(3926)] = 126454, + [SMALL_STATE(3927)] = 126467, + [SMALL_STATE(3928)] = 126480, + [SMALL_STATE(3929)] = 126493, + [SMALL_STATE(3930)] = 126506, + [SMALL_STATE(3931)] = 126519, + [SMALL_STATE(3932)] = 126532, + [SMALL_STATE(3933)] = 126545, + [SMALL_STATE(3934)] = 126558, + [SMALL_STATE(3935)] = 126571, + [SMALL_STATE(3936)] = 126584, + [SMALL_STATE(3937)] = 126597, + [SMALL_STATE(3938)] = 126610, + [SMALL_STATE(3939)] = 126623, + [SMALL_STATE(3940)] = 126636, + [SMALL_STATE(3941)] = 126649, + [SMALL_STATE(3942)] = 126662, + [SMALL_STATE(3943)] = 126675, + [SMALL_STATE(3944)] = 126688, + [SMALL_STATE(3945)] = 126701, + [SMALL_STATE(3946)] = 126714, + [SMALL_STATE(3947)] = 126727, + [SMALL_STATE(3948)] = 126740, + [SMALL_STATE(3949)] = 126753, + [SMALL_STATE(3950)] = 126766, + [SMALL_STATE(3951)] = 126779, + [SMALL_STATE(3952)] = 126792, + [SMALL_STATE(3953)] = 126805, + [SMALL_STATE(3954)] = 126818, + [SMALL_STATE(3955)] = 126831, + [SMALL_STATE(3956)] = 126844, + [SMALL_STATE(3957)] = 126857, + [SMALL_STATE(3958)] = 126870, + [SMALL_STATE(3959)] = 126879, + [SMALL_STATE(3960)] = 126888, + [SMALL_STATE(3961)] = 126901, + [SMALL_STATE(3962)] = 126914, + [SMALL_STATE(3963)] = 126927, + [SMALL_STATE(3964)] = 126940, + [SMALL_STATE(3965)] = 126953, + [SMALL_STATE(3966)] = 126966, + [SMALL_STATE(3967)] = 126979, + [SMALL_STATE(3968)] = 126992, + [SMALL_STATE(3969)] = 127005, + [SMALL_STATE(3970)] = 127018, + [SMALL_STATE(3971)] = 127031, + [SMALL_STATE(3972)] = 127044, + [SMALL_STATE(3973)] = 127057, + [SMALL_STATE(3974)] = 127070, + [SMALL_STATE(3975)] = 127083, + [SMALL_STATE(3976)] = 127096, + [SMALL_STATE(3977)] = 127109, + [SMALL_STATE(3978)] = 127122, + [SMALL_STATE(3979)] = 127135, + [SMALL_STATE(3980)] = 127148, + [SMALL_STATE(3981)] = 127159, + [SMALL_STATE(3982)] = 127172, + [SMALL_STATE(3983)] = 127185, + [SMALL_STATE(3984)] = 127198, + [SMALL_STATE(3985)] = 127211, + [SMALL_STATE(3986)] = 127224, + [SMALL_STATE(3987)] = 127237, + [SMALL_STATE(3988)] = 127250, + [SMALL_STATE(3989)] = 127263, + [SMALL_STATE(3990)] = 127276, + [SMALL_STATE(3991)] = 127287, + [SMALL_STATE(3992)] = 127300, + [SMALL_STATE(3993)] = 127313, + [SMALL_STATE(3994)] = 127326, + [SMALL_STATE(3995)] = 127339, + [SMALL_STATE(3996)] = 127352, + [SMALL_STATE(3997)] = 127365, + [SMALL_STATE(3998)] = 127378, + [SMALL_STATE(3999)] = 127391, + [SMALL_STATE(4000)] = 127404, + [SMALL_STATE(4001)] = 127417, + [SMALL_STATE(4002)] = 127430, + [SMALL_STATE(4003)] = 127443, + [SMALL_STATE(4004)] = 127456, + [SMALL_STATE(4005)] = 127469, + [SMALL_STATE(4006)] = 127482, + [SMALL_STATE(4007)] = 127495, + [SMALL_STATE(4008)] = 127508, + [SMALL_STATE(4009)] = 127521, + [SMALL_STATE(4010)] = 127534, + [SMALL_STATE(4011)] = 127547, + [SMALL_STATE(4012)] = 127560, + [SMALL_STATE(4013)] = 127573, + [SMALL_STATE(4014)] = 127586, + [SMALL_STATE(4015)] = 127599, + [SMALL_STATE(4016)] = 127612, + [SMALL_STATE(4017)] = 127625, + [SMALL_STATE(4018)] = 127638, + [SMALL_STATE(4019)] = 127651, + [SMALL_STATE(4020)] = 127664, + [SMALL_STATE(4021)] = 127677, + [SMALL_STATE(4022)] = 127690, + [SMALL_STATE(4023)] = 127703, + [SMALL_STATE(4024)] = 127714, + [SMALL_STATE(4025)] = 127727, + [SMALL_STATE(4026)] = 127736, + [SMALL_STATE(4027)] = 127749, + [SMALL_STATE(4028)] = 127762, + [SMALL_STATE(4029)] = 127775, + [SMALL_STATE(4030)] = 127788, + [SMALL_STATE(4031)] = 127799, + [SMALL_STATE(4032)] = 127812, + [SMALL_STATE(4033)] = 127825, + [SMALL_STATE(4034)] = 127838, + [SMALL_STATE(4035)] = 127851, + [SMALL_STATE(4036)] = 127864, + [SMALL_STATE(4037)] = 127877, + [SMALL_STATE(4038)] = 127890, + [SMALL_STATE(4039)] = 127903, + [SMALL_STATE(4040)] = 127916, + [SMALL_STATE(4041)] = 127929, + [SMALL_STATE(4042)] = 127942, + [SMALL_STATE(4043)] = 127955, + [SMALL_STATE(4044)] = 127968, + [SMALL_STATE(4045)] = 127981, + [SMALL_STATE(4046)] = 127994, + [SMALL_STATE(4047)] = 128007, + [SMALL_STATE(4048)] = 128020, + [SMALL_STATE(4049)] = 128033, + [SMALL_STATE(4050)] = 128046, + [SMALL_STATE(4051)] = 128059, + [SMALL_STATE(4052)] = 128072, + [SMALL_STATE(4053)] = 128085, + [SMALL_STATE(4054)] = 128098, + [SMALL_STATE(4055)] = 128111, + [SMALL_STATE(4056)] = 128124, + [SMALL_STATE(4057)] = 128137, + [SMALL_STATE(4058)] = 128150, + [SMALL_STATE(4059)] = 128163, + [SMALL_STATE(4060)] = 128176, + [SMALL_STATE(4061)] = 128189, + [SMALL_STATE(4062)] = 128202, + [SMALL_STATE(4063)] = 128211, + [SMALL_STATE(4064)] = 128224, + [SMALL_STATE(4065)] = 128237, + [SMALL_STATE(4066)] = 128250, + [SMALL_STATE(4067)] = 128263, + [SMALL_STATE(4068)] = 128276, + [SMALL_STATE(4069)] = 128287, + [SMALL_STATE(4070)] = 128300, + [SMALL_STATE(4071)] = 128313, + [SMALL_STATE(4072)] = 128326, + [SMALL_STATE(4073)] = 128339, + [SMALL_STATE(4074)] = 128352, + [SMALL_STATE(4075)] = 128365, + [SMALL_STATE(4076)] = 128378, + [SMALL_STATE(4077)] = 128391, + [SMALL_STATE(4078)] = 128404, + [SMALL_STATE(4079)] = 128417, + [SMALL_STATE(4080)] = 128426, + [SMALL_STATE(4081)] = 128439, + [SMALL_STATE(4082)] = 128452, + [SMALL_STATE(4083)] = 128465, + [SMALL_STATE(4084)] = 128478, + [SMALL_STATE(4085)] = 128487, + [SMALL_STATE(4086)] = 128496, + [SMALL_STATE(4087)] = 128509, + [SMALL_STATE(4088)] = 128522, + [SMALL_STATE(4089)] = 128535, + [SMALL_STATE(4090)] = 128548, + [SMALL_STATE(4091)] = 128561, + [SMALL_STATE(4092)] = 128574, + [SMALL_STATE(4093)] = 128587, + [SMALL_STATE(4094)] = 128600, + [SMALL_STATE(4095)] = 128613, + [SMALL_STATE(4096)] = 128626, + [SMALL_STATE(4097)] = 128639, + [SMALL_STATE(4098)] = 128652, + [SMALL_STATE(4099)] = 128665, + [SMALL_STATE(4100)] = 128678, + [SMALL_STATE(4101)] = 128691, + [SMALL_STATE(4102)] = 128704, + [SMALL_STATE(4103)] = 128717, + [SMALL_STATE(4104)] = 128730, + [SMALL_STATE(4105)] = 128743, + [SMALL_STATE(4106)] = 128756, + [SMALL_STATE(4107)] = 128765, + [SMALL_STATE(4108)] = 128774, + [SMALL_STATE(4109)] = 128787, + [SMALL_STATE(4110)] = 128800, + [SMALL_STATE(4111)] = 128813, + [SMALL_STATE(4112)] = 128826, + [SMALL_STATE(4113)] = 128839, + [SMALL_STATE(4114)] = 128852, + [SMALL_STATE(4115)] = 128861, + [SMALL_STATE(4116)] = 128874, + [SMALL_STATE(4117)] = 128887, + [SMALL_STATE(4118)] = 128900, + [SMALL_STATE(4119)] = 128913, + [SMALL_STATE(4120)] = 128926, + [SMALL_STATE(4121)] = 128939, + [SMALL_STATE(4122)] = 128948, + [SMALL_STATE(4123)] = 128961, + [SMALL_STATE(4124)] = 128974, + [SMALL_STATE(4125)] = 128983, + [SMALL_STATE(4126)] = 128996, + [SMALL_STATE(4127)] = 129007, + [SMALL_STATE(4128)] = 129016, + [SMALL_STATE(4129)] = 129029, + [SMALL_STATE(4130)] = 129042, + [SMALL_STATE(4131)] = 129055, + [SMALL_STATE(4132)] = 129065, + [SMALL_STATE(4133)] = 129075, + [SMALL_STATE(4134)] = 129083, + [SMALL_STATE(4135)] = 129093, + [SMALL_STATE(4136)] = 129103, + [SMALL_STATE(4137)] = 129113, + [SMALL_STATE(4138)] = 129123, + [SMALL_STATE(4139)] = 129133, + [SMALL_STATE(4140)] = 129143, + [SMALL_STATE(4141)] = 129153, + [SMALL_STATE(4142)] = 129163, + [SMALL_STATE(4143)] = 129173, + [SMALL_STATE(4144)] = 129183, + [SMALL_STATE(4145)] = 129193, + [SMALL_STATE(4146)] = 129203, + [SMALL_STATE(4147)] = 129213, + [SMALL_STATE(4148)] = 129223, + [SMALL_STATE(4149)] = 129233, + [SMALL_STATE(4150)] = 129243, + [SMALL_STATE(4151)] = 129253, + [SMALL_STATE(4152)] = 129263, + [SMALL_STATE(4153)] = 129273, + [SMALL_STATE(4154)] = 129283, + [SMALL_STATE(4155)] = 129293, + [SMALL_STATE(4156)] = 129303, + [SMALL_STATE(4157)] = 129313, + [SMALL_STATE(4158)] = 129321, + [SMALL_STATE(4159)] = 129329, + [SMALL_STATE(4160)] = 129339, + [SMALL_STATE(4161)] = 129349, + [SMALL_STATE(4162)] = 129359, + [SMALL_STATE(4163)] = 129369, + [SMALL_STATE(4164)] = 129377, + [SMALL_STATE(4165)] = 129387, + [SMALL_STATE(4166)] = 129397, + [SMALL_STATE(4167)] = 129407, + [SMALL_STATE(4168)] = 129417, + [SMALL_STATE(4169)] = 129427, + [SMALL_STATE(4170)] = 129437, + [SMALL_STATE(4171)] = 129447, + [SMALL_STATE(4172)] = 129457, + [SMALL_STATE(4173)] = 129467, + [SMALL_STATE(4174)] = 129477, + [SMALL_STATE(4175)] = 129487, + [SMALL_STATE(4176)] = 129497, + [SMALL_STATE(4177)] = 129507, + [SMALL_STATE(4178)] = 129517, + [SMALL_STATE(4179)] = 129527, + [SMALL_STATE(4180)] = 129537, + [SMALL_STATE(4181)] = 129547, + [SMALL_STATE(4182)] = 129555, + [SMALL_STATE(4183)] = 129565, + [SMALL_STATE(4184)] = 129575, + [SMALL_STATE(4185)] = 129585, + [SMALL_STATE(4186)] = 129595, + [SMALL_STATE(4187)] = 129605, + [SMALL_STATE(4188)] = 129615, + [SMALL_STATE(4189)] = 129625, + [SMALL_STATE(4190)] = 129635, + [SMALL_STATE(4191)] = 129645, + [SMALL_STATE(4192)] = 129655, + [SMALL_STATE(4193)] = 129663, + [SMALL_STATE(4194)] = 129673, + [SMALL_STATE(4195)] = 129683, + [SMALL_STATE(4196)] = 129693, + [SMALL_STATE(4197)] = 129701, + [SMALL_STATE(4198)] = 129711, + [SMALL_STATE(4199)] = 129721, + [SMALL_STATE(4200)] = 129729, + [SMALL_STATE(4201)] = 129739, + [SMALL_STATE(4202)] = 129749, + [SMALL_STATE(4203)] = 129759, + [SMALL_STATE(4204)] = 129767, + [SMALL_STATE(4205)] = 129777, + [SMALL_STATE(4206)] = 129787, + [SMALL_STATE(4207)] = 129797, + [SMALL_STATE(4208)] = 129807, + [SMALL_STATE(4209)] = 129815, + [SMALL_STATE(4210)] = 129825, + [SMALL_STATE(4211)] = 129835, + [SMALL_STATE(4212)] = 129843, + [SMALL_STATE(4213)] = 129853, + [SMALL_STATE(4214)] = 129863, + [SMALL_STATE(4215)] = 129871, + [SMALL_STATE(4216)] = 129881, + [SMALL_STATE(4217)] = 129889, + [SMALL_STATE(4218)] = 129899, + [SMALL_STATE(4219)] = 129909, + [SMALL_STATE(4220)] = 129919, + [SMALL_STATE(4221)] = 129929, + [SMALL_STATE(4222)] = 129937, + [SMALL_STATE(4223)] = 129947, + [SMALL_STATE(4224)] = 129957, + [SMALL_STATE(4225)] = 129965, + [SMALL_STATE(4226)] = 129975, + [SMALL_STATE(4227)] = 129985, + [SMALL_STATE(4228)] = 129995, + [SMALL_STATE(4229)] = 130005, + [SMALL_STATE(4230)] = 130015, + [SMALL_STATE(4231)] = 130025, + [SMALL_STATE(4232)] = 130033, + [SMALL_STATE(4233)] = 130043, + [SMALL_STATE(4234)] = 130053, + [SMALL_STATE(4235)] = 130063, + [SMALL_STATE(4236)] = 130073, + [SMALL_STATE(4237)] = 130083, + [SMALL_STATE(4238)] = 130093, + [SMALL_STATE(4239)] = 130103, + [SMALL_STATE(4240)] = 130113, + [SMALL_STATE(4241)] = 130123, + [SMALL_STATE(4242)] = 130133, + [SMALL_STATE(4243)] = 130143, + [SMALL_STATE(4244)] = 130153, + [SMALL_STATE(4245)] = 130163, + [SMALL_STATE(4246)] = 130173, + [SMALL_STATE(4247)] = 130183, + [SMALL_STATE(4248)] = 130191, + [SMALL_STATE(4249)] = 130201, + [SMALL_STATE(4250)] = 130211, + [SMALL_STATE(4251)] = 130221, + [SMALL_STATE(4252)] = 130231, + [SMALL_STATE(4253)] = 130241, + [SMALL_STATE(4254)] = 130251, + [SMALL_STATE(4255)] = 130261, + [SMALL_STATE(4256)] = 130271, + [SMALL_STATE(4257)] = 130281, + [SMALL_STATE(4258)] = 130291, + [SMALL_STATE(4259)] = 130299, + [SMALL_STATE(4260)] = 130309, + [SMALL_STATE(4261)] = 130319, + [SMALL_STATE(4262)] = 130329, + [SMALL_STATE(4263)] = 130339, + [SMALL_STATE(4264)] = 130349, + [SMALL_STATE(4265)] = 130359, + [SMALL_STATE(4266)] = 130369, + [SMALL_STATE(4267)] = 130379, + [SMALL_STATE(4268)] = 130389, + [SMALL_STATE(4269)] = 130399, + [SMALL_STATE(4270)] = 130409, + [SMALL_STATE(4271)] = 130419, + [SMALL_STATE(4272)] = 130429, + [SMALL_STATE(4273)] = 130439, + [SMALL_STATE(4274)] = 130449, + [SMALL_STATE(4275)] = 130459, + [SMALL_STATE(4276)] = 130469, + [SMALL_STATE(4277)] = 130479, + [SMALL_STATE(4278)] = 130489, + [SMALL_STATE(4279)] = 130497, + [SMALL_STATE(4280)] = 130505, + [SMALL_STATE(4281)] = 130515, + [SMALL_STATE(4282)] = 130525, + [SMALL_STATE(4283)] = 130535, + [SMALL_STATE(4284)] = 130543, + [SMALL_STATE(4285)] = 130553, + [SMALL_STATE(4286)] = 130563, + [SMALL_STATE(4287)] = 130573, + [SMALL_STATE(4288)] = 130583, + [SMALL_STATE(4289)] = 130593, + [SMALL_STATE(4290)] = 130603, + [SMALL_STATE(4291)] = 130613, + [SMALL_STATE(4292)] = 130621, + [SMALL_STATE(4293)] = 130631, + [SMALL_STATE(4294)] = 130641, + [SMALL_STATE(4295)] = 130651, + [SMALL_STATE(4296)] = 130661, + [SMALL_STATE(4297)] = 130671, + [SMALL_STATE(4298)] = 130681, + [SMALL_STATE(4299)] = 130691, + [SMALL_STATE(4300)] = 130701, + [SMALL_STATE(4301)] = 130711, + [SMALL_STATE(4302)] = 130721, + [SMALL_STATE(4303)] = 130731, + [SMALL_STATE(4304)] = 130741, + [SMALL_STATE(4305)] = 130751, + [SMALL_STATE(4306)] = 130759, + [SMALL_STATE(4307)] = 130769, + [SMALL_STATE(4308)] = 130779, + [SMALL_STATE(4309)] = 130789, + [SMALL_STATE(4310)] = 130799, + [SMALL_STATE(4311)] = 130809, + [SMALL_STATE(4312)] = 130819, + [SMALL_STATE(4313)] = 130829, + [SMALL_STATE(4314)] = 130839, + [SMALL_STATE(4315)] = 130849, + [SMALL_STATE(4316)] = 130859, + [SMALL_STATE(4317)] = 130869, + [SMALL_STATE(4318)] = 130879, + [SMALL_STATE(4319)] = 130889, + [SMALL_STATE(4320)] = 130899, + [SMALL_STATE(4321)] = 130909, + [SMALL_STATE(4322)] = 130917, + [SMALL_STATE(4323)] = 130927, + [SMALL_STATE(4324)] = 130937, + [SMALL_STATE(4325)] = 130947, + [SMALL_STATE(4326)] = 130955, + [SMALL_STATE(4327)] = 130963, + [SMALL_STATE(4328)] = 130973, + [SMALL_STATE(4329)] = 130983, + [SMALL_STATE(4330)] = 130993, + [SMALL_STATE(4331)] = 131003, + [SMALL_STATE(4332)] = 131013, + [SMALL_STATE(4333)] = 131023, + [SMALL_STATE(4334)] = 131033, + [SMALL_STATE(4335)] = 131043, + [SMALL_STATE(4336)] = 131053, + [SMALL_STATE(4337)] = 131063, + [SMALL_STATE(4338)] = 131071, + [SMALL_STATE(4339)] = 131081, + [SMALL_STATE(4340)] = 131091, + [SMALL_STATE(4341)] = 131101, + [SMALL_STATE(4342)] = 131111, + [SMALL_STATE(4343)] = 131121, + [SMALL_STATE(4344)] = 131131, + [SMALL_STATE(4345)] = 131141, + [SMALL_STATE(4346)] = 131151, + [SMALL_STATE(4347)] = 131161, + [SMALL_STATE(4348)] = 131171, + [SMALL_STATE(4349)] = 131181, + [SMALL_STATE(4350)] = 131191, + [SMALL_STATE(4351)] = 131201, + [SMALL_STATE(4352)] = 131211, + [SMALL_STATE(4353)] = 131221, + [SMALL_STATE(4354)] = 131231, + [SMALL_STATE(4355)] = 131241, + [SMALL_STATE(4356)] = 131251, + [SMALL_STATE(4357)] = 131261, + [SMALL_STATE(4358)] = 131271, + [SMALL_STATE(4359)] = 131281, + [SMALL_STATE(4360)] = 131291, + [SMALL_STATE(4361)] = 131301, + [SMALL_STATE(4362)] = 131311, + [SMALL_STATE(4363)] = 131321, + [SMALL_STATE(4364)] = 131331, + [SMALL_STATE(4365)] = 131341, + [SMALL_STATE(4366)] = 131351, + [SMALL_STATE(4367)] = 131361, + [SMALL_STATE(4368)] = 131371, + [SMALL_STATE(4369)] = 131381, + [SMALL_STATE(4370)] = 131391, + [SMALL_STATE(4371)] = 131401, + [SMALL_STATE(4372)] = 131411, + [SMALL_STATE(4373)] = 131421, + [SMALL_STATE(4374)] = 131431, + [SMALL_STATE(4375)] = 131439, + [SMALL_STATE(4376)] = 131449, + [SMALL_STATE(4377)] = 131459, + [SMALL_STATE(4378)] = 131469, + [SMALL_STATE(4379)] = 131479, + [SMALL_STATE(4380)] = 131489, + [SMALL_STATE(4381)] = 131499, + [SMALL_STATE(4382)] = 131509, + [SMALL_STATE(4383)] = 131519, + [SMALL_STATE(4384)] = 131529, + [SMALL_STATE(4385)] = 131539, + [SMALL_STATE(4386)] = 131549, + [SMALL_STATE(4387)] = 131559, + [SMALL_STATE(4388)] = 131569, + [SMALL_STATE(4389)] = 131579, + [SMALL_STATE(4390)] = 131589, + [SMALL_STATE(4391)] = 131599, + [SMALL_STATE(4392)] = 131609, + [SMALL_STATE(4393)] = 131619, + [SMALL_STATE(4394)] = 131629, + [SMALL_STATE(4395)] = 131639, + [SMALL_STATE(4396)] = 131649, + [SMALL_STATE(4397)] = 131659, + [SMALL_STATE(4398)] = 131669, + [SMALL_STATE(4399)] = 131679, + [SMALL_STATE(4400)] = 131689, + [SMALL_STATE(4401)] = 131699, + [SMALL_STATE(4402)] = 131709, + [SMALL_STATE(4403)] = 131719, + [SMALL_STATE(4404)] = 131729, + [SMALL_STATE(4405)] = 131739, + [SMALL_STATE(4406)] = 131749, + [SMALL_STATE(4407)] = 131759, + [SMALL_STATE(4408)] = 131769, + [SMALL_STATE(4409)] = 131779, + [SMALL_STATE(4410)] = 131789, + [SMALL_STATE(4411)] = 131799, + [SMALL_STATE(4412)] = 131809, + [SMALL_STATE(4413)] = 131819, + [SMALL_STATE(4414)] = 131827, + [SMALL_STATE(4415)] = 131837, + [SMALL_STATE(4416)] = 131847, + [SMALL_STATE(4417)] = 131857, + [SMALL_STATE(4418)] = 131865, + [SMALL_STATE(4419)] = 131875, + [SMALL_STATE(4420)] = 131885, + [SMALL_STATE(4421)] = 131895, + [SMALL_STATE(4422)] = 131905, + [SMALL_STATE(4423)] = 131915, + [SMALL_STATE(4424)] = 131925, + [SMALL_STATE(4425)] = 131935, + [SMALL_STATE(4426)] = 131945, + [SMALL_STATE(4427)] = 131955, + [SMALL_STATE(4428)] = 131965, + [SMALL_STATE(4429)] = 131975, + [SMALL_STATE(4430)] = 131985, + [SMALL_STATE(4431)] = 131995, + [SMALL_STATE(4432)] = 132005, + [SMALL_STATE(4433)] = 132015, + [SMALL_STATE(4434)] = 132025, + [SMALL_STATE(4435)] = 132035, + [SMALL_STATE(4436)] = 132045, + [SMALL_STATE(4437)] = 132055, + [SMALL_STATE(4438)] = 132065, + [SMALL_STATE(4439)] = 132075, + [SMALL_STATE(4440)] = 132085, + [SMALL_STATE(4441)] = 132095, + [SMALL_STATE(4442)] = 132105, + [SMALL_STATE(4443)] = 132115, + [SMALL_STATE(4444)] = 132125, + [SMALL_STATE(4445)] = 132133, + [SMALL_STATE(4446)] = 132143, + [SMALL_STATE(4447)] = 132150, + [SMALL_STATE(4448)] = 132157, + [SMALL_STATE(4449)] = 132164, + [SMALL_STATE(4450)] = 132171, + [SMALL_STATE(4451)] = 132178, + [SMALL_STATE(4452)] = 132185, + [SMALL_STATE(4453)] = 132192, + [SMALL_STATE(4454)] = 132199, + [SMALL_STATE(4455)] = 132206, + [SMALL_STATE(4456)] = 132213, + [SMALL_STATE(4457)] = 132220, + [SMALL_STATE(4458)] = 132227, + [SMALL_STATE(4459)] = 132234, + [SMALL_STATE(4460)] = 132241, + [SMALL_STATE(4461)] = 132248, + [SMALL_STATE(4462)] = 132255, + [SMALL_STATE(4463)] = 132262, + [SMALL_STATE(4464)] = 132269, + [SMALL_STATE(4465)] = 132276, + [SMALL_STATE(4466)] = 132283, + [SMALL_STATE(4467)] = 132290, + [SMALL_STATE(4468)] = 132297, + [SMALL_STATE(4469)] = 132304, + [SMALL_STATE(4470)] = 132311, + [SMALL_STATE(4471)] = 132318, + [SMALL_STATE(4472)] = 132325, + [SMALL_STATE(4473)] = 132332, + [SMALL_STATE(4474)] = 132339, + [SMALL_STATE(4475)] = 132346, + [SMALL_STATE(4476)] = 132353, + [SMALL_STATE(4477)] = 132360, + [SMALL_STATE(4478)] = 132367, + [SMALL_STATE(4479)] = 132374, + [SMALL_STATE(4480)] = 132381, + [SMALL_STATE(4481)] = 132388, + [SMALL_STATE(4482)] = 132395, + [SMALL_STATE(4483)] = 132402, + [SMALL_STATE(4484)] = 132409, + [SMALL_STATE(4485)] = 132416, + [SMALL_STATE(4486)] = 132423, + [SMALL_STATE(4487)] = 132430, + [SMALL_STATE(4488)] = 132437, + [SMALL_STATE(4489)] = 132444, + [SMALL_STATE(4490)] = 132451, + [SMALL_STATE(4491)] = 132458, + [SMALL_STATE(4492)] = 132465, + [SMALL_STATE(4493)] = 132472, + [SMALL_STATE(4494)] = 132479, + [SMALL_STATE(4495)] = 132486, + [SMALL_STATE(4496)] = 132493, + [SMALL_STATE(4497)] = 132500, + [SMALL_STATE(4498)] = 132507, + [SMALL_STATE(4499)] = 132514, + [SMALL_STATE(4500)] = 132521, + [SMALL_STATE(4501)] = 132528, + [SMALL_STATE(4502)] = 132535, + [SMALL_STATE(4503)] = 132542, + [SMALL_STATE(4504)] = 132549, + [SMALL_STATE(4505)] = 132556, + [SMALL_STATE(4506)] = 132563, + [SMALL_STATE(4507)] = 132570, + [SMALL_STATE(4508)] = 132577, + [SMALL_STATE(4509)] = 132584, + [SMALL_STATE(4510)] = 132591, + [SMALL_STATE(4511)] = 132598, + [SMALL_STATE(4512)] = 132605, + [SMALL_STATE(4513)] = 132612, + [SMALL_STATE(4514)] = 132619, + [SMALL_STATE(4515)] = 132626, + [SMALL_STATE(4516)] = 132633, + [SMALL_STATE(4517)] = 132640, + [SMALL_STATE(4518)] = 132647, + [SMALL_STATE(4519)] = 132654, + [SMALL_STATE(4520)] = 132661, + [SMALL_STATE(4521)] = 132668, + [SMALL_STATE(4522)] = 132675, + [SMALL_STATE(4523)] = 132682, + [SMALL_STATE(4524)] = 132689, + [SMALL_STATE(4525)] = 132696, + [SMALL_STATE(4526)] = 132703, + [SMALL_STATE(4527)] = 132710, + [SMALL_STATE(4528)] = 132717, + [SMALL_STATE(4529)] = 132724, + [SMALL_STATE(4530)] = 132731, + [SMALL_STATE(4531)] = 132738, + [SMALL_STATE(4532)] = 132745, + [SMALL_STATE(4533)] = 132752, + [SMALL_STATE(4534)] = 132759, + [SMALL_STATE(4535)] = 132766, + [SMALL_STATE(4536)] = 132773, + [SMALL_STATE(4537)] = 132780, + [SMALL_STATE(4538)] = 132787, + [SMALL_STATE(4539)] = 132794, + [SMALL_STATE(4540)] = 132801, + [SMALL_STATE(4541)] = 132808, + [SMALL_STATE(4542)] = 132815, + [SMALL_STATE(4543)] = 132822, + [SMALL_STATE(4544)] = 132829, + [SMALL_STATE(4545)] = 132836, + [SMALL_STATE(4546)] = 132843, + [SMALL_STATE(4547)] = 132850, + [SMALL_STATE(4548)] = 132857, + [SMALL_STATE(4549)] = 132864, + [SMALL_STATE(4550)] = 132871, + [SMALL_STATE(4551)] = 132878, + [SMALL_STATE(4552)] = 132885, + [SMALL_STATE(4553)] = 132892, + [SMALL_STATE(4554)] = 132899, + [SMALL_STATE(4555)] = 132906, + [SMALL_STATE(4556)] = 132913, + [SMALL_STATE(4557)] = 132920, + [SMALL_STATE(4558)] = 132927, + [SMALL_STATE(4559)] = 132934, + [SMALL_STATE(4560)] = 132941, + [SMALL_STATE(4561)] = 132948, + [SMALL_STATE(4562)] = 132955, + [SMALL_STATE(4563)] = 132962, + [SMALL_STATE(4564)] = 132969, + [SMALL_STATE(4565)] = 132976, + [SMALL_STATE(4566)] = 132983, + [SMALL_STATE(4567)] = 132990, + [SMALL_STATE(4568)] = 132997, + [SMALL_STATE(4569)] = 133004, + [SMALL_STATE(4570)] = 133011, + [SMALL_STATE(4571)] = 133018, + [SMALL_STATE(4572)] = 133025, + [SMALL_STATE(4573)] = 133032, + [SMALL_STATE(4574)] = 133039, + [SMALL_STATE(4575)] = 133046, + [SMALL_STATE(4576)] = 133053, + [SMALL_STATE(4577)] = 133060, + [SMALL_STATE(4578)] = 133067, + [SMALL_STATE(4579)] = 133074, + [SMALL_STATE(4580)] = 133081, + [SMALL_STATE(4581)] = 133088, + [SMALL_STATE(4582)] = 133095, + [SMALL_STATE(4583)] = 133102, + [SMALL_STATE(4584)] = 133109, + [SMALL_STATE(4585)] = 133116, + [SMALL_STATE(4586)] = 133123, + [SMALL_STATE(4587)] = 133130, + [SMALL_STATE(4588)] = 133137, + [SMALL_STATE(4589)] = 133144, + [SMALL_STATE(4590)] = 133151, + [SMALL_STATE(4591)] = 133158, + [SMALL_STATE(4592)] = 133165, + [SMALL_STATE(4593)] = 133172, + [SMALL_STATE(4594)] = 133179, + [SMALL_STATE(4595)] = 133186, + [SMALL_STATE(4596)] = 133193, + [SMALL_STATE(4597)] = 133200, + [SMALL_STATE(4598)] = 133207, + [SMALL_STATE(4599)] = 133214, + [SMALL_STATE(4600)] = 133221, + [SMALL_STATE(4601)] = 133228, + [SMALL_STATE(4602)] = 133235, + [SMALL_STATE(4603)] = 133242, + [SMALL_STATE(4604)] = 133249, + [SMALL_STATE(4605)] = 133256, + [SMALL_STATE(4606)] = 133263, + [SMALL_STATE(4607)] = 133270, + [SMALL_STATE(4608)] = 133277, + [SMALL_STATE(4609)] = 133284, + [SMALL_STATE(4610)] = 133291, + [SMALL_STATE(4611)] = 133298, + [SMALL_STATE(4612)] = 133305, + [SMALL_STATE(4613)] = 133312, + [SMALL_STATE(4614)] = 133319, + [SMALL_STATE(4615)] = 133326, + [SMALL_STATE(4616)] = 133333, + [SMALL_STATE(4617)] = 133340, + [SMALL_STATE(4618)] = 133347, + [SMALL_STATE(4619)] = 133354, + [SMALL_STATE(4620)] = 133361, + [SMALL_STATE(4621)] = 133368, + [SMALL_STATE(4622)] = 133375, + [SMALL_STATE(4623)] = 133382, + [SMALL_STATE(4624)] = 133389, + [SMALL_STATE(4625)] = 133396, + [SMALL_STATE(4626)] = 133403, + [SMALL_STATE(4627)] = 133410, + [SMALL_STATE(4628)] = 133417, + [SMALL_STATE(4629)] = 133424, + [SMALL_STATE(4630)] = 133431, + [SMALL_STATE(4631)] = 133438, + [SMALL_STATE(4632)] = 133445, + [SMALL_STATE(4633)] = 133452, + [SMALL_STATE(4634)] = 133459, + [SMALL_STATE(4635)] = 133466, + [SMALL_STATE(4636)] = 133473, + [SMALL_STATE(4637)] = 133480, + [SMALL_STATE(4638)] = 133487, + [SMALL_STATE(4639)] = 133494, + [SMALL_STATE(4640)] = 133501, + [SMALL_STATE(4641)] = 133508, + [SMALL_STATE(4642)] = 133515, + [SMALL_STATE(4643)] = 133522, + [SMALL_STATE(4644)] = 133529, + [SMALL_STATE(4645)] = 133536, + [SMALL_STATE(4646)] = 133543, + [SMALL_STATE(4647)] = 133550, + [SMALL_STATE(4648)] = 133557, + [SMALL_STATE(4649)] = 133564, + [SMALL_STATE(4650)] = 133571, + [SMALL_STATE(4651)] = 133578, + [SMALL_STATE(4652)] = 133585, + [SMALL_STATE(4653)] = 133592, + [SMALL_STATE(4654)] = 133599, + [SMALL_STATE(4655)] = 133606, + [SMALL_STATE(4656)] = 133613, + [SMALL_STATE(4657)] = 133620, + [SMALL_STATE(4658)] = 133627, + [SMALL_STATE(4659)] = 133634, + [SMALL_STATE(4660)] = 133641, + [SMALL_STATE(4661)] = 133648, + [SMALL_STATE(4662)] = 133655, + [SMALL_STATE(4663)] = 133662, + [SMALL_STATE(4664)] = 133669, + [SMALL_STATE(4665)] = 133676, + [SMALL_STATE(4666)] = 133683, + [SMALL_STATE(4667)] = 133690, + [SMALL_STATE(4668)] = 133697, + [SMALL_STATE(4669)] = 133704, + [SMALL_STATE(4670)] = 133711, + [SMALL_STATE(4671)] = 133718, + [SMALL_STATE(4672)] = 133725, + [SMALL_STATE(4673)] = 133732, + [SMALL_STATE(4674)] = 133739, + [SMALL_STATE(4675)] = 133746, + [SMALL_STATE(4676)] = 133753, + [SMALL_STATE(4677)] = 133760, + [SMALL_STATE(4678)] = 133767, + [SMALL_STATE(4679)] = 133774, + [SMALL_STATE(4680)] = 133781, + [SMALL_STATE(4681)] = 133788, + [SMALL_STATE(4682)] = 133795, + [SMALL_STATE(4683)] = 133802, + [SMALL_STATE(4684)] = 133809, + [SMALL_STATE(4685)] = 133816, + [SMALL_STATE(4686)] = 133823, + [SMALL_STATE(4687)] = 133830, + [SMALL_STATE(4688)] = 133837, + [SMALL_STATE(4689)] = 133844, + [SMALL_STATE(4690)] = 133851, + [SMALL_STATE(4691)] = 133858, + [SMALL_STATE(4692)] = 133865, + [SMALL_STATE(4693)] = 133872, + [SMALL_STATE(4694)] = 133879, + [SMALL_STATE(4695)] = 133886, + [SMALL_STATE(4696)] = 133893, + [SMALL_STATE(4697)] = 133900, + [SMALL_STATE(4698)] = 133907, + [SMALL_STATE(4699)] = 133914, + [SMALL_STATE(4700)] = 133921, + [SMALL_STATE(4701)] = 133928, + [SMALL_STATE(4702)] = 133935, + [SMALL_STATE(4703)] = 133942, + [SMALL_STATE(4704)] = 133949, + [SMALL_STATE(4705)] = 133956, + [SMALL_STATE(4706)] = 133963, + [SMALL_STATE(4707)] = 133970, + [SMALL_STATE(4708)] = 133977, + [SMALL_STATE(4709)] = 133984, + [SMALL_STATE(4710)] = 133991, + [SMALL_STATE(4711)] = 133998, + [SMALL_STATE(4712)] = 134005, + [SMALL_STATE(4713)] = 134012, + [SMALL_STATE(4714)] = 134019, + [SMALL_STATE(4715)] = 134026, + [SMALL_STATE(4716)] = 134033, + [SMALL_STATE(4717)] = 134040, + [SMALL_STATE(4718)] = 134047, + [SMALL_STATE(4719)] = 134054, + [SMALL_STATE(4720)] = 134061, + [SMALL_STATE(4721)] = 134068, + [SMALL_STATE(4722)] = 134075, + [SMALL_STATE(4723)] = 134082, + [SMALL_STATE(4724)] = 134089, + [SMALL_STATE(4725)] = 134096, + [SMALL_STATE(4726)] = 134103, + [SMALL_STATE(4727)] = 134110, + [SMALL_STATE(4728)] = 134117, + [SMALL_STATE(4729)] = 134124, + [SMALL_STATE(4730)] = 134131, + [SMALL_STATE(4731)] = 134138, + [SMALL_STATE(4732)] = 134145, + [SMALL_STATE(4733)] = 134152, + [SMALL_STATE(4734)] = 134159, + [SMALL_STATE(4735)] = 134166, + [SMALL_STATE(4736)] = 134173, + [SMALL_STATE(4737)] = 134180, + [SMALL_STATE(4738)] = 134187, + [SMALL_STATE(4739)] = 134194, + [SMALL_STATE(4740)] = 134201, + [SMALL_STATE(4741)] = 134208, + [SMALL_STATE(4742)] = 134215, + [SMALL_STATE(4743)] = 134222, + [SMALL_STATE(4744)] = 134229, + [SMALL_STATE(4745)] = 134236, + [SMALL_STATE(4746)] = 134243, + [SMALL_STATE(4747)] = 134250, + [SMALL_STATE(4748)] = 134257, + [SMALL_STATE(4749)] = 134264, + [SMALL_STATE(4750)] = 134271, + [SMALL_STATE(4751)] = 134278, + [SMALL_STATE(4752)] = 134285, + [SMALL_STATE(4753)] = 134292, + [SMALL_STATE(4754)] = 134299, + [SMALL_STATE(4755)] = 134306, + [SMALL_STATE(4756)] = 134313, + [SMALL_STATE(4757)] = 134320, + [SMALL_STATE(4758)] = 134327, + [SMALL_STATE(4759)] = 134334, + [SMALL_STATE(4760)] = 134341, + [SMALL_STATE(4761)] = 134348, + [SMALL_STATE(4762)] = 134355, + [SMALL_STATE(4763)] = 134362, + [SMALL_STATE(4764)] = 134369, + [SMALL_STATE(4765)] = 134376, + [SMALL_STATE(4766)] = 134383, + [SMALL_STATE(4767)] = 134390, + [SMALL_STATE(4768)] = 134397, + [SMALL_STATE(4769)] = 134404, + [SMALL_STATE(4770)] = 134411, + [SMALL_STATE(4771)] = 134418, + [SMALL_STATE(4772)] = 134425, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -305187,3872 +308756,3938 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(526), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4389), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3911), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(771), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3447), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4734), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3331), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(443), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(455), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3912), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4732), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3524), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2170), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4730), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4728), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2900), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(481), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(482), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4331), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(175), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(509), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(520), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(952), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(230), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(523), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(419), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(353), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(228), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4304), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3937), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(952), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4720), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1590), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3108), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3109), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3111), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3114), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(562), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4285), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4270), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1439), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1438), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3679), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4712), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4710), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3319), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3594), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3573), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3550), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3551), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4051), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4068), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(590), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4137), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(31), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4117), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(838), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3480), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4764), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3363), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4111), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4758), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3568), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2193), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4754), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4752), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2925), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(627), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(626), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(621), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4160), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(178), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(614), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(612), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(957), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(259), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(607), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(401), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(399), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(252), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4162), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4101), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(957), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4742), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1626), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3085), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3204), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3319), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3153), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(577), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4171), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4176), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1513), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1489), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3704), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4726), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4724), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3358), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3575), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3656), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3658), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3661), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4064), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4063), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1847), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4349), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(283), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(486), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3467), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(598), - [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(813), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4240), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2170), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2900), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(816), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(576), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(514), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4220), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(387), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(775), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(480), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2034), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(278), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(483), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(407), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(336), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(272), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4230), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3953), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2034), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4648), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1590), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3108), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3109), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3111), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3114), - [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3617), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3607), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3606), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3604), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3870), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3871), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2826), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4225), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(249), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(511), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3455), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(527), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(800), - [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4303), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2170), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2900), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(401), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(550), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(628), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4209), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(295), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(807), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(648), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2705), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(262), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4373), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(513), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(416), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(321), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(288), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4207), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3999), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2705), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4545), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1590), - [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3108), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3109), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3111), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3114), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3593), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3588), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3587), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3586), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4005), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4006), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 60), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 54), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1928), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4270), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(261), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(647), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3493), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(604), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(570), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4165), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2193), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2925), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(568), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(598), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(596), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4253), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(313), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(562), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(594), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2040), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(292), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(651), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(409), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(367), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(266), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4248), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4042), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2040), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4690), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1626), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3085), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3204), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3319), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3153), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3689), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3632), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3650), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3648), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4058), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4060), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2832), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4331), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(280), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(696), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3483), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(537), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(513), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4155), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2193), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2925), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(403), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(534), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(533), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4320), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(383), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(510), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(531), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2711), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(255), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4183), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(697), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(428), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(389), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(298), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4304), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4008), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2711), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4618), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1626), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3085), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3204), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3319), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3153), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3604), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3607), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3614), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3615), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4014), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4015), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1160), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4134), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(253), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(504), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3459), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(596), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(833), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4227), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2170), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2900), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(837), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(608), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(617), - [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4366), - [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(354), - [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(780), - [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(623), - [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1243), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(263), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(502), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(405), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(382), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(244), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4199), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4004), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1243), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4681), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1590), - [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3108), - [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3109), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3111), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3114), - [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3589), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3590), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3591), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3592), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4002), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4001), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2440), - [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4319), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(286), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(665), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3465), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(491), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(492), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4381), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2170), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2900), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(495), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(499), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(507), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4329), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(350), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(508), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(510), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2329), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(243), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(661), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(396), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(345), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(232), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4339), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3918), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2329), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4584), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1590), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3108), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3109), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3111), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3114), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3622), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3623), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3624), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3629), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3899), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3898), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 29), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 29), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 29), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 29), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1288), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4191), - [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(257), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(613), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3458), - [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(469), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(467), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4120), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2170), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2900), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(466), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(465), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(452), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4193), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(381), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(447), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(444), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1294), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(290), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(610), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(398), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(320), - [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(235), - [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4267), - [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4012), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1294), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4625), - [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1590), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3108), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3109), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3111), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3114), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3631), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3602), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3545), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3552), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3987), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3986), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 27), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 56), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 56), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 57), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 57), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 30), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 30), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 56), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 56), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_compile_time_identifier, 2), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_compile_time_identifier, 2), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 54), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 54), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 30), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 30), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 31), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 31), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 32), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 32), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 56), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 56), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4105), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 54), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 54), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 45), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 45), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 36), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 36), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 37), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 37), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 28), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 28), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element, 1), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 35), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3872), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_name, 1), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4406), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3194), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3194), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4443), - [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3081), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4443), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4443), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(431), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 38), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 38), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 139), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 139), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 94), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 94), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3697), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 93), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 93), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 115), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 115), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 134), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 134), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 34), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 34), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 117), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 117), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 33), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 33), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 146), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 146), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 34), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 34), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4105), - [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 109), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 35), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 36), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 29), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 92), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 92), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 62), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(615), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(420), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2288), - [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4564), - [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4271), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2549), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [5787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4564), - [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4271), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3319), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 75), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 75), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 105), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 105), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 40), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 85), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 111), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 131), - [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 129), - [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4392), - [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3463), - [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(521), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 83), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 110), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(216), - [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [6092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3548), - [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3548), - [6098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(774), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3549), - [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3549), - [6109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(658), - [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(414), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [6255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3518), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 84), - [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), - [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 130), - [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4463), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3010), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4246), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3460), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3056), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), - [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [6784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3316), - [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 55), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [6823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(4080), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(439), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3672), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2919), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [6899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3597), - [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(779), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 55), - [6935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(408), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [6942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3662), - [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [6971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(393), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [7020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(352), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4066), - [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4073), - [7209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 23), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 113), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 104), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 77), - [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 76), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 74), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 39), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 40), - [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 52), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 59), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 58), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 33), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 89), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 90), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 114), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [7969] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 55), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1170), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4383), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(283), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(625), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3488), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(687), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(640), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4166), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2193), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2925), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(638), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(683), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(681), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4390), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(360), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(635), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(672), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1296), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(279), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(630), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(413), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(340), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(291), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4394), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3938), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1296), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4469), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1626), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3085), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3204), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3319), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3153), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3598), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3599), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3600), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3601), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3932), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3931), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2531), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4287), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(254), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(550), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3487), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(717), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(716), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4312), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2193), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2925), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(715), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(714), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(713), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4290), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(355), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(712), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(709), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2441), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(249), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(551), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(430), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(378), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(230), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4299), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3974), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2441), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4622), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1626), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3085), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3204), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3319), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3153), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3651), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3643), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3585), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3633), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3970), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3966), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1310), + [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4132), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(240), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(574), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3484), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(778), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(756), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4186), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2193), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2925), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(754), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(849), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(730), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4443), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(303), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(729), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(719), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1303), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(265), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(578), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(426), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(368), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(239), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4257), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4011), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1303), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4492), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1626), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3085), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3204), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3319), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3153), + [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3605), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3603), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3602), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3592), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3901), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3896), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 30), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 30), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 30), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 30), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 27), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 27), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 30), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 30), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1310), + [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4132), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(240), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(574), + [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3484), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(691), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(692), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4186), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2193), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2925), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(693), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(698), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(699), + [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4443), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(303), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(707), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(710), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1303), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(265), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(578), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(426), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(361), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(288), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4257), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4011), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1303), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4492), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1626), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3085), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3204), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3319), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3153), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3605), + [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3603), + [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3602), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3592), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3901), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3896), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 28), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 54), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 54), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 22), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 22), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 57), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 57), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 113), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 113), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 51), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 51), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 26), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 26), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 31), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 31), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 32), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 32), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 82), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 82), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 86), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 86), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 31), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 31), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 58), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 58), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 46), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 46), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 55), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 55), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), + [3232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4361), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 51), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 51), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 65), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 65), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 55), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 55), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 52), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 52), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 57), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 57), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 57), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 57), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 33), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 33), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_compile_time_identifier, 2), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_compile_time_identifier, 2), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 29), + [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 29), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 38), + [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 38), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 37), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 37), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element, 1), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 36), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4107), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_name, 1), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4341), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3292), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3292), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(441), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4624), + [3946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3128), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), + [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4624), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), + [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4624), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 96), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 96), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), + [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 117), + [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 117), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 66), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 66), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 71), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 71), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 134), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 134), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 100), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 100), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 108), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 108), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 121), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 121), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 50), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 50), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 118), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 118), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 116), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 116), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 24), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 24), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 27), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 27), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 34), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 34), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 35), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 35), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 35), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 35), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 104), + [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 104), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 35), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 35), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 128), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 128), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 102), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 102), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 104), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 104), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 128), + [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 128), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 35), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 35), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 35), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 35), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 98), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 98), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 98), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 98), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 129), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 129), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 95), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 95), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 135), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 135), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 94), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 94), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 39), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 39), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 138), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 138), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 43), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 43), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 79), + [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 79), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 109), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 109), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 73), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 73), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 147), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 147), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), + [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 148), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 148), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 35), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 35), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 35), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 35), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 119), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 119), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3726), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 50), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 50), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4361), + [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 88), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 88), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 110), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 31), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 31), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 36), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 37), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 30), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 93), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 62), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 93), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), + [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(618), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(439), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2258), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4461), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4398), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2548), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [5923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4461), + [5926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4398), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), + [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3358), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 41), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 106), + [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 106), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 75), + [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 75), + [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 85), + [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 112), + [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3498), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), + [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(608), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 132), + [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 130), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), + [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 83), + [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [6092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4388), + [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 111), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [6183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(217), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3519), + [6443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [6453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(400), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [6548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3677), + [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3677), + [6554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(250), + [6557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), + [6559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3678), + [6562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3678), + [6565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(276), + [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 84), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 131), + [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [6628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), + [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [6641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4152), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3042), + [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3197), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4648), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3489), + [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), + [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), + [6788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), + [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), + [6792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 92), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 92), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3715), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 56), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [7123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(580), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(3997), + [7135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [7137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(3998), + [7140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3985), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3646), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3696), + [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [7169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(406), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2938), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(405), + [7218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(416), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 56), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [7293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(374), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3362), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 105), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 53), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 42), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 114), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 41), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 40), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 76), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 74), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 23), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 77), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 90), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 34), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 89), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 59), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 60), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 115), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [8099] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), }; #ifdef __cplusplus